Skip to content

Instantly share code, notes, and snippets.

@jfirebaugh
Created April 13, 2013 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jfirebaugh/5380413 to your computer and use it in GitHub Desktop.
Save jfirebaugh/5380413 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>New York City Neighborhoods</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<html>
<head>
<link href='http://api.tiles.mapbox.com/mapbox.js/v1.0.0beta0.0/mapbox.css' rel='stylesheet' />
<!--[if lte IE 8]>
<link href='http://api.tiles.mapbox.com/mapbox.js/v1.0.0beta0.0/mapbox.ie.css' rel='stylesheet' />
<![endif]-->
<script src='http://api.tiles.mapbox.com/mapbox.js/v1.0.0beta0.0/mapbox.js'></script>
<script src='nycneighborhoods.js'></script>
<style>
html,
body,
#map {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
text-align: left;
line-height: 18px;
color: #555;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
.leaflet-top-pane {
pointer-events: none;
}
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var map = L.mapbox.map('map', 'lxbarth.map-msx8qhha')
.setView([40.75, -73.94], 12);
// control that shows state info on hover
var info = L.control();
info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
this.update();
return this._div;
};
info.update = function (props) {
console.log(props);
};
info.addTo(map);
// get color depending on population density value
function getColor(d) {
return d > 1000 ? '#800026' :
d > 500 ? '#BD0026' :
d > 200 ? '#E31A1C' :
d > 100 ? '#FC4E2A' :
d > 50 ? '#FD8D3C' :
d > 20 ? '#FEB24C' :
d > 10 ? '#FED976' :
'#FFEDA0';
}
function style(feature) {
return {
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7,
fillColor: getColor(feature.properties.density)
};
}
function highlightFeature(e) {
var layer = e.target;
layer.setStyle({
weight: 5,
color: '#666',
dashArray: '',
fillOpacity: 0.7
});
if (!L.Browser.ie && !L.Browser.opera) {
layer.bringToFront();
}
info.update(layer.feature.properties);
}
var geojson;
function resetHighlight(e) {
geojson.resetStyle(e.target);
info.update();
}
function zoomToFeature(e) {
map.fitBounds(e.target.getBounds());
}
function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight,
click: zoomToFeature
});
}
geojson = L.geoJson(neighborhoods, {
style: style,
onEachFeature: onEachFeature
}).addTo(map);
map.attributionControl.addAttribution('NYC Neighborhoods &copy; <a href="https://nycopendata.socrata.com/Government/Neighborhood-Tabulation-Areas/cpf4-rkhq">NYC Open Data</a>');
var topPane = map._createPane('leaflet-top-pane', map.getPanes().mapPane);
var topLayer = L.mapbox.tileLayer('lxbarth.map-vtt23b1i').addTo(map);
topPane.appendChild(topLayer.getContainer());
topLayer.setZIndex(9);
</script>
</body>
</html>
This file has been truncated, but you can view the full file.
var neighborhoods = {
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK43",
"NTAName": "Midwood",
"Shape_Leng": 27996.591066299999511,
"Shape_Area": 35799638.2503
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.947326721605791, 40.629166567209431],
[-73.946422660643179, 40.624385567286403],
[-73.945424428974079, 40.624495609598185],
[-73.944518333704977, 40.61971364709504],
[-73.946513731278728, 40.619494019149627],
[-73.945736919120279, 40.615363406756607],
[-73.947426087808068, 40.614224600553648],
[-73.950265148829615, 40.613924351797365],
[-73.949783804506765, 40.611371750477637],
[-73.952565530906853, 40.610987184733915],
[-73.952587869489719, 40.611112239589012],
[-73.953598888529072, 40.610949865606365],
[-73.962379478247627, 40.609986374525803],
[-73.964719833855838, 40.622372960702698],
[-73.968645106226887, 40.621941695814826],
[-73.96909724465462, 40.624332825137976],
[-73.970471719311348, 40.624170030481622],
[-73.97136622157025, 40.628929162715856],
[-73.970001097634807, 40.629113473755957],
[-73.960407343420542, 40.630162530576236],
[-73.959955651218351, 40.627778672540586],
[-73.947326721605791, 40.629166567209431]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK75",
"NTAName": "Bedford",
"Shape_Leng": 29992.918642299999192,
"Shape_Area": 32629833.2384
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.941930788822305, 40.700725234695796],
[-73.9443878859649, 40.700424523782559],
[-73.940327939620985, 40.679889974562045],
[-73.951556826764957, 40.680498847575564],
[-73.953370174428443, 40.68064050844405],
[-73.95468418916532, 40.687244854437388],
[-73.95956770187361, 40.686682555927518],
[-73.960292816681118, 40.690346249915414],
[-73.955410580156297, 40.690908291886132],
[-73.956142392682068, 40.694579018572369],
[-73.960158546583031, 40.694117309658608],
[-73.961051006339716, 40.698326078818845],
[-73.957019931234058, 40.698973914349565],
[-73.957225174056262, 40.69999935002626],
[-73.957457364388716, 40.700822603184811],
[-73.9538119690652, 40.703180979795441],
[-73.951288193686963, 40.700922365485617],
[-73.947052052314447, 40.703663949842458],
[-73.943226860123147, 40.701520709145726],
[-73.941930788822305, 40.700725234695796]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX40",
"NTAName": "Fordham South",
"Shape_Leng": 15878.271904799999902,
"Shape_Area": 6307283.11567
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.891380233802607, 40.861700588263041],
[-73.891062806792334, 40.861529412117228],
[-73.891153756122137, 40.860913616167302],
[-73.89174395026582, 40.860177147816358],
[-73.894775960693622, 40.855929525634529],
[-73.895608833461807, 40.854570370097868],
[-73.897099268393688, 40.855172291445442],
[-73.898311186266056, 40.854061151051411],
[-73.898635437441371, 40.853906975436097],
[-73.898165775207474, 40.85514637639308],
[-73.900779227475368, 40.856047109728998],
[-73.901859960530388, 40.854586149762476],
[-73.903951542627013, 40.854973923518472],
[-73.905570073074671, 40.855787322394086],
[-73.905221700284358, 40.856203594802608],
[-73.904683714109552, 40.857060301724808],
[-73.905659535154044, 40.857398734161151],
[-73.903513904980173, 40.860917509647649],
[-73.902544793925955, 40.860578255336257],
[-73.901880073494439, 40.861693624619896],
[-73.901079669515283, 40.862756383422372],
[-73.899436708404068, 40.862116912065531],
[-73.897980993700216, 40.862402539869791],
[-73.897143798098838, 40.862445064649897],
[-73.898838145714237, 40.85930730834145],
[-73.895739246655353, 40.858138206764629],
[-73.894693264075087, 40.859426282309059],
[-73.893810260725033, 40.858986565131993],
[-73.893215207578095, 40.859874206155673],
[-73.891380233802607, 40.861700588263041]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK88",
"NTAName": "Borough Park",
"Shape_Leng": 39247.228009300000849,
"Shape_Area": 54005019.2672
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.976049355914128, 40.631275905646625],
[-73.97716511994669, 40.630746654129318],
[-73.976234536827533, 40.625976350730213],
[-73.977261500327359, 40.625852772813587],
[-73.977196656450033, 40.625101978558952],
[-73.977109592928386, 40.62494826019411],
[-73.97656583927008, 40.621994903193695],
[-73.977053528645669, 40.621532521807595],
[-73.975393805236763, 40.62076998723731],
[-73.97752301889588, 40.617676540767341],
[-73.977850093381008, 40.61728760629201],
[-73.97537335532121, 40.615754722382384],
[-73.975480970462158, 40.616311924641728],
[-73.973358793507458, 40.616541715296599],
[-73.97290326943272, 40.614152968384488],
[-73.973993194613755, 40.614029894242492],
[-73.97517176991694, 40.61472418588103],
[-73.974776579745352, 40.61263847492684],
[-73.986275247096671, 40.619566616589694],
[-73.985693578241822, 40.620131514447564],
[-73.994324974133008, 40.625342908797393],
[-73.994892805613773, 40.625461794191672],
[-73.994649729741724, 40.62569717922154],
[-73.995078148698482, 40.625806737837095],
[-73.996788475313068, 40.626826051412728],
[-73.997240670397304, 40.625288687028018],
[-74.002514548062962, 40.628474209562555],
[-74.001930114411266, 40.629032767891331],
[-74.007023024863528, 40.632109995476355],
[-74.005564903921581, 40.633083176414189],
[-74.007356366629963, 40.634163627238991],
[-73.999175647189091, 40.64202544202908],
[-73.995510336962681, 40.63980966713001],
[-73.98834986671028, 40.644562243887236],
[-73.983316284521123, 40.641478682833082],
[-73.982994191754642, 40.641324996848994],
[-73.980420578218812, 40.642385226905709],
[-73.979111886717774, 40.635440386439235],
[-73.976888612124611, 40.635674862028338],
[-73.976049355914128, 40.631275905646625]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK96",
"NTAName": "Rugby-Remsen Village",
"Shape_Leng": 30957.853427699999884,
"Shape_Area": 32706946.2248
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.908557905227667, 40.652095937794492],
[-73.919950630330305, 40.644707630232318],
[-73.919737369821462, 40.642778148345094],
[-73.923326545873664, 40.639900215592071],
[-73.923565259470664, 40.642499298286573],
[-73.925382331007697, 40.642384532667144],
[-73.925743894258588, 40.640014466249823],
[-73.929106231040038, 40.639795105915567],
[-73.930381443031322, 40.651734054238119],
[-73.931391166883458, 40.651689608124826],
[-73.931907438288434, 40.656537652542582],
[-73.927994651176746, 40.656802101481453],
[-73.928340175766365, 40.660060036443674],
[-73.928192579187808, 40.660177173537924],
[-73.927255053916241, 40.659337563577722],
[-73.926464242188658, 40.659814361773783],
[-73.930684654930317, 40.663620477275337],
[-73.926379705492792, 40.66551489214158],
[-73.920081670716755, 40.659857633460199],
[-73.919743995313794, 40.66077097395037],
[-73.91959479824105, 40.661995679287955],
[-73.918601680977687, 40.661118048606497],
[-73.918299362797086, 40.661161257398987],
[-73.918184931043726, 40.66072620891552],
[-73.912364588306474, 40.655513564746265],
[-73.910122556985385, 40.655851771051502],
[-73.909334993130003, 40.65280859214414],
[-73.908557905227667, 40.652095937794492]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN52",
"NTAName": "East Flushing",
"Shape_Leng": 25843.364673700001731,
"Shape_Area": 29454380.2414
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.794932462339958, 40.757798030074532],
[-73.794577269899989, 40.753563011339054],
[-73.79471901146249, 40.750647616849946],
[-73.795665449517472, 40.7502362003233],
[-73.797295246991894, 40.749435052890483],
[-73.79704716101422, 40.749332318444637],
[-73.794722649440686, 40.747599330209027],
[-73.794675688182565, 40.747211928462917],
[-73.798262354349959, 40.7469656555079],
[-73.80335214152791, 40.746431965191618],
[-73.802940341989213, 40.747408916966215],
[-73.802766292542543, 40.748122144586532],
[-73.802749109207113, 40.748606751762431],
[-73.802876664884565, 40.749765149671688],
[-73.807505993244007, 40.750136586590109],
[-73.814161719892269, 40.7461385803268],
[-73.817109256266917, 40.748760544473761],
[-73.820849288367427, 40.752241544925482],
[-73.818407829242304, 40.753830422078501],
[-73.820300677367769, 40.755514979720409],
[-73.817892456618182, 40.757086337981747],
[-73.820635933393703, 40.758872267847984],
[-73.812267781006298, 40.761130021647148],
[-73.811049631733312, 40.761417020584616],
[-73.809513726220644, 40.761299911024956],
[-73.803999712944233, 40.760270487532594],
[-73.800300390374744, 40.759702299144521],
[-73.794932462339958, 40.757798030074532]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN07",
"NTAName": "Hollis",
"Shape_Leng": 20976.332507300001453,
"Shape_Area": 22887594.8427
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.757256715091387, 40.718138601662559],
[-73.754010245305352, 40.713834901379627],
[-73.75370834622872, 40.713324636739706],
[-73.751212469699198, 40.70730658007804],
[-73.750470581827258, 40.705639931035002],
[-73.760955465506697, 40.702909577938051],
[-73.761263593406966, 40.703598940959218],
[-73.76612489376727, 40.702334485772944],
[-73.766572824688012, 40.702751621013213],
[-73.767014417766205, 40.705268131307605],
[-73.767250759389057, 40.706312557849991],
[-73.768259690524673, 40.709526367876904],
[-73.768812173405891, 40.709808123552101],
[-73.77084362930016, 40.71017162598519],
[-73.771651552886681, 40.710222372165518],
[-73.77172444678736, 40.710316818855397],
[-73.771186577621577, 40.710499509657112],
[-73.770765775534457, 40.710735237831095],
[-73.769439870949356, 40.711976892556201],
[-73.77192122006916, 40.715685044955556],
[-73.767332281529349, 40.717289796811919],
[-73.766640952436845, 40.717646613664421],
[-73.765714472406358, 40.716393378712979],
[-73.758327286730946, 40.719582089363932],
[-73.757256715091387, 40.718138601662559]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN53",
"NTAName": "Woodhaven",
"Shape_Leng": 28070.585369399999763,
"Shape_Area": 37001317.0344
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.849138373089374, 40.698282741202739],
[-73.849477635416719, 40.698195807896781],
[-73.848941289826996, 40.69755684757132],
[-73.847733255271677, 40.694775279966876],
[-73.84500533216854, 40.689243911926994],
[-73.844191509204265, 40.689474407636162],
[-73.841196056632242, 40.683351366843901],
[-73.844510637906453, 40.682415088342594],
[-73.84583237438072, 40.682106450728718],
[-73.847868176319409, 40.681486832122822],
[-73.851978646003715, 40.682564211285793],
[-73.850990893488941, 40.680568367661287],
[-73.853923891621079, 40.679686156304271],
[-73.858198361005805, 40.679430849069398],
[-73.858785769029879, 40.680630463644277],
[-73.863349435930431, 40.679351640889713],
[-73.864100966791327, 40.682372850292609],
[-73.864994045232564, 40.682128969899708],
[-73.86602666805608, 40.681918051772136],
[-73.86631496942951, 40.68324894282317],
[-73.866598483492695, 40.68526955906988],
[-73.867460888910415, 40.688415017596441],
[-73.868594781049921, 40.69388437469182],
[-73.868684543045475, 40.694034691904832],
[-73.868424897127852, 40.694718119514384],
[-73.864557089496813, 40.695520456512305],
[-73.857444477396186, 40.696912984716768],
[-73.856571852164166, 40.697064691525384],
[-73.852772386503176, 40.697557111944569],
[-73.852629485947475, 40.697652077657473],
[-73.852609660530192, 40.697805039748673],
[-73.852624465170251, 40.698114106779101],
[-73.85271130876977, 40.698414962003802],
[-73.853286206307487, 40.699287357445058],
[-73.853775126318126, 40.699909567916492],
[-73.854434556776525, 40.700602952131028],
[-73.854101164692466, 40.700513748826737],
[-73.850708422562661, 40.700203125104359],
[-73.849138373089374, 40.698282741202739]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK44",
"NTAName": "Madison",
"Shape_Leng": 26237.257682100000238,
"Shape_Area": 27379161.9311
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.937537493740408, 40.608557390257509],
[-73.939726139327092, 40.607132915122868],
[-73.934262667258807, 40.60223071136695],
[-73.935032745001621, 40.601733790398171],
[-73.934471589014166, 40.601231511897332],
[-73.942889540614971, 40.600318650198759],
[-73.942484733407397, 40.5982003656123],
[-73.956927197136295, 40.596612076311288],
[-73.957757459885329, 40.600985889105324],
[-73.956830016332077, 40.60108734857495],
[-73.958592784957673, 40.610403030935025],
[-73.953598888529072, 40.610949865606365],
[-73.952587869489719, 40.611112239589012],
[-73.952565530906853, 40.610987184733915],
[-73.949783804506765, 40.611371750477637],
[-73.950265148829615, 40.613924351797365],
[-73.947426087808068, 40.614224600553648],
[-73.945736919120279, 40.615363406756607],
[-73.944827709962937, 40.616046209109363],
[-73.94354698000032, 40.609346555698174],
[-73.942311758593306, 40.608268197325799],
[-73.939347034471311, 40.610187141369067],
[-73.937537493740408, 40.608557390257509]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK27",
"NTAName": "Bath Beach",
"Shape_Leng": 22382.433395200001542,
"Shape_Area": 20535358.6786
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.002003947434375, 40.594132371275634],
[-74.002682854555715, 40.595086781232645],
[-74.003289972618958, 40.595764667910359],
[-74.003634020132424, 40.596080599242896],
[-74.005526220520593, 40.597539154070653],
[-74.009217239049079, 40.599844045152338],
[-74.010412388943308, 40.600475181658069],
[-74.012369816027004, 40.601349257116162],
[-74.014783637167469, 40.60208210297079],
[-74.015824048287158, 40.602294980866354],
[-74.017234831395612, 40.602475457625395],
[-74.017992279368926, 40.60249195235383],
[-74.018323472168518, 40.60241765113043],
[-74.019135639688301, 40.602612754504833],
[-74.019427608238104, 40.602871578348058],
[-74.018231450514392, 40.604108472503043],
[-74.018119049732988, 40.604315222826664],
[-74.017508685311739, 40.604850497235326],
[-74.017467114468488, 40.604965104326283],
[-74.015498550096368, 40.606841524276888],
[-74.017019101547376, 40.607654416971123],
[-74.010504035874078, 40.613896611492471],
[-74.008303834132917, 40.612568000045464],
[-74.00094408424448, 40.608639710173208],
[-74.00264412402818, 40.607257175320292],
[-74.004934489041645, 40.605074406401187],
[-74.000323538208931, 40.602620291869876],
[-74.000022660966593, 40.602907315726533],
[-73.995593206967172, 40.600232221722237],
[-73.999965030103397, 40.595994303267616],
[-74.002003947434375, 40.594132371275634]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK45",
"NTAName": "Georgetown-Marine Park-Bergen Beach-Mill Basin",
"Shape_Leng": 89682.641677699997672,
"Shape_Area": 69306738.2796
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.917160714854816, 40.631730125996974],
[-73.91738424050375, 40.631621200408595],
[-73.917506573358921, 40.63144181608542],
[-73.917518232095503, 40.631340259516669],
[-73.917319990124554, 40.631007152718503],
[-73.915354603015416, 40.629991694065488],
[-73.903961066453022, 40.624833615553555],
[-73.902693332719778, 40.624213334873239],
[-73.902962459198278, 40.623873423210007],
[-73.90297492804936, 40.623741614998735],
[-73.902881856369973, 40.623541946245076],
[-73.902824816528579, 40.623475991194745],
[-73.902649351847515, 40.623424753989028],
[-73.902351418311468, 40.623476698946902],
[-73.902222727844332, 40.623179904360569],
[-73.901973121459747, 40.622910587526071],
[-73.901732050503938, 40.622898877175572],
[-73.901381005326755, 40.622777859469757],
[-73.900987175163692, 40.622541386348161],
[-73.90093279160557, 40.622321071542757],
[-73.900818247992632, 40.622138497824722],
[-73.900906937862999, 40.62205961644279],
[-73.900905773703869, 40.621982448458681],
[-73.900704611160549, 40.621628794321403],
[-73.900355999478776, 40.621612104939061],
[-73.899655753495452, 40.62179949851383],
[-73.899352137923714, 40.621754759712871],
[-73.898974308788567, 40.621825280790979],
[-73.898734200702066, 40.621824405286226],
[-73.89856919775039, 40.621781116612368],
[-73.89811767568176, 40.621851561121147],
[-73.897636900146836, 40.621766571322333],
[-73.897445943300838, 40.621687647983187],
[-73.896994504372813, 40.621673509523497],
[-73.89684302276325, 40.621620064329058],
[-73.896750819657086, 40.62151432225977],
[-73.896459211035506, 40.621415907325485],
[-73.896300061135747, 40.621071292303455],
[-73.896288477370405, 40.620736499471384],
[-73.896222433123484, 40.620840220506864],
[-73.896078422667102, 40.620606288919134],
[-73.896071842105528, 40.620506015579451],
[-73.895853052682867, 40.620387379663143],
[-73.895729329956083, 40.620240915258151],
[-73.895777403446999, 40.620019920532073],
[-73.895727739529974, 40.619945491650974],
[-73.895665503505569, 40.619939533809564],
[-73.895705097712622, 40.619889422301569],
[-73.895613885020083, 40.619801286648034],
[-73.89571934668956, 40.619529950159304],
[-73.895610447436113, 40.619350533385017],
[-73.895720657469951, 40.619313085152264],
[-73.895852938513372, 40.619144619367795],
[-73.895996738342816, 40.618817542596084],
[-73.896083577460431, 40.618382790884361],
[-73.896354153867648, 40.61811034041996],
[-73.896453479745162, 40.618075570507784],
[-73.896397126155748, 40.617901774118351],
[-73.896483754077465, 40.617831695222165],
[-73.896451300380704, 40.617738974400858],
[-73.896547152951968, 40.617690422859297],
[-73.896643352913415, 40.617347712142831],
[-73.896624240283899, 40.617128907324677],
[-73.896453811969437, 40.616769981770169],
[-73.896466878932557, 40.616426839921104],
[-73.896512974468735, 40.61636317468151],
[-73.896451293302604, 40.616303364396877],
[-73.896460027079542, 40.616129873890458],
[-73.896331313616017, 40.616048265419067],
[-73.896255786527504, 40.616090851332267],
[-73.896170524591383, 40.616001183703645],
[-73.896245658360684, 40.615863956345862],
[-73.896167449532186, 40.615824444211142],
[-73.896173369775823, 40.615654491230984],
[-73.896076573528632, 40.615616278518445],
[-73.896105246711812, 40.615545488759565],
[-73.895987253043103, 40.615450714099552],
[-73.895983711609063, 40.615273232518803],
[-73.895734451529648, 40.6148877471201],
[-73.89580527745035, 40.614809365716852],
[-73.895976378573181, 40.614870757057446],
[-73.896028816679191, 40.614804599549416],
[-73.895861128941874, 40.614518137494748],
[-73.895589999828928, 40.614437689708659],
[-73.895558907127253, 40.614351748898237],
[-73.895502212944507, 40.614421772581309],
[-73.895418194324606, 40.614414010107062],
[-73.894735686119148, 40.614047204541144],
[-73.89427581474105, 40.613882643248729],
[-73.893951650160787, 40.613838345484588],
[-73.893150599765889, 40.613890222015065],
[-73.892499262497665, 40.613792311178592],
[-73.89189118166037, 40.613563922169114],
[-73.891340284519615, 40.613256206397978],
[-73.89095414564764, 40.612834046814491],
[-73.891044106447879, 40.612509560997907],
[-73.891208189975117, 40.612427673917111],
[-73.8914143047419, 40.612125447699476],
[-73.891664235847699, 40.612053110612528],
[-73.89174190772178, 40.612129681247986],
[-73.891829227862701, 40.612032103728758],
[-73.892096337686567, 40.611960578803185],
[-73.892086161103038, 40.612061879769861],
[-73.892152844637053, 40.612073909123751],
[-73.892748795211659, 40.61172983013126],
[-73.893114997824298, 40.611762834719059],
[-73.893696379544892, 40.61151573726233],
[-73.893932400721994, 40.611536596724171],
[-73.894042279014997, 40.611428333563168],
[-73.893963850609026, 40.611214222580756],
[-73.893893438745266, 40.611168538599344],
[-73.89383232489574, 40.611232545619885],
[-73.893580855394859, 40.611165724957999],
[-73.893608348220894, 40.611045116072575],
[-73.893549388530431, 40.61100089763643],
[-73.89308853752236, 40.611193374279729],
[-73.892907709993878, 40.61120865966457],
[-73.892624356045786, 40.611394080184304],
[-73.892432899591824, 40.611412236895475],
[-73.892022216480882, 40.61155825816995],
[-73.891893891525555, 40.611534670245319],
[-73.891845769807034, 40.61160338259247],
[-73.891767769942177, 40.611595321219774],
[-73.891767332986063, 40.61168666821164],
[-73.891624537548054, 40.611791082358003],
[-73.89145981786119, 40.611822986803496],
[-73.891348425859874, 40.611927979248406],
[-73.890997093231917, 40.612052452416187],
[-73.891159507512569, 40.612177193161607],
[-73.891077946327016, 40.61227686136592],
[-73.890588275697823, 40.612133200172721],
[-73.890333906982747, 40.612011473226673],
[-73.890136980908807, 40.611848656498609],
[-73.889791631960961, 40.61168591567516],
[-73.889702081309153, 40.61156330202882],
[-73.889784517761953, 40.610955244005332],
[-73.890302113894904, 40.610317656862499],
[-73.890661065890782, 40.610022356259606],
[-73.891475106314772, 40.609506914455544],
[-73.891944614468116, 40.609102252148276],
[-73.891992510892635, 40.60910476805298],
[-73.89186552721651, 40.609322584429783],
[-73.891982044674805, 40.609384973940699],
[-73.891793201432037, 40.609393304615601],
[-73.891738464605226, 40.609455587972654],
[-73.891793010135999, 40.609467249270594],
[-73.891769406823116, 40.609519268959232],
[-73.891953811086793, 40.609450108352767],
[-73.892107979380711, 40.609236762284624],
[-73.892267355249174, 40.609165273147262],
[-73.892234151575636, 40.609096731995741],
[-73.892372108775163, 40.60872812515516],
[-73.89222320475713, 40.608627086858128],
[-73.892338878703342, 40.608631312461974],
[-73.892423272076968, 40.608558242738695],
[-73.892320814894219, 40.608487495076758],
[-73.892224971290858, 40.608559100004079],
[-73.892170359374816, 40.608544721357269],
[-73.892286528905203, 40.608242242865565],
[-73.892483241075212, 40.608153304565327],
[-73.89253453490474, 40.60774525542687],
[-73.892729449992501, 40.607227192316458],
[-73.892820520826646, 40.607143478027425],
[-73.893112024338635, 40.607052047051468],
[-73.893214429386177, 40.606861268913498],
[-73.893346214200164, 40.606743446234631],
[-73.894266706288008, 40.606443714576237],
[-73.894666839178754, 40.606455143928628],
[-73.894861684343596, 40.606404763206385],
[-73.895496865453623, 40.60601168248963],
[-73.89591344490745, 40.60584471127703],
[-73.896192514185543, 40.605821989726159],
[-73.896725731512035, 40.605636537517142],
[-73.89702463446018, 40.60561901997692],
[-73.897181954937963, 40.605564017258658],
[-73.897406328463134, 40.605581015408056],
[-73.897870998300832, 40.605448251610099],
[-73.898108295289475, 40.605445937561818],
[-73.898338781177856, 40.605303659787957],
[-73.898647189184786, 40.605297980361108],
[-73.899161817247702, 40.605528084848686],
[-73.899381884997283, 40.605462594058622],
[-73.899593327567658, 40.605530329575089],
[-73.899868803638654, 40.605524640544026],
[-73.899906560602105, 40.605635234464643],
[-73.900150724246799, 40.605870652911698],
[-73.900330806885265, 40.606145336213601],
[-73.900518589555844, 40.606277762992313],
[-73.900876725100986, 40.60698012084471],
[-73.900565953040314, 40.607474509790052],
[-73.900510415142236, 40.608339612393571],
[-73.900440358230014, 40.608567899093984],
[-73.900486417634625, 40.608706919113303],
[-73.900476857148135, 40.609217469826852],
[-73.900251067894501, 40.609517405479053],
[-73.900216437209806, 40.609988843136357],
[-73.900156198705872, 40.61007643818634],
[-73.900437791174511, 40.610242324307812],
[-73.900448116256982, 40.61044477136128],
[-73.900708374368847, 40.610570541757362],
[-73.900918683802857, 40.610777413564136],
[-73.901029853782532, 40.610822733140502],
[-73.901111169905448, 40.610989602768164],
[-73.901349974006564, 40.611088615101949],
[-73.901440340473115, 40.611325015308104],
[-73.90142267880158, 40.611394253992536],
[-73.901355768882169, 40.611369037244394],
[-73.901309498685592, 40.611427831216361],
[-73.901333034586528, 40.611717882905936],
[-73.901614616502044, 40.611864048098319],
[-73.901987146031232, 40.611745400968069],
[-73.902289894253414, 40.611961574676791],
[-73.902487110433569, 40.611861858491693],
[-73.902493930512463, 40.611814999032823],
[-73.901192535313967, 40.610563817547117],
[-73.901329626594801, 40.610481042600682],
[-73.901248368655672, 40.610580274499064],
[-73.902535551210548, 40.611826211199393],
[-73.902650779467862, 40.611780621164144],
[-73.902360320962103, 40.611980412182518],
[-73.902406936018224, 40.612016016677771],
[-73.90271854260655, 40.611826025295905],
[-73.902638277474097, 40.611906522555302],
[-73.902926669834358, 40.612159441976388],
[-73.903043928125001, 40.612095214987221],
[-73.90291750370362, 40.612186543448558],
[-73.902629182453495, 40.611925809170778],
[-73.902422747175791, 40.612033560004718],
[-73.905871052773719, 40.615063313977224],
[-73.90590695505027, 40.615038572703412],
[-73.905734559671941, 40.614882973944304],
[-73.905885710486615, 40.615001826090172],
[-73.905997905796369, 40.614925896928348],
[-73.90603328990818, 40.614953389220034],
[-73.905928318806787, 40.614990756644112],
[-73.905966382228911, 40.615024100255702],
[-73.905879376209299, 40.615077461411374],
[-73.906965151166744, 40.6160638715007],
[-73.906962836450759, 40.616114017578788],
[-73.907172911498478, 40.616009875338371],
[-73.906738487323594, 40.616295919990634],
[-73.906810231729906, 40.616359594280951],
[-73.907256856310099, 40.616087581377279],
[-73.907083469683371, 40.616221367023186],
[-73.90722592371317, 40.616351525931819],
[-73.907412021943529, 40.616235218723951],
[-73.907442554121417, 40.616258535198014],
[-73.907021606784454, 40.616533600356725],
[-73.907105953990239, 40.616609860214233],
[-73.90752735132169, 40.616344432548892],
[-73.90724169448653, 40.616551501888097],
[-73.907475037057168, 40.616712744568424],
[-73.907589771735402, 40.616629376451222],
[-73.907678828620064, 40.61669544000803],
[-73.907551356022424, 40.616780739630528],
[-73.907652295122034, 40.616915756619228],
[-73.907689410248409, 40.616947089045517],
[-73.907785889354585, 40.616893557888453],
[-73.907968065386143, 40.617046586776979],
[-73.907764597670081, 40.617217174557318],
[-73.907811431873398, 40.617264864057631],
[-73.907754038620226, 40.617316440382986],
[-73.907813886033438, 40.617374067585814],
[-73.90815289957095, 40.617161891990783],
[-73.90839229831542, 40.617388428518858],
[-73.9086035159349, 40.617265496551596],
[-73.908790880836008, 40.617436396721871],
[-73.90886910990892, 40.617390793058561],
[-73.908633339129693, 40.617167854909361],
[-73.908663928812715, 40.617150410808485],
[-73.908836910448244, 40.617311646627101],
[-73.909071451539532, 40.617160438331808],
[-73.908354032146789, 40.616530998961501],
[-73.908794208191651, 40.616872957324595],
[-73.909138394482866, 40.61663255111025],
[-73.909138531866503, 40.616531621729024],
[-73.908105604763421, 40.615669016428463],
[-73.907973063905189, 40.615736844061168],
[-73.90815663917553, 40.615601124052056],
[-73.908123458224992, 40.615651562286807],
[-73.909176751053977, 40.616521946980207],
[-73.909168941531163, 40.61664616184899],
[-73.908814562085894, 40.616890441882397],
[-73.908957061287225, 40.616991484819309],
[-73.909644061063162, 40.616575371500019],
[-73.909597409103441, 40.616392669799318],
[-73.909007827306723, 40.615772786907236],
[-73.908650246762718, 40.615484555687146],
[-73.908574744817571, 40.615440196311852],
[-73.908405398331965, 40.615436708573355],
[-73.908342953446606, 40.615373123269883],
[-73.907855961970597, 40.615205954146468],
[-73.907405828864313, 40.614753403411832],
[-73.907301533842869, 40.614808913007636],
[-73.906872397809693, 40.614262558343306],
[-73.906744675872787, 40.614302164863027],
[-73.905443787031089, 40.613014508002877],
[-73.905355130871214, 40.613066057932535],
[-73.905050533735675, 40.612902997003332],
[-73.905094881711378, 40.612863323554244],
[-73.904962106602298, 40.612793721641296],
[-73.90490995852835, 40.612821475765905],
[-73.904241038593369, 40.612362273218736],
[-73.904374107663003, 40.612225386296942],
[-73.904288230370909, 40.612155822773069],
[-73.90429103725161, 40.612014856128788],
[-73.904208140475362, 40.611955152098496],
[-73.904106298829547, 40.612042410286918],
[-73.904043325293443, 40.611998686431654],
[-73.904160838116155, 40.611972581088295],
[-73.904099299028957, 40.611927767007693],
[-73.904140891451718, 40.611896139383681],
[-73.903509807822431, 40.611406490372566],
[-73.90331047012576, 40.611547163361053],
[-73.903283289617008, 40.611519846159062],
[-73.903494074477777, 40.611389008742627],
[-73.903338560473046, 40.61127148761561],
[-73.90313578772971, 40.610967538157638],
[-73.902864961312005, 40.610881933282514],
[-73.902745046034383, 40.61093146873197],
[-73.902629068643378, 40.610810188398268],
[-73.902682779287829, 40.610752722666966],
[-73.902391381753475, 40.610482449724778],
[-73.902323613343938, 40.610504232585065],
[-73.902258599662815, 40.610422772599911],
[-73.902214427659885, 40.610343315529427],
[-73.902224976395217, 40.610255963622031],
[-73.902274490747345, 40.610246077790592],
[-73.902205163603497, 40.609553084559252],
[-73.902074908186961, 40.609549003555671],
[-73.90214599026838, 40.609042765059563],
[-73.902103361635852, 40.609037916486457],
[-73.901961642197634, 40.608619700032634],
[-73.901961965842887, 40.608399311254281],
[-73.90201440743094, 40.608350681397596],
[-73.901878034781149, 40.607807784152044],
[-73.901897453423814, 40.607233177532706],
[-73.901677396064741, 40.606094549133253],
[-73.901700811031375, 40.605872221300025],
[-73.901642118560318, 40.605763360739431],
[-73.901776698099795, 40.605674686555822],
[-73.901897100694868, 40.605729611795752],
[-73.905243009921023, 40.604910090324367],
[-73.905391814223591, 40.60522680882984],
[-73.905335344731512, 40.605324270159592],
[-73.905424400032231, 40.605540297589343],
[-73.905606903770931, 40.605897858643459],
[-73.905974611778589, 40.606384028704312],
[-73.906234223393668, 40.606353979504618],
[-73.907539311894951, 40.606369065640941],
[-73.908110012335158, 40.606273265343567],
[-73.908216833088332, 40.606372978591644],
[-73.908373765149491, 40.606396627742306],
[-73.908448153608916, 40.606616746739654],
[-73.908639595354302, 40.606658722047818],
[-73.908829198661337, 40.606564964995272],
[-73.908492366851078, 40.605772137123033],
[-73.908241104174948, 40.605322778618245],
[-73.908033061637624, 40.60535860211774],
[-73.908403615745996, 40.605243296557177],
[-73.908295868972118, 40.605305501489951],
[-73.908734381268914, 40.606153159618422],
[-73.908777080786777, 40.606359146617869],
[-73.908843057689595, 40.606464132002095],
[-73.908925275164322, 40.606466503386791],
[-73.908854973928584, 40.606494719034984],
[-73.908885744881061, 40.606536518828904],
[-73.909062796469271, 40.606466146210863],
[-73.909338049831504, 40.606477603024715],
[-73.909845283266492, 40.606168305507104],
[-73.909808838019757, 40.606080860049168],
[-73.909851548454697, 40.605999722177678],
[-73.909776613825201, 40.605822677231458],
[-73.909609434184674, 40.605657795045516],
[-73.908985357891964, 40.605150509643025],
[-73.908945318632163, 40.605049426528069],
[-73.90885691315674, 40.605060073797084],
[-73.908613580079106, 40.604516547860001],
[-73.908544368670235, 40.604445855981581],
[-73.908457966431413, 40.604461098354776],
[-73.908325369011152, 40.604073373919114],
[-73.908899449565325, 40.603913672523568],
[-73.908933757392006, 40.603976528677052],
[-73.909134529070073, 40.603944106848786],
[-73.910922700211813, 40.603505476100665],
[-73.913290039995516, 40.603878435837402],
[-73.913651198255423, 40.603982513837451],
[-73.913625338335351, 40.604016487075725],
[-73.913777765130931, 40.60420645695379],
[-73.913841421729643, 40.604157684185125],
[-73.914977790749333, 40.605204094547048],
[-73.914913452881123, 40.605245386255028],
[-73.915043890992607, 40.605355722105926],
[-73.91509616293007, 40.60532360703462],
[-73.915918876913452, 40.606062199400448],
[-73.91626594416158, 40.606440633658835],
[-73.916348285336852, 40.606460597248315],
[-73.916735565521449, 40.606814561550628],
[-73.916697368903584, 40.606835969556208],
[-73.916755540345108, 40.60690644261107],
[-73.916604421479519, 40.607089393444681],
[-73.91670644426722, 40.607163375565783],
[-73.916614652647652, 40.607205259800928],
[-73.916721157590416, 40.607624846780119],
[-73.916322300175267, 40.608675662668979],
[-73.916783944328813, 40.608773883387016],
[-73.916570739834256, 40.609423539545915],
[-73.916625683735603, 40.609436836658134],
[-73.916839811187685, 40.608760014720509],
[-73.916487009273325, 40.608699208722328],
[-73.916509245359308, 40.608629754090003],
[-73.916889645213701, 40.608710013686427],
[-73.916828032437593, 40.608906057366703],
[-73.916998670983659, 40.608936730312031],
[-73.917051658418259, 40.608814130587739],
[-73.917088385033779, 40.608820854395923],
[-73.917028228078465, 40.608974877413914],
[-73.916819644637584, 40.608931385879508],
[-73.916656765334722, 40.609436749970754],
[-73.916810370249209, 40.609466915624772],
[-73.91679953156698, 40.60949419172892],
[-73.916703792895319, 40.609472712342061],
[-73.916680752829549, 40.609551335120948],
[-73.916640998755938, 40.609545431890389],
[-73.916663797959615, 40.609457285588086],
[-73.916566040658282, 40.609437822677712],
[-73.916385851452148, 40.610088892904862],
[-73.916276781581288, 40.610109589456947],
[-73.916060771325888, 40.610430509362885],
[-73.916164751036774, 40.610515575076569],
[-73.915628981089569, 40.610883477544874],
[-73.914920359321229, 40.611266657338071],
[-73.914999509212961, 40.611335728809173],
[-73.914890011056585, 40.611393159492586],
[-73.914818273280005, 40.611342077848143],
[-73.914649330545615, 40.611455026072946],
[-73.914495422059829, 40.611653223664838],
[-73.914862590537737, 40.613298542099741],
[-73.914763365250963, 40.613370238319312],
[-73.914792898470552, 40.613532687277996],
[-73.914869778572466, 40.61349308208824],
[-73.914934187904336, 40.613958155054931],
[-73.913860531267645, 40.614642268066177],
[-73.914079859342507, 40.614888233399455],
[-73.914184093778005, 40.614778767589279],
[-73.914226195958079, 40.614803351891275],
[-73.914112061584206, 40.614901478013294],
[-73.914280726633791, 40.614938816159963],
[-73.914500912467943, 40.61486515732927],
[-73.914668757743939, 40.614675250550903],
[-73.914777805978744, 40.614677220004118],
[-73.916420990034979, 40.613569354692672],
[-73.915914521106856, 40.61384537631232],
[-73.915956023701554, 40.613819782939139],
[-73.915725383033731, 40.613618030803664],
[-73.915768072906161, 40.613540333335273],
[-73.915750042609659, 40.613617195822812],
[-73.915971731754667, 40.613807834864033],
[-73.916247689596602, 40.613626100288585],
[-73.915884908521221, 40.613328587196875],
[-73.915745852963511, 40.613384859698321],
[-73.915965725002678, 40.613236396468906],
[-73.91588941550161, 40.613309799605631],
[-73.916264528326067, 40.613605612704532],
[-73.916386796837941, 40.613529680740314],
[-73.916337536831293, 40.613483520817091],
[-73.916395867458888, 40.613446834034669],
[-73.915993071975024, 40.612881939344767],
[-73.915870865363658, 40.612910037390506],
[-73.916003188494813, 40.612859738591276],
[-73.916418279301581, 40.613450267086947],
[-73.916458662060876, 40.613424671042004],
[-73.916505683026088, 40.613469121999323],
[-73.916499121039905, 40.613520542097959],
[-73.916628043711569, 40.613443589265444],
[-73.915731819930826, 40.611830844514259],
[-73.916746523893053, 40.611178455468142],
[-73.916589364860442, 40.61109075400428],
[-73.916715821148173, 40.611039850701964],
[-73.916673112740312, 40.611005823250551],
[-73.916829208125137, 40.611118077220304],
[-73.918110366790131, 40.61020839405812],
[-73.918102614990005, 40.610124283595916],
[-73.917731855167943, 40.609782538235798],
[-73.917866386269637, 40.609327233800819],
[-73.917817194731157, 40.609317498539191],
[-73.917678707573998, 40.609662863943683],
[-73.917962700830714, 40.608785937120309],
[-73.917819727714303, 40.609304300065872],
[-73.917874002428107, 40.609311327668316],
[-73.918029644538777, 40.608846696741651],
[-73.918556661205955, 40.608498309043348],
[-73.91809925464328, 40.608093358258913],
[-73.918005005671404, 40.608149778515092],
[-73.918187286560439, 40.608024580911184],
[-73.918123037933839, 40.608080694257808],
[-73.91857357570953, 40.608487946287326],
[-73.918888524179835, 40.608294458966398],
[-73.91900737147327, 40.608267254971075],
[-73.918248934341136, 40.607588872927273],
[-73.918138148899715, 40.607645386907613],
[-73.918362467376383, 40.607501369418706],
[-73.918410397902647, 40.607544731667574],
[-73.918307945325878, 40.607610507708422],
[-73.919023107653118, 40.608256868199412],
[-73.919353984841123, 40.608042922287694],
[-73.918378269401543, 40.607174021935734],
[-73.918252690929535, 40.607229350640552],
[-73.918503004139211, 40.607071236026989],
[-73.918401593596457, 40.607154852898063],
[-73.919371004958634, 40.608032641242289],
[-73.919503589189262, 40.607974903975204],
[-73.9195220973007, 40.607738797434308],
[-73.919241350115399, 40.607385413860598],
[-73.918684718296831, 40.606966356992828],
[-73.918583421808677, 40.606771833591665],
[-73.917949805671512, 40.60620925234263],
[-73.918527608333875, 40.606113366640464],
[-73.91970928731125, 40.607302162610544],
[-73.920658617318239, 40.606754542711137],
[-73.921584291111984, 40.607639085394126],
[-73.924441444150517, 40.605793569314962],
[-73.926248851137785, 40.607413522260032],
[-73.92986880245914, 40.605071341460771],
[-73.933513107334079, 40.608343455810051],
[-73.934231576277128, 40.607897715187541],
[-73.936046276153832, 40.609514868916904],
[-73.937537493740408, 40.608557390257509],
[-73.939347034471311, 40.610187141369067],
[-73.942311758593306, 40.608268197325799],
[-73.94354698000032, 40.609346555698174],
[-73.944827709962937, 40.616046209109363],
[-73.943957795383156, 40.616816309464539],
[-73.943469618835749, 40.617385001869081],
[-73.940789140870748, 40.617696789890935],
[-73.936866996067508, 40.620253281232721],
[-73.933204575144728, 40.616970442250853],
[-73.931731792137199, 40.617926921394435],
[-73.92629604565613, 40.613116799076955],
[-73.92640044535041, 40.6144785355309],
[-73.920624003079567, 40.614838681674918],
[-73.920526941074982, 40.613942695006216],
[-73.916903027371049, 40.616274229911049],
[-73.917167794562587, 40.618387962165059],
[-73.918606496348843, 40.632090414721098],
[-73.917160714854816, 40.631730125996974]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN22",
"NTAName": "East Village",
"Shape_Leng": 13539.086490199999389,
"Shape_Area": 10895063.5716
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.982556292978032, 40.731350134554567],
[-73.978026979508201, 40.72943306011252],
[-73.983823872981901, 40.721472872066897],
[-73.992603221984396, 40.724136449683371],
[-73.991363881381531, 40.727559783459121],
[-73.991358690970443, 40.727782470185666],
[-73.99050558603588, 40.73056495673773],
[-73.990390100026644, 40.73128852433004],
[-73.989868521395636, 40.733527114554889],
[-73.989902959700501, 40.734434790136874],
[-73.982556292978032, 40.731350134554567]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN15",
"NTAName": "Clinton",
"Shape_Leng": 35039.606575600002543,
"Shape_Area": 18381428.3227
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.993831082030965, 40.772931787348064],
[-73.993502621808304, 40.772751633100519],
[-73.993874451260695, 40.77223816788824],
[-73.982365451056381, 40.767392153213493],
[-73.991632713106384, 40.754706805009576],
[-73.997306714111957, 40.757110507033538],
[-73.995474501670685, 40.759626857017516],
[-74.00127796266635, 40.762075824671854],
[-74.001533090669824, 40.762644598127579],
[-74.003757349715968, 40.763582241640563],
[-74.003612147941752, 40.763777043909698],
[-74.001386036986005, 40.762850095001873],
[-74.000973080220163, 40.76342027172565],
[-74.003149769889902, 40.764332888184619],
[-74.002948095157194, 40.764616835428725],
[-74.003061612340659, 40.76466578265341],
[-74.003161945770444, 40.764612610454606],
[-74.003222755853614, 40.764638037670203],
[-74.003100881628953, 40.76474574810679],
[-73.999927123677296, 40.763406528479315],
[-73.999622634581868, 40.763559081210445],
[-73.999150981540069, 40.764205259582688],
[-74.002288023714783, 40.76556154329262],
[-74.002024543964367, 40.765893266570359],
[-73.998884731749882, 40.764569377048488],
[-73.998576385305384, 40.764998607270762],
[-73.998688706945615, 40.765208569947248],
[-73.99843830371465, 40.765316213833842],
[-73.998270903744498, 40.765552233413246],
[-74.001542179373061, 40.766944702532648],
[-74.001561806415822, 40.766996499368254],
[-74.001394371594984, 40.767230047733001],
[-74.001314696360026, 40.767251119547353],
[-73.998066759053543, 40.765871881135688],
[-73.997378084479678, 40.76682338537438],
[-74.000628374614081, 40.768203111058689],
[-74.000649505304182, 40.768245236105543],
[-74.000454893367163, 40.768504195177421],
[-74.000385864229713, 40.76850419542928],
[-73.997155889492106, 40.767128696172776],
[-73.99645715471145, 40.768098815795639],
[-73.999735902478534, 40.769506177331515],
[-73.999555189307856, 40.769750807740039],
[-73.999472537340225, 40.769764214969129],
[-73.997071761054144, 40.768732643576854],
[-73.997026288210719, 40.768795515623836],
[-73.99715035543251, 40.768847387713393],
[-73.997010714138256, 40.769028790653621],
[-73.996893112462658, 40.768979628819388],
[-73.996571265056801, 40.769424568273827],
[-73.999026828329036, 40.770463272982049],
[-73.99876206914314, 40.770825056709192],
[-73.996313270881913, 40.769798836336427],
[-73.995880043516877, 40.770400579012232],
[-73.996016931961975, 40.770454848886168],
[-73.995900774911391, 40.770613123500951],
[-73.995767332836209, 40.77055459545128],
[-73.995424744363035, 40.771031615167942],
[-73.995756482790085, 40.771160668465804],
[-73.995708590699479, 40.771225812532919],
[-73.995797740865598, 40.771282562764085],
[-73.995816876451499, 40.771256516415555],
[-73.996001757490504, 40.77130746533053],
[-73.995899901670441, 40.77145029858211],
[-73.995854373189175, 40.771499180748457],
[-73.995791177487803, 40.771475518820388],
[-73.995828058862429, 40.771421667222398],
[-73.995729933144077, 40.771378818793707],
[-73.995751234128306, 40.771354281774613],
[-73.995305663653568, 40.771196004909498],
[-73.995123955568857, 40.77145073826707],
[-73.994957334198048, 40.771449190697709],
[-73.994925821206365, 40.771516042405473],
[-73.99500915438729, 40.771607339441537],
[-73.994976885608367, 40.771658774923331],
[-73.997112185386072, 40.772553236699508],
[-73.996909469027869, 40.772832945659943],
[-73.994774079308215, 40.771929547530185],
[-73.994445013594913, 40.772377126588331],
[-73.995455150616976, 40.772802675029112],
[-73.995544924547431, 40.772674813826143],
[-73.996448946676338, 40.77305684199672],
[-73.996355589210978, 40.77317889165252],
[-73.996229720680475, 40.773128974542736],
[-73.99614329133081, 40.773247541563457],
[-73.996561595437583, 40.773410941448454],
[-73.996685444311666, 40.77350368804624],
[-73.994341920577284, 40.772524781943453],
[-73.994163284563086, 40.772487190518689],
[-73.993831082030965, 40.772931787348064]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN06",
"NTAName": "Manhattanville",
"Shape_Leng": 17049.402778700001363,
"Shape_Area": 10648102.9562
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.946078286742264, 40.821263216061922],
[-73.948676818075469, 40.815692286017402],
[-73.94919960080091, 40.814720854585978],
[-73.950350192090781, 40.813159389289815],
[-73.952101252153682, 40.811442853501511],
[-73.954080584077133, 40.812280112895799],
[-73.955706901234535, 40.814143960040298],
[-73.956269580034117, 40.813375023165094],
[-73.95949328803863, 40.817007473778872],
[-73.962031057959905, 40.818086330979163],
[-73.959998922293451, 40.820382944802269],
[-73.959814626745853, 40.820297874198786],
[-73.959130615806288, 40.821168953774738],
[-73.959262554037423, 40.821235655358571],
[-73.959302635986774, 40.821189897523034],
[-73.959426244158038, 40.821252381738169],
[-73.959146857151907, 40.821571328550938],
[-73.959032942219295, 40.821513746228703],
[-73.959234672601838, 40.821277824768067],
[-73.959089603062452, 40.821206247056153],
[-73.958818922339958, 40.821518524846745],
[-73.958941729417091, 40.821569364009548],
[-73.958745236604997, 40.821805511973615],
[-73.959000183560505, 40.822409728374573],
[-73.959113040902636, 40.822454964645772],
[-73.959229762796213, 40.82228691013254],
[-73.959909994443962, 40.822571119821973],
[-73.959603324602782, 40.822994686783296],
[-73.958926147183021, 40.822711755441333],
[-73.959049533317085, 40.822541335368214],
[-73.958867454333074, 40.822450239228033],
[-73.958645851476575, 40.821904369631739],
[-73.958527314581005, 40.821843756651887],
[-73.95820019287855, 40.822283136917846],
[-73.958130633055944, 40.822531090455783],
[-73.957939049091223, 40.822774353547267],
[-73.958228382491924, 40.822887867101095],
[-73.958143127692338, 40.823020721768835],
[-73.959508979391885, 40.823595788902772],
[-73.956340103756133, 40.823092327507069],
[-73.955730749830622, 40.822891257747735],
[-73.950828799914348, 40.820827937097256],
[-73.949921943875836, 40.822072314227633],
[-73.948540297683181, 40.821487622812967],
[-73.948082898156713, 40.822108021510942],
[-73.946078286742264, 40.821263216061922]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK50",
"NTAName": "Canarsie",
"Shape_Leng": 43872.917273500002921,
"Shape_Area": 82069174.4495
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.888339293223368, 40.646710228415621],
[-73.888536400004227, 40.64678842689959],
[-73.888509505669191, 40.646881164179909],
[-73.888467879233133, 40.646899734050592],
[-73.888291830770683, 40.646718719070677],
[-73.888339293223368, 40.646710228415621]
]
],
[
[
[-73.891218534690594, 40.649987698622624],
[-73.890567929885705, 40.649208632935014],
[-73.890852923009859, 40.649374098648643],
[-73.89101577841609, 40.649342007892599],
[-73.891204213096685, 40.649126899579983],
[-73.891096114747, 40.648812499079028],
[-73.890874443055054, 40.648545703852385],
[-73.890506276339096, 40.648245028922176],
[-73.890237915493969, 40.64792341858989],
[-73.889450742937356, 40.647173955094473],
[-73.889350865998793, 40.647034698864168],
[-73.889481525760701, 40.646912755068207],
[-73.888796908486725, 40.646050258056327],
[-73.888761083146576, 40.646069912861883],
[-73.889413948168965, 40.646892999651293],
[-73.889376029750437, 40.646974754423134],
[-73.889187993405457, 40.647079514888112],
[-73.889044875246938, 40.647046973045207],
[-73.888985776438801, 40.64716344527848],
[-73.888865417782142, 40.647220035735607],
[-73.888760762737817, 40.647180676443249],
[-73.888535492932292, 40.646968149198372],
[-73.888653984968897, 40.646885061313853],
[-73.888599325520332, 40.646712468820908],
[-73.888430101090876, 40.646647388505322],
[-73.888081388839879, 40.64662057013129],
[-73.888094419357316, 40.646212786549306],
[-73.88828981420744, 40.646044215545579],
[-73.888211383556069, 40.646003139925597],
[-73.888000520929907, 40.646027705355245],
[-73.887409602224835, 40.645329280124841],
[-73.887507184072021, 40.64531656304078],
[-73.887517361086651, 40.645265323352966],
[-73.887916907236203, 40.645067548702784],
[-73.888068121253156, 40.645170195097968],
[-73.888055871828684, 40.645119787257293],
[-73.887912529419609, 40.645003481543988],
[-73.887343617317484, 40.645224153369057],
[-73.887091822943162, 40.644918971087044],
[-73.886912033885338, 40.64447377760721],
[-73.886784244962868, 40.644446318760821],
[-73.88678523809314, 40.644522339479359],
[-73.886548889559975, 40.644312490378404],
[-73.886542215947017, 40.64423207966319],
[-73.886416890653308, 40.644179458548948],
[-73.886226027273437, 40.64394905538979],
[-73.886236467918053, 40.643816787720972],
[-73.88613720679561, 40.643793956200035],
[-73.886025296790848, 40.643661450406455],
[-73.885850381286033, 40.643651882084782],
[-73.884691815025974, 40.643121146973009],
[-73.883735787637875, 40.642450349188387],
[-73.881901677499229, 40.640834939122762],
[-73.880788897256465, 40.639757433138087],
[-73.880766854982866, 40.639581647653422],
[-73.880551238822548, 40.639158819737261],
[-73.879538880170813, 40.638217839320674],
[-73.879354800182625, 40.638179387821083],
[-73.879117878640457, 40.638266587441208],
[-73.879050608503093, 40.638435948626807],
[-73.878966860710506, 40.638459544198106],
[-73.878638639080734, 40.638293606260213],
[-73.878437224590726, 40.637948690777129],
[-73.878634881362643, 40.637551781796866],
[-73.878467021456288, 40.637489830830695],
[-73.877836749901448, 40.636902310085667],
[-73.877144348685974, 40.635976498007516],
[-73.877493816927, 40.635390423977043],
[-73.877938896342627, 40.635019571139217],
[-73.878205904897825, 40.634572943662576],
[-73.878904552789422, 40.63411588241609],
[-73.879183356246614, 40.634014825526137],
[-73.879987675038436, 40.633514883481006],
[-73.880184683428723, 40.63330963859061],
[-73.880376294890993, 40.632980262363269],
[-73.881270681705104, 40.632369119161709],
[-73.881978919970635, 40.632172958999533],
[-73.882158995023943, 40.632006215384912],
[-73.883013621035118, 40.631626149535364],
[-73.883644517283187, 40.630943311635988],
[-73.883755016603374, 40.630556437509995],
[-73.883769327963776, 40.630221761342369],
[-73.883454129234707, 40.629907669934823],
[-73.884047261493848, 40.629560118546493],
[-73.882632484334039, 40.628274273126877],
[-73.883692315715024, 40.627559373913996],
[-73.885129540897452, 40.628827258672004],
[-73.885721669712623, 40.628446715725644],
[-73.886041171973716, 40.628697245978984],
[-73.886892099105282, 40.628553099893203],
[-73.887526737062004, 40.628331824482487],
[-73.8881689228092, 40.627975719367058],
[-73.890487103903922, 40.626224778590704],
[-73.890693692199477, 40.625900864135019],
[-73.890699343208311, 40.625449097738368],
[-73.890904714449988, 40.625016198465012],
[-73.891204686341794, 40.624726562874571],
[-73.89149359858223, 40.624558213240086],
[-73.891961095467835, 40.624063455498352],
[-73.892376565871587, 40.623733235974385],
[-73.89300558930357, 40.623356468594004],
[-73.89329777531114, 40.623441598716035],
[-73.893590825939299, 40.623390049802694],
[-73.894923654474354, 40.622886431733448],
[-73.895470239040336, 40.622570616355276],
[-73.895773746647222, 40.622519071385362],
[-73.895993368814104, 40.622583049366369],
[-73.895967025534972, 40.622702611826398],
[-73.896071543964382, 40.622774457969456],
[-73.898261030236583, 40.622989160346123],
[-73.901146854264525, 40.625685387597379],
[-73.904127932076975, 40.626306199631699],
[-73.916331954277183, 40.632038731553166],
[-73.916794927189912, 40.631960170515335],
[-73.917160714854816, 40.631730125996974],
[-73.918606496348843, 40.632090414721098],
[-73.919950630330305, 40.644707630232318],
[-73.909448463794007, 40.651521598790211],
[-73.908687694780085, 40.650721481122019],
[-73.908275706655488, 40.650498573806814],
[-73.903982005530594, 40.64662856757711],
[-73.895861549359594, 40.651880526830745],
[-73.897610133083518, 40.653453816121157],
[-73.893546771398391, 40.655202714084254],
[-73.892457374151547, 40.653710939080511],
[-73.891365435872459, 40.652364719446901],
[-73.89000589190583, 40.651148697131077],
[-73.891251471744781, 40.650025597383937],
[-73.891218534690594, 40.649987698622624]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN56",
"NTAName": "Ozone Park",
"Shape_Leng": 24718.695813599999383,
"Shape_Area": 25030355.4161
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.840128561271797, 40.681146650583699],
[-73.837942510351724, 40.676794209756359],
[-73.838119466911749, 40.676629889058859],
[-73.833348192033554, 40.666773187014442],
[-73.834649656321147, 40.667115307803371],
[-73.834876543007042, 40.667211664718053],
[-73.835701088282406, 40.667260222424765],
[-73.836678295345791, 40.667586492479352],
[-73.837300721345756, 40.66770735931361],
[-73.837449087267373, 40.667798350399657],
[-73.839278510162501, 40.668201849413173],
[-73.840089910678955, 40.668436556126821],
[-73.840136237567691, 40.668268025015088],
[-73.842158021639207, 40.668701447727997],
[-73.842272378806925, 40.668736046184492],
[-73.842435854201128, 40.669288557416728],
[-73.842885893747123, 40.669285075508093],
[-73.843221501544193, 40.669340410884523],
[-73.8478700087405, 40.670779499854518],
[-73.848477653024815, 40.670916738652728],
[-73.851634609559184, 40.671930333335879],
[-73.857113491966899, 40.673575054594949],
[-73.858251536921742, 40.674135610687571],
[-73.860295656466647, 40.674771894462161],
[-73.861318636485692, 40.675021268816181],
[-73.86234580535023, 40.679164786146842],
[-73.863286408446143, 40.67907719656106],
[-73.863349435930431, 40.679351640889713],
[-73.858785769029879, 40.680630463644277],
[-73.858198361005805, 40.679430849069398],
[-73.853923891621079, 40.679686156304271],
[-73.850990893488941, 40.680568367661287],
[-73.851978646003715, 40.682564211285793],
[-73.847868176319409, 40.681486832122822],
[-73.84583237438072, 40.682106450728718],
[-73.844510637906453, 40.682415088342594],
[-73.841196056632242, 40.683351366843901],
[-73.840128561271797, 40.681146650583699]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN17",
"NTAName": "Forest Hills",
"Shape_Leng": 36182.037756600002467,
"Shape_Area": 57843767.1166
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.831031417678602, 40.714336725763808],
[-73.831298178768748, 40.714264133076782],
[-73.836005107524983, 40.711729671540674],
[-73.836114765167608, 40.711825146873309],
[-73.837036882173081, 40.711311705082124],
[-73.837708941993696, 40.711036484271276],
[-73.83952312732589, 40.71049645145645],
[-73.839724399088468, 40.71039876558735],
[-73.841339366090892, 40.709946234363116],
[-73.843818257345831, 40.708911820627428],
[-73.844537388463976, 40.708661054970904],
[-73.845671982151586, 40.708410366124866],
[-73.846657241116105, 40.708318642340849],
[-73.847624101227737, 40.708332622983292],
[-73.84876725167257, 40.708444578930113],
[-73.849331562140335, 40.708388333680773],
[-73.85110121675433, 40.707900983021588],
[-73.855939916857778, 40.706398034158255],
[-73.856677143668236, 40.707691874465951],
[-73.857292871923264, 40.711467676688379],
[-73.857448579092903, 40.713692800048662],
[-73.857771684703238, 40.716456293206051],
[-73.858680976485701, 40.722612440484021],
[-73.859907964889516, 40.724346234659166],
[-73.862038337834889, 40.725956785405828],
[-73.858054168940086, 40.724445406102539],
[-73.857271081169259, 40.725681298089526],
[-73.859419880331473, 40.726464837562943],
[-73.858087657338146, 40.728568721830925],
[-73.85741240598783, 40.728322479762937],
[-73.857715924115453, 40.7285054608001],
[-73.857629236479852, 40.72860692181527],
[-73.858510979083931, 40.730286802804557],
[-73.856256651023983, 40.730959123100234],
[-73.858724657632592, 40.73570864419564],
[-73.855674276512161, 40.736586658152717],
[-73.85340136479013, 40.737002758278209],
[-73.851870674824966, 40.737342929186021],
[-73.849564537854164, 40.738106092395924],
[-73.847508203441393, 40.739007807040032],
[-73.847213615878815, 40.738643986683861],
[-73.846893661936761, 40.738671217394128],
[-73.846055418366106, 40.737099188469593],
[-73.845908815158523, 40.736399801221552],
[-73.845426130941021, 40.73494980327682],
[-73.844968000046791, 40.734007128823187],
[-73.844212503705776, 40.732733040883431],
[-73.843890981779168, 40.732258855635045],
[-73.843504890846461, 40.731814344362675],
[-73.842814125377487, 40.731153411890318],
[-73.84146810861364, 40.729998093474819],
[-73.840327032297679, 40.728807115130323],
[-73.839854342244763, 40.728177569282423],
[-73.839063546161725, 40.726879533672097],
[-73.838361613754415, 40.72556184225823],
[-73.836523677125129, 40.722370553711968],
[-73.835963124278919, 40.721677168126675],
[-73.835380451477363, 40.7207221803721],
[-73.835016842303247, 40.719526798858183],
[-73.834883594127746, 40.719303272416916],
[-73.834570348988748, 40.719027959828971],
[-73.833481483538023, 40.718333455656591],
[-73.82979616614557, 40.715565719132996],
[-73.83008535790357, 40.715173702918037],
[-73.830504610071642, 40.714856944799564],
[-73.831458669858492, 40.714554449938142],
[-73.831031417678602, 40.714336725763808]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN49",
"NTAName": "Whitestone",
"Shape_Leng": 56897.294935500001884,
"Shape_Area": 69046607.0951
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.791792804040881, 40.789351616093413],
[-73.791337548839834, 40.788857740801468],
[-73.790582990286751, 40.788192910455592],
[-73.793920318109372, 40.786675739970413],
[-73.794919776451948, 40.786338807548269],
[-73.79582463114869, 40.786130588111007],
[-73.797842055415089, 40.785894259235853],
[-73.802427916059486, 40.786068274476875],
[-73.802410701612658, 40.785817210986657],
[-73.802547246251677, 40.784673346674758],
[-73.802997819992257, 40.781410475638666],
[-73.803249747179692, 40.781275479895605],
[-73.803033184685489, 40.78094087010286],
[-73.803790228882463, 40.775610111792467],
[-73.814858506556021, 40.776485923119502],
[-73.81452997802198, 40.778888174880279],
[-73.823312869213538, 40.779578659835018],
[-73.822775969621944, 40.780833776698614],
[-73.822241277042338, 40.781693879480549],
[-73.823841327555144, 40.781716886340824],
[-73.826784758989774, 40.781667668757642],
[-73.836693859428294, 40.781649575018498],
[-73.838699212556605, 40.781676956599952],
[-73.838456054787031, 40.785824467648872],
[-73.838349638299221, 40.785850306161009],
[-73.838244291379567, 40.787785915651433],
[-73.840081574796287, 40.787851531714331],
[-73.839923062011039, 40.790649901705613],
[-73.839005240848238, 40.790617322357015],
[-73.838956761160276, 40.791438430592557],
[-73.840815326280421, 40.791504885220604],
[-73.840678283373819, 40.793907891633204],
[-73.840187315720584, 40.79370471592344],
[-73.839536261381824, 40.793201322949344],
[-73.839223031061934, 40.793043046118271],
[-73.838180692069798, 40.792748501901542],
[-73.836632889233769, 40.792516375538597],
[-73.836531873247097, 40.791743432405688],
[-73.836715133533389, 40.791582950598716],
[-73.836944768689918, 40.791471487535276],
[-73.837423294473723, 40.791392837918551],
[-73.83752373081235, 40.791316166491292],
[-73.837533633876006, 40.791152262082512],
[-73.837647051413953, 40.791028611948505],
[-73.837510036553084, 40.790834559181619],
[-73.837561457103888, 40.790733171432088],
[-73.837503588835887, 40.790461660725455],
[-73.837026828582481, 40.790496905170713],
[-73.836818149570433, 40.790469906359753],
[-73.83681410438497, 40.790433772276458],
[-73.837012576938335, 40.790408920121408],
[-73.83737222207894, 40.790398432120462],
[-73.837372129988296, 40.790436132069352],
[-73.837481914032395, 40.790434497921744],
[-73.837387819013998, 40.790311419666125],
[-73.837387420407609, 40.789819898944863],
[-73.837258921147438, 40.789701291524544],
[-73.837235917905829, 40.789495026728858],
[-73.837175445350439, 40.789427313316381],
[-73.8372802444608, 40.789009520772638],
[-73.837142105878442, 40.789373857938841],
[-73.837134329895235, 40.789564033014251],
[-73.836378095722665, 40.789460178186999],
[-73.835680220690307, 40.789574917568324],
[-73.835555216057088, 40.789529777301581],
[-73.835483460344122, 40.789296399781904],
[-73.835331502422108, 40.789212742214261],
[-73.834135665874086, 40.789066136552336],
[-73.834015359196897, 40.788919407081359],
[-73.833995302695939, 40.788714441317119],
[-73.833795481099003, 40.788517169043637],
[-73.8334566482079, 40.78845820063507],
[-73.833257595359143, 40.788527765740199],
[-73.832929372375446, 40.788518114204102],
[-73.832786759062529, 40.788584237908232],
[-73.832510636480166, 40.788624476626794],
[-73.832096719875253, 40.788787667001145],
[-73.831936426016853, 40.788938888426813],
[-73.8317543370473, 40.789228593368215],
[-73.831574934859262, 40.789256148600735],
[-73.831436288893926, 40.789181356548546],
[-73.831487140873548, 40.789237307176208],
[-73.831863179260253, 40.789343269069043],
[-73.831951184637305, 40.789414772132154],
[-73.83214871934797, 40.790033244852225],
[-73.831856706481702, 40.79056470079972],
[-73.831803696129214, 40.790879124062016],
[-73.831660809278659, 40.791102591159721],
[-73.831341554437884, 40.791392698032602],
[-73.830962697072948, 40.79157601668993],
[-73.830567793139323, 40.791657923320308],
[-73.830074709304071, 40.791549857373262],
[-73.829740376982727, 40.791630426993052],
[-73.829118397620974, 40.791895784915624],
[-73.828536270069421, 40.792336382555902],
[-73.828366576486047, 40.792395419557337],
[-73.829278509994282, 40.79289060733192],
[-73.829307329099635, 40.792936203841379],
[-73.829228575339457, 40.793019340410822],
[-73.828291552995609, 40.792514245960611],
[-73.828203480650814, 40.792634169420815],
[-73.828004038769791, 40.792746074593126],
[-73.827848755719245, 40.793087673214153],
[-73.82778457368785, 40.793420789925911],
[-73.827917051835243, 40.794013329036375],
[-73.827886505866459, 40.794338896184506],
[-73.827977645036512, 40.794509703674748],
[-73.827971719772776, 40.79479437041028],
[-73.828071336249835, 40.79482567673891],
[-73.82801372356046, 40.794932408267378],
[-73.828199161346987, 40.795134171837837],
[-73.828412798226012, 40.795613367786352],
[-73.828487763687548, 40.795670292540265],
[-73.82862330095594, 40.795681695883985],
[-73.828631901554019, 40.795843105197356],
[-73.828698431176321, 40.795923294905108],
[-73.82878010953813, 40.795917923947407],
[-73.828753531932421, 40.796069969595223],
[-73.828809629430864, 40.796183767898469],
[-73.828979917247452, 40.796210909658846],
[-73.829131269486552, 40.796293620040444],
[-73.829294492117228, 40.796672991292297],
[-73.829459915343648, 40.79682336759145],
[-73.82929094280658, 40.79677253657119],
[-73.829214834945091, 40.796637987837777],
[-73.829058642578872, 40.796562114135249],
[-73.828484175807489, 40.796612058601688],
[-73.828144565665042, 40.796752660617294],
[-73.827417688314583, 40.796789017823762],
[-73.827285271756566, 40.796894187506531],
[-73.827283142557178, 40.796961207983671],
[-73.827172012251921, 40.796931514081258],
[-73.826970915106529, 40.797128277689581],
[-73.826998971859339, 40.79727052728726],
[-73.827192400167036, 40.797508981694214],
[-73.827173656011894, 40.797622201316223],
[-73.827030559121098, 40.79771845691436],
[-73.826738561666872, 40.797796245452957],
[-73.826578946543066, 40.797760489236381],
[-73.826314477668973, 40.797487563003813],
[-73.826148569285564, 40.797415985003013],
[-73.825762199544414, 40.797368187808864],
[-73.825555251419573, 40.797393926147649],
[-73.8255084364434, 40.797438151474601],
[-73.825333695619236, 40.797314508835463],
[-73.82514036020433, 40.797341446769124],
[-73.824035932507186, 40.798079662716781],
[-73.824033380221181, 40.798197822905728],
[-73.823947878577727, 40.798227363578938],
[-73.824027844848217, 40.798361183208733],
[-73.823859483847031, 40.798154135104639],
[-73.823549132626454, 40.79831384152881],
[-73.823513657305938, 40.798438174025016],
[-73.823433235169389, 40.798406514408839],
[-73.823679836938609, 40.798769946499498],
[-73.823643688465538, 40.79878224199603],
[-73.823408723760195, 40.79841781429694],
[-73.823253710601037, 40.798469536168326],
[-73.823107696683678, 40.798613103772752],
[-73.823136739219365, 40.798680235653045],
[-73.823096027504548, 40.798683298362832],
[-73.823305524315799, 40.798962865616943],
[-73.823271182234009, 40.79897516359798],
[-73.823002630366972, 40.798642289724974],
[-73.822599356172731, 40.798901842475743],
[-73.822540564193105, 40.798957277372921],
[-73.822777278828298, 40.799320221378984],
[-73.822742935804101, 40.799332518865867],
[-73.822519165220186, 40.798987735690247],
[-73.822412270047423, 40.7990889137536],
[-73.822621745567645, 40.799407808072161],
[-73.822387546706267, 40.799112891069996],
[-73.82190060649809, 40.799728143307064],
[-73.821617892453119, 40.799991987693772],
[-73.820980719500255, 40.800478109124874],
[-73.820432460329144, 40.800627863919523],
[-73.820528107884215, 40.801006023868062],
[-73.820404549272368, 40.800639500292434],
[-73.819953321435563, 40.800848747651592],
[-73.819912118946334, 40.800975303166901],
[-73.81982823872157, 40.800994874895359],
[-73.819742860340298, 40.800897910530828],
[-73.819518085243246, 40.800833082907488],
[-73.819276460120662, 40.80066775084893],
[-73.8188527786685, 40.800312459808325],
[-73.817404298768523, 40.799299019282422],
[-73.817142430344504, 40.799181979809568],
[-73.816516397931963, 40.799024946483875],
[-73.816026039327426, 40.798532968334015],
[-73.813679075670606, 40.797545787909854],
[-73.813627969307731, 40.797443930496293],
[-73.813749107523591, 40.797147636859144],
[-73.813699637252583, 40.797079415665095],
[-73.813420504158501, 40.797693020410584],
[-73.813350137200928, 40.79767232265759],
[-73.813486483094536, 40.797345938745629],
[-73.813378227103385, 40.797314201258864],
[-73.813493503686956, 40.797058379875104],
[-73.81327739074672, 40.797105756441006],
[-73.813246497614784, 40.797211821101826],
[-73.813159963844456, 40.797197535703013],
[-73.813052794699345, 40.797455018850862],
[-73.812933696741212, 40.797426008096757],
[-73.813042876218546, 40.797178205752161],
[-73.812883864524736, 40.797166565226973],
[-73.812861879270017, 40.797279056442918],
[-73.812775152939409, 40.797345384450892],
[-73.812547989085431, 40.798047064458387],
[-73.812253656334562, 40.798126946300158],
[-73.811778383213124, 40.798025053453358],
[-73.811758538178253, 40.797709765271343],
[-73.811609382684438, 40.79737240944452],
[-73.810198879490642, 40.797163835342118],
[-73.809901389680888, 40.797071287266313],
[-73.80925513734735, 40.796961933799487],
[-73.8087933797608, 40.796795963153151],
[-73.807677511799582, 40.796672214787144],
[-73.806363314525754, 40.796393605437665],
[-73.806273318822264, 40.796822693332381],
[-73.806231350125174, 40.796817477080232],
[-73.806330767146676, 40.796392740435969],
[-73.806262981684384, 40.79639685172824],
[-73.806198402145299, 40.796501262177408],
[-73.805876262845771, 40.796472983430377],
[-73.805629278884595, 40.79637257898171],
[-73.805395733411117, 40.796170821514451],
[-73.805349801604976, 40.796317851318854],
[-73.805301049393293, 40.796316740374287],
[-73.805339444875742, 40.796163928288756],
[-73.804671737687841, 40.796167469163997],
[-73.804634377532864, 40.796438088956208],
[-73.804593954571416, 40.7963680340401],
[-73.804648739768467, 40.796159195983073],
[-73.804576145828776, 40.79614121304958],
[-73.804348259354057, 40.796214090992727],
[-73.804273536811792, 40.796641260826952],
[-73.804235633888297, 40.79663502181068],
[-73.804242950558702, 40.796449774990798],
[-73.804311386999345, 40.796212876160027],
[-73.804165356428669, 40.796229008776791],
[-73.804122185003791, 40.796528819706573],
[-73.804136447669748, 40.796234231177763],
[-73.804005243311508, 40.796267358432686],
[-73.803958230643701, 40.796557359017989],
[-73.803974189250823, 40.796278255919646],
[-73.803846124125755, 40.796325854649218],
[-73.803817167946974, 40.796630193236602],
[-73.803773833712143, 40.796629090197669],
[-73.803822941960092, 40.796335012840956],
[-73.803643015091595, 40.796406085507577],
[-73.803612508110973, 40.796684393153988],
[-73.803575944422974, 40.796683301576024],
[-73.803612885465625, 40.796420856820511],
[-73.8034638568963, 40.79649726274873],
[-73.803431331766902, 40.796653246596264],
[-73.8033499636296, 40.796713026429984],
[-73.802999707431113, 40.796708835592717],
[-73.802949251602215, 40.79640492955587],
[-73.802640360229091, 40.796338097055596],
[-73.802622728265447, 40.796366090171531],
[-73.80257934475047, 40.796295443136053],
[-73.80226038840371, 40.796262208350242],
[-73.801779477645411, 40.796316141853715],
[-73.80174543088819, 40.796512405600375],
[-73.80175550251785, 40.796321295918013],
[-73.801412169485744, 40.796376851704927],
[-73.801011262305948, 40.796522374589586],
[-73.80095706628282, 40.796386773433909],
[-73.80086307346707, 40.79633253590832],
[-73.800659201623972, 40.796353868161972],
[-73.80062184740089, 40.796426762360454],
[-73.800504831032171, 40.796293654313011],
[-73.800390695228131, 40.796263155396908],
[-73.800365475547807, 40.796336920383197],
[-73.800285911880749, 40.796323549055721],
[-73.800321630385199, 40.79625357092533],
[-73.800256629358515, 40.796260149266509],
[-73.800204380004516, 40.796270053945378],
[-73.800120804882866, 40.796631412711378],
[-73.800083502035392, 40.796627566972042],
[-73.800126199788082, 40.796491525654623],
[-73.80006403229244, 40.796483856077586],
[-73.800079121968395, 40.796429057898713],
[-73.800133844591258, 40.796431043825152],
[-73.80018235388124, 40.796266913696812],
[-73.799680679004069, 40.796174502706407],
[-73.799676880980471, 40.796322358860266],
[-73.799605482925116, 40.796332220605656],
[-73.799323842191626, 40.796094485027801],
[-73.798692657949701, 40.795952248458121],
[-73.798379186203348, 40.795721162501806],
[-73.798111080452145, 40.795605888565298],
[-73.797898327533488, 40.795559220917838],
[-73.797669940750026, 40.795993822382876],
[-73.79758295537475, 40.795967202155929],
[-73.797870149147144, 40.795552012141329],
[-73.797499205790857, 40.795459861855186],
[-73.79724128273871, 40.795452879802447],
[-73.797251156609661, 40.795342476986178],
[-73.797127831331963, 40.79530371842452],
[-73.79673567726374, 40.795208942919189],
[-73.796541751667704, 40.795606175764114],
[-73.79640953492472, 40.795728824200744],
[-73.796705875623644, 40.795197625449227],
[-73.796167708420086, 40.79503241398681],
[-73.795808260520928, 40.794987591257964],
[-73.795288527744532, 40.794982090538909],
[-73.795084810940637, 40.795065750083936],
[-73.795062368504389, 40.794948016905799],
[-73.795008576575782, 40.794924382328666],
[-73.79476806561695, 40.794884516421035],
[-73.794610981483515, 40.794929735526082],
[-73.794428447947823, 40.794806810349975],
[-73.794554128990754, 40.794812423527631],
[-73.794582981845252, 40.794763111619574],
[-73.794392861218469, 40.794436008826423],
[-73.794380224834043, 40.794177354389895],
[-73.794609071902912, 40.793913303477716],
[-73.794586219508389, 40.793570334108161],
[-73.794780092248217, 40.792935329375972],
[-73.794707375217513, 40.792674477115121],
[-73.794932270273577, 40.792495344751458],
[-73.79497523156428, 40.791876181418779],
[-73.794782610004631, 40.791302820315302],
[-73.793751265502337, 40.789061933340136],
[-73.793644696465506, 40.789060562866318],
[-73.793384398127074, 40.789481190004096],
[-73.793380335049932, 40.789578392620584],
[-73.79323941781152, 40.789530249703802],
[-73.793331782822577, 40.789465370544406],
[-73.793620072761769, 40.788996637247259],
[-73.793359698997818, 40.788955279050292],
[-73.792861567298928, 40.78878964671393],
[-73.792632160287425, 40.788784128837747],
[-73.792352911541528, 40.788906841809926],
[-73.792055919123968, 40.789092179011277],
[-73.791792804040881, 40.789351616093413]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN37",
"NTAName": "Kew Gardens Hills",
"Shape_Leng": 33053.764414700002817,
"Shape_Area": 37894227.1877
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.814972082574741, 40.738560715568873],
[-73.814693919160376, 40.737140480485273],
[-73.814691630389461, 40.735949993521501],
[-73.815021277042561, 40.730465669541879],
[-73.815231448454924, 40.728793912056432],
[-73.815100240723694, 40.728543422503385],
[-73.81474579272907, 40.728230070028424],
[-73.81074426516119, 40.726265112842576],
[-73.810705009564174, 40.726771288573616],
[-73.811010080630211, 40.72743995115961],
[-73.811117972924023, 40.727816416493312],
[-73.807170422634925, 40.728269133119007],
[-73.80652142318155, 40.724873063652097],
[-73.804879582306455, 40.725049593118015],
[-73.80452680226847, 40.721462546317966],
[-73.809040327361785, 40.719911604542339],
[-73.807809277009085, 40.715853896237775],
[-73.810224350044749, 40.715912668000378],
[-73.817204179260969, 40.7158407287899],
[-73.818284527484835, 40.71600371491138],
[-73.820188838044515, 40.716735224117897],
[-73.819304694978484, 40.717136080895472],
[-73.817295689671482, 40.717579644971806],
[-73.817259077852611, 40.717637876955088],
[-73.817329447956141, 40.717660456711585],
[-73.819128325240897, 40.717349919310671],
[-73.821704790620871, 40.71735988999437],
[-73.822510993050088, 40.717437076303327],
[-73.823324320432249, 40.71745251000057],
[-73.825316450223696, 40.717275700246944],
[-73.825419265125745, 40.717392544422076],
[-73.8254823200879, 40.719206207938448],
[-73.825567656621331, 40.719721014661864],
[-73.825859457488164, 40.720462631764789],
[-73.827129265570292, 40.724303712062223],
[-73.827309004494438, 40.724646077497674],
[-73.827555277293186, 40.724960949763272],
[-73.828051452676021, 40.725324849653994],
[-73.828661542347177, 40.725581422749926],
[-73.82933887133396, 40.725735938843222],
[-73.82979910980454, 40.725897254000159],
[-73.830219539572042, 40.72612069614069],
[-73.830579614566588, 40.726396351038368],
[-73.830864714128651, 40.726709633989103],
[-73.831704658663469, 40.728040332246024],
[-73.83248002188995, 40.72894085408651],
[-73.833070879578202, 40.729919031382821],
[-73.833862671531108, 40.73055318900898],
[-73.825665354174163, 40.732279577875971],
[-73.825531294030228, 40.733634281479482],
[-73.825462533029693, 40.733640661574618],
[-73.825393216468598, 40.734048236187498],
[-73.824878274001932, 40.739572312262453],
[-73.824811784217587, 40.739630959899515],
[-73.824350111033169, 40.739753606083262],
[-73.820064314198319, 40.738828140378764],
[-73.81693283697588, 40.738389510393105],
[-73.816625316162344, 40.738386310893333],
[-73.816331093679196, 40.73844640177586],
[-73.816076768007605, 40.738857933589927],
[-73.815185831143779, 40.738571171540165],
[-73.814972082574741, 40.738560715568873]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN38",
"NTAName": "Pomonok-Flushing Heights-Hillcrest",
"Shape_Leng": 30676.03462,
"Shape_Area": 38832853.8764
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.796402186402915, 40.738282358190233],
[-73.796361088753613, 40.738124153260308],
[-73.796076051607457, 40.738144298246368],
[-73.796503500059785, 40.738003835926413],
[-73.796510291157688, 40.737908637229054],
[-73.795848032888287, 40.738074680211113],
[-73.795948528310973, 40.73781371914783],
[-73.795164508875942, 40.736411403992982],
[-73.794586332404023, 40.735052252144641],
[-73.794594865411, 40.733409358171549],
[-73.794384497842543, 40.732865929349082],
[-73.793977087147567, 40.73229685316651],
[-73.793909425157636, 40.731717775562174],
[-73.793819372303403, 40.731657388233799],
[-73.79384983414468, 40.731246783490924],
[-73.793789386517801, 40.730701181663861],
[-73.791572529784162, 40.725329611927556],
[-73.790451493234329, 40.723554531823289],
[-73.790357038792862, 40.723005300179736],
[-73.790302674295773, 40.720891465459715],
[-73.790376616843417, 40.720103724217708],
[-73.79073248864259, 40.71920875733025],
[-73.79155692217266, 40.719200995355116],
[-73.792111412142319, 40.719138863920065],
[-73.793154934164292, 40.718917578510109],
[-73.796539781323119, 40.717786748905908],
[-73.799595357950537, 40.716899043412553],
[-73.801883209710624, 40.716408810569888],
[-73.803198380047377, 40.716202525459998],
[-73.804941485113105, 40.715996230987791],
[-73.807809277009085, 40.715853896237775],
[-73.809040327361785, 40.719911604542339],
[-73.80452680226847, 40.721462546317966],
[-73.804879582306455, 40.725049593118015],
[-73.80652142318155, 40.724873063652097],
[-73.807170422634925, 40.728269133119007],
[-73.811117972924023, 40.727816416493312],
[-73.811010080630211, 40.72743995115961],
[-73.810705009564174, 40.726771288573616],
[-73.81074426516119, 40.726265112842576],
[-73.81474579272907, 40.728230070028424],
[-73.815100240723694, 40.728543422503385],
[-73.815231448454924, 40.728793912056432],
[-73.815021277042561, 40.730465669541879],
[-73.814691630389461, 40.735949993521501],
[-73.814693919160376, 40.737140480485273],
[-73.815049987530656, 40.73894313388967],
[-73.814073820423559, 40.738780902581453],
[-73.813224017925407, 40.738702254439161],
[-73.806578838675904, 40.73844721148977],
[-73.798220589273143, 40.738174630695084],
[-73.797292605541088, 40.738185428836751],
[-73.796402186402915, 40.738282358190233]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN48",
"NTAName": "Auburndale",
"Shape_Leng": 32446.878731600001629,
"Shape_Area": 34164217.6915
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.775738369270982, 40.743325647163992],
[-73.778599247779937, 40.742908122651521],
[-73.7803660354394, 40.742591662644003],
[-73.795337729221259, 40.738493673275336],
[-73.796402186402915, 40.738282358190233],
[-73.796439401145747, 40.738438947645804],
[-73.796724979249888, 40.738416642623086],
[-73.796292972255358, 40.738552306430336],
[-73.796408337359537, 40.738593419983424],
[-73.797223730688884, 40.740098034721683],
[-73.797278879375312, 40.740447862397907],
[-73.797230850381595, 40.741695506635992],
[-73.796136311970812, 40.742571467123902],
[-73.795212577758008, 40.74349556879217],
[-73.794832955160942, 40.743986942069967],
[-73.794535073550804, 40.744507638214664],
[-73.794463683329496, 40.744970021706159],
[-73.794481216228291, 40.745669532318509],
[-73.794722649440686, 40.747599330209027],
[-73.79704716101422, 40.749332318444637],
[-73.797295246991894, 40.749435052890483],
[-73.795665449517472, 40.7502362003233],
[-73.79471901146249, 40.750647616849946],
[-73.794577269899989, 40.753563011339054],
[-73.794932462339958, 40.757798030074532],
[-73.794024739591066, 40.757735968956531],
[-73.790315169966647, 40.757823450590287],
[-73.790760046204809, 40.760985769424657],
[-73.79343991212555, 40.760764127962446],
[-73.793436737694051, 40.76159683082907],
[-73.793025513657639, 40.764621192188663],
[-73.793959146528792, 40.764695319925636],
[-73.793179445560455, 40.770403177727857],
[-73.790219607775512, 40.766951174753061],
[-73.788610855256806, 40.764709593712134],
[-73.788368565469042, 40.764438428846987],
[-73.788075237408364, 40.764199490424119],
[-73.785958106263493, 40.763102243651467],
[-73.785719935667458, 40.762921464725935],
[-73.785463830703378, 40.76259192540882],
[-73.785024347447035, 40.761036515858727],
[-73.784289918846994, 40.759440299435724],
[-73.782124619780447, 40.755339311528381],
[-73.780520378005917, 40.753330743102637],
[-73.775738369270982, 40.743325647163992]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN62",
"NTAName": "Queensboro Hill",
"Shape_Leng": 30569.906753800001752,
"Shape_Area": 26553170.3243
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.815373173556836, 40.747218337859685],
[-73.813824106179979, 40.745832727622776],
[-73.81367361908535, 40.74555586454192],
[-73.813784520234947, 40.744554552794931],
[-73.814308848478262, 40.742973773066701],
[-73.808237895603412, 40.742011158110316],
[-73.807298398207124, 40.741993777476708],
[-73.804472875703325, 40.742167099931301],
[-73.800162811437744, 40.742247528735497],
[-73.799384216811859, 40.742221384026458],
[-73.796950652985316, 40.741933035148413],
[-73.797230850381595, 40.741695506635992],
[-73.797275176373162, 40.740330186409189],
[-73.79717686670125, 40.739986685260249],
[-73.796408337359537, 40.738593419983424],
[-73.796292972255358, 40.738552306430336],
[-73.796724979249888, 40.738416642623086],
[-73.796439401145747, 40.738438947645804],
[-73.796402186402915, 40.738282358190233],
[-73.797292605541088, 40.738185428836751],
[-73.798220589273143, 40.738174630695084],
[-73.806578838675904, 40.73844721148977],
[-73.813224017925407, 40.738702254439161],
[-73.814073820423559, 40.738780902581453],
[-73.815049987530656, 40.73894313388967],
[-73.814972082574741, 40.738560715568873],
[-73.815185831143779, 40.738571171540165],
[-73.816076768007605, 40.738857933589927],
[-73.816331093679196, 40.73844640177586],
[-73.816779596204881, 40.738379793896598],
[-73.820064314198319, 40.738828140378764],
[-73.824350111033169, 40.739753606083262],
[-73.824948008747924, 40.739567105003687],
[-73.824974399919341, 40.739440426756168],
[-73.825426587567435, 40.739485137929911],
[-73.825590303233923, 40.739447591792782],
[-73.825853684077615, 40.73912378014797],
[-73.826349658423169, 40.73884326447579],
[-73.826867465184364, 40.738628912159911],
[-73.827590173218681, 40.738494217660772],
[-73.827943602841955, 40.738489982440825],
[-73.827949690864571, 40.737819599239984],
[-73.828091526432431, 40.737083175776419],
[-73.829467519971431, 40.73702448225081],
[-73.830535512975104, 40.73752019476418],
[-73.83143025504279, 40.739135733129331],
[-73.831301173199961, 40.739561062689795],
[-73.831131227778442, 40.742338000406534],
[-73.833015154042698, 40.742600958301239],
[-73.835861318721328, 40.743227984538507],
[-73.835950715252594, 40.743730569606868],
[-73.835675539475858, 40.74485051756011],
[-73.835437771698452, 40.745523974079028],
[-73.834690426199643, 40.746902697785934],
[-73.834265062357687, 40.747337698717892],
[-73.83370364194279, 40.747626348436157],
[-73.833003019868713, 40.747833631459287],
[-73.831254798397964, 40.748106359629119],
[-73.83126084346712, 40.748576271979964],
[-73.831158615098289, 40.748797997547776],
[-73.83101167927137, 40.748916018878887],
[-73.830714665602585, 40.749017213824587],
[-73.829225119718203, 40.749256081183944],
[-73.828273499975452, 40.74967871546275],
[-73.827866939010775, 40.749811284582464],
[-73.827517925818285, 40.749874789744119],
[-73.827239215378725, 40.749859603090087],
[-73.825844409595348, 40.749348391098763],
[-73.825652012636837, 40.750652998955587],
[-73.82566698623404, 40.750908748013252],
[-73.82576557247215, 40.750969024252733],
[-73.824264938084113, 40.751832888588474],
[-73.821084275912796, 40.748558445943026],
[-73.817820258883799, 40.747385416147992],
[-73.815750694834094, 40.746979480114774],
[-73.815373173556836, 40.747218337859685]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN30",
"NTAName": "Maspeth",
"Shape_Leng": 41278.623717900001793,
"Shape_Area": 35633972.7002
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.88852285901477, 40.734531160015322],
[-73.888059751521908, 40.730087230197633],
[-73.887559621605106, 40.730197055740703],
[-73.887360932700673, 40.729570783396198],
[-73.887235730076625, 40.728932964660807],
[-73.887203956087305, 40.726193231923638],
[-73.887132535751547, 40.726142346534914],
[-73.887077120512558, 40.724637701844806],
[-73.890174496780944, 40.724946889035785],
[-73.890303293685449, 40.724923886747668],
[-73.894264941449762, 40.723143188916595],
[-73.894510325156048, 40.72313194913233],
[-73.895697433269049, 40.723412585544288],
[-73.895823806406511, 40.723898822128511],
[-73.898352851045317, 40.723112289868197],
[-73.899031918175908, 40.723856960314897],
[-73.900105586627333, 40.723296240522728],
[-73.899816101604344, 40.721236900280644],
[-73.897397048672275, 40.721551209957802],
[-73.897365983171852, 40.720464382872969],
[-73.897748243765449, 40.720357347299988],
[-73.89783709951287, 40.720470195912071],
[-73.90009286425726, 40.72017685333995],
[-73.900626444278728, 40.719764054044539],
[-73.900334544690793, 40.718669139905508],
[-73.90033904275478, 40.718019947896671],
[-73.900059380443253, 40.718046378606864],
[-73.899851494227988, 40.718375397966142],
[-73.898347600534848, 40.719197677564473],
[-73.897267578660134, 40.718147156562715],
[-73.898820955641725, 40.717372228501745],
[-73.899018210999273, 40.717382127467658],
[-73.897924303413092, 40.71678540231752],
[-73.897502264331919, 40.716383867712871],
[-73.904772445685595, 40.712865799877406],
[-73.905375822250747, 40.712876581563286],
[-73.906390100284867, 40.717363692054761],
[-73.906963708189465, 40.717304417247583],
[-73.909433986583622, 40.717581773342957],
[-73.909659801415259, 40.717793155829689],
[-73.910483644468457, 40.717327965045953],
[-73.911342707828993, 40.716597028861635],
[-73.91221070492854, 40.715709356790903],
[-73.91245827647036, 40.715532290204798],
[-73.912830376669248, 40.715360907984277],
[-73.910158178549167, 40.713821599986424],
[-73.910778073583842, 40.713187599919003],
[-73.924040113340226, 40.714008312628891],
[-73.924059097370503, 40.714111559644898],
[-73.923683521525248, 40.714082841408185],
[-73.924052232459545, 40.714870245140062],
[-73.924122415754965, 40.715138048445155],
[-73.923815131946284, 40.71544130034156],
[-73.92352547251086, 40.715616608367824],
[-73.922791966724333, 40.715800263747575],
[-73.922329701677015, 40.716076545172392],
[-73.920642588745466, 40.715773192028337],
[-73.920578614547495, 40.716027424691156],
[-73.922237611903924, 40.71638244049452],
[-73.922327739568374, 40.716592644624889],
[-73.911320951405315, 40.719624229591275],
[-73.91309792345875, 40.721737469494265],
[-73.913426888984247, 40.722333937295275],
[-73.913672343687495, 40.722601158185711],
[-73.91384828242974, 40.722898412353281],
[-73.913169698057899, 40.723081525896319],
[-73.912707734969302, 40.723284502870243],
[-73.912571876777932, 40.723239634949344],
[-73.905180579197705, 40.728956576973715],
[-73.900628979805646, 40.734463231838184],
[-73.900290030661466, 40.734729543496144],
[-73.899632579619421, 40.735002357801008],
[-73.899229447028276, 40.735111598773486],
[-73.898307996827228, 40.735194184325657],
[-73.896911880385389, 40.735086601830943],
[-73.896511051744355, 40.735096741542783],
[-73.896029315907342, 40.735017891608877],
[-73.894924217743636, 40.735007722183958],
[-73.894575449239284, 40.734946528619624],
[-73.893474083002516, 40.7346021775463],
[-73.892555546556181, 40.73447812580762],
[-73.889103189163833, 40.734592396461764],
[-73.88852285901477, 40.734531160015322]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN01",
"NTAName": "South Jamaica",
"Shape_Leng": 32122.42947550000099,
"Shape_Area": 39972230.5026
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.77395659465941, 40.69980578158961],
[-73.774593774789651, 40.698799498181351],
[-73.776597755177164, 40.695969114416989],
[-73.777835934156414, 40.694321335403231],
[-73.779440813376453, 40.693645109697613],
[-73.780237238471159, 40.692972335435513],
[-73.777893373717404, 40.689917690032544],
[-73.779772950700547, 40.689281169987908],
[-73.780781554982994, 40.691029942948738],
[-73.78479240674821, 40.689361600173982],
[-73.785804998701622, 40.688996897447957],
[-73.786983444869961, 40.688608476970543],
[-73.790384682961104, 40.687753613799387],
[-73.793908416121042, 40.686304690893351],
[-73.795614867208357, 40.68865689126185],
[-73.799950428437242, 40.686827719453667],
[-73.798982090745369, 40.684858737823589],
[-73.805768401913696, 40.682932391250283],
[-73.807336218687112, 40.686125446991142],
[-73.810632983108889, 40.6919473825767],
[-73.809710171596294, 40.692199384424946],
[-73.808902169007411, 40.692564348955223],
[-73.80642479405023, 40.69087385791115],
[-73.801196178907119, 40.695336489064644],
[-73.799182268837939, 40.696871476324773],
[-73.798546401682202, 40.697466532827598],
[-73.797861934464621, 40.697993404277412],
[-73.797223747301643, 40.698359457382885],
[-73.79572173793612, 40.699014735113586],
[-73.794499209475248, 40.699385776722245],
[-73.793577087348766, 40.699756471695828],
[-73.792605067840171, 40.70043210047762],
[-73.792210297170541, 40.700822671351126],
[-73.791869165567135, 40.701366137188593],
[-73.792391703145995, 40.702166529652885],
[-73.791473248752652, 40.702229905114123],
[-73.791155697266703, 40.702294075801241],
[-73.789663915462043, 40.703039488522144],
[-73.785979764931952, 40.704186616364296],
[-73.78256582583964, 40.705424863867712],
[-73.781478874003611, 40.70545525091692],
[-73.780344911740073, 40.70541241670842],
[-73.778491310646061, 40.703833225748944],
[-73.777911038434596, 40.703282389225627],
[-73.776910377463295, 40.702524885325822],
[-73.775868928949166, 40.701655170719228],
[-73.774883186405006, 40.70074775236008],
[-73.77395659465941, 40.69980578158961]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN61",
"NTAName": "Jamaica",
"Shape_Leng": 43696.251483,
"Shape_Area": 47307643.1302
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.768445465168426, 40.709637027159808],
[-73.772301416913407, 40.708071423033928],
[-73.773337994822683, 40.707793515719537],
[-73.774308436488539, 40.707393668458366],
[-73.774900933012276, 40.707066661911355],
[-73.775051580986002, 40.706924035561201],
[-73.775308088710645, 40.706606178568286],
[-73.775492583560634, 40.706254672351882],
[-73.775595301107188, 40.705884319556318],
[-73.775592187699715, 40.705329308723101],
[-73.775074622964596, 40.705239983801796],
[-73.772307685991976, 40.700571507822325],
[-73.77395659465941, 40.69980578158961],
[-73.774883186405006, 40.70074775236008],
[-73.775868928949166, 40.701655170719228],
[-73.776910377463295, 40.702524885325822],
[-73.777911038434596, 40.703282389225627],
[-73.778491310646061, 40.703833225748944],
[-73.780344911740073, 40.70541241670842],
[-73.781478874003611, 40.70545525091692],
[-73.78256582583964, 40.705424863867712],
[-73.785979764931952, 40.704186616364296],
[-73.789663915462043, 40.703039488522144],
[-73.791155697266703, 40.702294075801241],
[-73.791473248752652, 40.702229905114123],
[-73.792391703145995, 40.702166529652885],
[-73.791869165567135, 40.701366137188593],
[-73.792210297170541, 40.700822671351126],
[-73.792605067840171, 40.70043210047762],
[-73.793577087348766, 40.699756471695828],
[-73.794499209475248, 40.699385776722245],
[-73.79572173793612, 40.699014735113586],
[-73.797223747301643, 40.698359457382885],
[-73.797861934464621, 40.697993404277412],
[-73.798546401682202, 40.697466532827598],
[-73.799182268837939, 40.696871476324773],
[-73.801196178907119, 40.695336489064644],
[-73.80642479405023, 40.69087385791115],
[-73.808902169007411, 40.692564348955223],
[-73.809710171596294, 40.692199384424946],
[-73.810632983108889, 40.6919473825767],
[-73.812241885962024, 40.694832235647205],
[-73.814070503922238, 40.697887129810681],
[-73.814923433331202, 40.69942244057895],
[-73.816378244929851, 40.702451964468636],
[-73.813564706099399, 40.702528498001726],
[-73.813018828540109, 40.702495157240584],
[-73.811528569192987, 40.702272874880435],
[-73.812012485843042, 40.705944944808387],
[-73.806948563293645, 40.707367100413677],
[-73.805647730663935, 40.704671727903452],
[-73.801657256080475, 40.705761475398766],
[-73.803024147406759, 40.708139657094264],
[-73.802331200302675, 40.708572470818602],
[-73.801932970560557, 40.708911595852683],
[-73.801595905641079, 40.709548425253963],
[-73.80141416328749, 40.709686873023621],
[-73.798701506790707, 40.710663377114074],
[-73.797768101342967, 40.709143187839182],
[-73.794730523529253, 40.710012461965988],
[-73.793038000523524, 40.710711075425401],
[-73.789283350676058, 40.712031729151086],
[-73.789012095879585, 40.712072709100696],
[-73.788717895554925, 40.712049793039753],
[-73.787846784801417, 40.71181083266498],
[-73.786575286935758, 40.711972493277912],
[-73.773571352344561, 40.71512009536999],
[-73.77192122006916, 40.715685044955556],
[-73.769439870949356, 40.711976892556201],
[-73.770765775534457, 40.710735237831095],
[-73.771186577621577, 40.710499509657112],
[-73.77172444678736, 40.710316818855397],
[-73.771651552886681, 40.710222372165518],
[-73.77084362930016, 40.71017162598519],
[-73.768812173405891, 40.709808123552101],
[-73.768445465168426, 40.709637027159808]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK58",
"NTAName": "Flatlands",
"Shape_Leng": 40635.280894499999704,
"Shape_Area": 54341522.306
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.918606496348843, 40.632090414721098],
[-73.917167794562587, 40.618387962165059],
[-73.916903027371049, 40.616274229911049],
[-73.920526941074982, 40.613942695006216],
[-73.920624003079567, 40.614838681674918],
[-73.92640044535041, 40.6144785355309],
[-73.92629604565613, 40.613116799076955],
[-73.931731792137199, 40.617926921394435],
[-73.933204575144728, 40.616970442250853],
[-73.936866996067508, 40.620253281232721],
[-73.940789140870748, 40.617696789890935],
[-73.943469618835749, 40.617385001869081],
[-73.943957795383156, 40.616816309464539],
[-73.944675995205145, 40.616165112535676],
[-73.945736919120279, 40.615363406756607],
[-73.946513731278728, 40.619494019149627],
[-73.944518333704977, 40.61971364709504],
[-73.945424428974079, 40.624495609598185],
[-73.946422660643179, 40.624385567286403],
[-73.947326721605791, 40.629166567209431],
[-73.944155352558241, 40.629508285207962],
[-73.94647961784932, 40.631708161678063],
[-73.93701746157781, 40.632310979135752],
[-73.937267001848042, 40.634650625674169],
[-73.927448222943866, 40.6352584095577],
[-73.926524908923838, 40.63649272329657],
[-73.926163778382659, 40.637572961179877],
[-73.926063380613741, 40.638524061036023],
[-73.925860685632642, 40.639211071538973],
[-73.925382331007697, 40.642384532667144],
[-73.923565259470664, 40.642499298286573],
[-73.923326545873664, 40.639900215592071],
[-73.919737369821462, 40.642778148345094],
[-73.918606496348843, 40.632090414721098]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN71",
"NTAName": "Old Astoria",
"Shape_Leng": 19335.56741509999847,
"Shape_Area": 15621248.1564
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.928277308327168, 40.7768989753244],
[-73.927376418086936, 40.776466611575053],
[-73.922792644517898, 40.773962294841738],
[-73.917702172161555, 40.77039311158785],
[-73.919955968584702, 40.768440064974541],
[-73.918493369799776, 40.767734656533413],
[-73.919777648226571, 40.766152184345593],
[-73.922189462032904, 40.7672673572131],
[-73.924252887964172, 40.764724564234108],
[-73.929856479417325, 40.767326552360743],
[-73.933444685202289, 40.768817789898776],
[-73.93493511053623, 40.767013024131266],
[-73.936183796754776, 40.767691801662203],
[-73.935931771031093, 40.76778370276552],
[-73.93577133991252, 40.769050010045063],
[-73.93503989810641, 40.769682302233463],
[-73.934717184500528, 40.770029858215061],
[-73.93447449145674, 40.77041159718884],
[-73.934246096150403, 40.771029275674159],
[-73.934527301094391, 40.771176775103349],
[-73.93448548303904, 40.771306523218421],
[-73.934953987149882, 40.771372943016843],
[-73.934929433198661, 40.771440236090058],
[-73.93448015155154, 40.771323068200687],
[-73.934435257431772, 40.771462362333395],
[-73.934826227616995, 40.771576958073254],
[-73.934806814103169, 40.771734138387671],
[-73.937466385370769, 40.772531495125172],
[-73.93781335903401, 40.773562894647533],
[-73.937858118227751, 40.774087568973009],
[-73.937654830247027, 40.775085685383281],
[-73.937047020875823, 40.775866487041],
[-73.936380228175381, 40.776921456562626],
[-73.936089196990991, 40.777184322077012],
[-73.935854526415042, 40.77721168462417],
[-73.935082324921481, 40.777944233727744],
[-73.93474353011284, 40.77807633537698],
[-73.933908403139782, 40.778117129818845],
[-73.932774778015528, 40.777922388777505],
[-73.93272210453965, 40.778034767117937],
[-73.931788342390419, 40.777870607104425],
[-73.931049642328318, 40.777441897311625],
[-73.931073771467538, 40.777260594398122],
[-73.930628565541639, 40.776590902749554],
[-73.929880585661977, 40.776221631902224],
[-73.928605150233494, 40.776592675100957],
[-73.928277308327168, 40.7768989753244]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX22",
"NTAName": "North Riverdale-Fieldston-Riverdale",
"Shape_Leng": 31842.964964599999803,
"Shape_Area": 49027466.465
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.896633337969902, 40.911417375348236],
[-73.896546532924404, 40.907506655547039],
[-73.896357859714925, 40.90320013158378],
[-73.896970542481426, 40.900611167578489],
[-73.897157171654328, 40.899371826677211],
[-73.896431707833827, 40.893655279424827],
[-73.896757900749378, 40.892645443571681],
[-73.897281125207954, 40.891710683680365],
[-73.897878874653927, 40.890276101241518],
[-73.898289042518769, 40.890442981265288],
[-73.898539119255645, 40.890389074043121],
[-73.899594258893984, 40.88981699887929],
[-73.899875706723904, 40.88954945802508],
[-73.90024058943051, 40.889356069349127],
[-73.900699636327829, 40.888988221007772],
[-73.900903013963003, 40.88891054881104],
[-73.901261878978033, 40.888920968331675],
[-73.901805537978277, 40.88914342069188],
[-73.902462973439796, 40.889105147920702],
[-73.902859490622902, 40.889164744005747],
[-73.903373144505366, 40.888132345033434],
[-73.904136424286662, 40.887080709032077],
[-73.907388302311915, 40.887819691681443],
[-73.90796339997496, 40.888859753371264],
[-73.908315851521834, 40.889115897968814],
[-73.908533080837529, 40.889167389275265],
[-73.908557142473725, 40.889289666656282],
[-73.909005359819517, 40.889500141299095],
[-73.909294224753239, 40.88928229677402],
[-73.909759302400929, 40.889250028619841],
[-73.909817670730078, 40.888996569525347],
[-73.911150617812055, 40.888277105622386],
[-73.911730890635937, 40.888218713450073],
[-73.912109206332886, 40.887382505038914],
[-73.912812774749938, 40.886395187237341],
[-73.91347365478012, 40.885771971194508],
[-73.914892769763441, 40.884624770698544],
[-73.915865277041419, 40.884858107087773],
[-73.916304386392937, 40.884909511477765],
[-73.918761513908919, 40.885569684780599],
[-73.918654956703548, 40.88622532555911],
[-73.918695904960487, 40.886885203605324],
[-73.920586419435679, 40.887182677615101],
[-73.917822182579613, 40.894422287078868],
[-73.917818519926243, 40.894542421322214],
[-73.917908700410848, 40.894676766399556],
[-73.917634882074864, 40.894941905352169],
[-73.916941610784022, 40.896644551702359],
[-73.91670849171858, 40.897384054767841],
[-73.916723141873561, 40.897486942489962],
[-73.91518455871676, 40.901584282862132],
[-73.915233973531812, 40.901696797245165],
[-73.91543172958427, 40.901812683688327],
[-73.915014495860447, 40.903081299106404],
[-73.914590392433141, 40.904119002196353],
[-73.914290800875875, 40.904093207462587],
[-73.91418416752515, 40.904139333800913],
[-73.912865402025631, 40.907535122202901],
[-73.913076119054111, 40.907739530713634],
[-73.913108639256222, 40.907844484153728],
[-73.912726697136478, 40.907994842394864],
[-73.912649321728779, 40.908070811955348],
[-73.912340511012076, 40.909058194768704],
[-73.91235918382182, 40.909136733576332],
[-73.912268688514402, 40.90923014850236],
[-73.911578957493532, 40.91213595931989],
[-73.911504753949714, 40.912169878874288],
[-73.91149190703743, 40.912233769311996],
[-73.911536189055198, 40.91230206177201],
[-73.91143213027847, 40.912823826219665],
[-73.911654723359604, 40.913417851896185],
[-73.91141942200737, 40.913833692194338],
[-73.911205195114974, 40.914051015711387],
[-73.911220898042401, 40.914185591319963],
[-73.911134128521454, 40.914330605900439],
[-73.910668554013142, 40.914799428656579],
[-73.91033256849046, 40.915532776000056],
[-73.910112766251061, 40.915398734144539],
[-73.908511550176073, 40.915002264026334],
[-73.902456639386912, 40.912958933425394],
[-73.900664093103202, 40.912463877669957],
[-73.899916483634144, 40.912370689458115],
[-73.898104896224183, 40.911790600512163],
[-73.897253263549729, 40.911655519938591],
[-73.896633337969902, 40.911417375348236]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN36",
"NTAName": "Washington Heights South",
"Shape_Leng": 22095.920901199999207,
"Shape_Area": 23099994.5193
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.931393553157619, 40.847428231409459],
[-73.935566971744251, 40.841712527557888],
[-73.935636661765741, 40.841500139839674],
[-73.93562826736833, 40.841279362152733],
[-73.935436370282162, 40.840751331105956],
[-73.935106666146737, 40.840183726668009],
[-73.935005754060569, 40.839851910782137],
[-73.935055087588793, 40.839333236162794],
[-73.935330614706913, 40.838874912997703],
[-73.93595950279861, 40.838369898475335],
[-73.936383169252693, 40.837850125053507],
[-73.938042357808655, 40.834288545650956],
[-73.93832027810943, 40.833978818280706],
[-73.939478144137979, 40.833013489359374],
[-73.940246008163186, 40.831842121109716],
[-73.9403683082882, 40.831460492514331],
[-73.940346432475252, 40.830457842849462],
[-73.945925580958743, 40.832806489701987],
[-73.948291081378713, 40.833861180771791],
[-73.948905432862531, 40.834065298876773],
[-73.949415705568597, 40.834358589832782],
[-73.949776162183099, 40.834455964511278],
[-73.950155210627798, 40.834396759816094],
[-73.949742578860437, 40.835628087824851],
[-73.949686347447582, 40.836109863324921],
[-73.949546007293733, 40.836604371501778],
[-73.949457019199542, 40.836705619473712],
[-73.949282850572914, 40.836740786583512],
[-73.949482046478067, 40.836805839857682],
[-73.949540037170678, 40.83687963152353],
[-73.948560545205652, 40.839564884659111],
[-73.947967010140928, 40.840654107696139],
[-73.947383221543006, 40.841940825299289],
[-73.947167882885367, 40.842159099043634],
[-73.946935029290245, 40.842619197504476],
[-73.94645858066653, 40.843254383260813],
[-73.946124163555936, 40.843892496556798],
[-73.946078805570878, 40.844597670328312],
[-73.946222711667687, 40.845259166341265],
[-73.946171749838769, 40.845392891580602],
[-73.946276650241529, 40.845690659918688],
[-73.946517302005773, 40.845995184403719],
[-73.946348394593556, 40.846156448606784],
[-73.946350780499756, 40.846240330786678],
[-73.946473530579567, 40.846528617660859],
[-73.946717678791757, 40.846824758247152],
[-73.946824453426444, 40.84713426206978],
[-73.946809352666193, 40.84728844663745],
[-73.94669858704917, 40.847497393872352],
[-73.946640582719724, 40.847939292150777],
[-73.94667853831578, 40.848837459093289],
[-73.946635500788531, 40.84891242506],
[-73.946733134063876, 40.849267497214484],
[-73.946855250043555, 40.849427680199618],
[-73.946995787242983, 40.849955924292502],
[-73.94695814408, 40.849985259448893],
[-73.947027824947213, 40.850041831812419],
[-73.946953429150824, 40.85009773522205],
[-73.947017816995071, 40.85012699598267],
[-73.947049802591934, 40.850223349228337],
[-73.946926264710086, 40.850528056171221],
[-73.943178060548533, 40.849799943501971],
[-73.943096479439902, 40.850387302585411],
[-73.942903461592806, 40.850997163986833],
[-73.942539509647133, 40.851502105330411],
[-73.942038717152613, 40.851931028896026],
[-73.941262203066714, 40.851391962193738],
[-73.940688219683665, 40.851315432616992],
[-73.939926632495144, 40.851324304767111],
[-73.939570738465974, 40.851275556188313],
[-73.935753942962705, 40.850168202850213],
[-73.936396831360028, 40.849541194836931],
[-73.931393553157619, 40.847428231409459]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN50",
"NTAName": "Elmhurst-Maspeth",
"Shape_Leng": 32340.779366700000537,
"Shape_Area": 21956068.4625
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.891750487925307, 40.746811727636668],
[-73.891391455323372, 40.746641004329845],
[-73.890716475229851, 40.74312778397546],
[-73.887986507953244, 40.743548192370021],
[-73.887511320575101, 40.741082526635637],
[-73.885725881243403, 40.741288705926756],
[-73.885512251285192, 40.740165018885797],
[-73.882829121730339, 40.740992282854272],
[-73.882942868152554, 40.741609543720138],
[-73.881003879840236, 40.741840662492585],
[-73.879107397566855, 40.740445078215437],
[-73.877918317427017, 40.739394957188566],
[-73.877430583524855, 40.738600515668317],
[-73.879451548923228, 40.738198113637495],
[-73.882302526772222, 40.737707701154001],
[-73.880330593230184, 40.737333677227298],
[-73.880515367916132, 40.735752171924034],
[-73.880661889455112, 40.735707874190936],
[-73.877082762817011, 40.732909316762054],
[-73.878224559640387, 40.7321022697678],
[-73.877251224537545, 40.731794153381486],
[-73.877521957659283, 40.731593169216296],
[-73.880293919211894, 40.732561645303356],
[-73.881086916117894, 40.732935630218016],
[-73.883529103696148, 40.733848278704315],
[-73.883810869684709, 40.733559535668725],
[-73.885000178557419, 40.733970056541146],
[-73.886891977563522, 40.734099162842888],
[-73.887514266208797, 40.734225348823081],
[-73.88852285901477, 40.734531160015322],
[-73.889103189163833, 40.734592396461764],
[-73.892555546556181, 40.73447812580762],
[-73.893474083002516, 40.7346021775463],
[-73.894575449239284, 40.734946528619624],
[-73.894924217743636, 40.735007722183958],
[-73.896029315907342, 40.735017891608877],
[-73.896511051744355, 40.735096741542783],
[-73.896911880385389, 40.735086601830943],
[-73.898307996827228, 40.735194184325657],
[-73.899229447028276, 40.735111598773486],
[-73.900153434399726, 40.734796405449266],
[-73.900530150136419, 40.73456130234625],
[-73.901079708343048, 40.733914634276111],
[-73.904702975845098, 40.73567990310633],
[-73.905169488596584, 40.7358596431284],
[-73.906018304032528, 40.734010739079423],
[-73.905686459389088, 40.733915824807454],
[-73.905983532855572, 40.733265684116454],
[-73.906289034080629, 40.732400751532957],
[-73.910688764011496, 40.733471081742749],
[-73.909260030235444, 40.73640318078666],
[-73.907619065651076, 40.736650298835123],
[-73.906729505186064, 40.736913484977883],
[-73.903647525872231, 40.738217369347737],
[-73.901743216203997, 40.738900397521029],
[-73.900578253922575, 40.739492895899822],
[-73.899209507644116, 40.740545480524652],
[-73.895578092945428, 40.743502754204179],
[-73.895248196873425, 40.743819729816003],
[-73.894990264806978, 40.744134213152087],
[-73.894789492838058, 40.744584788407245],
[-73.894666307690727, 40.745176840070968],
[-73.894686581030157, 40.745624320109279],
[-73.89490427305202, 40.746271993106198],
[-73.89624245572702, 40.748719545581679],
[-73.892409066818175, 40.747135328888824],
[-73.891750487925307, 40.746811727636668]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN03",
"NTAName": "Springfield Gardens South-Brookville",
"Shape_Leng": 45274.917099799997231,
"Shape_Area": 43279187.9797
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.757631296181486, 40.666451156607003],
[-73.756021734424877, 40.666391716104144],
[-73.738564694677635, 40.666396898109404],
[-73.73954958290831, 40.665256022091512],
[-73.742818845898213, 40.66530554895855],
[-73.743409738548905, 40.664404169637649],
[-73.743749708955562, 40.66409039316683],
[-73.744053139268956, 40.663658070993037],
[-73.744509225561828, 40.663821278281553],
[-73.746847505150498, 40.660795540941663],
[-73.746792600833686, 40.658907622393706],
[-73.747332308774389, 40.659124521257944],
[-73.748531771254108, 40.65757569652888],
[-73.745060377980721, 40.657407150119411],
[-73.744874203255605, 40.656144558173438],
[-73.743287140938889, 40.656134732086848],
[-73.74332546796677, 40.652537804004851],
[-73.746549180448156, 40.652553481657442],
[-73.748671946549138, 40.652678088395319],
[-73.749371428027686, 40.653034834967038],
[-73.751094279616041, 40.654212441314705],
[-73.752088852544261, 40.654517704465071],
[-73.752948928599508, 40.654885040653767],
[-73.753718945592169, 40.655365381484557],
[-73.756066083031655, 40.656486460553559],
[-73.756809595098019, 40.657093283574106],
[-73.759226521689214, 40.657902236666494],
[-73.760036007095863, 40.658073441713967],
[-73.761657327898064, 40.658238086058716],
[-73.761723076122649, 40.657214421406053],
[-73.761844297518365, 40.656536950186457],
[-73.762104938714387, 40.656303066245634],
[-73.762429650873429, 40.656110602866761],
[-73.762799522453562, 40.655973307624869],
[-73.76319000548969, 40.655898054181009],
[-73.764062901415713, 40.65435626683103],
[-73.76976145189289, 40.657482236191747],
[-73.773055010661707, 40.659199751146858],
[-73.774189236333854, 40.659860524660452],
[-73.774849227088481, 40.660148686691628],
[-73.776708507222921, 40.660706230681697],
[-73.778491448830181, 40.661506302717456],
[-73.780755285683057, 40.662406602755688],
[-73.783218334769032, 40.663166283843644],
[-73.784814555396679, 40.663498582266875],
[-73.785025138063148, 40.663421072397398],
[-73.787511779942832, 40.663825243472708],
[-73.795822964591508, 40.664953255152966],
[-73.797024094798076, 40.665065883507978],
[-73.800728891702434, 40.665269376516306],
[-73.802032076901142, 40.665248024829793],
[-73.801555653353418, 40.666753364445803],
[-73.800270444047783, 40.666667527526009],
[-73.799422798744402, 40.666520664240252],
[-73.799196495975281, 40.666517526838128],
[-73.798519970418198, 40.666590883527398],
[-73.797394846866737, 40.666939885455065],
[-73.797110690284129, 40.666949669220728],
[-73.794987457592725, 40.666961827805274],
[-73.793066943468503, 40.667067294321896],
[-73.792184466833859, 40.667041889213493],
[-73.789409994219795, 40.66684115868712],
[-73.785664100112911, 40.667187540526569],
[-73.783300432959578, 40.667314606297978],
[-73.773424628128822, 40.668027620094527],
[-73.771544607186527, 40.667963269100092],
[-73.761822312729976, 40.666877760131975],
[-73.757631296181486, 40.666451156607003]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN76",
"NTAName": "Baisley Park",
"Shape_Leng": 31475.525893099998939,
"Shape_Area": 44041656.2692
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.774697301820126, 40.680486046911376],
[-73.777229236493667, 40.679652721449862],
[-73.77798227224234, 40.679321093162521],
[-73.780258594826847, 40.677840924390047],
[-73.783536132959384, 40.675503091130778],
[-73.783973840530436, 40.675117609201173],
[-73.784344963486276, 40.674696439919103],
[-73.785737308649303, 40.672385035134674],
[-73.786869020181513, 40.672823924563843],
[-73.788086472908688, 40.673009626498988],
[-73.789157819120319, 40.668338096249357],
[-73.789409994219795, 40.66684115868712],
[-73.792184466833859, 40.667041889213493],
[-73.793066943468503, 40.667067294321896],
[-73.794987457592725, 40.666961827805274],
[-73.797110690284129, 40.666949669220728],
[-73.797394846866737, 40.666939885455065],
[-73.798519970418198, 40.666590883527398],
[-73.799196495975281, 40.666517526838128],
[-73.799422798744402, 40.666520664240252],
[-73.800270444047783, 40.666667527526009],
[-73.801555653353418, 40.666753364445803],
[-73.801250796429386, 40.668385945324694],
[-73.80113236214261, 40.670548667618164],
[-73.801172343170705, 40.67220503174341],
[-73.801428368462453, 40.673666833941454],
[-73.801681947597231, 40.674383848959856],
[-73.805768401913696, 40.682932391250283],
[-73.798982090745369, 40.684858737823589],
[-73.799950428437242, 40.686827719453667],
[-73.795614867208357, 40.68865689126185],
[-73.793908416121042, 40.686304690893351],
[-73.790384682961104, 40.687753613799387],
[-73.786983444869961, 40.688608476970543],
[-73.78479240674821, 40.689361600173982],
[-73.783266250442054, 40.689994292736699],
[-73.782344528217379, 40.688407437988637],
[-73.781486756840565, 40.688697183315902],
[-73.779765091913518, 40.685743602628094],
[-73.779668506356003, 40.685377123625543],
[-73.776997676036359, 40.686282689007776],
[-73.77632402182509, 40.685216556766441],
[-73.77462061032881, 40.683990970674941],
[-73.774184149366832, 40.683237921987789],
[-73.773499152698022, 40.683482227562386],
[-73.773287040381206, 40.683454731934148],
[-73.772202752816185, 40.681610339283502],
[-73.772322112700763, 40.681490968263795],
[-73.774697301820126, 40.680486046911376]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN02",
"NTAName": "Springfield Gardens North",
"Shape_Leng": 25441.644374200001039,
"Shape_Area": 28428589.2844
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.760314640009412, 40.6751099713793],
[-73.758596302770258, 40.672747903665069],
[-73.75857198867719, 40.672637331616613],
[-73.758147606785357, 40.672706914807655],
[-73.756362392596728, 40.672429237110244],
[-73.756483745617189, 40.671489866373136],
[-73.756406213019602, 40.670372915422824],
[-73.756437343579577, 40.669666378743457],
[-73.756716024684579, 40.668562526875164],
[-73.756995333614228, 40.667741268564356],
[-73.757631296181486, 40.666451156607003],
[-73.761822312729976, 40.666877760131975],
[-73.771544607186527, 40.667963269100092],
[-73.773424628128822, 40.668027620094527],
[-73.783300432959578, 40.667314606297978],
[-73.785664100112911, 40.667187540526569],
[-73.789409994219795, 40.66684115868712],
[-73.789157819120319, 40.668338096249357],
[-73.788086472908688, 40.673009626498988],
[-73.786869020181513, 40.672823924563843],
[-73.785737308649303, 40.672385035134674],
[-73.784344963486276, 40.674696439919103],
[-73.783973840530436, 40.675117609201173],
[-73.783536132959384, 40.675503091130778],
[-73.780258594826847, 40.677840924390047],
[-73.77798227224234, 40.679321093162521],
[-73.777229236493667, 40.679652721449862],
[-73.774697301820126, 40.680486046911376],
[-73.768373307312459, 40.676550241336457],
[-73.765615731317311, 40.674779020456022],
[-73.763804847525563, 40.673769933016963],
[-73.763676775784091, 40.674745525726635],
[-73.76343036909249, 40.674706052823282],
[-73.762486004300342, 40.674194981766021],
[-73.760314640009412, 40.6751099713793]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN08",
"NTAName": "St. Albans",
"Shape_Leng": 45409.24650030000339,
"Shape_Area": 77414544.16
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.752050665169051, 40.705228027516945],
[-73.749305471451081, 40.699142313492345],
[-73.750192957514869, 40.698912081578214],
[-73.748633258867756, 40.69544476092139],
[-73.745237475759495, 40.696374659345423],
[-73.744745453947061, 40.696385465496483],
[-73.743592860878394, 40.696215325310398],
[-73.744266488424898, 40.694260101414407],
[-73.744846105648662, 40.693139056617866],
[-73.746243455799501, 40.691279444850935],
[-73.748569931605033, 40.687803738208487],
[-73.750089911971301, 40.685923446360121],
[-73.751030206225721, 40.684222867368142],
[-73.751804092156576, 40.682403323490654],
[-73.752258286854115, 40.681491411474006],
[-73.75484909670557, 40.677928838387388],
[-73.755234578057141, 40.677288409244824],
[-73.755761692274689, 40.675885909420444],
[-73.756488858358068, 40.676022762088451],
[-73.75672742391518, 40.676208765412049],
[-73.756918817190311, 40.676528870874932],
[-73.762486004300342, 40.674194981766021],
[-73.76343036909249, 40.674706052823282],
[-73.763676775784091, 40.674745525726635],
[-73.763804847525563, 40.673769933016963],
[-73.765615731317311, 40.674779020456022],
[-73.768373307312459, 40.676550241336457],
[-73.774697301820126, 40.680486046911376],
[-73.772322112700763, 40.681490968263795],
[-73.772202752816185, 40.681610339283502],
[-73.773287040381206, 40.683454731934148],
[-73.773499152698022, 40.683482227562386],
[-73.774184149366832, 40.683237921987789],
[-73.77462061032881, 40.683990970674941],
[-73.77632402182509, 40.685216556766441],
[-73.776997676036359, 40.686282689007776],
[-73.779668506356003, 40.685377123625543],
[-73.779765091913518, 40.685743602628094],
[-73.781486756840565, 40.688697183315902],
[-73.782344528217379, 40.688407437988637],
[-73.783266250442054, 40.689994292736699],
[-73.780781554982994, 40.691029942948738],
[-73.779772950700547, 40.689281169987908],
[-73.777893373717404, 40.689917690032544],
[-73.780237238471159, 40.692972335435513],
[-73.779440813376453, 40.693645109697613],
[-73.777835934156414, 40.694321335403231],
[-73.776597755177164, 40.695969114416989],
[-73.774593774789651, 40.698799498181351],
[-73.77395659465941, 40.69980578158961],
[-73.772307685991976, 40.700571507822325],
[-73.775074622964596, 40.705239983801796],
[-73.775592187699715, 40.705329308723101],
[-73.775614862968467, 40.705697221749432],
[-73.775554510903845, 40.706070835688188],
[-73.775308088710645, 40.706606178568286],
[-73.774900933012276, 40.707066661911355],
[-73.774308436488539, 40.707393668458366],
[-73.773337994822683, 40.707793515719537],
[-73.772301416913407, 40.708071423033928],
[-73.768445465168426, 40.709637027159808],
[-73.768259690524673, 40.709526367876904],
[-73.767250759389057, 40.706312557849991],
[-73.767014417766205, 40.705268131307605],
[-73.766572824688012, 40.702751621013213],
[-73.76612489376727, 40.702334485772944],
[-73.761263593406966, 40.703598940959218],
[-73.760955465506697, 40.702909577938051],
[-73.752050665169051, 40.705228027516945]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK77",
"NTAName": "Bushwick North",
"Shape_Leng": 26403.166000500001246,
"Shape_Area": 25021091.1922
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.901232905940518, 40.691442278637588],
[-73.901804671540461, 40.690766298266446],
[-73.904055771221564, 40.68854627866007],
[-73.904824996707589, 40.688808569870126],
[-73.931155339243034, 40.703772334870159],
[-73.93269784924918, 40.703170391222542],
[-73.933918707548713, 40.70748702613151],
[-73.924186474564692, 40.709064729331942],
[-73.921891846326488, 40.709396096710343],
[-73.911807100693679, 40.703434952529179],
[-73.912904041218923, 40.702361891799228],
[-73.91067882737353, 40.701045969566657],
[-73.911808201044195, 40.699938003124402],
[-73.904260184116879, 40.695700371443174],
[-73.9057959700921, 40.694127155513563],
[-73.902072774310113, 40.691999231304713],
[-73.90148893588011, 40.691556884206413],
[-73.901232905940518, 40.691442278637588]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN20",
"NTAName": "Ridgewood",
"Shape_Leng": 40613.604965899998206,
"Shape_Area": 50486248.6288
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.904772445685595, 40.712865799877406],
[-73.895903860584312, 40.712506959230033],
[-73.885075557489927, 40.712161055608895],
[-73.880062677068068, 40.712652573689461],
[-73.879076852823772, 40.710359389840455],
[-73.879434955035123, 40.710284419435496],
[-73.879261812483094, 40.709905347268318],
[-73.878727832073309, 40.710027535141897],
[-73.877611341786377, 40.70716770558127],
[-73.880861884837941, 40.706584729365744],
[-73.88088332654786, 40.706453977770217],
[-73.883772969180711, 40.706294201654678],
[-73.885532141588143, 40.70644568324871],
[-73.885549468518448, 40.706154618533631],
[-73.886528268148339, 40.706225206377354],
[-73.889119176855118, 40.705598877396639],
[-73.891053169727996, 40.703816413302434],
[-73.893840184139847, 40.700859726059377],
[-73.895003226849312, 40.699712377463882],
[-73.894849949635756, 40.698589623323301],
[-73.89578005089632, 40.698510962141498],
[-73.895584576495054, 40.697127642006642],
[-73.896772499659974, 40.696799116796022],
[-73.898381851974165, 40.69613599750226],
[-73.898885857728132, 40.695389475400347],
[-73.900030392163771, 40.693437450574173],
[-73.90038667856075, 40.693139959624681],
[-73.901232905940518, 40.691442278637588],
[-73.90148893588011, 40.691556884206413],
[-73.902072774310113, 40.691999231304713],
[-73.9057959700921, 40.694127155513563],
[-73.904260184116879, 40.695700371443174],
[-73.911808201044195, 40.699938003124402],
[-73.91067882737353, 40.701045969566657],
[-73.912904041218923, 40.702361891799228],
[-73.911807100693679, 40.703434952529179],
[-73.921891846326488, 40.709396096710343],
[-73.920745196554748, 40.710529686490297],
[-73.921220735263688, 40.710790558556432],
[-73.921546016956825, 40.711043283534813],
[-73.921686636335579, 40.711894317398375],
[-73.922232945987616, 40.71285442485275],
[-73.923139363493576, 40.713394728090911],
[-73.924040113340226, 40.714008312628891],
[-73.910778073583842, 40.713187599919003],
[-73.910158178549167, 40.713821599986424],
[-73.912830376669248, 40.715360907984277],
[-73.91245827647036, 40.715532290204798],
[-73.91221070492854, 40.715709356790903],
[-73.911342707828993, 40.716597028861635],
[-73.910483644468457, 40.717327965045953],
[-73.909659801415259, 40.717793155829689],
[-73.909433986583622, 40.717581773342957],
[-73.906963708189465, 40.717304417247583],
[-73.906390100284867, 40.717363692054761],
[-73.905375822250747, 40.712876581563286],
[-73.904772445685595, 40.712865799877406]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN21",
"NTAName": "Middle Village",
"Shape_Leng": 42663.07115899999917,
"Shape_Area": 57691281.7433
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.859654168376267, 40.713379961412308],
[-73.865009820016127, 40.710776908933404],
[-73.866618231915368, 40.710401648558673],
[-73.870164624503246, 40.709207743441674],
[-73.869895824695419, 40.708507094191454],
[-73.869497385538793, 40.707872070218677],
[-73.869110070930205, 40.707089336764199],
[-73.871534003835549, 40.707036767056373],
[-73.877206147578434, 40.706688840499552],
[-73.879006842841989, 40.706536839367274],
[-73.88088332654786, 40.706453977770217],
[-73.880861884837941, 40.706584729365744],
[-73.877611341786377, 40.70716770558127],
[-73.878727832073309, 40.710027535141897],
[-73.879261812483094, 40.709905347268318],
[-73.879434955035123, 40.710284419435496],
[-73.879076852823772, 40.710359389840455],
[-73.880062677068068, 40.712652573689461],
[-73.885075557489927, 40.712161055608895],
[-73.895903860584312, 40.712506959230033],
[-73.904772445685595, 40.712865799877406],
[-73.897502264331919, 40.716383867712871],
[-73.897924303413092, 40.71678540231752],
[-73.899018210999273, 40.717382127467658],
[-73.898820955641725, 40.717372228501745],
[-73.897267578660134, 40.718147156562715],
[-73.898347600534848, 40.719197677564473],
[-73.899851494227988, 40.718375397966142],
[-73.900059380443253, 40.718046378606864],
[-73.90033904275478, 40.718019947896671],
[-73.900334544690793, 40.718669139905508],
[-73.900626444278728, 40.719764054044539],
[-73.90009286425726, 40.72017685333995],
[-73.89783709951287, 40.720470195912071],
[-73.897748243765449, 40.720357347299988],
[-73.897365983171852, 40.720464382872969],
[-73.897397048672275, 40.721551209957802],
[-73.899816101604344, 40.721236900280644],
[-73.900105586627333, 40.723296240522728],
[-73.899031918175908, 40.723856960314897],
[-73.898352851045317, 40.723112289868197],
[-73.895823806406511, 40.723898822128511],
[-73.895697433269049, 40.723412585544288],
[-73.894510325156048, 40.72313194913233],
[-73.894264941449762, 40.723143188916595],
[-73.890303293685449, 40.724923886747668],
[-73.890174496780944, 40.724946889035785],
[-73.887077120512558, 40.724637701844806],
[-73.887132535751547, 40.726142346534914],
[-73.887203956087305, 40.726193231923638],
[-73.887241138505161, 40.727401608896272],
[-73.887205249540472, 40.72779299719091],
[-73.886237658849794, 40.72812701722863],
[-73.885007295019903, 40.728371895070104],
[-73.881723016990421, 40.728635254029015],
[-73.880897936490641, 40.728741312442168],
[-73.880088774891078, 40.728906274716742],
[-73.879693540885071, 40.729010159418607],
[-73.876283024266357, 40.730313093919648],
[-73.875091541556088, 40.730671363219606],
[-73.871460742495728, 40.729326374138402],
[-73.870845394241812, 40.727484593440543],
[-73.869707653512307, 40.725146434141379],
[-73.869292704890839, 40.724435929474879],
[-73.865238706117438, 40.719976710026678],
[-73.863018501424349, 40.717707881856818],
[-73.860037898757739, 40.714932235723943],
[-73.859827461722375, 40.714561689609098],
[-73.859629209701808, 40.713975295194537],
[-73.859654168376267, 40.713379961412308]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX49",
"NTAName": "Pelham Parkway",
"Shape_Leng": 25816.822706599999947,
"Shape_Area": 23033456.4967
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.836819185270599, 40.857276809597224],
[-73.836905822096583, 40.85718069620436],
[-73.836912127593763, 40.857008107135286],
[-73.83667557198514, 40.856652663480084],
[-73.834995526029743, 40.856571200778298],
[-73.836466679677471, 40.856098438725574],
[-73.837342493238623, 40.855866864323716],
[-73.838185611722892, 40.855564009581883],
[-73.839357089828468, 40.854986753609488],
[-73.840497673660622, 40.854184105115948],
[-73.841491632939579, 40.853194286309233],
[-73.844940537306996, 40.848218220851265],
[-73.845055066207763, 40.848946559767633],
[-73.844969540447181, 40.850097031115403],
[-73.844308468989524, 40.851190464196357],
[-73.844530771799285, 40.851132898978832],
[-73.84668500549904, 40.851118078163694],
[-73.847210276657165, 40.851036839058565],
[-73.847297812569181, 40.851086868974129],
[-73.849688697306618, 40.851058906538185],
[-73.853045268681456, 40.849547332435804],
[-73.854573882354728, 40.851508345732427],
[-73.860694566046831, 40.848753394395757],
[-73.861192408411242, 40.848603468111556],
[-73.862509237534866, 40.848362281172193],
[-73.862788728139492, 40.849237983171783],
[-73.863039380731252, 40.850611307232278],
[-73.865187872363975, 40.850164386169048],
[-73.866121308268191, 40.850527222416304],
[-73.868605155758956, 40.852068645940726],
[-73.869904215024718, 40.855773292692966],
[-73.869888422869536, 40.855971067150314],
[-73.868188305588333, 40.858063833808266],
[-73.868173340236467, 40.857918549295697],
[-73.868077723514773, 40.857846842343427],
[-73.867587524687679, 40.857830089651884],
[-73.856637746041329, 40.858119171989209],
[-73.849308934057802, 40.858717502857857],
[-73.847397469750319, 40.858682545855956],
[-73.846458540773, 40.858636373703696],
[-73.843295531505987, 40.858290375629061],
[-73.836819185270599, 40.857276809597224]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN68",
"NTAName": "Queensbridge-Ravenswood-Long Island City",
"Shape_Leng": 27071.612922399999661,
"Shape_Area": 23312820.1501
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.934527301094391, 40.771176775103349],
[-73.934246096150403, 40.771029275674159],
[-73.93447449145674, 40.77041159718884],
[-73.934869254707138, 40.769850878444075],
[-73.93577133991252, 40.769050010045063],
[-73.935931771031093, 40.76778370276552],
[-73.938589768733195, 40.766817359249039],
[-73.936005323868429, 40.765884894706048],
[-73.937004786038756, 40.764239954216933],
[-73.933980921380012, 40.762825982260154],
[-73.936790916619671, 40.759882881139255],
[-73.924157000437262, 40.753961142331718],
[-73.925627437254548, 40.752137244754955],
[-73.926468669311788, 40.75206856840569],
[-73.932276232475246, 40.751953886037029],
[-73.933832694066083, 40.751604701940167],
[-73.934742591537983, 40.750979044072167],
[-73.936756971031741, 40.749146971790879],
[-73.93739653782103, 40.748916440465884],
[-73.937737324549289, 40.749251307789663],
[-73.937966578067218, 40.74966908558995],
[-73.938118216867124, 40.749792645154734],
[-73.939633486841217, 40.750382011140445],
[-73.950807638183491, 40.755263680114297],
[-73.945964242198528, 40.761292606610262],
[-73.945705256407351, 40.761488157056597],
[-73.943502819666335, 40.764499040743466],
[-73.941311749414496, 40.766918004769607],
[-73.940351037182808, 40.767653375987059],
[-73.939835593491225, 40.767988005939294],
[-73.939533216637685, 40.768058743851682],
[-73.939365872238881, 40.768159701376995],
[-73.938955024533541, 40.767958186217037],
[-73.938203835521762, 40.768727571864261],
[-73.937576325834357, 40.768923994185279],
[-73.936814606547287, 40.768903947478385],
[-73.936685391194146, 40.769133054690869],
[-73.936707379230867, 40.769252609073739],
[-73.936403818023152, 40.769474884014642],
[-73.936169138534581, 40.769516114654117],
[-73.935740214326245, 40.769367229866518],
[-73.935240168311864, 40.769679325462953],
[-73.93489533894558, 40.770041862889499],
[-73.934694990670806, 40.770425337519953],
[-73.935147154025984, 40.770541956058381],
[-73.935008138722736, 40.771162394363955],
[-73.934938929566925, 40.771164053177259],
[-73.934904812826503, 40.771270641186653],
[-73.934527301094391, 40.771176775103349]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX28",
"NTAName": "Van Cortlandt Village",
"Shape_Leng": 21981.000146599999425,
"Shape_Area": 25662783.3014
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.887051425361179, 40.88434957584596],
[-73.887123035848091, 40.883200939945446],
[-73.887231940098275, 40.883054978428362],
[-73.886970075228717, 40.882795642716843],
[-73.886942468094659, 40.882682766755892],
[-73.887165051991502, 40.882576510892207],
[-73.885950716642014, 40.880507412132523],
[-73.885675180256698, 40.878872510808471],
[-73.88773577644082, 40.877033881790197],
[-73.889371637531937, 40.87338229790118],
[-73.887851963287943, 40.87211417612788],
[-73.887935036645644, 40.872030232357233],
[-73.888684499116437, 40.871495113018035],
[-73.890986969935767, 40.870160715430785],
[-73.891574001094426, 40.869684252840855],
[-73.891917182608196, 40.869302110075438],
[-73.894381303247641, 40.866068851211629],
[-73.89631315736122, 40.867038575444582],
[-73.897403232987216, 40.867474189711132],
[-73.896560605312658, 40.868565200083758],
[-73.898918542982656, 40.869658574486635],
[-73.899338511723883, 40.869228028104736],
[-73.899603003606373, 40.868728208256286],
[-73.899652202079139, 40.868554578780966],
[-73.899424361874068, 40.867880837716164],
[-73.901941550237453, 40.868533630798417],
[-73.902358048464379, 40.868696120953416],
[-73.903186674659011, 40.869148990988549],
[-73.903749758939654, 40.869595627140072],
[-73.904420032097946, 40.870361276001098],
[-73.904488605559152, 40.870578548548202],
[-73.904434287985069, 40.872245309283308],
[-73.904520704503781, 40.87249521120475],
[-73.904677282745453, 40.872619879498885],
[-73.905714253625064, 40.873138322101767],
[-73.906079179779709, 40.873242420693963],
[-73.904803650027588, 40.875711537473151],
[-73.903898337811597, 40.878121108052639],
[-73.903694547882324, 40.878501618269176],
[-73.903336053723081, 40.878975145596918],
[-73.9015065841932, 40.880954906321385],
[-73.898550599424439, 40.884374727091902],
[-73.896615465559137, 40.885955255507923],
[-73.894675295964291, 40.885532650036893],
[-73.892886445204383, 40.885264306808658],
[-73.887586126089204, 40.884255619160413],
[-73.887051425361179, 40.88434957584596]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX30",
"NTAName": "Kingsbridge Heights",
"Shape_Leng": 21305.87663479999901,
"Shape_Area": 13167151.1829
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.906079179779709, 40.873242420693963],
[-73.905714253625064, 40.873138322101767],
[-73.904677282745453, 40.872619879498885],
[-73.904520704503781, 40.87249521120475],
[-73.904434287985069, 40.872245309283308],
[-73.904488605559152, 40.870578548548202],
[-73.904420032097946, 40.870361276001098],
[-73.903749758939654, 40.869595627140072],
[-73.903186674659011, 40.869148990988549],
[-73.902358048464379, 40.868696120953416],
[-73.901509816451792, 40.868395952942677],
[-73.899424361874068, 40.867880837716164],
[-73.899652202079139, 40.868554578780966],
[-73.899603003606373, 40.868728208256286],
[-73.899338511723883, 40.869228028104736],
[-73.898918542982656, 40.869658574486635],
[-73.896560605312658, 40.868565200083758],
[-73.901627850878157, 40.862054434077443],
[-73.902544793925955, 40.860578255336257],
[-73.903513904980173, 40.860917509647649],
[-73.904868472155229, 40.858693224708809],
[-73.906797349421453, 40.859373588931263],
[-73.907257861882812, 40.859353437919843],
[-73.907773205133822, 40.859607537685449],
[-73.909567200764997, 40.85759162415976],
[-73.909761658589346, 40.857182611604479],
[-73.90980269932912, 40.857607548833386],
[-73.910208180944082, 40.858288788870794],
[-73.910567992729966, 40.858620593233518],
[-73.910884884429734, 40.858776182937042],
[-73.913284369851439, 40.859618601832643],
[-73.912860930485351, 40.859894147177464],
[-73.91238663179108, 40.860122998635916],
[-73.911149373512544, 40.860523671317821],
[-73.910274224918425, 40.861054535340628],
[-73.909653295586068, 40.861606879536843],
[-73.909224264072236, 40.86213551835781],
[-73.909088224182653, 40.862399695640136],
[-73.909039509200355, 40.862678864086398],
[-73.909397034892876, 40.862567771966603],
[-73.909721940300102, 40.862406667991365],
[-73.910755958057763, 40.861651484364621],
[-73.911812291116988, 40.861732386904016],
[-73.91278962862323, 40.861872470523117],
[-73.914228240661188, 40.862490790217237],
[-73.913414621936539, 40.863367493700679],
[-73.912762719954614, 40.86302917415756],
[-73.912272789769787, 40.863632148996672],
[-73.912797621951398, 40.863898875433328],
[-73.912752162164935, 40.863945056842851],
[-73.912526045168718, 40.863795223335174],
[-73.912676340203859, 40.864021111602405],
[-73.910912923458199, 40.865937945987085],
[-73.910417744425814, 40.866569544193595],
[-73.910348270979242, 40.866742335857467],
[-73.910359838243878, 40.866876891405987],
[-73.9101746817974, 40.86719121511593],
[-73.909496643785218, 40.868831156640873],
[-73.90927464107402, 40.869554132885682],
[-73.908937149298978, 40.871019840308804],
[-73.908649431113773, 40.871385783802737],
[-73.908932351753805, 40.872157347970081],
[-73.908720463913795, 40.872228665589304],
[-73.908463679124694, 40.872620792207115],
[-73.9077427078456, 40.872845952111561],
[-73.9074648979431, 40.873547354236386],
[-73.906079179779709, 40.873242420693963]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK63",
"NTAName": "Crown Heights South",
"Shape_Leng": 24192.432476199999655,
"Shape_Area": 15989310.3348
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.961318779578491, 40.671406675930562],
[-73.959047252854177, 40.67088226754646],
[-73.955269636547627, 40.67012490485407],
[-73.947729963289049, 40.669713442409979],
[-73.947818575379486, 40.668783753674298],
[-73.936749470134089, 40.668127370786898],
[-73.936983623065913, 40.665535507877749],
[-73.928684044247774, 40.66508602327383],
[-73.928722045946571, 40.664495569182669],
[-73.930684654930317, 40.663620477275337],
[-73.942828922468394, 40.662847485669268],
[-73.942696288940979, 40.664055129235244],
[-73.945462936544999, 40.664226104136567],
[-73.957209353911551, 40.663517397280131],
[-73.957291726035209, 40.664302632819414],
[-73.957870619293175, 40.664273357503816],
[-73.96033682872293, 40.664108698348358],
[-73.960615447983969, 40.663302750168135],
[-73.960955953876265, 40.663285054833999],
[-73.962575313666122, 40.671644198394326],
[-73.961318779578491, 40.671406675930562]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK68",
"NTAName": "Fort Greene",
"Shape_Leng": 19829.757711199999903,
"Shape_Area": 16500442.1847
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.969394500454584, 40.696080389420437],
[-73.968809896471654, 40.693120382398817],
[-73.969831184735241, 40.693134243973894],
[-73.969103623994997, 40.689467521505399],
[-73.97013154130974, 40.68950630795856],
[-73.969062020326504, 40.684157361362722],
[-73.968689613576345, 40.682005257597297],
[-73.975952996979444, 40.683474698264583],
[-73.9768226804091, 40.683753838311027],
[-73.977457220972056, 40.684052286608065],
[-73.980928228528015, 40.688902477273615],
[-73.983720111486079, 40.690006718625263],
[-73.981475681916251, 40.689930943623899],
[-73.982131802275532, 40.691227237368146],
[-73.98178907346113, 40.691644867884435],
[-73.981758890437703, 40.692955173039614],
[-73.982539836920324, 40.693002615634008],
[-73.982511229555527, 40.69361433402814],
[-73.979167184050311, 40.693488323221146],
[-73.979380941822726, 40.693887756877182],
[-73.979956517743673, 40.694380294712161],
[-73.980135180530212, 40.694698017208239],
[-73.980409615171538, 40.696559343582436],
[-73.98054419183876, 40.698246512252155],
[-73.969727898821233, 40.697804013879981],
[-73.969394500454584, 40.696080389420437]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN47",
"NTAName": "Ft. Totten-Bay Terrace-Clearview",
"Shape_Leng": 39606.00921340000059,
"Shape_Area": 46297337.6267
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.767822075640126, 40.77881037631181],
[-73.767960731275991, 40.778776009213296],
[-73.768033333930475, 40.778858394557311],
[-73.768111746646241, 40.778834034780907],
[-73.768071922267595, 40.778748448538316],
[-73.768337889774159, 40.778682525141299],
[-73.768573050353012, 40.779105428804371],
[-73.775537321813601, 40.777025597979112],
[-73.775839583323403, 40.778612372112015],
[-73.77678363262261, 40.7784095837903],
[-73.779476560584158, 40.777664169919177],
[-73.78826972953263, 40.77507535732957],
[-73.791635260664592, 40.774238655585854],
[-73.793652302700096, 40.773360438641312],
[-73.795657020774243, 40.773036086212031],
[-73.797415227720194, 40.774010319151394],
[-73.797721900772785, 40.774272373809389],
[-73.798530094272778, 40.775190728883373],
[-73.803790228882463, 40.775610111792467],
[-73.803033184685489, 40.78094087010286],
[-73.803249747179692, 40.781275479895605],
[-73.802997819992257, 40.781410475638666],
[-73.802547246251677, 40.784673346674758],
[-73.802410701612658, 40.785817210986657],
[-73.802427916059486, 40.786068274476875],
[-73.797842055415089, 40.785894259235853],
[-73.79582463114869, 40.786130588111007],
[-73.794919776451948, 40.786338807548269],
[-73.793920318109372, 40.786675739970413],
[-73.790582990286751, 40.788192910455592],
[-73.791337548839834, 40.788857740801468],
[-73.791792804040881, 40.789351616093413],
[-73.790282023533635, 40.790316962897215],
[-73.789887386689173, 40.790371930979646],
[-73.789309071317703, 40.790380069550316],
[-73.787501999446874, 40.790308818005663],
[-73.785681013014056, 40.790340671659976],
[-73.783838425143543, 40.790640954671538],
[-73.783179410415983, 40.790866463700958],
[-73.782530806635236, 40.791276789431919],
[-73.782522656287057, 40.791352226905843],
[-73.784406690696215, 40.791675839333713],
[-73.784341530595952, 40.791749353794799],
[-73.782273301833897, 40.791373715717981],
[-73.781747088292278, 40.791133406645741],
[-73.781233620459219, 40.791484602460457],
[-73.781078459702229, 40.791677321779048],
[-73.780897847912783, 40.792193704849026],
[-73.780775031391826, 40.792990704837955],
[-73.780778925480931, 40.793189785865067],
[-73.780839490143194, 40.793277440172815],
[-73.781588815450164, 40.7934635410125],
[-73.7816386419167, 40.793309707766824],
[-73.781683728304827, 40.793321756508213],
[-73.781608793793708, 40.793451615702814],
[-73.781660115553905, 40.793482020313022],
[-73.781642134334632, 40.793525053377614],
[-73.780821548698, 40.793319429000618],
[-73.780808088040601, 40.79335093271451],
[-73.780724350698364, 40.793333618824171],
[-73.780700255162586, 40.793648505909438],
[-73.780791820726506, 40.794035919864378],
[-73.781005396672953, 40.794384818627137],
[-73.781528574791622, 40.794724855776643],
[-73.781810037629214, 40.794801852419852],
[-73.781903854871686, 40.794901203895428],
[-73.783109769639708, 40.794914460505801],
[-73.783289488336933, 40.794759960263519],
[-73.783320433630124, 40.794787845764965],
[-73.783174068568613, 40.794984558047005],
[-73.782003261033807, 40.79497546250353],
[-73.781824599084629, 40.795077289210923],
[-73.781726255755814, 40.795427505519946],
[-73.781541500327478, 40.795659737319994],
[-73.779898374921174, 40.796238097861568],
[-73.779803051181958, 40.796205528937996],
[-73.779449614564967, 40.796576238063878],
[-73.779433015160635, 40.796661538576522],
[-73.779362468048291, 40.796685392534812],
[-73.779272878411163, 40.796637683819313],
[-73.778714788287317, 40.796597360197261],
[-73.778412093783047, 40.79670470445808],
[-73.778084861223931, 40.796740032081985],
[-73.777489737564849, 40.796637379431523],
[-73.776870504895896, 40.796445204695402],
[-73.776139637479915, 40.796071546282526],
[-73.775300796512283, 40.795279974709928],
[-73.774718142440221, 40.794859870127723],
[-73.774371743398717, 40.794496060540496],
[-73.774151431107413, 40.794137871852072],
[-73.774013534975154, 40.794030001364582],
[-73.774018221948268, 40.793768218453664],
[-73.773632481227907, 40.792749756213794],
[-73.773204671725722, 40.792242532231803],
[-73.772362962281392, 40.791538204131456],
[-73.772251518745804, 40.791233671476128],
[-73.772253428438063, 40.7904835997888],
[-73.772132928264625, 40.790178774334414],
[-73.771778883843979, 40.789902910334419],
[-73.771745546160673, 40.789694883529656],
[-73.771668113480146, 40.789591911098363],
[-73.770631245377743, 40.788462905032013],
[-73.770689422921478, 40.788214065895552],
[-73.770823150214255, 40.787982667059907],
[-73.771902057473156, 40.787386594993393],
[-73.772283405181682, 40.787305066669632],
[-73.77396728781514, 40.786781773714523],
[-73.774268361250904, 40.786756658656024],
[-73.774346092179712, 40.786772234135043],
[-73.774389768349096, 40.786857145296807],
[-73.774200026621315, 40.786962163139648],
[-73.774230114868587, 40.787065041675916],
[-73.775019226121813, 40.787394474382836],
[-73.776289448554294, 40.788513648199427],
[-73.776337288848453, 40.788487225755055],
[-73.775048103727102, 40.787192594071392],
[-73.774862482404259, 40.787079130134643],
[-73.774806953694153, 40.786970687278853],
[-73.774630826124621, 40.786919418690374],
[-73.774454625030472, 40.786679909222251],
[-73.774264666944347, 40.786651229145228],
[-73.774096098951034, 40.786296565303843],
[-73.774076382977881, 40.785917284019185],
[-73.771607319794867, 40.782996265185446],
[-73.769304057762412, 40.780781957982683],
[-73.768337956738876, 40.77963487220071],
[-73.768159154444035, 40.779635958694875],
[-73.768134588381599, 40.779589640442005],
[-73.768231902541118, 40.779501637642667],
[-73.768200555261402, 40.779444179192289],
[-73.767161936875922, 40.779782875660651],
[-73.767207293674673, 40.779866828611851],
[-73.766997835350963, 40.77993147052598],
[-73.767073433566196, 40.78007042899435],
[-73.767023923465061, 40.780086234158304],
[-73.766889947038393, 40.779779433943396],
[-73.766775704402264, 40.779812458197092],
[-73.76675868631223, 40.779783505589869],
[-73.767088159127383, 40.779667054750846],
[-73.767135449099044, 40.779742337145322],
[-73.768161730515814, 40.779396821241981],
[-73.767822075640126, 40.77881037631181]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK09",
"NTAName": "Brooklyn Heights-Cobble Hill",
"Shape_Leng": 14137.068601700000727,
"Shape_Area": 9976529.85203
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.992363670432468, 40.68969012377697],
[-73.997769243790103, 40.69119469786073],
[-74.001105193250609, 40.692056595339189],
[-74.001743621110407, 40.692406749705455],
[-74.001270149686704, 40.693296061673706],
[-74.000958684830195, 40.694069083582193],
[-74.000268723777879, 40.694965802075323],
[-73.999413024332057, 40.696357676955856],
[-73.999523739035141, 40.69657482604083],
[-73.999474068206041, 40.696704134461974],
[-73.999181990168637, 40.696885188064741],
[-73.998996041391933, 40.696812278372938],
[-73.998939690346873, 40.696940940515788],
[-73.998872072764527, 40.696923784071544],
[-73.998764580277054, 40.697120732591387],
[-73.998871170976557, 40.697157576793245],
[-73.997498983100002, 40.699638869321213],
[-73.997367458116869, 40.699634234427144],
[-73.997160542439218, 40.699792812644105],
[-73.997175843558821, 40.700105991966332],
[-73.99724462871697, 40.70014140989705],
[-73.995045927483247, 40.703131839799553],
[-73.994908160293548, 40.703047341121653],
[-73.993809966213917, 40.702674411501967],
[-73.992612049724272, 40.70206112850353],
[-73.990932018075284, 40.700766216048706],
[-73.990874537580652, 40.700673117295842],
[-73.990822720965028, 40.70035475430933],
[-73.991295199405073, 40.699189432032689],
[-73.991433471288445, 40.698281858812017],
[-73.991368121637748, 40.697013752735714],
[-73.991284136877439, 40.696588210283707],
[-73.990444740282058, 40.693828251433537],
[-73.990971868995871, 40.692548800385367],
[-73.989472385544673, 40.692295493845059],
[-73.989029446989974, 40.692123861519974],
[-73.989307684760789, 40.690991688467911],
[-73.990544746143485, 40.689168105295821],
[-73.990706695589424, 40.689136744110641],
[-73.992363670432468, 40.68969012377697]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN21",
"NTAName": "Gramercy",
"Shape_Leng": 12089.999482699999135,
"Shape_Area": 7531851.57929
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.978498456398043, 40.736790956525432],
[-73.979446059744632, 40.735414515062487],
[-73.982386286857448, 40.731411244808179],
[-73.982556292978032, 40.731350134554567],
[-73.989902959700501, 40.734434790136874],
[-73.989955658676863, 40.734976589991319],
[-73.989916900214297, 40.735349341599722],
[-73.984074851940733, 40.743324718416474],
[-73.980859654124075, 40.741969768081923],
[-73.982664974790254, 40.739497332704119],
[-73.978052264976156, 40.737553953656167],
[-73.978498456398043, 40.736790956525432]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX44",
"NTAName": "Williamsbridge-Olinville",
"Shape_Leng": 27350.974346800001513,
"Shape_Area": 36273563.8958
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.847049579885422, 40.887671815879408],
[-73.847443968846406, 40.886978531167188],
[-73.852483058338166, 40.879463705041047],
[-73.852070117202231, 40.879297657085573],
[-73.850918960835472, 40.87789344063507],
[-73.852548540971895, 40.877091586764351],
[-73.851722361364466, 40.876843370663082],
[-73.850689556654004, 40.875486677883409],
[-73.851432479856015, 40.874987270980604],
[-73.8536363872702, 40.873300599208925],
[-73.856512923876252, 40.87421779315936],
[-73.856613824504223, 40.871250166982101],
[-73.870561925246619, 40.871510778453704],
[-73.87037667181832, 40.873284372161969],
[-73.870317507738818, 40.875779793462527],
[-73.870220328606734, 40.876262642890062],
[-73.869385579395868, 40.87823358296982],
[-73.869074075649877, 40.878579167530482],
[-73.868851032929157, 40.878579817735357],
[-73.8660523126306, 40.884287044151115],
[-73.866060284617745, 40.884505799734349],
[-73.866253458161935, 40.884907300171022],
[-73.866267272120027, 40.885147691324406],
[-73.866206615084451, 40.885378614565305],
[-73.862766619665535, 40.891619574841052],
[-73.862739721881042, 40.891838892825461],
[-73.861982295827417, 40.893161262787117],
[-73.861359278642993, 40.894662319355469],
[-73.860710981279681, 40.895370544372014],
[-73.856956194033927, 40.894167937723161],
[-73.857362816852131, 40.893411439404787],
[-73.845905685461574, 40.889741369883325],
[-73.847049579885422, 40.887671815879408]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK64",
"NTAName": "Prospect Heights",
"Shape_Leng": 15043.44544599999972,
"Shape_Area": 10241026.5391
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.968689613576345, 40.682005257597297],
[-73.961346558857869, 40.680463524300905],
[-73.961539619564292, 40.680086255027099],
[-73.963182387903444, 40.675529503985999],
[-73.960074282831229, 40.674878070971616],
[-73.961318779578491, 40.671406675930562],
[-73.962575313666122, 40.671644198394326],
[-73.963143278462567, 40.671860108525728],
[-73.964179309359153, 40.672108813422213],
[-73.965490821376648, 40.67252338205531],
[-73.966885962541639, 40.672852807351006],
[-73.968172958547754, 40.673029414357451],
[-73.968655414474853, 40.67302383930533],
[-73.968942063512657, 40.67288749127016],
[-73.968741747173723, 40.673448029972036],
[-73.968742049657706, 40.674087121968881],
[-73.968839108508561, 40.674407967028472],
[-73.969077317256023, 40.674839670814478],
[-73.969283106819915, 40.67507596707361],
[-73.969693175491784, 40.67536085443335],
[-73.969497387844655, 40.675906379964239],
[-73.971885967728113, 40.676394652976754],
[-73.976180513523389, 40.678064320963692],
[-73.974691183072565, 40.680266616301957],
[-73.973740117321952, 40.682892032496298],
[-73.973755984166047, 40.6830340197846],
[-73.968689613576345, 40.682005257597297]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN22",
"NTAName": "Flushing",
"Shape_Leng": 38417.499814900002093,
"Shape_Area": 37844419.0141
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.823312869213538, 40.779578659835018],
[-73.824144804923733, 40.777478093229149],
[-73.824331019413791, 40.776743070302103],
[-73.824868009749522, 40.776542354846342],
[-73.825830899774417, 40.775915271581319],
[-73.826253485265767, 40.774520659102734],
[-73.826574818657306, 40.772345397962908],
[-73.826558419716434, 40.770137083593291],
[-73.824669090323155, 40.770407607808608],
[-73.82348245212701, 40.764651792367381],
[-73.820806848589299, 40.75894178331643],
[-73.820635933393703, 40.758872267847984],
[-73.817892456618182, 40.757086337981747],
[-73.820300677367769, 40.755514979720409],
[-73.818407829242304, 40.753830422078501],
[-73.820849288367427, 40.752241544925482],
[-73.817686509864657, 40.749288211814424],
[-73.815373173556836, 40.747218337859685],
[-73.815750694834094, 40.746979480114774],
[-73.817820258883799, 40.747385416147992],
[-73.821084275912796, 40.748558445943026],
[-73.824264938084113, 40.751832888588474],
[-73.82576557247215, 40.750969024252733],
[-73.82566698623404, 40.750908748013252],
[-73.825652012636837, 40.750652998955587],
[-73.825844409595348, 40.749348391098763],
[-73.827239215378725, 40.749859603090087],
[-73.827656419352593, 40.749860830845037],
[-73.828273499975452, 40.74967871546275],
[-73.829225119718203, 40.749256081183944],
[-73.830919725367352, 40.748961710958739],
[-73.8310920653268, 40.748860612159397],
[-73.831217785868049, 40.74869012268929],
[-73.831286408875869, 40.748458585243213],
[-73.831254798397964, 40.748106359629119],
[-73.833003019868713, 40.747833631459287],
[-73.833141417387935, 40.748032182689599],
[-73.832776239208172, 40.749313495051425],
[-73.832275818788673, 40.751457595065354],
[-73.832247237430082, 40.751700591324202],
[-73.832295356728466, 40.751941791138378],
[-73.835602309484074, 40.751394853335547],
[-73.835998400955958, 40.752005736585296],
[-73.837014067029969, 40.754027421142212],
[-73.837780382126311, 40.754130683347597],
[-73.838142333214478, 40.754854037912239],
[-73.838340412056894, 40.755425462853758],
[-73.838673218927866, 40.75701997859202],
[-73.836791072698659, 40.761166671252994],
[-73.836916943580988, 40.762766680059009],
[-73.837904295883803, 40.764587797308131],
[-73.839458134461509, 40.765445768458655],
[-73.838711021675877, 40.766668386432094],
[-73.838057667097772, 40.76759634398352],
[-73.837467946198117, 40.768306717705713],
[-73.836140524864007, 40.769527373748446],
[-73.835366235998265, 40.770121440966861],
[-73.834339601565745, 40.770787819509245],
[-73.831614555177822, 40.772410209224908],
[-73.830000110595762, 40.77373240736587],
[-73.829082561726423, 40.774794320652795],
[-73.82830621345812, 40.776000787922001],
[-73.826164371673414, 40.779684645389793],
[-73.825137403229505, 40.781699706392388],
[-73.822241277042338, 40.781693879480549],
[-73.822775969621944, 40.780833776698614],
[-73.823312869213538, 40.779578659835018]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN51",
"NTAName": "Murray Hill",
"Shape_Leng": 33266.904815499998222,
"Shape_Area": 52488277.9369
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.803790228882463, 40.775610111792467],
[-73.798530094272778, 40.775190728883373],
[-73.797721900772785, 40.774272373809389],
[-73.797415227720194, 40.774010319151394],
[-73.795657020774243, 40.773036086212031],
[-73.795215505847139, 40.772674907206216],
[-73.793179445560455, 40.770403177727857],
[-73.793959146528792, 40.764695319925636],
[-73.793025513657639, 40.764621192188663],
[-73.793436737694051, 40.76159683082907],
[-73.79343991212555, 40.760764127962446],
[-73.790760046204809, 40.760985769424657],
[-73.790315169966647, 40.757823450590287],
[-73.794024739591066, 40.757735968956531],
[-73.794932462339958, 40.757798030074532],
[-73.800300390374744, 40.759702299144521],
[-73.803999712944233, 40.760270487532594],
[-73.809513726220644, 40.761299911024956],
[-73.811049631733312, 40.761417020584616],
[-73.812267781006298, 40.761130021647148],
[-73.820635933393703, 40.758872267847984],
[-73.820806848589299, 40.75894178331643],
[-73.82348245212701, 40.764651792367381],
[-73.824669090323155, 40.770407607808608],
[-73.826558419716434, 40.770137083593291],
[-73.826574818657306, 40.772345397962908],
[-73.826253485265767, 40.774520659102734],
[-73.825830899774417, 40.775915271581319],
[-73.824868009749522, 40.776542354846342],
[-73.824331019413791, 40.776743070302103],
[-73.824144804923733, 40.777478093229149],
[-73.823312869213538, 40.779578659835018],
[-73.81452997802198, 40.778888174880279],
[-73.814858506556021, 40.776485923119502],
[-73.803790228882463, 40.775610111792467]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN26",
"NTAName": "North Corona",
"Shape_Leng": 18431.069387200001074,
"Shape_Area": 18000899.7125
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.854495932449041, 40.758278638673872],
[-73.854076121191056, 40.757652292978754],
[-73.853653519866697, 40.756835039370991],
[-73.853350951817262, 40.756012838313971],
[-73.853126354642072, 40.755109343016308],
[-73.853830813555348, 40.754958337513372],
[-73.85579909030595, 40.754409528174612],
[-73.854555522562876, 40.751961919034088],
[-73.855834955660555, 40.751577272458881],
[-73.854425752536628, 40.748851726884496],
[-73.860273360934329, 40.74710172766283],
[-73.860320276597264, 40.747195699021354],
[-73.867909638603578, 40.744933716588363],
[-73.868437510288771, 40.747031197315799],
[-73.86852925170723, 40.74758830224426],
[-73.868913958013025, 40.748368877041763],
[-73.870842156407505, 40.751544693089471],
[-73.873657217120808, 40.756803485601992],
[-73.865674370192238, 40.757629582857],
[-73.858561390343013, 40.757912436857744],
[-73.855403661466781, 40.758340309985478],
[-73.855302001577996, 40.758292841966799],
[-73.854908726659616, 40.758336449405832],
[-73.854495932449041, 40.758278638673872]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN14",
"NTAName": "Lincoln Square",
"Shape_Leng": 19866.166359800001374,
"Shape_Area": 15805578.2453
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.974997440205641, 40.777532545719424],
[-73.981679436393961, 40.76839013093614],
[-73.981457730724074, 40.768203951008935],
[-73.981436860158468, 40.768042154545725],
[-73.981485251721026, 40.767925411000718],
[-73.981791746128081, 40.767713756832023],
[-73.982110615330981, 40.767744476546319],
[-73.982365451056381, 40.767392153213493],
[-73.993874451260695, 40.77223816788824],
[-73.993502621808304, 40.772751633100519],
[-73.993887544363517, 40.772955744163838],
[-73.994012624805166, 40.772882845626746],
[-73.99430134239114, 40.772970028663899],
[-73.994376552750921, 40.773039551603937],
[-73.994294029823806, 40.773156243991799],
[-73.99502327652182, 40.773481196576192],
[-73.995089391892847, 40.773388475039113],
[-73.995013963716815, 40.773358034421754],
[-73.995050285360264, 40.773297153189866],
[-73.996240651898773, 40.773789791900242],
[-73.996195837470978, 40.773852356184072],
[-73.996108468808416, 40.773816316015079],
[-73.996063168742864, 40.773886886610065],
[-73.99617945997376, 40.773986954854081],
[-73.996095245226186, 40.774086186940181],
[-73.993935876811207, 40.773179512586104],
[-73.993767019318483, 40.773483981224835],
[-73.993411073804324, 40.773802630980178],
[-73.992622663865404, 40.774974056036925],
[-73.992403837852976, 40.775018140390706],
[-73.992267089035394, 40.775116033858545],
[-73.992059084937139, 40.775497598192246],
[-73.992329346608798, 40.775468900958515],
[-73.992386042960391, 40.775557179419465],
[-73.990927174149675, 40.777566878762961],
[-73.990396160036497, 40.777585065679041],
[-73.988868618061176, 40.779692922911465],
[-73.989409054841289, 40.779737706471998],
[-73.989752703599081, 40.779671244211606],
[-73.990040102120616, 40.779707676693064],
[-73.990961672224344, 40.779639683751732],
[-73.991242817404441, 40.779671367084504],
[-73.991359455569523, 40.779585882332221],
[-73.991551059227518, 40.779574820432188],
[-73.991419826520797, 40.779755280287077],
[-73.988886144116961, 40.779878898532715],
[-73.988939657367425, 40.77995617844045],
[-73.988919261468425, 40.780226094343668],
[-73.988127461025769, 40.781401796442232],
[-73.986543789518052, 40.780657980791055],
[-73.985679361176423, 40.78031263333493],
[-73.985071843450143, 40.781779680969194],
[-73.974997440205641, 40.777532545719424]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX41",
"NTAName": "Mount Hope",
"Shape_Leng": 18935.166884400001436,
"Shape_Area": 14718300.2296
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.895608833461807, 40.854570370097868],
[-73.901344045741496, 40.84442875076973],
[-73.904831219701393, 40.84480034209291],
[-73.905015149579256, 40.842404698319541],
[-73.905148939750944, 40.842547195738298],
[-73.905867219290428, 40.842579987245863],
[-73.905960618234445, 40.842628704119747],
[-73.910460083304088, 40.842791642974433],
[-73.910430264143429, 40.843107729073026],
[-73.911753380456901, 40.8431794926761],
[-73.911918123202696, 40.843257886684938],
[-73.912112221719639, 40.843260342546181],
[-73.915866478424789, 40.844793925579388],
[-73.91697152437618, 40.845115246126518],
[-73.914160763337279, 40.845177755190868],
[-73.910581698631674, 40.850181595822569],
[-73.909215456110886, 40.851800945066721],
[-73.905570073074671, 40.855787322394086],
[-73.903951542627013, 40.854973923518472],
[-73.901859960530388, 40.854586149762476],
[-73.900779227475368, 40.856047109728998],
[-73.898165775207474, 40.85514637639308],
[-73.898635437441371, 40.853906975436097],
[-73.898311186266056, 40.854061151051411],
[-73.897099268393688, 40.855172291445442],
[-73.895608833461807, 40.854570370097868]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI48",
"NTAName": "Arden Heights",
"Shape_Leng": 29692.218051799998648,
"Shape_Area": 50414857.8249
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.17185166522755, 40.561520923020225],
[-74.173587852329206, 40.559698427801415],
[-74.174373444465942, 40.558708666479504],
[-74.175124030060061, 40.557620037569343],
[-74.176116598415717, 40.555937541008795],
[-74.179911985635215, 40.548834453051072],
[-74.180185247479372, 40.548379608808318],
[-74.181285329824647, 40.54695757341559],
[-74.188269210911244, 40.538866142234454],
[-74.189031451899041, 40.538159342430127],
[-74.190304424847483, 40.537246453721451],
[-74.191353237606052, 40.536664859266565],
[-74.193771692585159, 40.535833847144801],
[-74.196092983837445, 40.540497736875608],
[-74.19730759116851, 40.543262045725037],
[-74.199850316155548, 40.548132419104526],
[-74.200970392763921, 40.550790139340307],
[-74.20326490006957, 40.555628476993355],
[-74.203148260345202, 40.556061784616574],
[-74.202208312019366, 40.555892906734549],
[-74.201683145708259, 40.555875693395393],
[-74.200915013434624, 40.556005260991661],
[-74.200467307027154, 40.556230490562903],
[-74.200182739225738, 40.556454433568511],
[-74.197694812214294, 40.558887053520117],
[-74.194075645383791, 40.562078473670468],
[-74.193173883640199, 40.562604344371231],
[-74.192684759516567, 40.562651717061833],
[-74.191689982521197, 40.56251540894916],
[-74.191010217348619, 40.562569402189567],
[-74.190560412688455, 40.562765455937488],
[-74.189979731282051, 40.563311605886078],
[-74.189477546114219, 40.563580990170628],
[-74.189099239993539, 40.563689271632931],
[-74.187268976300757, 40.564041693798515],
[-74.18627446177058, 40.564325527074026],
[-74.18525395953219, 40.564549354714295],
[-74.18425062347545, 40.565108854348814],
[-74.18369189074609, 40.565319068154132],
[-74.183184597441709, 40.565450094382101],
[-74.182413394729252, 40.56548514602185],
[-74.182030386484314, 40.565436404645851],
[-74.181595564727346, 40.565317961462547],
[-74.177945442082788, 40.563983366606685],
[-74.176593660742427, 40.563241329320675],
[-74.174887504223975, 40.562826419265335],
[-74.173485079958951, 40.562267489964086],
[-74.17185166522755, 40.561520923020225]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN27",
"NTAName": "East Elmhurst",
"Shape_Leng": 19816.712092900001153,
"Shape_Area": 19726845.4374
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.861097244017543, 40.763664477590254],
[-73.859929380296862, 40.762200301111839],
[-73.85913545312323, 40.76141844064874],
[-73.859123758615141, 40.761275498656445],
[-73.85810854025415, 40.7606371820916],
[-73.856039809396421, 40.759725787413998],
[-73.855251400804846, 40.759147530839975],
[-73.854495932449041, 40.758278638673872],
[-73.854908726659616, 40.758336449405832],
[-73.855302001577996, 40.758292841966799],
[-73.855403661466781, 40.758340309985478],
[-73.858561390343013, 40.757912436857744],
[-73.865674370192238, 40.757629582857],
[-73.875138742995333, 40.756633816060678],
[-73.87601371860643, 40.761443732139405],
[-73.874995750939604, 40.761264322429419],
[-73.876387924441715, 40.768999558474071],
[-73.876014155797421, 40.769816976085004],
[-73.875973626148195, 40.771042762244896],
[-73.876089496418643, 40.771536903086599],
[-73.875175733475686, 40.771676711126339],
[-73.874263304900055, 40.771753387500155],
[-73.873279414553082, 40.771767401350935],
[-73.872235776965908, 40.771695659019592],
[-73.871433573419822, 40.771576467221315],
[-73.870714474925975, 40.771390690036839],
[-73.869629704543613, 40.771006365975552],
[-73.868893827245572, 40.770649021897334],
[-73.867281938152317, 40.769650002788822],
[-73.866068759550757, 40.76879618165259],
[-73.864584869625901, 40.767566689877121],
[-73.863218052585594, 40.76625081641734],
[-73.861097244017543, 40.763664477590254]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN35",
"NTAName": "Briarwood-Jamaica Hills",
"Shape_Leng": 30081.732674700000643,
"Shape_Area": 29412325.9859
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.793038000523524, 40.710711075425401],
[-73.794730523529253, 40.710012461965988],
[-73.797768101342967, 40.709143187839182],
[-73.798701506790707, 40.710663377114074],
[-73.80119015874314, 40.709786243947612],
[-73.801595905641079, 40.709548425253963],
[-73.801932970560557, 40.708911595852683],
[-73.802124933541208, 40.708737604101884],
[-73.802550690649923, 40.708417203091756],
[-73.803024147406759, 40.708139657094264],
[-73.801657256080475, 40.705761475398766],
[-73.805647730663935, 40.704671727903452],
[-73.806948563293645, 40.707367100413677],
[-73.812012485843042, 40.705944944808387],
[-73.811528569192987, 40.702272874880435],
[-73.813018828540109, 40.702495157240584],
[-73.813564706099399, 40.702528498001726],
[-73.816378244929851, 40.702451964468636],
[-73.81709738756588, 40.704029801085063],
[-73.818099051968233, 40.70597371522998],
[-73.819553633258906, 40.708425229555154],
[-73.820452363935715, 40.70977454857411],
[-73.820985191305269, 40.710323845271546],
[-73.823202474454902, 40.712205948691775],
[-73.823638606454438, 40.712666644482155],
[-73.823850720684092, 40.712933205640638],
[-73.82428940584002, 40.713870066106843],
[-73.824717494937119, 40.714506849726739],
[-73.825597163292713, 40.715514336939208],
[-73.825919451980226, 40.71598987682755],
[-73.825247316539432, 40.716455445122286],
[-73.823468337785712, 40.716731051857373],
[-73.821874176846919, 40.716917118440549],
[-73.821007052861631, 40.716879951033086],
[-73.820515992438047, 40.716811991340279],
[-73.820188838044515, 40.716735224117897],
[-73.818284527484835, 40.71600371491138],
[-73.817204179260969, 40.7158407287899],
[-73.810224350044749, 40.715912668000378],
[-73.807809277009085, 40.715853896237775],
[-73.804941485113105, 40.715996230987791],
[-73.803084841013245, 40.716220162418374],
[-73.801883209710624, 40.716408810569888],
[-73.800216726752737, 40.716737859270069],
[-73.796539781323119, 40.717786748905908],
[-73.793154934164292, 40.718917578510109],
[-73.792111412142319, 40.719138863920065],
[-73.79155692217266, 40.719200995355116],
[-73.79073248864259, 40.71920875733025],
[-73.790899606015799, 40.718875807790759],
[-73.791628426481211, 40.71841796531011],
[-73.792013766396593, 40.717967687438119],
[-73.792241756334988, 40.717427179493207],
[-73.792404133495566, 40.716193040973735],
[-73.793460124044643, 40.714419192045526],
[-73.793585702994008, 40.714128678174433],
[-73.793636366695708, 40.713819397324677],
[-73.793607044023219, 40.713508470009799],
[-73.793132249179649, 40.712407236014911],
[-73.793026542040295, 40.711981364640984],
[-73.793038000523524, 40.710711075425401]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX34",
"NTAName": "Melrose South-Mott Haven North",
"Shape_Leng": 19595.604041400001734,
"Shape_Area": 17269468.9313
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.901292776270324, 40.820475442614168],
[-73.903009832143638, 40.816317791954702],
[-73.90446551410588, 40.812281959913086],
[-73.910947789573981, 40.813620920737293],
[-73.914954936718118, 40.814936466010849],
[-73.917686269803013, 40.816081242786332],
[-73.918617397960446, 40.815523136071057],
[-73.92048117349654, 40.814563686869796],
[-73.921303833666499, 40.815477247776911],
[-73.921583920847496, 40.81555063156339],
[-73.921245196809053, 40.816219397297807],
[-73.923092999045153, 40.816697728139005],
[-73.923999513431795, 40.815438912450063],
[-73.926627182117741, 40.816118959174275],
[-73.926219720387849, 40.816758655974368],
[-73.925184864635014, 40.818012669377495],
[-73.924025572419666, 40.819285330110709],
[-73.922652612397059, 40.820494315281039],
[-73.92194764145448, 40.821031544959396],
[-73.916774005197098, 40.824387087373175],
[-73.915877358172821, 40.824103731527224],
[-73.916215886271218, 40.82346793022586],
[-73.911891549216691, 40.822141481777294],
[-73.911816157567358, 40.82203502241245],
[-73.911593918018681, 40.822126774511915],
[-73.909908941379342, 40.822551108117374],
[-73.905658902478123, 40.821556532634403],
[-73.901292776270324, 40.820475442614168]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK81",
"NTAName": "Brownsville",
"Shape_Leng": 27300.781230799999321,
"Shape_Area": 32730861.1097
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.898806984335096, 40.657406661804472],
[-73.900026793486674, 40.657253847775792],
[-73.90048767160404, 40.657148679351636],
[-73.901185599087114, 40.65651455110136],
[-73.902619114018705, 40.655558110733374],
[-73.903178584134054, 40.655311633837385],
[-73.90784346310059, 40.65459153024284],
[-73.907400356628273, 40.652843990142273],
[-73.908557905227667, 40.652095937794492],
[-73.909334993130003, 40.65280859214414],
[-73.910122556985385, 40.655851771051502],
[-73.912364588306474, 40.655513564746265],
[-73.918184931043726, 40.66072620891552],
[-73.918299362797086, 40.661161257398987],
[-73.918601680977687, 40.661118048606497],
[-73.91959479824105, 40.661995679287955],
[-73.919743995313794, 40.66077097395037],
[-73.920081670716755, 40.659857633460199],
[-73.926379705492792, 40.66551489214158],
[-73.920148642554125, 40.668229483875351],
[-73.920114642531829, 40.66837600234431],
[-73.919230629656838, 40.668631365306055],
[-73.908419316322011, 40.673313332724078],
[-73.90450912336803, 40.675052110987878],
[-73.90438792800407, 40.675206746606364],
[-73.903474222764842, 40.675506683277142],
[-73.902660083547374, 40.672197179150771],
[-73.900416540550452, 40.663806527433081],
[-73.901451146378591, 40.663658364657643],
[-73.900661186909502, 40.66058615800479],
[-73.900146584442012, 40.660653277386395],
[-73.899889087539677, 40.660639807288163],
[-73.89965233279797, 40.660735416378159],
[-73.898806984335096, 40.657406661804472]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK85",
"NTAName": "East New York (Pennsylvania Ave)",
"Shape_Leng": 24226.850778299998638,
"Shape_Area": 19397527.3576
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.898806984335096, 40.657406661804472],
[-73.89965233279797, 40.660735416378159],
[-73.899889087539677, 40.660639807288163],
[-73.900146584442012, 40.660653277386395],
[-73.900661186909502, 40.66058615800479],
[-73.901451146378591, 40.663658364657643],
[-73.900416540550452, 40.663806527433081],
[-73.902660083547374, 40.672197179150771],
[-73.903474222764842, 40.675506683277142],
[-73.902918872628163, 40.675684581420761],
[-73.900046261425004, 40.676893089537728],
[-73.899306754422554, 40.673982041766493],
[-73.893670364266129, 40.674821770884378],
[-73.892710906697644, 40.671045828912604],
[-73.890878049946082, 40.671318087158575],
[-73.88976988627573, 40.666989914671866],
[-73.89069385325422, 40.666852234346322],
[-73.889906694976332, 40.663778289998092],
[-73.88810817419629, 40.664047412457755],
[-73.883308833906597, 40.666112004945546],
[-73.881855573447595, 40.664149988540167],
[-73.896167560452142, 40.657978451628168],
[-73.89612587286426, 40.657814664033893],
[-73.898806984335096, 40.657406661804472]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK41",
"NTAName": "Kensington-Ocean Parkway",
"Shape_Leng": 20800.556076299999404,
"Shape_Area": 15893349.5727
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.974827417555773, 40.645663420868061],
[-73.974642244099087, 40.644813218879243],
[-73.970841137296787, 40.646378571072312],
[-73.968038684877982, 40.636650985436347],
[-73.97029036162948, 40.636406341418002],
[-73.969868693395711, 40.634194674598142],
[-73.976049355914128, 40.631275905646625],
[-73.976888612124611, 40.635674862028338],
[-73.979111886717774, 40.635440386439235],
[-73.980420578218812, 40.642385226905709],
[-73.982994191754642, 40.641324996848994],
[-73.983316284521123, 40.641478682833082],
[-73.98834986671028, 40.644562243887236],
[-73.981805338571945, 40.647127799764853],
[-73.978190743593188, 40.647525991511117],
[-73.977773805642201, 40.645341876574996],
[-73.974827417555773, 40.645663420868061]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX06",
"NTAName": "Belmont",
"Shape_Leng": 17111.014568700000382,
"Shape_Area": 13558624.9466
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.883090031704853, 40.866591509289933],
[-73.882676247333052, 40.866089141481048],
[-73.883441683489139, 40.865616331524933],
[-73.883767492227236, 40.865314753169017],
[-73.883903348591716, 40.865073802192519],
[-73.883969223337459, 40.864817741303696],
[-73.883923958287241, 40.864417761871429],
[-73.883793711028034, 40.864171571731845],
[-73.882007941383691, 40.862046853362223],
[-73.880925725947648, 40.861162288241118],
[-73.880688395331092, 40.860775993042637],
[-73.88060896855319, 40.860357093107069],
[-73.881006789593371, 40.858268022657015],
[-73.880982937859358, 40.857883992123782],
[-73.880730428199058, 40.856676604910973],
[-73.883119825038165, 40.84822109187666],
[-73.88322877667612, 40.848345878337575],
[-73.887285123560233, 40.85082090055792],
[-73.887550060066388, 40.850910754062689],
[-73.888239740962945, 40.851035366411438],
[-73.888952563160757, 40.851440780772968],
[-73.88987871399155, 40.852070221026686],
[-73.88993961562204, 40.852590762961597],
[-73.889633283023144, 40.853173818437561],
[-73.889609780779551, 40.853621880548715],
[-73.890389540095015, 40.854689058587738],
[-73.890442592832812, 40.85504635186544],
[-73.891086765745385, 40.856597257047547],
[-73.891097104264389, 40.856779813682024],
[-73.891125688306687, 40.860061825009709],
[-73.890275555707817, 40.86110907335059],
[-73.891771887992022, 40.861871716750073],
[-73.888895660102222, 40.864754153236532],
[-73.888122787761091, 40.864254570577643],
[-73.8868331704345, 40.865389993860539],
[-73.883625181295784, 40.867257588006979],
[-73.883090031704853, 40.866591509289933]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX37",
"NTAName": "Van Nest-Morris Park-Westchester Square",
"Shape_Leng": 42719.494869900001504,
"Shape_Area": 36295884.6253
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.831291577055111, 40.855434105351854],
[-73.831931021578356, 40.855285115599706],
[-73.83262464742576, 40.855056966781689],
[-73.833500178361021, 40.854679684268213],
[-73.834082321104461, 40.854362640365196],
[-73.834395743084144, 40.854111870932968],
[-73.834639702160004, 40.853817993760984],
[-73.8353358907857, 40.852554697787689],
[-73.835559001324881, 40.851964013948134],
[-73.836199071831018, 40.845827395720328],
[-73.836768767963903, 40.843542820937166],
[-73.836889251544235, 40.843374788305987],
[-73.837145800387219, 40.842727632593864],
[-73.837670016171899, 40.841121907655555],
[-73.837713748293609, 40.840406309516432],
[-73.838390562250751, 40.84067681413417],
[-73.839367942506499, 40.840882973481769],
[-73.84140548280682, 40.840602502952287],
[-73.842041447058023, 40.840645897248095],
[-73.844581291744547, 40.838535507629452],
[-73.847797919905517, 40.840696310626896],
[-73.850522780828626, 40.842789489298966],
[-73.86347232379066, 40.841305932707215],
[-73.865464501908562, 40.84085689196467],
[-73.867248188895474, 40.840343803867682],
[-73.868308469249229, 40.839995213453484],
[-73.869207668822071, 40.839600046711794],
[-73.870214507449845, 40.8396179421215],
[-73.873597136339228, 40.839798555433369],
[-73.872299210891583, 40.841579995738968],
[-73.870995180673219, 40.843111392043717],
[-73.868892587775392, 40.844409658798511],
[-73.868042003918418, 40.844813839306894],
[-73.868637217447926, 40.845309843267778],
[-73.868741865620834, 40.845609728581628],
[-73.868658740272153, 40.845928452779681],
[-73.868661938199224, 40.846260153941898],
[-73.868753947596616, 40.846584364326063],
[-73.868926526932256, 40.846881740609717],
[-73.868354658966126, 40.847080233386365],
[-73.867859929938646, 40.848864931388306],
[-73.868373889316146, 40.848969598246228],
[-73.869209445698672, 40.849238372872456],
[-73.868234660150705, 40.850913737215478],
[-73.868605155758956, 40.852068645940726],
[-73.866121308268191, 40.850527222416304],
[-73.865187872363975, 40.850164386169048],
[-73.863039380731252, 40.850611307232278],
[-73.862788728139492, 40.849237983171783],
[-73.862509237534866, 40.848362281172193],
[-73.861192408411242, 40.848603468111556],
[-73.860694566046831, 40.848753394395757],
[-73.854573882354728, 40.851508345732427],
[-73.853045268681456, 40.849547332435804],
[-73.849688697306618, 40.851058906538185],
[-73.847297812569181, 40.851086868974129],
[-73.847210276657165, 40.851036839058565],
[-73.84668500549904, 40.851118078163694],
[-73.844530771799285, 40.851132898978832],
[-73.844308468989524, 40.851190464196357],
[-73.844969540447181, 40.850097031115403],
[-73.845055066207763, 40.848946559767633],
[-73.844940537306996, 40.848218220851265],
[-73.841491632939579, 40.853194286309233],
[-73.840497673660622, 40.854184105115948],
[-73.839357089828468, 40.854986753609488],
[-73.838185611722892, 40.855564009581883],
[-73.837342493238623, 40.855866864323716],
[-73.836466679677471, 40.856098438725574],
[-73.834995526029743, 40.856571200778298],
[-73.83667557198514, 40.856652663480084],
[-73.836912127593763, 40.857008107135286],
[-73.836905822096583, 40.85718069620436],
[-73.836819185270599, 40.857276809597224],
[-73.833080519497315, 40.858679018971053],
[-73.829874886717221, 40.859740420127437],
[-73.829609517664622, 40.859888421492663],
[-73.828473467145244, 40.860731353431973],
[-73.831114491554814, 40.85752432962289],
[-73.831933937655052, 40.856693517036597],
[-73.832835023227105, 40.85603584525947],
[-73.83281265205602, 40.855979712715644],
[-73.832005988140665, 40.855594876570237],
[-73.831658432015971, 40.855483447559045],
[-73.831291577055111, 40.855434105351854]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX46",
"NTAName": "Parkchester",
"Shape_Leng": 12373.255749199999627,
"Shape_Area": 9180655.27482
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.860338458462508, 40.83325316598345],
[-73.860490535345178, 40.833466404056402],
[-73.860850196826746, 40.833613538099868],
[-73.86129183742284, 40.833536420998684],
[-73.86155834859025, 40.833330221162335],
[-73.862711144069223, 40.832991508800504],
[-73.863937481034412, 40.840044565902637],
[-73.8644801171789, 40.841087796884246],
[-73.86347232379066, 40.841305932707215],
[-73.853335250082225, 40.842470155155596],
[-73.852070059306868, 40.835625303052296],
[-73.851684597478283, 40.834201052350295],
[-73.859839376331394, 40.833340896342044],
[-73.860338458462508, 40.83325316598345]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX31",
"NTAName": "Allerton-Pelham Gardens",
"Shape_Leng": 25463.10015840000051,
"Shape_Area": 31684842.0688
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.8536363872702, 40.873300599208925],
[-73.848596760026851, 40.871670785135471],
[-73.847926140691214, 40.871342233580449],
[-73.835784366575666, 40.865016011999593],
[-73.830893296615912, 40.862212849091911],
[-73.829726148378867, 40.86195274463541],
[-73.829508926919871, 40.861841213949162],
[-73.828343474313797, 40.860892026674826],
[-73.828473467145244, 40.860731353431973],
[-73.829609517664622, 40.859888421492663],
[-73.829874886717221, 40.859740420127437],
[-73.833080519497315, 40.858679018971053],
[-73.836819185270599, 40.857276809597224],
[-73.843295531505987, 40.858290375629061],
[-73.846458540773, 40.858636373703696],
[-73.847397469750319, 40.858682545855956],
[-73.849308934057802, 40.858717502857857],
[-73.856637746041329, 40.858119171989209],
[-73.857353196143421, 40.859711605849668],
[-73.857803788310648, 40.863036216622348],
[-73.858060984990388, 40.863042359762645],
[-73.858909567906721, 40.864636926125918],
[-73.859612811831013, 40.865512718112363],
[-73.861562741298954, 40.86554946455496],
[-73.861379240695015, 40.871336512141447],
[-73.856613824504223, 40.871250166982101],
[-73.856512923876252, 40.87421779315936],
[-73.8536363872702, 40.873300599208925]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK95",
"NTAName": "Erasmus",
"Shape_Leng": 18756.70194310000079,
"Shape_Area": 14522599.3421
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.948264995908332, 40.638607190711674],
[-73.95116311183466, 40.638448183395688],
[-73.953600047193774, 40.638422347449996],
[-73.957463598708813, 40.642371669776281],
[-73.957636445762532, 40.642689499463202],
[-73.957918737354191, 40.64414326509111],
[-73.958036644260872, 40.645302500971539],
[-73.95815003514555, 40.647767673691114],
[-73.9582608207769, 40.648532745031297],
[-73.95870789822969, 40.65038727378257],
[-73.949571130833036, 40.650807899871189],
[-73.950066648612946, 40.655422997200283],
[-73.947158963230933, 40.655593787270995],
[-73.947032575920048, 40.654338714832704],
[-73.946066906113231, 40.654410262825884],
[-73.945706061864414, 40.651006784973987],
[-73.946674144616125, 40.65094811868704],
[-73.945868792477796, 40.643423744607148],
[-73.947789946834675, 40.643305736449328],
[-73.947442967728449, 40.640047664741495],
[-73.948413432997413, 40.639987464583427],
[-73.948264995908332, 40.638607190711674]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX36",
"NTAName": "University Heights-Morris Heights",
"Shape_Leng": 24299.116826299999957,
"Shape_Area": 21251507.0776
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.904868472155229, 40.858693224708809],
[-73.905659535154044, 40.857398734161151],
[-73.904683714109552, 40.857060301724808],
[-73.905221700284358, 40.856203594802608],
[-73.907332897223014, 40.853816414564548],
[-73.909215456110886, 40.851800945066721],
[-73.910581698631674, 40.850181595822569],
[-73.914160763337279, 40.845177755190868],
[-73.91728719351066, 40.845104086159473],
[-73.923877434172454, 40.844740507650982],
[-73.924783187830784, 40.844752664810493],
[-73.925963419108399, 40.844889744210775],
[-73.928082093736322, 40.845391597336111],
[-73.927868698107673, 40.845597721702589],
[-73.927670732803875, 40.846033482483747],
[-73.927548284468287, 40.846087215063498],
[-73.92734184519918, 40.84646364143839],
[-73.926935459544737, 40.846924144673345],
[-73.926830232167944, 40.847289760188538],
[-73.926626874401791, 40.847392686500314],
[-73.92630425930264, 40.84787010144138],
[-73.926033101721075, 40.848072415298645],
[-73.925939578958008, 40.848271192857602],
[-73.924653798642112, 40.84978504301008],
[-73.923847788796422, 40.851182608715533],
[-73.923947895014265, 40.85122178511908],
[-73.922561789465334, 40.853188911527297],
[-73.921740354030078, 40.854221237840456],
[-73.921542618039197, 40.8541168833817],
[-73.92134207683867, 40.854317435657634],
[-73.921515437055263, 40.854510063891318],
[-73.920800702893359, 40.855380814394486],
[-73.920372354514313, 40.855172965136646],
[-73.920300272134909, 40.855246370838877],
[-73.92056655954363, 40.855513898313603],
[-73.920526531328505, 40.855686668401802],
[-73.920293929756852, 40.855845114015104],
[-73.920306205437583, 40.855927119810566],
[-73.919566209446913, 40.856840183688114],
[-73.917760412511058, 40.858708097958257],
[-73.91720664647049, 40.858928922734535],
[-73.915805280747449, 40.860469735856562],
[-73.915762132110018, 40.860644636790354],
[-73.914874702019276, 40.861691699986231],
[-73.914809343254817, 40.861714189645724],
[-73.914723308552823, 40.861853182389105],
[-73.914818172729085, 40.861899088981922],
[-73.914671629291533, 40.861981337604959],
[-73.914621163551558, 40.862096690734731],
[-73.914228240661188, 40.862490790217237],
[-73.91278962862323, 40.861872470523117],
[-73.911812291116988, 40.861732386904016],
[-73.910755958057763, 40.861651484364621],
[-73.909721940300102, 40.862406667991365],
[-73.909397034892876, 40.862567771966603],
[-73.909039509200355, 40.862678864086398],
[-73.909088224182653, 40.862399695640136],
[-73.909224264072236, 40.86213551835781],
[-73.909653295586068, 40.861606879536843],
[-73.910274224918425, 40.861054535340628],
[-73.911149373512544, 40.860523671317821],
[-73.91238663179108, 40.860122998635916],
[-73.912860930485351, 40.859894147177464],
[-73.913284369851439, 40.859618601832643],
[-73.910884884429734, 40.858776182937042],
[-73.910567992729966, 40.858620593233518],
[-73.910208180944082, 40.858288788870794],
[-73.90980269932912, 40.857607548833386],
[-73.909761658589346, 40.857182611604479],
[-73.909567200764997, 40.85759162415976],
[-73.907773205133822, 40.859607537685449],
[-73.907257861882812, 40.859353437919843],
[-73.906797349421453, 40.859373588931263],
[-73.904868472155229, 40.858693224708809]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK34",
"NTAName": "Sunset Park East",
"Shape_Leng": 25948.84460129999934,
"Shape_Area": 27129374.6681
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.989058723936083, 40.644119241039185],
[-73.995510336962681, 40.63980966713001],
[-73.999175647189091, 40.64202544202908],
[-74.007356366629963, 40.634163627238991],
[-74.005564903921581, 40.633083176414189],
[-74.010003408315313, 40.630113089342963],
[-74.015602049692333, 40.633516977941504],
[-74.016020101386289, 40.633317113661988],
[-74.016028963635733, 40.633944431491905],
[-74.016142315074234, 40.63436015883844],
[-74.016465230089793, 40.63494240707719],
[-74.016835400516214, 40.635355428574861],
[-74.013960886120572, 40.638153267419426],
[-74.016167114751156, 40.639482441569363],
[-74.002144745948485, 40.652956107107272],
[-73.997794660214709, 40.650288889978398],
[-73.998306022517198, 40.649740015111782],
[-73.989058723936083, 40.644119241039185]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN04",
"NTAName": "Hamilton Heights",
"Shape_Leng": 17412.576988799999526,
"Shape_Area": 16094049.8797
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.940346432475252, 40.830457842849462],
[-73.938640266938677, 40.829738874420521],
[-73.939248856162934, 40.828296351211876],
[-73.942923669125818, 40.823260587250431],
[-73.945154569555967, 40.820876264824946],
[-73.948082898156713, 40.822108021510942],
[-73.948540297683181, 40.821487622812967],
[-73.949921943875836, 40.822072314227633],
[-73.950828799914348, 40.820827937097256],
[-73.955730749830622, 40.822891257747735],
[-73.956340103756133, 40.823092327507069],
[-73.959508979391885, 40.823595788902772],
[-73.959538002252984, 40.823629334087315],
[-73.959555755600221, 40.823693797769003],
[-73.957258970433088, 40.827117309873316],
[-73.956948664204674, 40.82700055393498],
[-73.956317845103115, 40.827944215388541],
[-73.956200545283835, 40.827901226597476],
[-73.956223944264366, 40.827870086889071],
[-73.955039129783941, 40.827413431911843],
[-73.954697366856635, 40.827918385514458],
[-73.954541881282907, 40.82786147636574],
[-73.953591286929552, 40.829097720648996],
[-73.952976193626171, 40.83009020327102],
[-73.951316411189993, 40.832450511970627],
[-73.951096208875853, 40.83280509619928],
[-73.950935762314813, 40.833293997985642],
[-73.950155210627798, 40.834396759816094],
[-73.949776162183099, 40.834455964511278],
[-73.949415705568597, 40.834358589832782],
[-73.948905432862531, 40.834065298876773],
[-73.948291081378713, 40.833861180771791],
[-73.945925580958743, 40.832806489701987],
[-73.940346432475252, 40.830457842849462]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK83",
"NTAName": "Cypress Hills-City Line",
"Shape_Leng": 35597.561874400002125,
"Shape_Area": 27609992.3949
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.863349435930431, 40.679351640889713],
[-73.863286408446143, 40.67907719656106],
[-73.86234580535023, 40.679164786146842],
[-73.861318636485692, 40.675021268816181],
[-73.861062950167508, 40.674342934730134],
[-73.861764096621798, 40.674232260606033],
[-73.864133334941727, 40.674997252376301],
[-73.869423128785726, 40.676912227565744],
[-73.872310180457347, 40.67775574736514],
[-73.872570154603878, 40.677866610019898],
[-73.8730484567254, 40.678194107436696],
[-73.873427670601927, 40.678618847345028],
[-73.873760758433377, 40.679112497381709],
[-73.874208666522392, 40.679576339636512],
[-73.874835390369384, 40.679942570177388],
[-73.87531627567067, 40.680110983644589],
[-73.875567075828926, 40.680169464696377],
[-73.876889551566961, 40.68016499699057],
[-73.880613778096063, 40.679110032495977],
[-73.881167303377808, 40.681353663164643],
[-73.884892547381199, 40.680811116190704],
[-73.884670465597353, 40.679940285178155],
[-73.889874391663426, 40.678302150448665],
[-73.896217736666145, 40.677358184272443],
[-73.896536765436935, 40.678593581165231],
[-73.897756555611195, 40.678060721050286],
[-73.898362292416337, 40.677658276426818],
[-73.900046261425004, 40.676893089537728],
[-73.904046398088894, 40.679220598019157],
[-73.902622622804515, 40.68066450291559],
[-73.900470010982787, 40.679535244065264],
[-73.898899282875462, 40.679560934398964],
[-73.898064446294782, 40.679793431680814],
[-73.897493120079318, 40.680073776224205],
[-73.897190100469942, 40.680369825107974],
[-73.896899081247454, 40.680815602226623],
[-73.896749659510462, 40.681492026564577],
[-73.896581587639901, 40.681574718433083],
[-73.896419090737027, 40.682479876243718],
[-73.896201695573609, 40.682891482753995],
[-73.895305049487717, 40.684080520067681],
[-73.894174632670996, 40.685283248673144],
[-73.892523168321645, 40.683424533306592],
[-73.891660106592681, 40.684044177909328],
[-73.890154186728978, 40.685003989804471],
[-73.88892468151505, 40.683125170018997],
[-73.888190925254122, 40.682555946292744],
[-73.880272392643178, 40.686280360874306],
[-73.875707769013374, 40.688563962226645],
[-73.872603369342229, 40.689921073963234],
[-73.87172865694474, 40.690276750373293],
[-73.870947623551672, 40.690502041471433],
[-73.868552948125441, 40.691099244058741],
[-73.868058852861665, 40.691183957736747],
[-73.867460888910415, 40.688415017596441],
[-73.866598483492695, 40.68526955906988],
[-73.86631496942951, 40.68324894282317],
[-73.86602666805608, 40.681918051772136],
[-73.864994045232564, 40.682128969899708],
[-73.864100966791327, 40.682372850292609],
[-73.863349435930431, 40.679351640889713]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX14",
"NTAName": "East Concourse-Concourse Village",
"Shape_Leng": 27283.202639099999942,
"Shape_Area": 18230741.0534
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.909587272696626, 40.842756375018467],
[-73.909624554230703, 40.842109625010728],
[-73.908985509634121, 40.839690927730686],
[-73.908877599335071, 40.838902892618925],
[-73.908910357370061, 40.838376480784753],
[-73.909100920875105, 40.837733516166061],
[-73.90932083471013, 40.837327133743017],
[-73.909452669834025, 40.837203825307405],
[-73.909634491641427, 40.837125318114012],
[-73.909162558837977, 40.836964596523345],
[-73.907980771641732, 40.837178094000144],
[-73.907632883744284, 40.837607856811047],
[-73.906867152703214, 40.838162351214358],
[-73.906621501184091, 40.838400880990584],
[-73.905607394542656, 40.839843619302009],
[-73.905383580073945, 40.839768983469476],
[-73.905979404417266, 40.838505195802561],
[-73.907402005308214, 40.836232283418518],
[-73.91049010681661, 40.83073737253013],
[-73.908959903099969, 40.830226233044044],
[-73.909481783593577, 40.829592118977054],
[-73.91030770386979, 40.828772485243213],
[-73.911694302385627, 40.827758715809402],
[-73.911793619507563, 40.826428155601469],
[-73.911309744733984, 40.824848558895035],
[-73.913166744370741, 40.825456455312313],
[-73.913511916760797, 40.824804944417721],
[-73.914751210647665, 40.825200473433682],
[-73.915411082354794, 40.825773909123171],
[-73.91661368442395, 40.824992308507383],
[-73.916087827917409, 40.824837851830807],
[-73.92194764145448, 40.821031544959396],
[-73.922652612397059, 40.820494315281039],
[-73.924025572419666, 40.819285330110709],
[-73.925184864635014, 40.818012669377495],
[-73.927316530665593, 40.818559633821998],
[-73.9263434565365, 40.820578551554796],
[-73.926281270743488, 40.820537160944454],
[-73.925654529671434, 40.821125232837424],
[-73.925735672396172, 40.82117423606838],
[-73.925372219389871, 40.821602520580321],
[-73.924996548732381, 40.82220270052985],
[-73.924565302108121, 40.823145454794656],
[-73.924313101666229, 40.823994097768718],
[-73.922941388435916, 40.826299350280863],
[-73.922649515825668, 40.826972409580669],
[-73.919860893236233, 40.83194722683389],
[-73.919031366361139, 40.833087349291723],
[-73.918393467046755, 40.833809411901647],
[-73.914773005253082, 40.837514100859053],
[-73.914237540805274, 40.83810879565884],
[-73.913713726605764, 40.838808934807219],
[-73.912960008820718, 40.840196228539064],
[-73.911918123202696, 40.843257886684938],
[-73.911753380456901, 40.8431794926761],
[-73.910430264143429, 40.843107729073026],
[-73.910460083304088, 40.842791642974433],
[-73.909587272696626, 40.842756375018467]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN11",
"NTAName": "Central Harlem South",
"Shape_Leng": 16619.962337699998898,
"Shape_Area": 14436444.2359
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.941771401700748, 40.807088999847082],
[-73.942753672281938, 40.805744012794605],
[-73.944301945871231, 40.806390824581001],
[-73.945239652139207, 40.805136014461745],
[-73.946131310486734, 40.803877357584135],
[-73.944597513456074, 40.803228145255666],
[-73.949231860068608, 40.796873071946301],
[-73.957864992952537, 40.800515272439014],
[-73.95848111476144, 40.800670477586024],
[-73.959646854231522, 40.801156423256458],
[-73.958248783298146, 40.803106486471115],
[-73.958203008071635, 40.803894270998818],
[-73.958254825801347, 40.804713878441426],
[-73.958181672528298, 40.805596791128394],
[-73.95496657106321, 40.810064554703473],
[-73.953575778103641, 40.80947669765964],
[-73.952101252153682, 40.811442853501511],
[-73.941771401700748, 40.807088999847082]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN27",
"NTAName": "Chinatown",
"Shape_Leng": 20639.955796199999895,
"Shape_Area": 14494726.8708
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.983823872981901, 40.721472872066897],
[-73.985073422546435, 40.71908329385839],
[-73.986751366625072, 40.719592846373452],
[-73.988366263177284, 40.7164457020369],
[-73.98915463750744, 40.716708646771586],
[-73.990202359752871, 40.71466442988774],
[-73.990220126699256, 40.714404939897996],
[-73.990755153067056, 40.714554072516258],
[-73.992562421706424, 40.714388077228648],
[-73.992154844784693, 40.711656556126592],
[-73.991776626330434, 40.709819040225696],
[-73.99204746257486, 40.709775744806223],
[-73.991905443664564, 40.709525396079634],
[-73.993740128622264, 40.709246120435317],
[-73.994140632003464, 40.709233267399917],
[-73.995175773698364, 40.709034293307703],
[-73.99728287195579, 40.708731619842894],
[-73.998083511869979, 40.708509615367113],
[-73.998527585853111, 40.70833152790825],
[-73.999194511088504, 40.707947376854023],
[-74.003661183163004, 40.711487282861974],
[-74.005109898927472, 40.712055593794176],
[-74.005439864980332, 40.71207853355638],
[-74.005734992653458, 40.711978688396947],
[-74.005891750354365, 40.712007159564919],
[-74.005589329541294, 40.712170053755536],
[-74.005275618925978, 40.712249440495349],
[-74.00485768021683, 40.712452541116946],
[-74.004214053014579, 40.71298074314479],
[-74.003219830122589, 40.714036237059688],
[-74.002722861793274, 40.71438970926264],
[-73.999956207986031, 40.718017095087156],
[-73.998589255019795, 40.717099511537086],
[-73.996058726783204, 40.71623164071346],
[-73.995428758126963, 40.717279243047834],
[-73.99480778955251, 40.718457426852865],
[-73.993522980455566, 40.721631693239225],
[-73.992603221984396, 40.724136449683371],
[-73.983823872981901, 40.721472872066897]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK76",
"NTAName": "Greenpoint",
"Shape_Leng": 29052.170849599999201,
"Shape_Area": 35336840.9749
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.932268522161991, 40.728174658031826],
[-73.932554386116578, 40.727862889829964],
[-73.93412337355872, 40.726855471479475],
[-73.936763824055362, 40.724838919223068],
[-73.937653144938295, 40.724265554929467],
[-73.940221236712006, 40.722891505266986],
[-73.941094188472718, 40.722309245113998],
[-73.94195633562957, 40.721652319230117],
[-73.945603588834061, 40.71956728591892],
[-73.947213418107481, 40.718560986118312],
[-73.948416386050582, 40.718455533123063],
[-73.949078168387359, 40.722540287203003],
[-73.949865995297472, 40.722179483745066],
[-73.950645942672324, 40.721705693281777],
[-73.951646322523629, 40.723485857483972],
[-73.954776629474509, 40.722459504668088],
[-73.957719892051657, 40.724284957359536],
[-73.95814292441024, 40.724404284402375],
[-73.958039167416644, 40.724427440878614],
[-73.957941834894953, 40.724649202699865],
[-73.957950962792992, 40.725036439168612],
[-73.958351771449216, 40.725198057301952],
[-73.95842611909984, 40.725400535832364],
[-73.960124971993039, 40.725319636637117],
[-73.960285449442097, 40.725948122412944],
[-73.96106343511704, 40.725844899185468],
[-73.96161518835936, 40.725865563074024],
[-73.961652807620368, 40.726203926230859],
[-73.96161716963762, 40.72666142199099],
[-73.961499201053115, 40.726751091125251],
[-73.961418267548325, 40.727356179704444],
[-73.96101148031282, 40.728519351845115],
[-73.960996409077211, 40.728769125583497],
[-73.961061077504127, 40.728776716825514],
[-73.961070767725118, 40.729219509191665],
[-73.961140300950163, 40.729416329365627],
[-73.961195023459652, 40.729416347820084],
[-73.961348812432362, 40.730161950521563],
[-73.961284138230624, 40.73016192879485],
[-73.961431876117715, 40.730965171647625],
[-73.96171614578094, 40.731569917443672],
[-73.961909477178594, 40.731651374500011],
[-73.962263404232957, 40.732915551623478],
[-73.962355058891731, 40.733713260621258],
[-73.962285201708852, 40.734047695373853],
[-73.962090344499103, 40.7345079978736],
[-73.961574943067447, 40.73517961492859],
[-73.959829311478416, 40.737060900633146],
[-73.958375079027846, 40.738096949368668],
[-73.957634096070265, 40.738538117761387],
[-73.956930029311906, 40.738887073071744],
[-73.954763140204207, 40.739123535053672],
[-73.954156278192428, 40.739106914852769],
[-73.952923557241817, 40.738934942395183],
[-73.951987943544964, 40.738747619971647],
[-73.951927589631424, 40.738695896818506],
[-73.951878065864946, 40.738713985906543],
[-73.95046458346593, 40.73830958079531],
[-73.948122917231331, 40.737397154608708],
[-73.94809172682271, 40.737467704864706],
[-73.947161786553053, 40.737154931760017],
[-73.946839777489089, 40.736999148488025],
[-73.946523528548241, 40.736926853455557],
[-73.946453922673854, 40.736809589958561],
[-73.94719983301087, 40.735355177611225],
[-73.947065329153872, 40.734401992819222],
[-73.946598067073523, 40.734442224347262],
[-73.946736923406988, 40.735294943719829],
[-73.946756783333271, 40.73525766653443],
[-73.946929027374708, 40.735313140683722],
[-73.946626637866245, 40.735865585167396],
[-73.946443101402551, 40.735813184455999],
[-73.946247482969198, 40.736166165226955],
[-73.94617195815438, 40.73620288877391],
[-73.945873106289611, 40.736101831258438],
[-73.945570485232892, 40.736612303910718],
[-73.945519980441702, 40.736590662415622],
[-73.945545284852088, 40.736537832854559],
[-73.945415849864546, 40.736501743505556],
[-73.945358971799038, 40.736549754575883],
[-73.945207437018027, 40.736508850516103],
[-73.945220121151692, 40.736444005718873],
[-73.94507806738379, 40.736393497685143],
[-73.945059083341064, 40.736439124679777],
[-73.944999089555594, 40.736436693712911],
[-73.945254922795627, 40.735892789003742],
[-73.94518507247389, 40.735479152678096],
[-73.94503299031922, 40.735428615683325],
[-73.944772720807634, 40.735985761277114],
[-73.944515421835121, 40.736284390390487],
[-73.943213476529465, 40.735790530016118],
[-73.942394436084996, 40.735425749947829],
[-73.941738195898552, 40.734950717917542],
[-73.941791892271368, 40.734912896145168],
[-73.94176306503519, 40.73485938231844],
[-73.941606581968628, 40.734687702163839],
[-73.941545668324494, 40.734734335934768],
[-73.941147467019519, 40.734152927537551],
[-73.940997465999175, 40.733790485555772],
[-73.941156158094145, 40.733748909609844],
[-73.941038433408494, 40.733488260203302],
[-73.940929146814469, 40.73351139187718],
[-73.940818172258517, 40.733248909440228],
[-73.940725620549941, 40.733291185407055],
[-73.940568689302509, 40.733058494257641],
[-73.940684916674499, 40.733017076622254],
[-73.940366589529503, 40.732212586914791],
[-73.939813225593824, 40.731152688911699],
[-73.938103349606649, 40.729728519521316],
[-73.936931247999169, 40.729108090762949],
[-73.934929264579367, 40.728543915753342],
[-73.933257298056063, 40.728240702814745],
[-73.932911161691962, 40.728233315941274],
[-73.932407898001216, 40.728145923836927],
[-73.932268522161991, 40.728174658031826]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN50",
"NTAName": "Stuyvesant Town-Cooper Village",
"Shape_Leng": 11000.79929,
"Shape_Area": 5575424.19141
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.962365968894389, 40.724209061614239],
[-73.96200744799043, 40.72399190110518],
[-73.962072718777961, 40.723880300905279],
[-73.962467900110553, 40.724131579601249],
[-73.962443409114542, 40.724199784978751],
[-73.962365968894389, 40.724209061614239]
]
],
[
[
[-73.975110552961198, 40.735390254682564],
[-73.97495992976468, 40.735368717998732],
[-73.974749005906489, 40.735425188500095],
[-73.974437009586381, 40.735316355626686],
[-73.973959050297111, 40.733421165538431],
[-73.973857300364941, 40.733216303638528],
[-73.9738097684656, 40.733248999372925],
[-73.973783768671908, 40.733199933821766],
[-73.973676276421273, 40.733205933888179],
[-73.973868108422749, 40.73306568719574],
[-73.973413217308774, 40.731282415926053],
[-73.973006060414477, 40.730823131910633],
[-73.971963403012467, 40.730000377217465],
[-73.97151882628016, 40.729351361740115],
[-73.971406179085406, 40.728718763748439],
[-73.971555535810168, 40.727703108598241],
[-73.971572787601431, 40.727645919767667],
[-73.971651600755877, 40.727643212534602],
[-73.971685149326461, 40.727405886636667],
[-73.971536865927433, 40.727392965100769],
[-73.971490391589185, 40.727350097607484],
[-73.971626972717061, 40.726628453499416],
[-73.972050153471898, 40.726880946294749],
[-73.975696510876062, 40.728475053140457],
[-73.982556292978032, 40.731350134554567],
[-73.982386286857448, 40.731411244808179],
[-73.979446059744632, 40.735414515062487],
[-73.978498456398043, 40.736790956525432],
[-73.976363733393782, 40.735867977808212],
[-73.975222755945822, 40.735397907530697],
[-73.975110552961198, 40.735390254682564]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI45",
"NTAName": "New Dorp-Midland Beach",
"Shape_Leng": 34333.857767399997101,
"Shape_Area": 55433147.3664
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.084690759914295, 40.571477913939738],
[-74.085952973200108, 40.570298227104701],
[-74.0865485869477, 40.569632319135543],
[-74.086912636532233, 40.568985842683553],
[-74.086192443004705, 40.568564620090093],
[-74.086216322241953, 40.5685326976445],
[-74.087250783161068, 40.569081678192831],
[-74.0883569978173, 40.56826670759137],
[-74.089202951031936, 40.567174036207525],
[-74.089140459540303, 40.567133473669443],
[-74.089249061410399, 40.567015570534195],
[-74.08998259932838, 40.567380011533089],
[-74.090549601063316, 40.567083597211294],
[-74.090999054670405, 40.566737129097518],
[-74.091238077621909, 40.566506613228114],
[-74.094049684097314, 40.562981647611039],
[-74.093996436619904, 40.562806059650562],
[-74.094070710435275, 40.562731619461715],
[-74.095110633612194, 40.563173272931984],
[-74.095423717963271, 40.563154635568544],
[-74.095683042799877, 40.56291939729055],
[-74.095671980613716, 40.562775598245366],
[-74.095886877510338, 40.562724916346099],
[-74.096118472013586, 40.562587574489513],
[-74.096613622722174, 40.562087145537348],
[-74.096870367803547, 40.561717971647482],
[-74.097024832955157, 40.561336438996975],
[-74.097419695703081, 40.560883647706227],
[-74.097993486968022, 40.559967105357927],
[-74.098197672619236, 40.559836476804612],
[-74.098290308236997, 40.559332614156808],
[-74.098086862543369, 40.559202743358718],
[-74.097832303034053, 40.559120453858256],
[-74.0977966531796, 40.55908724277522],
[-74.097848159882716, 40.559033669091654],
[-74.098706170837332, 40.559423600994933],
[-74.099095478997597, 40.559258790630267],
[-74.099327703614676, 40.559097413730179],
[-74.099295938137928, 40.559004972413554],
[-74.099380314327362, 40.558964193361156],
[-74.099717846132336, 40.559141300030497],
[-74.099929141354139, 40.559070685653047],
[-74.102507401478562, 40.560226391772737],
[-74.103235763057967, 40.560599596319491],
[-74.1041315206663, 40.561173228079603],
[-74.105576455087444, 40.561989973492466],
[-74.110139471060478, 40.564310666832519],
[-74.113761611952199, 40.566497189104105],
[-74.116363363427908, 40.56391563798654],
[-74.123092811398706, 40.567966366957044],
[-74.124899043723971, 40.568949142947062],
[-74.123450961528206, 40.569922761354391],
[-74.122789672075257, 40.570429844769556],
[-74.122168565037413, 40.570939493238328],
[-74.121625639344742, 40.571501393868751],
[-74.121502136573639, 40.57172155879838],
[-74.121387313448764, 40.572092210569437],
[-74.121360446987254, 40.572826743739334],
[-74.121830797639177, 40.574217089468888],
[-74.121853335973512, 40.574653180893947],
[-74.121537289061422, 40.575153252579391],
[-74.119785674943813, 40.575815555987603],
[-74.119109548631897, 40.576157251726386],
[-74.118448556368762, 40.576658680966233],
[-74.117576101858134, 40.57770348391098],
[-74.117020784917401, 40.578196926432348],
[-74.116632940658903, 40.578300476026421],
[-74.115883972171119, 40.578383694537585],
[-74.115625781007807, 40.57847975281134],
[-74.114819414632279, 40.579176874600087],
[-74.11367299833222, 40.580312936685786],
[-74.113069544651736, 40.580768522416783],
[-74.111277065122891, 40.581790728791844],
[-74.109248356080315, 40.58267841303536],
[-74.10790851648575, 40.583685637783212],
[-74.105257754746575, 40.585921435734797],
[-74.098440008684719, 40.58124170600675],
[-74.100390834287722, 40.57968866610738],
[-74.090328425354073, 40.574515336157027],
[-74.087750417370103, 40.57311057975258],
[-74.087657913716924, 40.573012664632145],
[-74.085976474958372, 40.572236970889335],
[-74.084690759914295, 40.571477913939738]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN25",
"NTAName": "Battery Park City-Lower Manhattan",
"Shape_Leng": 45694.627632399999129,
"Shape_Area": 19061000.8886
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-74.000782953417044, 40.694286515161998],
[-74.000958684830195, 40.694069083582193],
[-74.003013938290835, 40.694777844479127],
[-74.002398025837948, 40.695711654864475],
[-74.000268723777879, 40.694965802075323],
[-74.000782953417044, 40.694286515161998]
]
],
[
[
[-74.000431472743998, 40.697052466178526],
[-73.99959333581242, 40.696782261474375],
[-73.999531352026736, 40.696876612619391],
[-73.999587700066925, 40.696898056665539],
[-73.999553890836694, 40.696945232396793],
[-73.999407383769238, 40.696885189446014],
[-73.999523739035141, 40.69657482604083],
[-74.000489334059552, 40.696926195088039],
[-74.000431472743998, 40.697052466178526]
]
],
[
[
[-73.998377606857716, 40.698063296146074],
[-73.998871170976557, 40.697157576793245],
[-74.001049031235567, 40.697908235692211],
[-74.00048768628551, 40.698757777634512],
[-73.998377606857716, 40.698063296146074]
]
],
[
[
[-73.997999575401337, 40.698797685544264],
[-73.998021027251099, 40.698761736573765],
[-74.000018404336203, 40.699466048073617],
[-73.999474638389259, 40.700322777515709],
[-73.997498983100002, 40.699638869321213],
[-73.997999575401337, 40.698797685544264]
]
],
[
[
[-73.995384483826498, 40.702643010065813],
[-73.996697689974638, 40.70087697691703],
[-73.996821890858612, 40.70099078232527],
[-73.997527632079368, 40.70122881645608],
[-73.997760110336202, 40.701359414876684],
[-73.997801627863112, 40.701319394766216],
[-73.998138799654924, 40.701518787745798],
[-73.996192272947724, 40.703377140864141],
[-73.995138268406848, 40.702974114722821],
[-73.995384483826498, 40.702643010065813]
]
],
[
[
[-73.995021346491768, 40.703147869246713],
[-73.995445642460297, 40.703275305471735],
[-73.995293467009333, 40.703554065897968],
[-73.994800382748679, 40.703291958141975],
[-73.995021346491768, 40.703147869246713]
]
],
[
[
[-73.994769341255264, 40.703952894953517],
[-73.994882399024334, 40.70378802583739],
[-73.995029259824904, 40.70380820036543],
[-73.994882047264085, 40.704008653895144],
[-73.994769341255264, 40.703952894953517]
]
],
[
[
[-74.012441092127943, 40.719057672703372],
[-74.013233848808511, 40.715656187571753],
[-74.013351214891927, 40.715233312321978],
[-74.013475242188818, 40.715110711896585],
[-74.013753884830408, 40.713690554843161],
[-74.011663348756784, 40.712798055762697],
[-74.00860085337284, 40.711392239709014],
[-74.008347609790192, 40.711358545553935],
[-74.007467493694918, 40.711566902706814],
[-74.007389214105928, 40.71164226960672],
[-74.005891750354365, 40.712007159564919],
[-74.005734992653458, 40.711978688396947],
[-74.005439864980332, 40.71207853355638],
[-74.005109898927472, 40.712055593794176],
[-74.003823588176417, 40.71155186225274],
[-74.003364074930019, 40.711269413690694],
[-73.999194511088504, 40.707947376854023],
[-73.999523250071107, 40.707762628658124],
[-73.99949062474623, 40.707721844722407],
[-73.999538397254938, 40.707693470025646],
[-73.999609480392493, 40.707759973176273],
[-73.999948559497895, 40.707591496370966],
[-73.999972226487969, 40.707506398822019],
[-74.000233805257608, 40.707347142486832],
[-74.00118685262828, 40.706859825269163],
[-74.001131305772006, 40.706799050181921],
[-74.001232136919654, 40.706740335925787],
[-74.000982767577753, 40.706416712992926],
[-74.001406666919536, 40.70617938802063],
[-74.000582970479797, 40.705433933648877],
[-74.001436612454427, 40.704872177705219],
[-74.002061425638047, 40.705417004635571],
[-74.002158183485491, 40.705357119118503],
[-74.002569650594666, 40.705523579523494],
[-74.00268512768794, 40.705449248118647],
[-74.002362853117461, 40.705158966692593],
[-74.002415734769173, 40.705129311282491],
[-74.001970704639859, 40.704737867482024],
[-74.002171848758593, 40.70460659646367],
[-74.002333446211637, 40.704748135306978],
[-74.002430710758645, 40.704677858004338],
[-74.002487901486347, 40.704733760086448],
[-74.002386708067192, 40.70479566367446],
[-74.003323072707872, 40.705628595220048],
[-74.003631871693258, 40.705429806751738],
[-74.003559347148254, 40.70543833715297],
[-74.002878430694565, 40.704831357989747],
[-74.002972464752858, 40.70476649143739],
[-74.003583831726786, 40.705301611307533],
[-74.003644461838647, 40.705421684136226],
[-74.003833275322563, 40.705303243026371],
[-74.00394759023483, 40.705402871900247],
[-74.004383444172248, 40.705113259854819],
[-74.004266870374281, 40.705011660202032],
[-74.004590038836724, 40.704787752945009],
[-74.003496320423238, 40.703796769267697],
[-74.003719870430402, 40.703654481944646],
[-74.004806289007405, 40.704642068548566],
[-74.005188051333604, 40.704420535187985],
[-74.004925805644064, 40.704211808384628],
[-74.005003935070647, 40.704165311539356],
[-74.005211609004022, 40.704405532235306],
[-74.005350272247554, 40.704310079961523],
[-74.004157421541635, 40.703231631584636],
[-74.004207235598841, 40.703199373757776],
[-74.004117631627977, 40.703111937027401],
[-74.004272587521001, 40.703015666411474],
[-74.005207719371072, 40.703821337251547],
[-74.005592426090033, 40.704082563229036],
[-74.005663306406532, 40.704104243975614],
[-74.006018627909228, 40.703873152890765],
[-74.006140105779309, 40.703978660271737],
[-74.006595919138746, 40.703685902451817],
[-74.005483840824382, 40.702714322134028],
[-74.005526826152391, 40.702685287617108],
[-74.005427288262482, 40.702665436194039],
[-74.005304125960777, 40.702559865633027],
[-74.005494278050946, 40.702431380950379],
[-74.005613617976252, 40.702530242032317],
[-74.005535461381726, 40.702645520604236],
[-74.005675223158875, 40.702584071694936],
[-74.00678502257081, 40.703568126900059],
[-74.007519052837949, 40.703121819734527],
[-74.007706149704092, 40.702875161620085],
[-74.009127727588961, 40.702008323416472],
[-74.009309076554814, 40.701954603022529],
[-74.008699643135671, 40.70113986754221],
[-74.007755491506387, 40.701548001671789],
[-74.007591362042135, 40.701328080545522],
[-74.008536115107745, 40.700919695745029],
[-74.008349275591002, 40.700669348388189],
[-74.00862036163862, 40.700552163210666],
[-74.009600522632866, 40.701865481917835],
[-74.011166642179234, 40.701477202208252],
[-74.011095886026695, 40.701274998846259],
[-74.011289839055166, 40.701249981741668],
[-74.011209757787697, 40.701044583273742],
[-74.011128686056452, 40.701064897450365],
[-74.011067085689646, 40.700914940894826],
[-74.011093373893615, 40.700851256072973],
[-74.010924827170328, 40.70056679303633],
[-74.01079959311005, 40.700207213006948],
[-74.011150335568374, 40.700898400100918],
[-74.011358362913455, 40.700851958133732],
[-74.011298164322426, 40.700598884026704],
[-74.011334093443736, 40.700568353179733],
[-74.011381719416761, 40.700570257117747],
[-74.011502911437105, 40.700815058974179],
[-74.011729268174747, 40.700770118059658],
[-74.011631479186491, 40.700458218248102],
[-74.0117260583568, 40.70047860442186],
[-74.011853785495887, 40.700738921450146],
[-74.012086682146915, 40.700681308739156],
[-74.011856726230292, 40.700107103408321],
[-74.011961961169177, 40.700037545595428],
[-74.012088420256461, 40.700086583689504],
[-74.012391600322744, 40.700620527591411],
[-74.012593923275091, 40.700570833472412],
[-74.012515112140875, 40.700150492110865],
[-74.012613820873554, 40.700108265308486],
[-74.012834549334002, 40.700352874231882],
[-74.012908818599925, 40.700523611693399],
[-74.013107478473714, 40.700507452180624],
[-74.013011893318946, 40.69981825663114],
[-74.013113038262944, 40.699774164880068],
[-74.013273495491219, 40.700496870227681],
[-74.013485608327386, 40.700478222908394],
[-74.013532850841273, 40.700108160920564],
[-74.01358669315087, 40.700079590345013],
[-74.013674792487691, 40.700125821953463],
[-74.013530477964849, 40.700311100849035],
[-74.013522959189004, 40.700460415406958],
[-74.013580698867599, 40.700456914493081],
[-74.013585416664313, 40.700501912756366],
[-74.013577128886027, 40.700643681475931],
[-74.013510395926517, 40.700650371152044],
[-74.013558269594867, 40.700939870830517],
[-74.013951526904847, 40.700990982962601],
[-74.014339209855322, 40.701132680099086],
[-74.01411459711305, 40.701178017274088],
[-74.013723144411017, 40.701133021903864],
[-74.013979126772483, 40.701531070607452],
[-74.014011288841431, 40.701976124330557],
[-74.013811696319749, 40.702120929976154],
[-74.013834410716015, 40.702405701540556],
[-74.014262494673261, 40.702799000969257],
[-74.014429832366346, 40.703150647788789],
[-74.014255239470486, 40.704425472342137],
[-74.014289229489776, 40.704549075352503],
[-74.015272197035429, 40.704830036723642],
[-74.015397586160802, 40.704800149762136],
[-74.015657566402766, 40.70483308805305],
[-74.015655821571087, 40.704882634609341],
[-74.01668613062364, 40.704799338940084],
[-74.016687146113583, 40.704743942257949],
[-74.016759066339219, 40.704742283844517],
[-74.01713123915583, 40.704282535903417],
[-74.017570355739778, 40.704183880986648],
[-74.01779454520279, 40.704234897096185],
[-74.017855856829144, 40.70407884661045],
[-74.01775054986868, 40.70405488289348],
[-74.017791393034372, 40.703950912583586],
[-74.017837828259673, 40.703962666138487],
[-74.01780821746955, 40.704031964479604],
[-74.017912293262199, 40.704054497150963],
[-74.017954740486616, 40.703975785608463],
[-74.017844411067244, 40.704242039937895],
[-74.018447702437726, 40.704162168231505],
[-74.018668307718912, 40.704435239616195],
[-74.017516395970773, 40.704580844290817],
[-74.017480861525726, 40.704667487696142],
[-74.018024143743844, 40.704645890908438],
[-74.018112961291152, 40.704553727487159],
[-74.018887466493652, 40.704729148837338],
[-74.019342546244602, 40.706093672024494],
[-74.019122759634115, 40.706975814337405],
[-74.019066171401448, 40.707013770621437],
[-74.018953594633714, 40.706996769465484],
[-74.018796449367898, 40.70712781984755],
[-74.018630583726988, 40.707139715269264],
[-74.018547184753416, 40.707107770264194],
[-74.01857117399436, 40.707079922388608],
[-74.018761940374048, 40.707075784861686],
[-74.01884889814508, 40.706970312350194],
[-74.018647944741247, 40.707017819578404],
[-74.018535132696684, 40.706918322014054],
[-74.018190293256779, 40.707821625607224],
[-74.018655570496335, 40.707923948380675],
[-74.018855009119662, 40.708047534447395],
[-74.018110578552253, 40.711029628214291],
[-74.017770142545032, 40.712834574789106],
[-74.017720215635464, 40.712844730933604],
[-74.01772148946101, 40.712784144107871],
[-74.017800378223441, 40.712345124158617],
[-74.01662424491326, 40.712157318492615],
[-74.016544638125296, 40.712456037930941],
[-74.016618400783045, 40.712756150029648],
[-74.016541121056704, 40.71295556431685],
[-74.016391695518635, 40.713099997950614],
[-74.016320066275796, 40.713407982478245],
[-74.017544433346572, 40.713611222664227],
[-74.017670416640513, 40.71306920796507],
[-74.017724962192943, 40.713070181622697],
[-74.016710186058233, 40.718624176057972],
[-74.016629963381902, 40.718665368450218],
[-74.015000606824003, 40.718449235552406],
[-74.014945155493379, 40.718543535077131],
[-74.013213227191926, 40.718315719895749],
[-74.013030681264354, 40.719131455819088],
[-74.012441092127943, 40.719057672703372]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI12",
"NTAName": "Mariner's Harbor-Arlington-Port Ivory-Graniteville",
"Shape_Leng": 72433.993284700001823,
"Shape_Area": 89054893.7965
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-74.15945602371967, 40.641448332319776],
[-74.15974815940271, 40.641416525789246],
[-74.159978756996153, 40.641446480836365],
[-74.161112425881512, 40.64183545373627],
[-74.161178971047065, 40.642006612330775],
[-74.161201871919104, 40.642663365028938],
[-74.161475142998825, 40.644101526464581],
[-74.161460360052928, 40.644294969764857],
[-74.157987595406453, 40.643861788966056],
[-74.157433492009872, 40.643302857778991],
[-74.157915893407846, 40.643082694453689],
[-74.158134516033471, 40.642632530662979],
[-74.158550437705401, 40.642497501306387],
[-74.158661259605253, 40.642305105457211],
[-74.158810938112723, 40.641758634739404],
[-74.159200245343357, 40.641650402972189],
[-74.15945602371967, 40.641448332319776]
]
],
[
[
[-74.179895683398954, 40.645268795975475],
[-74.179884063614196, 40.645110240366471],
[-74.179843769503492, 40.6451103033869],
[-74.179848394089831, 40.645164859413782],
[-74.179774527332953, 40.645166679847954],
[-74.179729878180169, 40.644380702110858],
[-74.179331172492965, 40.644400511269922],
[-74.179334680075442, 40.644721660786153],
[-74.179281001744357, 40.644859272159209],
[-74.179340214961854, 40.644976187585172],
[-74.17923215257143, 40.64504655043762],
[-74.179127882144726, 40.644950223572003],
[-74.179074665838939, 40.644646507056514],
[-74.179001968534607, 40.643717716750132],
[-74.179035559945405, 40.643394787019638],
[-74.179113945822195, 40.643300666431671],
[-74.179338907235916, 40.643229130691651],
[-74.179404828020324, 40.643128966476397],
[-74.179372530456533, 40.64304783310395],
[-74.179435480510094, 40.643011344976379],
[-74.179385283614252, 40.642799103901595],
[-74.179600746755995, 40.642149775476192],
[-74.179587137873881, 40.641917683463006],
[-74.179303978104898, 40.642885240458234],
[-74.179187280672934, 40.642987538991306],
[-74.179039268108554, 40.642949250649082],
[-74.178790784368701, 40.642498503459507],
[-74.178640620064328, 40.64257237408615],
[-74.178483138270849, 40.642521174727875],
[-74.178256621458942, 40.642129227365579],
[-74.178341269459821, 40.642589475996779],
[-74.178109927166389, 40.642529184609948],
[-74.178007634570122, 40.642543302999457],
[-74.177930708535328, 40.642625114088034],
[-74.177812376087743, 40.642599844142083],
[-74.177686362998415, 40.642948596519531],
[-74.177458645237223, 40.643035268664093],
[-74.177385743606223, 40.643012090959992],
[-74.177211186369306, 40.643122778602034],
[-74.177134805937868, 40.643089866649888],
[-74.177145379109149, 40.643010048222308],
[-74.177057762945637, 40.643059200719563],
[-74.176823868959005, 40.642859145983287],
[-74.176704891511747, 40.642416911283973],
[-74.176683455196226, 40.642472690412887],
[-74.176357866175337, 40.642327220562848],
[-74.176687237912247, 40.64255213862117],
[-74.176724424950791, 40.642971386120593],
[-74.176667955382442, 40.643386844771591],
[-74.176336667797784, 40.643459810245517],
[-74.175981831919231, 40.643463622280727],
[-74.175779646367602, 40.643416219998549],
[-74.175664787667955, 40.643310179118913],
[-74.175602509542969, 40.643311298169799],
[-74.175484179140525, 40.643462294512688],
[-74.175506445116795, 40.643688827030402],
[-74.175586490289803, 40.64377851932656],
[-74.175484019967698, 40.643911472558429],
[-74.175471662551459, 40.644123104958524],
[-74.1755469205807, 40.644176587056229],
[-74.17570768570576, 40.644571724168301],
[-74.175684707425773, 40.644710284895076],
[-74.175558923049138, 40.644616054129465],
[-74.175466911571974, 40.644646521102288],
[-74.175296915450573, 40.645075076818912],
[-74.174896205251343, 40.645146047962854],
[-74.174586215433052, 40.645016931528538],
[-74.174365730094593, 40.645136258141839],
[-74.174059083522138, 40.64502517319923],
[-74.172941238916536, 40.644204522855837],
[-74.172876981712832, 40.644009008113706],
[-74.173001854924024, 40.643827520941628],
[-74.173001546516318, 40.643585405078611],
[-74.172846735247134, 40.643453163878299],
[-74.172715277753696, 40.643497626156169],
[-74.172447844850666, 40.643421570750803],
[-74.172361653865792, 40.643256267551841],
[-74.172423407635776, 40.643200325095876],
[-74.172545293481321, 40.643192442159247],
[-74.172490303723194, 40.643154229266749],
[-74.17271969180949, 40.643000573585681],
[-74.172721453711674, 40.642948498995587],
[-74.172571926195786, 40.642987031433989],
[-74.172440278618851, 40.64281204715865],
[-74.172326892555759, 40.642862440056085],
[-74.171963305659915, 40.642858132693299],
[-74.171750338520667, 40.643092460752243],
[-74.17150811099728, 40.643134442090826],
[-74.171423694239166, 40.643040693920021],
[-74.171491152303489, 40.642984313582204],
[-74.171335872816769, 40.642855764549367],
[-74.171860425825784, 40.642522928518844],
[-74.171750128528785, 40.642516755691176],
[-74.171849273111008, 40.642380402707083],
[-74.171723115889108, 40.642283271889497],
[-74.171770296469688, 40.642196989303464],
[-74.171671281547418, 40.642043642988284],
[-74.17172186950495, 40.64193954418144],
[-74.171561894741131, 40.641877192383021],
[-74.1714787898932, 40.64170250949099],
[-74.171452289397891, 40.641454721239604],
[-74.171493280668372, 40.641248941865157],
[-74.171602102876292, 40.641145862600936],
[-74.171587219237338, 40.641029593394471],
[-74.172023159181975, 40.640989214656706],
[-74.172510062130954, 40.640676819629441],
[-74.172938961754014, 40.640579552697389],
[-74.172987988003101, 40.64048910506623],
[-74.172799413222137, 40.64060634862264],
[-74.172461141862627, 40.640673620668402],
[-74.172024461008803, 40.640955465383875],
[-74.171569946854234, 40.641011532092747],
[-74.171565452891812, 40.641148307921483],
[-74.171455885058194, 40.641213037583988],
[-74.171386518592243, 40.641422735518901],
[-74.171373823503814, 40.642085014765442],
[-74.171327402013944, 40.642085083935854],
[-74.171050172398921, 40.642593819129949],
[-74.170992087522578, 40.642571804454626],
[-74.171275245115865, 40.642111682766703],
[-74.17121130105231, 40.642067575868936],
[-74.171192609512076, 40.641739626513946],
[-74.17028635441109, 40.641775308255845],
[-74.170078786509166, 40.642086160072864],
[-74.169152955691374, 40.641872859874347],
[-74.169064316288654, 40.642130016798554],
[-74.168402325304399, 40.641991240539078],
[-74.168243436432576, 40.641941350360675],
[-74.168125474926583, 40.641825331499966],
[-74.168016804609991, 40.641837666815348],
[-74.167740940513568, 40.641727774498477],
[-74.167576070925065, 40.641844793608016],
[-74.166773849934231, 40.641581637722616],
[-74.16671693822903, 40.641478808193639],
[-74.166533757928363, 40.641422637883643],
[-74.166479719489715, 40.641434871676807],
[-74.166215999170504, 40.642424100227899],
[-74.16609989896034, 40.64240658700119],
[-74.166318872924606, 40.641436675004918],
[-74.16580110755902, 40.641224511449465],
[-74.165634098297758, 40.641214371374701],
[-74.165443100822728, 40.642280546205939],
[-74.164941390411826, 40.64220899988927],
[-74.165190418240883, 40.640642305275819],
[-74.164734265368068, 40.640391467024799],
[-74.164571324327042, 40.64141866159494],
[-74.164414596491127, 40.641396784726048],
[-74.164596565974563, 40.640315745042379],
[-74.164168868135079, 40.639994109727731],
[-74.164001790672728, 40.641065859503243],
[-74.16386249420357, 40.641052797343782],
[-74.164047315166428, 40.639946658799516],
[-74.163944913665759, 40.639914605815946],
[-74.163454456819991, 40.639856560398229],
[-74.163228558441304, 40.640948510329906],
[-74.162858688946116, 40.640929938147217],
[-74.162845832926038, 40.641019590245058],
[-74.162793560280207, 40.641029624006705],
[-74.162065170920414, 40.640784990763642],
[-74.162065025789673, 40.64072523582189],
[-74.161675346942346, 40.640610784766757],
[-74.162284652519617, 40.638765652269704],
[-74.161818566122577, 40.638646278777607],
[-74.161449178267702, 40.639428336668288],
[-74.161302218015479, 40.639393734457009],
[-74.161660107729688, 40.638664993312332],
[-74.16124015814863, 40.638595010611006],
[-74.161157895503109, 40.638694062378256],
[-74.160904907044156, 40.639386140816924],
[-74.160736549384524, 40.639351014474506],
[-74.161081618248801, 40.638567768311582],
[-74.160891989610903, 40.63854118915296],
[-74.1608112684074, 40.638632958888806],
[-74.160762219471025, 40.63862369025729],
[-74.160750603090705, 40.638518399936338],
[-74.160348199930439, 40.638443725950872],
[-74.159948996344838, 40.639940136777724],
[-74.159864103990643, 40.639927823693668],
[-74.16023470596285, 40.638410316923874],
[-74.160152839889406, 40.638386217539569],
[-74.160057540659778, 40.638722352247278],
[-74.159856977677805, 40.638729201716821],
[-74.159730105328407, 40.638578444173213],
[-74.159720000409365, 40.638453345061706],
[-74.159641465289411, 40.638414239827881],
[-74.159577123979133, 40.637992583211876],
[-74.159319540370362, 40.637810404740293],
[-74.159227116229445, 40.637796119757013],
[-74.159056223788937, 40.63803931031979],
[-74.15900957887429, 40.638822577909771],
[-74.158895324168228, 40.63881527713027],
[-74.158932992266401, 40.638264017818067],
[-74.158645800738142, 40.63824900745194],
[-74.158634724421091, 40.638128479097773],
[-74.158152771959877, 40.638109965617872],
[-74.158148839150314, 40.637967511447634],
[-74.157892629538807, 40.637965051231099],
[-74.157841222729132, 40.638873914966119],
[-74.157733525063719, 40.638879035166184],
[-74.157773659367919, 40.637957159243463],
[-74.157187827165458, 40.637950805229806],
[-74.157101266907091, 40.639277718600141],
[-74.156977232942552, 40.639275401191803],
[-74.157070773715589, 40.637947135640061],
[-74.156368485986775, 40.637905847738878],
[-74.156365529296934, 40.637950742259349],
[-74.156102765568633, 40.637939590885196],
[-74.156114883307126, 40.637530747163517],
[-74.155698620531524, 40.637517938904132],
[-74.155618293261497, 40.638470220024672],
[-74.155492690002774, 40.63846677952548],
[-74.155586437589122, 40.637730775865379],
[-74.154829323958822, 40.637723855419651],
[-74.154759336653214, 40.639196327303921],
[-74.154692638645258, 40.639193968114199],
[-74.154778290118699, 40.637721545048272],
[-74.154596701633267, 40.637343344069009],
[-74.154383083257258, 40.63719379838308],
[-74.154252701394924, 40.637172310887372],
[-74.153414065977898, 40.637272719079263],
[-74.152797035773759, 40.637132754851656],
[-74.152700607522377, 40.637192435562177],
[-74.152697004495508, 40.637641841222042],
[-74.152218069504514, 40.637692581715953],
[-74.152297861755002, 40.638274288263553],
[-74.152136758999148, 40.638290747955637],
[-74.152046392332664, 40.637667215315453],
[-74.151195450071768, 40.637730788536139],
[-74.151395176136489, 40.639396513057427],
[-74.151248280324324, 40.639409342382464],
[-74.151129650903712, 40.638500679571315],
[-74.150556389080592, 40.638559330666375],
[-74.150392753701411, 40.63833817252047],
[-74.150308559596979, 40.638281016431236],
[-74.150113804437055, 40.638267285542391],
[-74.149967820905445, 40.638150075249214],
[-74.149793861260619, 40.63789278036149],
[-74.149678898308863, 40.637517674260572],
[-74.149458182319918, 40.63741032063318],
[-74.14936001445794, 40.637418626595363],
[-74.149312356633075, 40.637525958139513],
[-74.149451941073337, 40.637885156578996],
[-74.149418817743154, 40.6382916405461],
[-74.149317017229905, 40.638390119842605],
[-74.149281875480099, 40.638570686366961],
[-74.149194181556865, 40.638668331371903],
[-74.148881754777946, 40.638705207974063],
[-74.148558150922057, 40.637437837527223],
[-74.148516024907693, 40.637547073597879],
[-74.148777920058848, 40.638876251127691],
[-74.147612372488894, 40.639037037339939],
[-74.147499397404317, 40.638909596809626],
[-74.146021731017186, 40.639094549700694],
[-74.146057336183873, 40.639229257689863],
[-74.145192794815401, 40.639378497654711],
[-74.144671332341687, 40.639304267726772],
[-74.144590853408872, 40.639201285703599],
[-74.14402416136582, 40.638900523306503],
[-74.143861635954423, 40.638887962508306],
[-74.143749599189036, 40.638961577750599],
[-74.143841925196227, 40.639088355055847],
[-74.143817345302693, 40.63920747892395],
[-74.143573085937888, 40.639226785257094],
[-74.143424768960841, 40.639466337996133],
[-74.143361030768105, 40.639709845180249],
[-74.143128025090434, 40.639680373126751],
[-74.143599982922893, 40.638514125687969],
[-74.144782289955145, 40.637953780297273],
[-74.146830165537168, 40.631382654000284],
[-74.147526190297981, 40.629389288299301],
[-74.146222028148586, 40.629106957185456],
[-74.146087564062753, 40.628915902787519],
[-74.145935446285165, 40.627824114565335],
[-74.145540720129176, 40.627832522115973],
[-74.14563382845752, 40.626725150753806],
[-74.14650354422858, 40.62420010106247],
[-74.14710957687771, 40.623032260225521],
[-74.147728303692872, 40.622136619261902],
[-74.148319823197284, 40.621449516078002],
[-74.151657578883402, 40.618040557990447],
[-74.152311704300914, 40.617162755917754],
[-74.152592664497689, 40.616573081411659],
[-74.153791166574081, 40.612255612755334],
[-74.157926738624241, 40.615457424604152],
[-74.15986704925254, 40.616813225100174],
[-74.161630103268095, 40.617934936409348],
[-74.162354577564145, 40.61833563791938],
[-74.164841903853699, 40.619572404903359],
[-74.168080863396426, 40.620936256187015],
[-74.16888894245777, 40.621151143350609],
[-74.169536565114171, 40.62127050010983],
[-74.172362610238764, 40.621635798864965],
[-74.173612440943373, 40.621948740869797],
[-74.17459706258596, 40.62236401199165],
[-74.175196256663227, 40.622706243880586],
[-74.176100527930913, 40.62340624288138],
[-74.178281773680638, 40.625451361419955],
[-74.178883905737052, 40.625932871736872],
[-74.179937060479205, 40.626601296520917],
[-74.181902357135911, 40.627755807206192],
[-74.183687910928427, 40.628737925050686],
[-74.195559752593581, 40.635023986130555],
[-74.195428941274272, 40.635175934642312],
[-74.195307043564071, 40.635233895517125],
[-74.195185772436517, 40.635415781046561],
[-74.195200968999529, 40.635707944143675],
[-74.194494807744562, 40.636449521947881],
[-74.194544622922606, 40.636516203143884],
[-74.194422568546429, 40.636582105207943],
[-74.194542126457549, 40.637070027626741],
[-74.194621351249651, 40.637090283003516],
[-74.194734039498911, 40.637040775394219],
[-74.194786897484448, 40.63713151166305],
[-74.19462310145191, 40.637391183563665],
[-74.194424059236638, 40.637418991333732],
[-74.194337170172858, 40.637316301268982],
[-74.193973086275008, 40.637309114196334],
[-74.19358317694855, 40.637469116884624],
[-74.193719646219492, 40.637566814230084],
[-74.186524968975974, 40.643388662171425],
[-74.186232097436843, 40.643187396856327],
[-74.186100785733544, 40.643271218511607],
[-74.186063183341275, 40.643447852319674],
[-74.185908966678539, 40.643631439501739],
[-74.185574194673904, 40.643802222588207],
[-74.185303320132618, 40.643766646729581],
[-74.185114316148841, 40.643806238289976],
[-74.185105883930362, 40.643865181438414],
[-74.185247936632621, 40.643943526192238],
[-74.184835945808473, 40.644128266338718],
[-74.184748600698285, 40.643939074257595],
[-74.184659616506863, 40.643911858226687],
[-74.184586076488316, 40.643790588482418],
[-74.184472198055673, 40.643771954552165],
[-74.184424449663439, 40.643650691575999],
[-74.184113190644339, 40.643530083625755],
[-74.184064832319194, 40.64332398994317],
[-74.184192392208857, 40.643172453296856],
[-74.184239615633771, 40.643234418739404],
[-74.1843285569187, 40.643226668731124],
[-74.18437046839783, 40.643099576888872],
[-74.184214440658636, 40.643116895265841],
[-74.1839549073662, 40.642494160700039],
[-74.183650671300413, 40.642239641049599],
[-74.183636316994821, 40.64239599025651],
[-74.183806651381261, 40.642614332607074],
[-74.183790687072232, 40.642718242370997],
[-74.183944506100573, 40.642882186508942],
[-74.184026111920147, 40.643100408569687],
[-74.183903468132911, 40.643259506119612],
[-74.183845759369106, 40.643266156807364],
[-74.183474271664551, 40.642949209571711],
[-74.183327828216946, 40.64291015310701],
[-74.183242122791384, 40.642963677097839],
[-74.183463157108136, 40.643336501502318],
[-74.183463001943196, 40.643473242228801],
[-74.183383039389767, 40.643522487353259],
[-74.183384767097252, 40.643588390739872],
[-74.183483606387185, 40.643704985535884],
[-74.183800449424226, 40.64443190122303],
[-74.18366745872008, 40.644610485050038],
[-74.182889316218336, 40.644800282946029],
[-74.181899981925369, 40.644681872346027],
[-74.181667634158998, 40.644709313769503],
[-74.181184342439266, 40.644586159244859],
[-74.181086523135775, 40.644627448988182],
[-74.18096309641804, 40.644813698818204],
[-74.180872125132211, 40.644851429678326],
[-74.180806865384739, 40.644819237622983],
[-74.180788366402979, 40.644577937747144],
[-74.180527190909444, 40.644484695631895],
[-74.180481739535225, 40.644278924273877],
[-74.180040780152098, 40.644288140672614],
[-74.180047721791439, 40.644371679724607],
[-74.179906714553951, 40.644378720664236],
[-74.179965072740217, 40.645266982302886],
[-74.179895683398954, 40.645268795975475]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN31",
"NTAName": "Hunters Point-Sunnyside-West Maspeth",
"Shape_Leng": 74604.551859500003047,
"Shape_Area": 102399982.819
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.925627437254548, 40.752137244754955],
[-73.918923481201531, 40.753636124411578],
[-73.917631928356627, 40.753857848779212],
[-73.916505345538326, 40.753891590793884],
[-73.914464508448162, 40.753676411569039],
[-73.91354183449954, 40.753468714423306],
[-73.910674748309631, 40.752995076826878],
[-73.910354929924694, 40.752749908536124],
[-73.90949707380156, 40.75095058385017],
[-73.909451827072999, 40.750655506889423],
[-73.909899615151645, 40.749087275083113],
[-73.910158606189142, 40.748501967883271],
[-73.911642026992112, 40.748684576279572],
[-73.911909791229547, 40.748105394935088],
[-73.912448537832361, 40.745920402209535],
[-73.911247222613582, 40.745783992534321],
[-73.911941297673863, 40.742382949903764],
[-73.912890841692743, 40.742482249708765],
[-73.913793886760033, 40.742514492153333],
[-73.914434832392033, 40.740531053309617],
[-73.915674696262556, 40.740784929658588],
[-73.916301085387232, 40.73906911846408],
[-73.916511905711758, 40.738944757964902],
[-73.917177379697051, 40.736897870740918],
[-73.916515226875291, 40.736757345504856],
[-73.916897419099143, 40.73544470814948],
[-73.917513478993243, 40.735350984579696],
[-73.917592507466253, 40.735239441689224],
[-73.91879291984354, 40.731969449214787],
[-73.919021804029654, 40.73208783861029],
[-73.919038251574563, 40.732005966357164],
[-73.917342505301804, 40.731382826292823],
[-73.917521075674898, 40.731002704588533],
[-73.917966967064984, 40.728500770629253],
[-73.91507233834534, 40.727970820069032],
[-73.915052180954063, 40.728601180500362],
[-73.912050212654123, 40.728506363529583],
[-73.912009746871504, 40.729228864148027],
[-73.911747342326379, 40.729912033262494],
[-73.910962086825549, 40.729640752901226],
[-73.910176276116403, 40.729275725509048],
[-73.907122530784676, 40.727424728437796],
[-73.912571876777932, 40.723239634949344],
[-73.912707734969302, 40.723284502870243],
[-73.913169698057899, 40.723081525896319],
[-73.91384828242974, 40.722898412353281],
[-73.913672343687495, 40.722601158185711],
[-73.913426888984247, 40.722333937295275],
[-73.91309792345875, 40.721737469494265],
[-73.911320951405315, 40.719624229591275],
[-73.922327739568374, 40.716592644624889],
[-73.922794147453942, 40.717534576143962],
[-73.923466026541632, 40.71813033432224],
[-73.923650074746888, 40.718609194968906],
[-73.923938673293534, 40.719042756786983],
[-73.923966525954071, 40.719714303327223],
[-73.92395208918505, 40.719835367471326],
[-73.923838265137107, 40.719908602490918],
[-73.923880318804279, 40.719979473728536],
[-73.923835754717643, 40.720148163576013],
[-73.924075398133539, 40.720694148141959],
[-73.924227162475731, 40.720887344591866],
[-73.924166530512025, 40.721165760584078],
[-73.924243649210055, 40.721429498758546],
[-73.924523626141095, 40.721662382763782],
[-73.924646552195512, 40.721842601860338],
[-73.924912411313755, 40.721960138308837],
[-73.925152072720437, 40.722335338815647],
[-73.924599016023066, 40.723424612627511],
[-73.924517342125029, 40.723552242499508],
[-73.924422987549846, 40.723589974981003],
[-73.922997301323093, 40.723669292413952],
[-73.922426987470331, 40.723610142696735],
[-73.922143309612849, 40.72370755701872],
[-73.921642603958659, 40.723579363757594],
[-73.921252120894877, 40.723410593880736],
[-73.920733560941329, 40.723309812770459],
[-73.920583735369476, 40.723519483225878],
[-73.920426460216618, 40.723554485573317],
[-73.920370641697303, 40.72368111281542],
[-73.921085476463091, 40.723811215085945],
[-73.92166563414311, 40.724055316315869],
[-73.922286202809488, 40.724181285932247],
[-73.922462195347009, 40.724174407661415],
[-73.922898128898879, 40.72425877170469],
[-73.924192179912112, 40.724275741190802],
[-73.924653273955443, 40.724387643984301],
[-73.924903161651812, 40.72450657567142],
[-73.925523869989632, 40.724887417190708],
[-73.926556639124527, 40.725669064784626],
[-73.927234333004577, 40.726412055747218],
[-73.927217211199931, 40.726460644760316],
[-73.928109723104683, 40.727261380674413],
[-73.928556760854406, 40.727844828185546],
[-73.92853805222326, 40.727882449936722],
[-73.928610706156974, 40.727919775386084],
[-73.928655375073035, 40.727890680066537],
[-73.92923485876166, 40.728260165761036],
[-73.930439710430676, 40.728563137284475],
[-73.931192677967047, 40.728642987274135],
[-73.931315093600659, 40.72872944648487],
[-73.934531763757391, 40.729104806032367],
[-73.935887513994274, 40.729465114872433],
[-73.936445639671263, 40.72967214559857],
[-73.93725405595633, 40.730134604415703],
[-73.938044785732316, 40.730509967846409],
[-73.93911054574815, 40.731379806525538],
[-73.9394097369902, 40.731934812360699],
[-73.939496457500013, 40.732199481916801],
[-73.9394122092598, 40.732235862250995],
[-73.939910498958085, 40.733276327859507],
[-73.940032009911022, 40.733245044305704],
[-73.940164948021547, 40.733486026666867],
[-73.940017680329362, 40.733540430685558],
[-73.940104369191943, 40.733752950541572],
[-73.940067093270372, 40.733762152980077],
[-73.940864985927035, 40.735070409091044],
[-73.941624726364736, 40.735841442338192],
[-73.94224043442604, 40.736184360682245],
[-73.943594804087098, 40.736717789773863],
[-73.945940960532909, 40.73750507655425],
[-73.94591175993915, 40.737570935241152],
[-73.945775436794065, 40.737555427542361],
[-73.945455768032005, 40.737752351992512],
[-73.944775198284304, 40.737996263582545],
[-73.944638601309208, 40.738138352039819],
[-73.944478950974954, 40.7381125749543],
[-73.942578858121962, 40.738816020268516],
[-73.942803842676611, 40.738861546456199],
[-73.942556128052914, 40.739020865746632],
[-73.941461734631673, 40.739248583627123],
[-73.940778017432834, 40.73992178145356],
[-73.940508888057252, 40.740113941753087],
[-73.940361592850479, 40.740335345658188],
[-73.940561449690819, 40.740418322934161],
[-73.939108740720599, 40.742617035176309],
[-73.938669917531954, 40.74253408202491],
[-73.938587869767858, 40.74293088268746],
[-73.940019229756658, 40.743208272210694],
[-73.940148585873033, 40.742832441460365],
[-73.939653015213779, 40.742731087095613],
[-73.941188166962505, 40.740290217289349],
[-73.941594700300328, 40.739864126168897],
[-73.941650018796139, 40.739864154209677],
[-73.941835049927604, 40.739692620211471],
[-73.942033670995869, 40.73965693856082],
[-73.942379730743795, 40.739430471969889],
[-73.942596668449212, 40.73939514730025],
[-73.942790456401156, 40.739193720701728],
[-73.942706089921543, 40.73911506247606],
[-73.942901418288571, 40.739003801504374],
[-73.943290268668179, 40.739008622393129],
[-73.943822722979107, 40.73887153785266],
[-73.944338825384776, 40.73864623976484],
[-73.94523862072657, 40.738356823142617],
[-73.945482365901157, 40.738207031293726],
[-73.947150871811743, 40.737900123344723],
[-73.951380715179155, 40.739336477295311],
[-73.951922081922817, 40.739487305425378],
[-73.952196727585161, 40.739536254864852],
[-73.952215373771097, 40.739503456750136],
[-73.95379878808717, 40.73981986527194],
[-73.955494418889046, 40.739779560931154],
[-73.956823539010017, 40.73961472406355],
[-73.957061792278665, 40.739631832813565],
[-73.957414707659993, 40.739556582011524],
[-73.959782703465791, 40.738511710661257],
[-73.960067579018414, 40.738483749623711],
[-73.96028544056766, 40.738243992327035],
[-73.960725803736779, 40.738080170179131],
[-73.962165056193115, 40.738272538258947],
[-73.962131461129829, 40.73845107014813],
[-73.962474750878854, 40.738628189394525],
[-73.962608196848805, 40.738795536878499],
[-73.962620158986638, 40.739032662126029],
[-73.962430790052636, 40.739671480585287],
[-73.962209164917795, 40.740006175498053],
[-73.961592047829782, 40.740003968231591],
[-73.961450137782663, 40.740337834680147],
[-73.961259579373433, 40.740332939444805],
[-73.961265812361745, 40.740537471108269],
[-73.961850097451745, 40.740724481630302],
[-73.96190930217675, 40.740867833243847],
[-73.961803974230179, 40.741097673471948],
[-73.961458937752255, 40.741137505176674],
[-73.961218628520129, 40.741107860130128],
[-73.961077085397918, 40.741697324115236],
[-73.961115056085461, 40.741797803646278],
[-73.961364668257204, 40.741835179026985],
[-73.961339421699108, 40.741877934812642],
[-73.961108145675396, 40.741828024902929],
[-73.961172779172244, 40.741886334141292],
[-73.961552531689563, 40.741993261407146],
[-73.961190297890226, 40.74264485525967],
[-73.96109548654573, 40.742781947228785],
[-73.960971684515584, 40.742754054263898],
[-73.960646021803484, 40.743392706263101],
[-73.960519514019694, 40.743495778465174],
[-73.960287620096196, 40.743557817625287],
[-73.959784685522763, 40.743497716583946],
[-73.959719815290313, 40.743693045465264],
[-73.959804947714375, 40.743706752387425],
[-73.959751238509881, 40.743902276657813],
[-73.960672045133308, 40.744051215855698],
[-73.96064863700721, 40.744130317614029],
[-73.959922987898651, 40.74402704209605],
[-73.959933115636147, 40.743994588411255],
[-73.959632250239608, 40.743934631914101],
[-73.959361982751133, 40.744213976037337],
[-73.959391066095804, 40.744283324241245],
[-73.959712804711785, 40.744314816910766],
[-73.95972855228645, 40.744272115619374],
[-73.960155255176915, 40.744368782605541],
[-73.960126009624176, 40.744443936488871],
[-73.960011471392619, 40.744422543044358],
[-73.960026100569067, 40.744373862312628],
[-73.959801517416253, 40.744329368580985],
[-73.959543228493771, 40.744308778289792],
[-73.959524108191687, 40.744354895906049],
[-73.959233690117657, 40.744310043026701],
[-73.959034041530956, 40.744435215821838],
[-73.958854199357816, 40.744470091157382],
[-73.958775370705609, 40.744555599863624],
[-73.959187239851516, 40.744621011257031],
[-73.959221885720595, 40.744553805630879],
[-73.959431075191631, 40.74459754354725],
[-73.959462047479704, 40.744660891772],
[-73.959373396807806, 40.744709808187437],
[-73.958763725813213, 40.744592619164123],
[-73.9586409667628, 40.744948314954939],
[-73.959649106544802, 40.74514416077281],
[-73.959652297559813, 40.745216588173456],
[-73.958493893031203, 40.744987864916219],
[-73.958452522696817, 40.745119011319566],
[-73.95927397091063, 40.745328954932425],
[-73.959340719758615, 40.74543351026233],
[-73.959324202652937, 40.745543322752432],
[-73.959205576228072, 40.745679506731264],
[-73.959059356740283, 40.745753368346563],
[-73.958947433713135, 40.745771185295887],
[-73.958568658225218, 40.745688917421759],
[-73.958398615472362, 40.745719419445592],
[-73.958379270851907, 40.745953089590465],
[-73.958994272266125, 40.746064646435379],
[-73.958646844211074, 40.746544835947567],
[-73.95867072374395, 40.746643109693849],
[-73.958404825414291, 40.746898049495584],
[-73.958317401944257, 40.74707221012013],
[-73.956794532905093, 40.74883951695557],
[-73.954853942680359, 40.748040794640943],
[-73.954733479532706, 40.748018725711056],
[-73.954651782206113, 40.748232644095424],
[-73.954320068357347, 40.748103916579552],
[-73.95439031540441, 40.748019022887775],
[-73.954645472394304, 40.748128308658025],
[-73.954705613077763, 40.748013620452667],
[-73.953183824928573, 40.747734811960925],
[-73.953053755713995, 40.74808748722927],
[-73.954783878698066, 40.74842768777318],
[-73.95632162509699, 40.749081553429711],
[-73.956380453830803, 40.749034007008746],
[-73.956485687946696, 40.749111690155708],
[-73.956255829342084, 40.749334826984096],
[-73.956134992405779, 40.749264626274766],
[-73.955760392070232, 40.74959665953044],
[-73.95619953007305, 40.749670714925344],
[-73.956120662791903, 40.749759885369109],
[-73.955464370024913, 40.749674213082869],
[-73.955349285144464, 40.750013856903919],
[-73.955215300320035, 40.749991967689489],
[-73.955228094294029, 40.749943446040348],
[-73.955132391524785, 40.749926424332287],
[-73.955202750408731, 40.749676537409442],
[-73.955066525601694, 40.749632730375396],
[-73.954515845733866, 40.75058669897674],
[-73.954650004131182, 40.750831040959469],
[-73.953940139375177, 40.751745547429415],
[-73.953993533944384, 40.751786195015896],
[-73.953641391955955, 40.752036987963898],
[-73.952971520221951, 40.752746502431577],
[-73.953009211568329, 40.752775195427404],
[-73.952657000694387, 40.75310724080277],
[-73.95217262294571, 40.753702760645261],
[-73.95136748557826, 40.754523883237233],
[-73.951017926664093, 40.755086919724718],
[-73.950807638183491, 40.755263680114297],
[-73.939633486841217, 40.750382011140445],
[-73.938118216867124, 40.749792645154734],
[-73.937966578067218, 40.74966908558995],
[-73.937737324549289, 40.749251307789663],
[-73.93739653782103, 40.748916440465884],
[-73.936756971031741, 40.749146971790879],
[-73.934742591537983, 40.750979044072167],
[-73.933832694066083, 40.751604701940167],
[-73.932276232475246, 40.751953886037029],
[-73.926468669311788, 40.75206856840569],
[-73.925627437254548, 40.752137244754955]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK28",
"NTAName": "Bensonhurst West",
"Shape_Leng": 37140.057807299999695,
"Shape_Area": 46668757.4268
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.979638217728436, 40.61556454722804],
[-73.989131914822565, 40.606456136704587],
[-73.986847626482799, 40.605097236127754],
[-73.988690087070282, 40.60342530715608],
[-73.989223438279097, 40.602865675725901],
[-73.996747068601721, 40.595643125568508],
[-73.995308296098415, 40.594427587196343],
[-73.996193455123091, 40.593992198220533],
[-73.996339512939784, 40.593622475320636],
[-73.997368025184912, 40.593974310858599],
[-73.998388310836191, 40.59353139160627],
[-73.998544213158269, 40.593596761754178],
[-74.000305490195601, 40.592804778399781],
[-74.001057484457178, 40.592537005062248],
[-74.001933202083251, 40.593894695412757],
[-74.001844151354717, 40.593977666735292],
[-74.002003947434375, 40.594132371275634],
[-73.999965030103397, 40.595994303267616],
[-73.995593206967172, 40.600232221722237],
[-74.000022660966593, 40.602907315726533],
[-74.000323538208931, 40.602620291869876],
[-74.004934489041645, 40.605074406401187],
[-74.00264412402818, 40.607257175320292],
[-74.00094408424448, 40.608639710173208],
[-74.008303834132917, 40.612568000045464],
[-74.010504035874078, 40.613896611492471],
[-73.999320902189851, 40.624655246846515],
[-73.997713589295969, 40.623680269915972],
[-73.996788475313068, 40.626826051412728],
[-73.995078148698482, 40.625806737837095],
[-73.994649729741724, 40.62569717922154],
[-73.994892805613773, 40.625461794191672],
[-73.994324974133008, 40.625342908797393],
[-73.985693578241822, 40.620131514447564],
[-73.986275247096671, 40.619566616589694],
[-73.979638217728436, 40.61556454722804]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN13",
"NTAName": "Hudson Yards-Chelsea-Flatiron-Union Square",
"Shape_Leng": 45452.141963399997621,
"Shape_Area": 37030029.3912
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.001533090669824, 40.762644598127579],
[-74.00127796266635, 40.762075824671854],
[-73.995474501670685, 40.759626857017516],
[-73.997306714111957, 40.757110507033538],
[-73.991632713106384, 40.754706805009576],
[-73.99709902854309, 40.747205102042216],
[-73.991418585606979, 40.7448026824962],
[-73.990515035211118, 40.746040317412593],
[-73.984074851940733, 40.743324718416474],
[-73.989916900214297, 40.735349341599722],
[-73.989955658676863, 40.734976589991319],
[-73.989902959700501, 40.734434790136874],
[-73.990753968166416, 40.734839154573663],
[-73.99361688329428, 40.736004491615979],
[-74.008699022963597, 40.742361723963327],
[-74.009166082169699, 40.742416591463403],
[-74.009091568461869, 40.742886148569781],
[-74.009620153489053, 40.742951247887142],
[-74.009568434117654, 40.74325778472636],
[-74.012137269361759, 40.743531927059216],
[-74.012090082890296, 40.743897637648836],
[-74.012020850063976, 40.743939770208804],
[-74.0095120176736, 40.743676093257676],
[-74.009438008708571, 40.743971254970468],
[-74.008900329628403, 40.743917927096],
[-74.008729864255002, 40.744881537829585],
[-74.009612279244124, 40.744997903150519],
[-74.009558329297491, 40.74528882529868],
[-74.009916607473741, 40.745327255007105],
[-74.009998226017132, 40.744955059302079],
[-74.009872110854729, 40.744916501623173],
[-74.010167905353924, 40.744942329709552],
[-74.010038483846117, 40.744963458078132],
[-74.009973950219205, 40.745323135109189],
[-74.010469200779482, 40.745386766028894],
[-74.010550447558813, 40.745013056704842],
[-74.010419372093793, 40.744976823668445],
[-74.010764197146116, 40.745005032020835],
[-74.010585792009309, 40.745020446561554],
[-74.010531065377037, 40.745382050389438],
[-74.011103598048834, 40.745447670243927],
[-74.01117183119824, 40.745078258283336],
[-74.011044591508309, 40.745046212401995],
[-74.011387700402622, 40.745073112682519],
[-74.011230380572215, 40.745075830160083],
[-74.011154191769094, 40.745446378083912],
[-74.011739586188966, 40.745519918190105],
[-74.011795277118154, 40.745154666984909],
[-74.011670675837877, 40.74511397683721],
[-74.011836428724152, 40.74512596367871],
[-74.011782757620097, 40.745601572255453],
[-74.011678855055976, 40.745979461815928],
[-74.010555249683165, 40.74587110392023],
[-74.010551335418072, 40.745902883999619],
[-74.009463898559702, 40.745750143659414],
[-74.009365504957756, 40.746337200862044],
[-74.011585283619439, 40.746609050951491],
[-74.011525386383269, 40.746973140773804],
[-74.01147606347044, 40.746996685639502],
[-74.009243145925865, 40.746762790251175],
[-74.009137362599262, 40.747359762802986],
[-74.009560480284577, 40.747402799604458],
[-74.009551554153646, 40.747339341767862],
[-74.009963849968742, 40.747377803012498],
[-74.009901589129655, 40.747438484348905],
[-74.011356753377171, 40.747592417844203],
[-74.011406739355095, 40.74763054956545],
[-74.011303529937507, 40.748014571908875],
[-74.009058479674266, 40.747785645332762],
[-74.008946065684071, 40.748411893168637],
[-74.009415116365602, 40.74842958641468],
[-74.009518824262031, 40.748473540435882],
[-74.011215618134159, 40.748677992243529],
[-74.01110891182978, 40.749049875416993],
[-74.00994818004115, 40.748931988005609],
[-74.009560049786714, 40.74993504128895],
[-74.010751186035122, 40.750293977204834],
[-74.010808157348166, 40.750319311368038],
[-74.010756579678429, 40.750410852957543],
[-74.009542481116611, 40.750000949023267],
[-74.009518086865143, 40.750107004781405],
[-74.009253409840099, 40.749985206224437],
[-74.008706186505833, 40.751426805003305],
[-74.008731378299743, 40.751465894467131],
[-74.008532569250164, 40.75188360880172],
[-74.00914082120002, 40.752097594099027],
[-74.008651159368029, 40.751939512113026],
[-74.009107579751586, 40.752139712111806],
[-74.009057740096623, 40.752214351243175],
[-74.008928876504754, 40.752144001870157],
[-74.00858095826554, 40.752043882411535],
[-74.009327952062293, 40.752373503046122],
[-74.008478955727924, 40.752018571417288],
[-74.008426364472243, 40.752157850239243],
[-74.009990558197501, 40.752816187149072],
[-74.009920106317836, 40.75291212501179],
[-74.009970587970216, 40.752933564153139],
[-74.009919162754912, 40.753003591459191],
[-74.009789131164254, 40.752948370087694],
[-74.009887748683184, 40.752814077653284],
[-74.008792100908394, 40.752352137876919],
[-74.008687922195719, 40.752493998628374],
[-74.00835352838844, 40.75235073934229],
[-74.007620132963154, 40.754281475520109],
[-74.007744786056406, 40.754336542719372],
[-74.007596643258481, 40.754530449686065],
[-74.00747193016376, 40.754476814511662],
[-74.007284999443229, 40.754735568203138],
[-74.007413621029968, 40.754789302669359],
[-74.007271811747671, 40.754985594535206],
[-74.007144683609724, 40.754932481173412],
[-74.005418859071028, 40.757323140851717],
[-74.005211877057732, 40.757231998539879],
[-74.004803925601834, 40.757809843164686],
[-74.005278948639855, 40.75802855492821],
[-74.005031051366373, 40.758357015970525],
[-74.006964286832158, 40.75916005756163],
[-74.007003588379192, 40.759231870341097],
[-74.006506876401829, 40.759892032317168],
[-74.004504830939126, 40.759084996552687],
[-74.004206291253894, 40.759501707688372],
[-74.003907420988639, 40.759375692183475],
[-74.00380657835008, 40.75951073146598],
[-74.004246971941569, 40.759699214171356],
[-74.004148638146887, 40.759835914170758],
[-74.004318894911719, 40.759910685763387],
[-74.004268696506685, 40.759959279013316],
[-74.004131716227988, 40.759861642396004],
[-74.004111620738897, 40.759893007307177],
[-74.00366891453541, 40.759705969576551],
[-74.003572510400758, 40.759846558973116],
[-74.003928548674665, 40.760003019720429],
[-74.003133389913998, 40.76107834509628],
[-74.002786916187091, 40.760928969703293],
[-74.00233528130056, 40.761543727001602],
[-74.004545209834291, 40.762492801442228],
[-74.004449515933743, 40.762664567199941],
[-74.002200820732696, 40.761728432226455],
[-74.001533090669824, 40.762644598127579]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX03",
"NTAName": "Eastchester-Edenwald-Baychester",
"Shape_Leng": 59169.133645599998999,
"Shape_Area": 40256698.0525
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.793228709485319, 40.882822594905683],
[-73.79449254438299, 40.883068251074043],
[-73.799375204382457, 40.884351969821537],
[-73.803286821369682, 40.885415552669095],
[-73.805505767435776, 40.886092949181226],
[-73.806358850103393, 40.885945659656009],
[-73.807641395017228, 40.885953252900471],
[-73.808342323903943, 40.886044313639125],
[-73.810270532277144, 40.886451242523357],
[-73.811406452266354, 40.88663558731109],
[-73.812096592456996, 40.886715010160216],
[-73.813567347395065, 40.886778709249192],
[-73.814427621923187, 40.886771964676207],
[-73.815478731065468, 40.886687446137984],
[-73.816707785914204, 40.886480950542548],
[-73.820274330158213, 40.885550700328729],
[-73.820774086677872, 40.886710602572677],
[-73.823871405817883, 40.887783627934979],
[-73.825295799524085, 40.886976380466045],
[-73.827773106008067, 40.886047018797044],
[-73.830653590426621, 40.884852938517746],
[-73.832785387559113, 40.884476888292539],
[-73.833422226188716, 40.884275396986098],
[-73.834345419853051, 40.883850020346088],
[-73.835609549947023, 40.882945279468721],
[-73.836218373743861, 40.88239301251123],
[-73.836987438035621, 40.881939083309874],
[-73.841277846852449, 40.880317548115137],
[-73.842737852375819, 40.879424902693728],
[-73.843241137939458, 40.879108912933738],
[-73.838148422255756, 40.876953299125411],
[-73.839247890265881, 40.876618738433976],
[-73.837460277487452, 40.873222649970536],
[-73.838292214802109, 40.872951339331387],
[-73.835657665267803, 40.867512755906148],
[-73.8331596040737, 40.868319756262743],
[-73.830541827502771, 40.86373143490313],
[-73.83022388450199, 40.863429528329732],
[-73.829547311578224, 40.862164087265505],
[-73.828343474313797, 40.860892026674826],
[-73.829508926919871, 40.861841213949162],
[-73.829726148378867, 40.86195274463541],
[-73.830893296615912, 40.862212849091911],
[-73.835784366575666, 40.865016011999593],
[-73.847926140691214, 40.871342233580449],
[-73.848596760026851, 40.871670785135471],
[-73.8536363872702, 40.873300599208925],
[-73.851432479856015, 40.874987270980604],
[-73.850689556654004, 40.875486677883409],
[-73.851722361364466, 40.876843370663082],
[-73.852548540971895, 40.877091586764351],
[-73.850918960835472, 40.87789344063507],
[-73.852070117202231, 40.879297657085573],
[-73.852483058338166, 40.879463705041047],
[-73.847443968846406, 40.886978531167188],
[-73.847049579885422, 40.887671815879408],
[-73.841961495572534, 40.888455967413115],
[-73.839985634272949, 40.888718672491684],
[-73.839593562909315, 40.888739533165889],
[-73.838227009460127, 40.888644524509125],
[-73.837321651181909, 40.888741963753411],
[-73.835548539822554, 40.88913350396939],
[-73.837379561885982, 40.893924741107043],
[-73.836305418252323, 40.893599165381069],
[-73.835257905700189, 40.893391644055725],
[-73.833568497690194, 40.892806425842721],
[-73.832678086775871, 40.892601826335799],
[-73.830957739790179, 40.892030158900113],
[-73.827224297843017, 40.890910233551793],
[-73.822677087801395, 40.88961946907132],
[-73.822486204131948, 40.890098054404312],
[-73.823264898792289, 40.88998702106101],
[-73.823366013412908, 40.891075135707418],
[-73.822853350726902, 40.891206829096198],
[-73.819487244440822, 40.890289980360251],
[-73.818277381002787, 40.889847130528402],
[-73.816016994921043, 40.88932383384298],
[-73.815742614384519, 40.889197336904211],
[-73.815168548592951, 40.889037762259427],
[-73.80872106080291, 40.887480598376904],
[-73.807559441927538, 40.887108891600931],
[-73.802909464874233, 40.886030680336674],
[-73.801924499499322, 40.885712968024293],
[-73.794055173960942, 40.883699966781023],
[-73.793006526493372, 40.883358736880382],
[-73.793228709485319, 40.882822594905683]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX13",
"NTAName": "Co-op City",
"Shape_Leng": 30343.08691760000147,
"Shape_Area": 39875179.2945
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.820274330158213, 40.885550700328729],
[-73.819925865019272, 40.882119333466804],
[-73.823295994304672, 40.873097418179277],
[-73.821266937952458, 40.869071606284727],
[-73.820916172189413, 40.868916934874576],
[-73.815787640662208, 40.865758060936088],
[-73.816414559298138, 40.865151497607016],
[-73.816997602664316, 40.864459031143049],
[-73.816844959082545, 40.864306792799525],
[-73.818954255292127, 40.862474561690121],
[-73.820375530207372, 40.861033005493397],
[-73.824505751844086, 40.859764021466376],
[-73.824440120746218, 40.859501383985375],
[-73.826325711111934, 40.859297997899318],
[-73.826996532347167, 40.859087786405688],
[-73.827145562983929, 40.859232394934715],
[-73.827414580809901, 40.8599598727182],
[-73.827591079945847, 40.86007855140393],
[-73.827994449693435, 40.860840185902738],
[-73.828267965663784, 40.860837333161186],
[-73.828343474313797, 40.860892026674826],
[-73.829547311578224, 40.862164087265505],
[-73.83022388450199, 40.863429528329732],
[-73.830541827502771, 40.86373143490313],
[-73.8331596040737, 40.868319756262743],
[-73.835657665267803, 40.867512755906148],
[-73.838292214802109, 40.872951339331387],
[-73.837460277487452, 40.873222649970536],
[-73.839247890265881, 40.876618738433976],
[-73.838148422255756, 40.876953299125411],
[-73.843241137939458, 40.879108912933738],
[-73.841277846852449, 40.880317548115137],
[-73.83782792479424, 40.881608140372144],
[-73.836987438035621, 40.881939083309874],
[-73.836641343470504, 40.882120024820637],
[-73.836218373743861, 40.88239301251123],
[-73.835609549947023, 40.882945279468721],
[-73.834345419853051, 40.883850020346088],
[-73.833422226188716, 40.884275396986098],
[-73.832785387559113, 40.884476888292539],
[-73.830653590426621, 40.884852938517746],
[-73.827773106008067, 40.886047018797044],
[-73.825295799524085, 40.886976380466045],
[-73.823871405817883, 40.887783627934979],
[-73.820774086677872, 40.886710602572677],
[-73.820274330158213, 40.885550700328729]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX62",
"NTAName": "Woodlawn-Wakefield",
"Shape_Leng": 38709.578137199998309,
"Shape_Area": 39742774.7471
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.837379561885982, 40.893924741107043],
[-73.835548539822554, 40.88913350396939],
[-73.837321651181909, 40.888741963753411],
[-73.838227009460127, 40.888644524509125],
[-73.839593562909315, 40.888739533165889],
[-73.839985634272949, 40.888718672491684],
[-73.841961495572534, 40.888455967413115],
[-73.847049579885422, 40.887671815879408],
[-73.845905685461574, 40.889741369883325],
[-73.857362816852131, 40.893411439404787],
[-73.856956194033927, 40.894167937723161],
[-73.860710981279681, 40.895370544372014],
[-73.861359278642993, 40.894662319355469],
[-73.864016376742256, 40.895523047446638],
[-73.86491632477366, 40.895749495366232],
[-73.870486726423053, 40.896640211013775],
[-73.874806181149097, 40.89572568763888],
[-73.87711974105801, 40.895468663643506],
[-73.876437430649261, 40.89687059396222],
[-73.875894653889219, 40.897559458644025],
[-73.874820414849339, 40.89844543802365],
[-73.873889443103764, 40.898965462703558],
[-73.87136373174026, 40.900039151571534],
[-73.870103696418198, 40.900741946981846],
[-73.868997076305462, 40.901559155154445],
[-73.868202703053413, 40.902355382773607],
[-73.867890437137476, 40.902986953649723],
[-73.865657943258299, 40.902243207540408],
[-73.863050856647945, 40.901508084038817],
[-73.862798506455846, 40.901535521720909],
[-73.86202342452097, 40.90118777618698],
[-73.861564383188139, 40.901062122833892],
[-73.861341008343217, 40.90111157030146],
[-73.859467787006594, 40.90051720976944],
[-73.859076922749139, 40.901007992597265],
[-73.859235761682925, 40.901098613133613],
[-73.859419840914299, 40.901393124509902],
[-73.859376965251585, 40.901565217661741],
[-73.859205520239129, 40.901547863658514],
[-73.859027041521159, 40.901444910256032],
[-73.858864013163526, 40.901711695049556],
[-73.859463899581201, 40.901933877633567],
[-73.859578829481521, 40.902440843273951],
[-73.85926432475749, 40.902669479393147],
[-73.859104987718695, 40.902644455434881],
[-73.858728247671138, 40.902288971071954],
[-73.858400753521764, 40.902213255799012],
[-73.858160000048557, 40.902305710202718],
[-73.858164602994592, 40.902595861061485],
[-73.857969322621273, 40.90285090768684],
[-73.857747473926153, 40.902787546919129],
[-73.857559676577537, 40.902917795456034],
[-73.857110904799725, 40.903649532695923],
[-73.857171763025534, 40.904082065436256],
[-73.856991573468576, 40.904584209063174],
[-73.857101513782837, 40.904708457882322],
[-73.857359352340936, 40.904730960987429],
[-73.857434576183508, 40.904841543197868],
[-73.857177660759646, 40.905286541661447],
[-73.857050227336302, 40.90529153575649],
[-73.856654368226643, 40.905055000782305],
[-73.856360813667848, 40.905102154058163],
[-73.856010233230279, 40.905305983626057],
[-73.856011608393445, 40.905482083440681],
[-73.85650251694365, 40.905563848795744],
[-73.856923981800776, 40.905974170111023],
[-73.856810136385363, 40.906155828325986],
[-73.856557325450225, 40.906262032343477],
[-73.855956226442686, 40.906218503235827],
[-73.855804637959451, 40.906264364126521],
[-73.855526977390781, 40.906380251459119],
[-73.855137921493281, 40.906866889141824],
[-73.854237766868806, 40.907032868254362],
[-73.853741036308705, 40.907787916232991],
[-73.853833609995888, 40.90797434981959],
[-73.854229053006264, 40.908018589045966],
[-73.854710782735253, 40.908006309439564],
[-73.854911096737425, 40.908354869331617],
[-73.854589405219983, 40.90893949929746],
[-73.853916460289696, 40.909465603441838],
[-73.853600617202829, 40.909606741450787],
[-73.853353518649627, 40.910043140249485],
[-73.852956184214321, 40.91035304417921],
[-73.852769915805027, 40.910406007563466],
[-73.85258474750411, 40.910310617064077],
[-73.852660358922122, 40.910015193158159],
[-73.852456533836417, 40.909860509071414],
[-73.852274516165977, 40.909854099140588],
[-73.851783169501459, 40.910160630651994],
[-73.851492424363457, 40.910271640498785],
[-73.851447539689374, 40.910449671705351],
[-73.851071161837169, 40.910371520724482],
[-73.853475223337028, 40.907530293023264],
[-73.850920593628317, 40.906616494489548],
[-73.850173174858526, 40.907507865650501],
[-73.847080329143736, 40.906156732530313],
[-73.845380611172175, 40.905655807585418],
[-73.844818869848964, 40.905529950177225],
[-73.84492921919707, 40.90466300376881],
[-73.844892649091378, 40.90419086729873],
[-73.841386893046604, 40.904172741533955],
[-73.841062728869872, 40.903214116328151],
[-73.840948039119638, 40.902289458787266],
[-73.840679663241886, 40.901517031462987],
[-73.840398779241596, 40.90102899402617],
[-73.839246047417447, 40.899501154551707],
[-73.839194866483098, 40.899350692569996],
[-73.839166033562407, 40.899041251137895],
[-73.839209400726332, 40.898810677012143],
[-73.839664332117167, 40.897885515608245],
[-73.839648127467669, 40.897330535339719],
[-73.83839199123517, 40.894067008048083],
[-73.838042772860589, 40.894142330885209],
[-73.837379561885982, 40.893924741107043]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN33",
"NTAName": "Cambria Heights",
"Shape_Leng": 26168.269250099998317,
"Shape_Area": 33076798.259
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.726777595337097, 40.703059291901447],
[-73.726728412211415, 40.702145735755437],
[-73.726783468336819, 40.701987124450945],
[-73.72665409150153, 40.701112658892661],
[-73.726544350585797, 40.698982640166044],
[-73.726202597427616, 40.688984340810649],
[-73.725931962430025, 40.686311940817063],
[-73.725797879423141, 40.684353849825037],
[-73.725862641823582, 40.683241080947873],
[-73.726664607181533, 40.68343688915008],
[-73.737441637056989, 40.686700767385531],
[-73.737599941235302, 40.686362011532559],
[-73.747551753662677, 40.689347336655722],
[-73.746243455799501, 40.691279444850935],
[-73.744679556042712, 40.693412263974196],
[-73.744266488424898, 40.694260101414407],
[-73.743592860878394, 40.696215325310398],
[-73.744745453947061, 40.696385465496483],
[-73.745074800225453, 40.69639094941067],
[-73.746181579504039, 40.696121925982943],
[-73.747730121816303, 40.699553136834311],
[-73.745001190606672, 40.700262213049804],
[-73.745908710194371, 40.702287273664368],
[-73.741488052880229, 40.703431612136391],
[-73.741092940204965, 40.703481062682478],
[-73.740503364866242, 40.703433556949896],
[-73.740776757959097, 40.702679837862362],
[-73.734304036600079, 40.702478131695052],
[-73.734264552939464, 40.703219542878266],
[-73.727767918898024, 40.703020637944014],
[-73.726777595337097, 40.703059291901447]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI14",
"NTAName": "Grasmere-Arrochar-Ft. Wadsworth",
"Shape_Leng": 40064.807992800000648,
"Shape_Area": 40918890.7208
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.081554700577215, 40.606290297070402],
[-74.076567346693892, 40.606121664158529],
[-74.075432397144453, 40.605987967345392],
[-74.073999653080989, 40.605725567958117],
[-74.072066828499203, 40.605186347766541],
[-74.069140309874314, 40.604039718730192],
[-74.065506631910367, 40.602719880932405],
[-74.063505656601905, 40.602150054830467],
[-74.063640585538337, 40.602541948797345],
[-74.065170912507782, 40.604213508846286],
[-74.060464297212874, 40.606405824063607],
[-74.060428672391822, 40.606352729885401],
[-74.057787103985163, 40.607449591882506],
[-74.057890168854598, 40.607580754464685],
[-74.056858123804815, 40.608056357545159],
[-74.05649565936767, 40.607247648256205],
[-74.0560104134493, 40.606780566132301],
[-74.055521260564234, 40.60648289256897],
[-74.055287196970895, 40.606538889576093],
[-74.055160011223208, 40.606730491350852],
[-74.054988678394054, 40.606660696409151],
[-74.05518218103515, 40.606474566331777],
[-74.055152510607627, 40.606329045897681],
[-74.055059741617484, 40.606265420452509],
[-74.053810698713846, 40.605912718852672],
[-74.053607297408234, 40.605238809417735],
[-74.054020399589731, 40.604934719911071],
[-74.053539645460532, 40.603633557566909],
[-74.053033307454001, 40.601466470296359],
[-74.05309560984999, 40.601211131382698],
[-74.053383967725864, 40.600895213851288],
[-74.053407059053981, 40.600522661043527],
[-74.05324525421581, 40.600322791706375],
[-74.053007179792587, 40.600160417107183],
[-74.052403196327319, 40.599869498923525],
[-74.052254119104802, 40.599851166907506],
[-74.052228269541928, 40.599776102303579],
[-74.052372458462088, 40.599718782417916],
[-74.05279416485449, 40.599873464654834],
[-74.05291816194962, 40.599846257178122],
[-74.054341186193568, 40.598819175336544],
[-74.054311504812645, 40.598777505760182],
[-74.054474223339042, 40.598755539548435],
[-74.057193699046522, 40.596395078811959],
[-74.059726905772322, 40.593908216712698],
[-74.059747347594069, 40.593848611064608],
[-74.059641206620825, 40.593709388392632],
[-74.059766606876437, 40.593835257510129],
[-74.060553536370577, 40.593379755423548],
[-74.062152744325459, 40.592025040541969],
[-74.06503332356229, 40.588990998367862],
[-74.065800360643891, 40.589746609936412],
[-74.065718350452855, 40.589908102724785],
[-74.065776828542781, 40.590021391139935],
[-74.066511828920966, 40.590344922051052],
[-74.066625595023453, 40.590342019703954],
[-74.067284107036926, 40.590986202943164],
[-74.067952272544247, 40.592083683362958],
[-74.070439761198912, 40.596734746681008],
[-74.07888191676804, 40.593942791783967],
[-74.07846693758701, 40.593300011969369],
[-74.08173343020637, 40.592156285692312],
[-74.083041635629669, 40.594229720774251],
[-74.08376862327286, 40.595520957415616],
[-74.084069686905409, 40.595496270409221],
[-74.085875119340585, 40.595890121255792],
[-74.085474140452803, 40.596833816586781],
[-74.084971328619091, 40.597325109516028],
[-74.08469129658782, 40.597507132383335],
[-74.082483033764234, 40.598329807781226],
[-74.081442166271302, 40.599159220405191],
[-74.081303438185643, 40.599387655601085],
[-74.081164209284651, 40.600206554379177],
[-74.081216903472708, 40.60054793161499],
[-74.081396589441908, 40.600924952417358],
[-74.082187293191822, 40.601941008044967],
[-74.082815160779774, 40.601974182274311],
[-74.084328212905461, 40.60187268329399],
[-74.085837971048036, 40.601427773388437],
[-74.086662350951229, 40.601233538866516],
[-74.088306704003315, 40.601107780275399],
[-74.089476305730429, 40.600904321586455],
[-74.089836559111149, 40.600774094667116],
[-74.090360739162605, 40.600400363626491],
[-74.091613304059251, 40.599261561666225],
[-74.09172051497967, 40.599220857010508],
[-74.092118699129315, 40.600086969406348],
[-74.092837465787454, 40.601089234005741],
[-74.09290300779638, 40.601450319739008],
[-74.092441452522394, 40.604119586450658],
[-74.09272620657849, 40.606209856935209],
[-74.092645602891096, 40.606662722331855],
[-74.092399128572367, 40.607072289194491],
[-74.091729372651471, 40.607721192126775],
[-74.091409737499049, 40.608226298387443],
[-74.090454959313988, 40.609094526376552],
[-74.085427563142829, 40.607022390529032],
[-74.083419333742214, 40.606522508661236],
[-74.082809498634518, 40.606410979069722],
[-74.081554700577215, 40.606290297070402]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK33",
"NTAName": "Carroll Gardens-Columbia Street-Red Hook",
"Shape_Leng": 60666.17709879999893,
"Shape_Area": 44624143.6255
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.992363670432468, 40.68969012377697],
[-73.994901136060733, 40.684430238090826],
[-73.987224139470086, 40.681447302377954],
[-73.989318137370816, 40.678349389364278],
[-73.989408963839395, 40.677454517362186],
[-73.990698619475154, 40.675807418965903],
[-73.992809102365143, 40.676148750193484],
[-73.993491023874185, 40.6761833021163],
[-73.994208026570305, 40.676152427047803],
[-73.994650758353657, 40.676023370037029],
[-73.995064511061372, 40.675840475937726],
[-73.995409892931065, 40.675563097285583],
[-73.995962131135684, 40.674968224410819],
[-73.998057416522585, 40.672469545103176],
[-73.998471340586789, 40.67205910098933],
[-73.999311010989203, 40.670772639046668],
[-74.00030337808883, 40.668716892497045],
[-74.001056641131839, 40.668945681214645],
[-74.001415271031604, 40.668359414346988],
[-74.002215068165441, 40.668578637441186],
[-74.002894838769492, 40.667348465949374],
[-74.003190752748409, 40.667263199814862],
[-74.003694620005277, 40.667427611208367],
[-74.003630263515362, 40.667567523356482],
[-74.00510227346264, 40.667975647225603],
[-74.005470172745959, 40.667951271428073],
[-74.005527274539929, 40.667899204208851],
[-74.005863661806842, 40.667993762585667],
[-74.006001833198127, 40.667890361928016],
[-74.006770625535978, 40.666188861438329],
[-74.006830855218382, 40.666208956204613],
[-74.006867130384506, 40.666128789412646],
[-74.006832357375856, 40.666049646271048],
[-74.006894333311493, 40.666019341097723],
[-74.006967074948633, 40.666052180041895],
[-74.006953982605822, 40.666115796550869],
[-74.006881418781433, 40.666132466634764],
[-74.006844524286507, 40.666212447847109],
[-74.006896266221048, 40.666223382656099],
[-74.00475388758332, 40.670721358944974],
[-74.005439265293532, 40.670921468238433],
[-74.006615721844042, 40.668623156271956],
[-74.006803459389005, 40.668591375165697],
[-74.007548216183878, 40.667051745733538],
[-74.007796533496233, 40.667159770777189],
[-74.007087242218006, 40.668591358033169],
[-74.009854119216314, 40.668523628335322],
[-74.011540175433311, 40.665085919756642],
[-74.01574872882648, 40.664568335789021],
[-74.016902673610673, 40.664846602338862],
[-74.017444460509836, 40.665267995849177],
[-74.017887192153907, 40.665850466285242],
[-74.018576050108763, 40.670392413869941],
[-74.018763368786736, 40.671075874494385],
[-74.019339468717774, 40.671624948422611],
[-74.018882833633327, 40.671601666205405],
[-74.017510371526868, 40.671034530481435],
[-74.016687683688616, 40.665437066264275],
[-74.016575360978393, 40.665038537839855],
[-74.016486656204975, 40.664930508953702],
[-74.016025517760113, 40.664863048788078],
[-74.015936985345505, 40.66547079172144],
[-74.012279678727907, 40.665732414158839],
[-74.010876640289752, 40.668601615763514],
[-74.010356836673139, 40.668642835388482],
[-74.010338459479357, 40.669078195447995],
[-74.010559806447645, 40.669190525069652],
[-74.01091024340414, 40.669190492369474],
[-74.010873439781875, 40.669710115558388],
[-74.011542880315602, 40.669784342247716],
[-74.011621730509844, 40.67011434594481],
[-74.011514434632744, 40.670407022376203],
[-74.011625275213561, 40.670581028275834],
[-74.014062198281692, 40.66970583843645],
[-74.014249269978819, 40.669728604737017],
[-74.014241804774926, 40.669808370036208],
[-74.011753505756872, 40.670657756573085],
[-74.011867766290109, 40.670824343101224],
[-74.012078317325603, 40.670933614674112],
[-74.012334588339584, 40.670952483313769],
[-74.012619634167834, 40.67084190894041],
[-74.013551986714418, 40.671256934377091],
[-74.013706345259834, 40.671184584102697],
[-74.013936266901055, 40.671179076853953],
[-74.014274071917143, 40.671379298679305],
[-74.015080064710759, 40.670685673295466],
[-74.01519980570059, 40.670754027161713],
[-74.013872737632454, 40.671880761760427],
[-74.014232894527822, 40.672130000513008],
[-74.015596444895536, 40.670970477517301],
[-74.015686254975151, 40.671038834928808],
[-74.014287221789928, 40.672241182999862],
[-74.014229231904423, 40.672207204990272],
[-74.012975877921903, 40.673327918720936],
[-74.013363782181429, 40.673591536934367],
[-74.015119186639609, 40.672156995969104],
[-74.016320999223069, 40.672908269563692],
[-74.014579467209543, 40.67441401707157],
[-74.014963921845748, 40.674677630294198],
[-74.018168392807866, 40.671939240601077],
[-74.018800947108971, 40.672250764346209],
[-74.01727138470126, 40.673608645805515],
[-74.017752471623766, 40.674047722892354],
[-74.017944280802453, 40.673882820496878],
[-74.018010773205404, 40.673913181052349],
[-74.017801872032038, 40.674095441412369],
[-74.018136404658549, 40.674358645332745],
[-74.018176182746572, 40.674464177036675],
[-74.01804519537194, 40.674767910768082],
[-74.018016767356826, 40.675009439505011],
[-74.017923706574052, 40.675075981326252],
[-74.0179864053881, 40.67512514362096],
[-74.017834475726886, 40.675258223014254],
[-74.018149861891231, 40.675467879414867],
[-74.018298026553353, 40.67545917918136],
[-74.018412357557182, 40.675365449431638],
[-74.018324578430978, 40.675304425041332],
[-74.018269503106694, 40.675349268081654],
[-74.018182106328823, 40.675291431407601],
[-74.018392908960237, 40.675107724147793],
[-74.018476504815737, 40.675162668404042],
[-74.018425230893527, 40.675214741574962],
[-74.018518871965469, 40.675273889137422],
[-74.018763450453577, 40.67505540595365],
[-74.018881013561881, 40.675092480908681],
[-74.018408694548626, 40.675524021071467],
[-74.018536194177102, 40.675773017037017],
[-74.018503326384973, 40.675841558704498],
[-74.018420372142899, 40.675878100901571],
[-74.018018008056131, 40.675889522763249],
[-74.017880170113031, 40.676227554286747],
[-74.017911982261822, 40.676510462801936],
[-74.017975699826522, 40.676516920608037],
[-74.017979961695573, 40.676571897854053],
[-74.019109853899195, 40.676545844093852],
[-74.019122617866529, 40.676616989159406],
[-74.019769256792472, 40.676613224917141],
[-74.019951978646773, 40.677103010449976],
[-74.019082573863301, 40.677139564047515],
[-74.019141835743739, 40.677723134327771],
[-74.0192189273765, 40.677777288546444],
[-74.019177439468848, 40.677826948504361],
[-74.019041087112683, 40.677876624017742],
[-74.018430407276057, 40.677908320859586],
[-74.018411031831619, 40.678407121278411],
[-74.018983220493269, 40.678352440235301],
[-74.019472388974549, 40.67835833705054],
[-74.019538566035578, 40.678301952593444],
[-74.019663126515027, 40.678388201270572],
[-74.019552081676565, 40.678482177600515],
[-74.019428644439202, 40.678400198392929],
[-74.018405446110023, 40.678442220062259],
[-74.018417862102311, 40.678549551897426],
[-74.018252670705778, 40.67855288672579],
[-74.018283149008994, 40.678728289412071],
[-74.018383137975391, 40.678744821698089],
[-74.01857882788785, 40.67898307947236],
[-74.019456201011423, 40.678932452422828],
[-74.019540115834133, 40.67896820644031],
[-74.019281281020298, 40.679648140595354],
[-74.0189281398833, 40.679844305613628],
[-74.018991054714235, 40.679904993703772],
[-74.017725325724371, 40.68066190267357],
[-74.017647350854759, 40.680601890841622],
[-74.017570494941623, 40.680650648124221],
[-74.017469289031325, 40.680614731700793],
[-74.015200822791442, 40.681979419930641],
[-74.015320598647591, 40.682110728780522],
[-74.012820003988665, 40.683622416497258],
[-74.012122858936436, 40.682962177850797],
[-74.012134816887809, 40.682905927522498],
[-74.014105497139909, 40.681712519375374],
[-74.013608632702827, 40.68122194672813],
[-74.013873987779803, 40.68100981281632],
[-74.013018354881112, 40.680412373511636],
[-74.009671085588835, 40.68326872771501],
[-74.010773123393804, 40.68435861554088],
[-74.011782722012086, 40.683759995499258],
[-74.011932599770788, 40.683887749154891],
[-74.00798184131699, 40.686275822095809],
[-74.007768336351461, 40.68624913667152],
[-74.007019886826527, 40.686526417194059],
[-74.006441468323345, 40.686288490232108],
[-74.005882241832268, 40.686195768390995],
[-74.005629863303994, 40.686784206043605],
[-74.004592705217675, 40.688215222483983],
[-74.003820388537051, 40.688929644196733],
[-74.002975653705391, 40.690426575920689],
[-74.001963219268362, 40.690136379460725],
[-74.001853045246193, 40.690387986741811],
[-74.0009615685494, 40.690128767847469],
[-74.00069905775851, 40.690611858419054],
[-74.001969385921072, 40.691843208317465],
[-74.001743621110407, 40.692406749705455],
[-74.001105193250609, 40.692056595339189],
[-73.997769243790103, 40.69119469786073],
[-73.992363670432468, 40.68969012377697]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK91",
"NTAName": "East Flatbush-Farragut",
"Shape_Leng": 39211.411882100001094,
"Shape_Area": 34362242.9822
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.925743894258588, 40.640014466249823],
[-73.925904831022137, 40.639005105924248],
[-73.926063380613741, 40.638524061036023],
[-73.926163778382659, 40.637572961179877],
[-73.926524908923838, 40.63649272329657],
[-73.927448222943866, 40.6352584095577],
[-73.937267001848042, 40.634650625674169],
[-73.93701746157781, 40.632310979135752],
[-73.944628854259875, 40.631837734632107],
[-73.945372724241437, 40.638786955243674],
[-73.948264995908332, 40.638607190711674],
[-73.948413432997413, 40.639987464583427],
[-73.947442967728449, 40.640047664741495],
[-73.947789946834675, 40.643305736449328],
[-73.945868792477796, 40.643423744607148],
[-73.946674144616125, 40.65094811868704],
[-73.945706061864414, 40.651006784973987],
[-73.946066906113231, 40.654410262825884],
[-73.947032575920048, 40.654338714832704],
[-73.947158963230933, 40.655593787270995],
[-73.931907438288434, 40.656537652542582],
[-73.931391166883458, 40.651689608124826],
[-73.930381443031322, 40.651734054238119],
[-73.929106231040038, 40.639795105915567],
[-73.925743894258588, 40.640014466249823]
],
[
[-73.938570973089867, 40.649590510240444],
[-73.943051669811211, 40.64931361788463],
[-73.942921513858053, 40.648574678973226],
[-73.9435257819962, 40.648541567782772],
[-73.943308318693397, 40.646526731538444],
[-73.942799610244634, 40.646542617315397],
[-73.942608245801949, 40.644661862383025],
[-73.934510375311177, 40.645028377360205],
[-73.933575888414083, 40.645083701066895],
[-73.932614182713166, 40.645245478595676],
[-73.933002768824508, 40.648819311999205],
[-73.93826012207532, 40.648574855012235],
[-73.938327752102666, 40.649212079716406],
[-73.938545534372238, 40.649199283714005],
[-73.938570973089867, 40.649590510240444]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN19",
"NTAName": "Glendale",
"Shape_Leng": 41357.703765899997961,
"Shape_Area": 29961067.889
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.857292871923264, 40.711467676688379],
[-73.856677143668236, 40.707691874465951],
[-73.855939916857778, 40.706398034158255],
[-73.854732404775376, 40.706764142594842],
[-73.854739573447716, 40.705184850106441],
[-73.853056638352996, 40.703137046110591],
[-73.852520190544439, 40.702291723617527],
[-73.855292759046407, 40.702595501787648],
[-73.855295715092595, 40.701991009610488],
[-73.857166882525092, 40.701674104892042],
[-73.857253514125148, 40.701212177735449],
[-73.85827405827601, 40.701223659238906],
[-73.858932243991106, 40.701320344758884],
[-73.858198907006326, 40.702911074365716],
[-73.862853741774359, 40.703414491748674],
[-73.876397852165184, 40.702294042276634],
[-73.876217141780074, 40.701595004818451],
[-73.881826905816055, 40.699529299005775],
[-73.882809484963232, 40.70068345565651],
[-73.884316194515478, 40.70020119633849],
[-73.887712980200973, 40.699678076358218],
[-73.88818025786145, 40.698857911241419],
[-73.888099094747616, 40.698763296477999],
[-73.887793963020727, 40.697665427787598],
[-73.887610642083914, 40.697327745472052],
[-73.887340032646051, 40.697023666201147],
[-73.8869998989599, 40.696771143801705],
[-73.886420481582036, 40.696458149494347],
[-73.888654169191327, 40.695829548900683],
[-73.888286423697963, 40.695236916739653],
[-73.889193653454527, 40.69493577021813],
[-73.891956586648163, 40.694410570188992],
[-73.892452076250237, 40.695225728789417],
[-73.89507694381922, 40.694591389702353],
[-73.895586254572294, 40.693979162011885],
[-73.893981132141022, 40.693075965542334],
[-73.893579350037569, 40.693085329232176],
[-73.893262099353962, 40.692200947459575],
[-73.89474270964169, 40.692636952789996],
[-73.896956535074835, 40.691949207446761],
[-73.897686318425684, 40.693365258982894],
[-73.897642335314828, 40.693408651376153],
[-73.897427301796782, 40.69328898014961],
[-73.896910213322826, 40.693842270538489],
[-73.897362657988182, 40.694110847232757],
[-73.898571077304297, 40.693869833667833],
[-73.900030392163771, 40.693437450574173],
[-73.898885857728132, 40.695389475400347],
[-73.898381851974165, 40.69613599750226],
[-73.896772499659974, 40.696799116796022],
[-73.895584576495054, 40.697127642006642],
[-73.89578005089632, 40.698510962141498],
[-73.894849949635756, 40.698589623323301],
[-73.895003226849312, 40.699712377463882],
[-73.893840184139847, 40.700859726059377],
[-73.891053169727996, 40.703816413302434],
[-73.889119176855118, 40.705598877396639],
[-73.886528268148339, 40.706225206377354],
[-73.885549468518448, 40.706154618533631],
[-73.885532141588143, 40.70644568324871],
[-73.883772969180711, 40.706294201654678],
[-73.879006842841989, 40.706536839367274],
[-73.877206147578434, 40.706688840499552],
[-73.871534003835549, 40.707036767056373],
[-73.869110070930205, 40.707089336764199],
[-73.869497385538793, 40.707872070218677],
[-73.869895824695419, 40.708507094191454],
[-73.870164624503246, 40.709207743441674],
[-73.866618231915368, 40.710401648558673],
[-73.865009820016127, 40.710776908933404],
[-73.859654168376267, 40.713379961412308],
[-73.859759328629607, 40.711845059282055],
[-73.857292871923264, 40.711467676688379]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN23",
"NTAName": "West Village",
"Shape_Leng": 29387.972964299999148,
"Shape_Area": 24999631.2864
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.989902959700501, 40.734434790136874],
[-73.989868521395636, 40.733527114554889],
[-73.990390100026644, 40.73128852433004],
[-73.99050558603588, 40.73056495673773],
[-73.991358690970443, 40.727782470185666],
[-73.991363881381531, 40.727559783459121],
[-73.992603221984396, 40.724136449683371],
[-73.995329079374557, 40.72508373972876],
[-73.996771757114431, 40.725431943502606],
[-73.99761019591817, 40.72579713860241],
[-74.002817266391432, 40.728363129304057],
[-74.010672649554067, 40.729112666500221],
[-74.010767915049954, 40.728173957807655],
[-74.014390699323997, 40.728463048022675],
[-74.01408693625973, 40.730663172537625],
[-74.014037969247994, 40.730694218843873],
[-74.011161956964756, 40.730450676349022],
[-74.010941274402015, 40.733020313341193],
[-74.014002202806751, 40.733068001795353],
[-74.013999571748954, 40.733332277517789],
[-74.010903898832851, 40.733297617139542],
[-74.01089833608026, 40.733349066561544],
[-74.010737674055122, 40.733419838902613],
[-74.010751689519253, 40.733542479651057],
[-74.010869999225406, 40.733594693906447],
[-74.010832846292743, 40.734007093508339],
[-74.012017920104739, 40.734063744456307],
[-74.012001242223832, 40.734338400663589],
[-74.010813594130298, 40.734283443145053],
[-74.010642920839516, 40.736048697704788],
[-74.010731810085559, 40.736204167067157],
[-74.010619101435026, 40.736345390721688],
[-74.010476598144194, 40.738063940595033],
[-74.011087066359394, 40.738092749578691],
[-74.011067919343262, 40.738304096174033],
[-74.011139156025621, 40.738389862813037],
[-74.01045432864592, 40.738364505222982],
[-74.010393031345544, 40.739174296059154],
[-74.011387983404745, 40.739216055586091],
[-74.011580455023065, 40.739264535609415],
[-74.011587158166165, 40.739478869329602],
[-74.011633518951925, 40.739506486066098],
[-74.011627923117587, 40.739562473100989],
[-74.011555181562869, 40.739556726227292],
[-74.011527450203985, 40.739873770444717],
[-74.011592861331238, 40.739873763878897],
[-74.011612580173406, 40.739707600549352],
[-74.012369174000341, 40.739751646372113],
[-74.012286496270121, 40.739792961021237],
[-74.012288979132293, 40.739899041119337],
[-74.012356872001988, 40.739936584717412],
[-74.012349475522313, 40.740016379815913],
[-74.012270498440699, 40.740034226965115],
[-74.012310012788447, 40.740194756203955],
[-74.011576869242319, 40.740160099501516],
[-74.01158637953661, 40.739973846947215],
[-74.011514917365346, 40.73997286369876],
[-74.011460739553399, 40.740584214752488],
[-74.012157419130872, 40.740605998131237],
[-74.012153726240513, 40.740674256620679],
[-74.012657425560704, 40.740696652231698],
[-74.012659282084897, 40.74074763849741],
[-74.009631455717468, 40.740645366871632],
[-74.009496854542832, 40.740727011785516],
[-74.009518441959329, 40.740805722916889],
[-74.009411403322076, 40.741154093312794],
[-74.009581318221819, 40.741174960284773],
[-74.009576928576962, 40.74121065665431],
[-74.012162329092078, 40.741491889180018],
[-74.012117458721391, 40.741758516211554],
[-74.009519472110711, 40.741490301193359],
[-74.009447840725173, 40.741891591220153],
[-74.009277927560731, 40.741878610856119],
[-74.009166082169699, 40.742416591463403],
[-74.008699022963597, 40.742361723963327],
[-73.99361688329428, 40.736004491615979],
[-73.990753968166416, 40.734839154573663],
[-73.989902959700501, 40.734434790136874]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN24",
"NTAName": "SoHo-TriBeCa-Civic Center-Little Italy",
"Shape_Leng": 24282.748052200000529,
"Shape_Area": 24862222.1592
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.992603221984396, 40.724136449683371],
[-73.993522980455566, 40.721631693239225],
[-73.99480778955251, 40.718457426852865],
[-73.995428758126963, 40.717279243047834],
[-73.996058726783204, 40.71623164071346],
[-73.998589255019795, 40.717099511537086],
[-73.999956207986031, 40.718017095087156],
[-74.002722861793274, 40.71438970926264],
[-74.003219830122589, 40.714036237059688],
[-74.004214053014579, 40.71298074314479],
[-74.00485768021683, 40.712452541116946],
[-74.005275618925978, 40.712249440495349],
[-74.005589329541294, 40.712170053755536],
[-74.005891750354365, 40.712007159564919],
[-74.007389214105928, 40.71164226960672],
[-74.007467493694918, 40.711566902706814],
[-74.008347609790192, 40.711358545553935],
[-74.00860085337284, 40.711392239709014],
[-74.011663348756784, 40.712798055762697],
[-74.013753884830408, 40.713690554843161],
[-74.013475242188818, 40.715110711896585],
[-74.013351214891927, 40.715233312321978],
[-74.013233848808511, 40.715656187571753],
[-74.012441092127943, 40.719057672703372],
[-74.013030681264354, 40.719131455819088],
[-74.012914487463306, 40.719708293225302],
[-74.013446940495854, 40.71978201978623],
[-74.013389069034446, 40.720042607273193],
[-74.014524158565024, 40.720187397445684],
[-74.01450706205668, 40.72026590617714],
[-74.014572313720208, 40.720274137742315],
[-74.014522790560747, 40.720532050327733],
[-74.01414732641814, 40.720481589088571],
[-74.014158612542332, 40.7204315908374],
[-74.014090958837798, 40.720422747859146],
[-74.014079544194018, 40.720473311522362],
[-74.014004167555925, 40.720468520235215],
[-74.013966097224795, 40.720413634538083],
[-74.013867143572199, 40.720407572312546],
[-74.013859210648761, 40.720449933255253],
[-74.013681739107, 40.720425901487253],
[-74.013641927487427, 40.720383366299963],
[-74.013635803324036, 40.720419550132654],
[-74.013548417230709, 40.72040685437937],
[-74.013553783158926, 40.72036872531941],
[-74.013500694044453, 40.720401861320873],
[-74.012965585268162, 40.720328675084538],
[-74.012869091380381, 40.720833752211675],
[-74.013239373370197, 40.720887986728066],
[-74.013158950208748, 40.721253260783485],
[-74.013080101456367, 40.72154580719522],
[-74.012538758072623, 40.721503176576348],
[-74.011653265699422, 40.725871761851344],
[-74.011958330748257, 40.725977598715723],
[-74.012315884174626, 40.726033842782762],
[-74.015163241184226, 40.726319711936782],
[-74.015204265311411, 40.726361949379566],
[-74.015170840197868, 40.726579390155059],
[-74.015123565494619, 40.726793942564534],
[-74.011542018976044, 40.726447346927067],
[-74.011383236047465, 40.728229271864578],
[-74.010767915049954, 40.728173957807655],
[-74.010672649554067, 40.729112666500221],
[-74.002817266391432, 40.728363129304057],
[-73.99761019591817, 40.72579713860241],
[-73.996771757114431, 40.725431943502606],
[-73.995329079374557, 40.72508373972876],
[-73.992603221984396, 40.724136449683371]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI25",
"NTAName": "Oakwood-Oakwood Beach",
"Shape_Leng": 44301.945693499998015,
"Shape_Area": 55950540.6974
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.121537289061422, 40.575153252579391],
[-74.121853335973512, 40.574653180893947],
[-74.121830797639177, 40.574217089468888],
[-74.121360446987254, 40.572826743739334],
[-74.121387313448764, 40.572092210569437],
[-74.121502136573639, 40.57172155879838],
[-74.121625639344742, 40.571501393868751],
[-74.122168565037413, 40.570939493238328],
[-74.122789672075257, 40.570429844769556],
[-74.123450961528206, 40.569922761354391],
[-74.124899043723971, 40.568949142947062],
[-74.123092811398706, 40.567966366957044],
[-74.116363363427908, 40.56391563798654],
[-74.113761611952199, 40.566497189104105],
[-74.110139471060478, 40.564310666832519],
[-74.105576455087444, 40.561989973492466],
[-74.104846271245023, 40.561595239412867],
[-74.102997995646632, 40.560469558275535],
[-74.099929141354139, 40.559070685653047],
[-74.100212259152201, 40.558871151128379],
[-74.100799639940064, 40.558321821115229],
[-74.101243541397963, 40.557660830812907],
[-74.101602029867308, 40.556803458719415],
[-74.101846376747048, 40.556216988779987],
[-74.101840329648994, 40.555944639241218],
[-74.101374775957126, 40.555692372106684],
[-74.101354232705106, 40.555583299943429],
[-74.101405169107579, 40.555538525661845],
[-74.10147440700959, 40.55553361099701],
[-74.102650764261384, 40.556134404784601],
[-74.103098391115381, 40.555904641451136],
[-74.103857954543471, 40.555118160101301],
[-74.104659435572898, 40.554120467310618],
[-74.105089078815638, 40.553235468011252],
[-74.104844477022283, 40.553025814555646],
[-74.104914637591676, 40.55301626711249],
[-74.106428220650884, 40.553853373118656],
[-74.106412563319324, 40.554108275584973],
[-74.106563610353732, 40.554186927548585],
[-74.107047385153962, 40.554195450541364],
[-74.107348312836521, 40.554148152031118],
[-74.107686234639829, 40.553976670974919],
[-74.108539224625432, 40.553258025673301],
[-74.109251344048829, 40.552580465304295],
[-74.110284573875433, 40.551496357417513],
[-74.112788469578973, 40.547884262221665],
[-74.113010461044652, 40.547780065430068],
[-74.113383406162768, 40.548073375150679],
[-74.113951499219738, 40.548725322799918],
[-74.114942029208606, 40.549588649612161],
[-74.116562900562798, 40.549127741724902],
[-74.118762919865787, 40.551216114405335],
[-74.118502783721624, 40.551416387686949],
[-74.119458592911627, 40.552221906044522],
[-74.124020471275983, 40.555230827777677],
[-74.12730057821922, 40.557295172447724],
[-74.130424595729252, 40.554437042058417],
[-74.131778281186428, 40.553489970511293],
[-74.133168259333445, 40.552356179160014],
[-74.133210025286218, 40.55238387637862],
[-74.138850927494119, 40.556951178864324],
[-74.138180010229092, 40.557593865491249],
[-74.136600294092716, 40.558388939183693],
[-74.135749324480642, 40.558850045426375],
[-74.13561300319121, 40.558980026280338],
[-74.135303635168199, 40.559425089388924],
[-74.13480973431129, 40.560828618231056],
[-74.133671163161026, 40.561840934449805],
[-74.133407400823415, 40.562129805701275],
[-74.133109792890863, 40.562867691864938],
[-74.132643840362334, 40.563503334911445],
[-74.131700090260011, 40.564535749607444],
[-74.132402804307787, 40.564760999845035],
[-74.134596712797531, 40.565270933906589],
[-74.135274172885971, 40.565517760618285],
[-74.135915926275032, 40.565817960400658],
[-74.136511492293863, 40.566166621597596],
[-74.14131233629854, 40.568433347748844],
[-74.14438745026591, 40.569706100667212],
[-74.143874535531282, 40.570606594189805],
[-74.144185882074055, 40.572037409502272],
[-74.133787941149308, 40.573296974585553],
[-74.132610229910227, 40.57353016327037],
[-74.127653582023584, 40.575234942563476],
[-74.127299425955385, 40.575782714888653],
[-74.127087213660431, 40.576371608635171],
[-74.126656889380087, 40.576284932916131],
[-74.125636641073072, 40.575973444481299],
[-74.125133339042605, 40.57587998803136],
[-74.123339552636992, 40.575786986130659],
[-74.122891277296716, 40.575640545849055],
[-74.12209602127048, 40.575132587375165],
[-74.121757400048381, 40.575111793629375],
[-74.121537289061422, 40.575153252579391]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK78",
"NTAName": "Bushwick South",
"Shape_Leng": 40778.710259899999073,
"Shape_Area": 40192625.377
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.932297086086749, 40.707749446648151],
[-73.933918707548713, 40.70748702613151],
[-73.93269784924918, 40.703170391222542],
[-73.931155339243034, 40.703772334870159],
[-73.904824996707589, 40.688808569870126],
[-73.904055771221564, 40.68854627866007],
[-73.905365699744834, 40.686832807813353],
[-73.904494010887262, 40.686298600456738],
[-73.905755480647997, 40.684004418529298],
[-73.90282570599679, 40.68234114155382],
[-73.902863121621053, 40.680942195137234],
[-73.902622622804515, 40.68066450291559],
[-73.904046398088894, 40.679220598019157],
[-73.929701924027981, 40.693863397109119],
[-73.938568547826748, 40.69884813554939],
[-73.943949472713044, 40.698221279839082],
[-73.9443878859649, 40.700424523782559],
[-73.941930788822305, 40.700725234695796],
[-73.940420578743158, 40.701076598294911],
[-73.941030096975467, 40.704636177536578],
[-73.942734484477981, 40.70447330641359],
[-73.943787996235358, 40.710900379063879],
[-73.940422520275945, 40.711217647749308],
[-73.940477134662729, 40.711562642807863],
[-73.940688031343342, 40.711962048636771],
[-73.934802818655172, 40.713372495593667],
[-73.932297086086749, 40.707749446648151]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK90",
"NTAName": "East Williamsburg",
"Shape_Leng": 49202.445204800002102,
"Shape_Area": 39160339.4699
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.924059097370503, 40.714111559644898],
[-73.924040113340226, 40.714008312628891],
[-73.923139363493576, 40.713394728090911],
[-73.922232945987616, 40.71285442485275],
[-73.921686636335579, 40.711894317398375],
[-73.921546016956825, 40.711043283534813],
[-73.921220735263688, 40.710790558556432],
[-73.920745196554748, 40.710529686490297],
[-73.921891846326488, 40.709396096710343],
[-73.924186474564692, 40.709064729331942],
[-73.932297086086749, 40.707749446648151],
[-73.934802818655172, 40.713372495593667],
[-73.940688031343342, 40.711962048636771],
[-73.940477134662729, 40.711562642807863],
[-73.940422520275945, 40.711217647749308],
[-73.943787996235358, 40.710900379063879],
[-73.942734484477981, 40.70447330641359],
[-73.941030096975467, 40.704636177536578],
[-73.940892871659685, 40.703914157617341],
[-73.940420578743158, 40.701076598294911],
[-73.941930788822305, 40.700725234695796],
[-73.943226860123147, 40.701520709145726],
[-73.950236937579135, 40.705473246654513],
[-73.950874926672157, 40.709513115198298],
[-73.948655335118019, 40.70972498318217],
[-73.949372318506818, 40.714066878309701],
[-73.953484721648138, 40.714070208078638],
[-73.952753812696372, 40.714735991056855],
[-73.951144336997601, 40.716034520785961],
[-73.950247229160809, 40.716632485081355],
[-73.94866397410118, 40.717682771455991],
[-73.945603588834061, 40.71956728591892],
[-73.94195633562957, 40.721652319230117],
[-73.941094188472718, 40.722309245113998],
[-73.940221236712006, 40.722891505266986],
[-73.937653144938295, 40.724265554929467],
[-73.936763824055362, 40.724838919223068],
[-73.93412337355872, 40.726855471479475],
[-73.932554386116578, 40.727862889829964],
[-73.932268522161991, 40.728174658031826],
[-73.932004204538131, 40.728145082893441],
[-73.931683178267434, 40.728031726096958],
[-73.930804791317613, 40.727848839261682],
[-73.930326355600087, 40.72779514174632],
[-73.929663080421264, 40.72754339771128],
[-73.929580206908796, 40.72761282070865],
[-73.929243339483904, 40.727397942318625],
[-73.929268988935434, 40.727365215321129],
[-73.928494185401618, 40.726614603307858],
[-73.927939125591479, 40.725883729045329],
[-73.927871724050803, 40.725854050695069],
[-73.927796501041854, 40.724925668211021],
[-73.925614705166225, 40.720061662212423],
[-73.924817989436974, 40.720265137475288],
[-73.924708916557321, 40.719998875566311],
[-73.924745031081159, 40.719985247246228],
[-73.924534325621849, 40.719666157772423],
[-73.924520830481967, 40.719553566511863],
[-73.924690048571136, 40.718722335555817],
[-73.92486413443055, 40.718440445413059],
[-73.928379301015013, 40.717578367290066],
[-73.928789630571856, 40.717732852122332],
[-73.928879651800145, 40.71772031862352],
[-73.92912432836728, 40.717527292724917],
[-73.929185391090328, 40.717411650119061],
[-73.929568569055334, 40.717221535562558],
[-73.929705399813798, 40.717049279389535],
[-73.929319998321347, 40.716112008833008],
[-73.929344834212316, 40.715938917983067],
[-73.929473569214608, 40.715721452621125],
[-73.931493046109679, 40.715208480069975],
[-73.931792671630646, 40.715182975090769],
[-73.932206073073004, 40.714963980929312],
[-73.932230015748971, 40.714846965043634],
[-73.932136869872764, 40.71467904647514],
[-73.93175357116219, 40.714741675505287],
[-73.931240670594903, 40.713724810884685],
[-73.931453017330412, 40.713438844463575],
[-73.931645273916658, 40.713342793758102],
[-73.93263905308514, 40.713052586169702],
[-73.932032629805093, 40.711590223074253],
[-73.933384846153018, 40.71123372774565],
[-73.933283493203476, 40.710978706452757],
[-73.93190101920861, 40.711338471428178],
[-73.930932275477375, 40.709165311254111],
[-73.930780027070298, 40.709103300785024],
[-73.930756531047848, 40.708972982737208],
[-73.930501000831981, 40.708681225039548],
[-73.930360946319396, 40.708717737530428],
[-73.930380217351058, 40.708802847762769],
[-73.930250388490833, 40.708927912919926],
[-73.930601708493256, 40.709746752587101],
[-73.930733480839521, 40.709893363366618],
[-73.930769574591665, 40.710098252098369],
[-73.93154613680818, 40.71185535175065],
[-73.930859661739248, 40.712064941156747],
[-73.930778947370527, 40.71216042795546],
[-73.930855287655177, 40.712220663279453],
[-73.931610327349432, 40.712038022177772],
[-73.931833350515078, 40.712507527988095],
[-73.931842494934315, 40.712627237990588],
[-73.931734368517752, 40.712749292238001],
[-73.930527132074246, 40.713061560904478],
[-73.9304229437912, 40.713172558671431],
[-73.931052318356663, 40.714610223922932],
[-73.930851901340304, 40.714902985592772],
[-73.928438817485414, 40.715530949575331],
[-73.928906012650714, 40.716618956809491],
[-73.928745319878146, 40.716825128348354],
[-73.928232531109884, 40.717106453751185],
[-73.925951638778997, 40.71769107056943],
[-73.924729061348927, 40.717944050687734],
[-73.924552909717619, 40.717939134734038],
[-73.924102801603979, 40.71766713720281],
[-73.92363989262067, 40.717320657493367],
[-73.923418614347227, 40.717069015738694],
[-73.923167760852564, 40.716478915386062],
[-73.923117181684063, 40.71647618845649],
[-73.923055000143918, 40.716342664290778],
[-73.923611451555473, 40.716103508171216],
[-73.923590010032129, 40.716028148192308],
[-73.924313299615733, 40.71584705657672],
[-73.924885535736507, 40.715267187652948],
[-73.924761551153964, 40.714975971448801],
[-73.924555687440147, 40.714753653732778],
[-73.924431531740737, 40.714364776176311],
[-73.924347510519283, 40.714307053008952],
[-73.92433589757124, 40.714122593466371],
[-73.924059097370503, 40.714111559644898]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK19",
"NTAName": "Brighton Beach",
"Shape_Leng": 21058.810319,
"Shape_Area": 17181109.1146
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.960349535852089, 40.587306286073911],
[-73.960341907620062, 40.585968366262129],
[-73.960149241296065, 40.583575897039189],
[-73.960047986674823, 40.583269872406589],
[-73.959007400390789, 40.582838127802084],
[-73.957031341804012, 40.583035332416927],
[-73.956457291256967, 40.582658851057737],
[-73.954142877955874, 40.583106140105542],
[-73.953920007470302, 40.581869793573347],
[-73.953838016546314, 40.581745552315319],
[-73.95374063177276, 40.581355892240346],
[-73.952358467426166, 40.574274686193014],
[-73.952758992580655, 40.574213630932071],
[-73.953117889375179, 40.574287793861103],
[-73.953742579583491, 40.574297232241896],
[-73.953934905397318, 40.574242908652636],
[-73.953994234050796, 40.574266317041776],
[-73.95403199797876, 40.57408629718045],
[-73.95408333385906, 40.574073272183263],
[-73.954133608034539, 40.574333267495142],
[-73.954397938218051, 40.574370845907175],
[-73.955137053128126, 40.574371136925976],
[-73.955694841102712, 40.574326996263423],
[-73.956208165951267, 40.574265470675137],
[-73.956345066816255, 40.574207221989482],
[-73.9562956120362, 40.573834984654333],
[-73.956345334546072, 40.573797578291838],
[-73.956471694475823, 40.574139487242526],
[-73.956567509059084, 40.574170778492942],
[-73.957200534981993, 40.574186670878262],
[-73.958434763590716, 40.574088814543686],
[-73.958966342186514, 40.573947268768698],
[-73.958942684618464, 40.573467167647379],
[-73.958987189726116, 40.573430654726742],
[-73.959072480276035, 40.57384554749769],
[-73.959391822474345, 40.573912109249783],
[-73.959417782885453, 40.575177983139191],
[-73.962861179987783, 40.574980140758939],
[-73.964711288595268, 40.574782617767994],
[-73.967567072914207, 40.574881526949099],
[-73.967657435234784, 40.575043682490389],
[-73.96795533369405, 40.575012553710827],
[-73.968258788175675, 40.575045488990824],
[-73.968889958779428, 40.575261238994102],
[-73.968681195432737, 40.575630882762674],
[-73.965143851924935, 40.591101916118042],
[-73.960679840683682, 40.591597582626171],
[-73.960349535852089, 40.587306286073911]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN46",
"NTAName": "Bayside-Bayside Hills",
"Shape_Leng": 43040.209660799999256,
"Shape_Area": 80798014.0636
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.767822075640126, 40.77881037631181],
[-73.767604546337935, 40.778299034660698],
[-73.767618940754957, 40.777994693915872],
[-73.767091134847348, 40.776844841109174],
[-73.766328233242191, 40.775843054332121],
[-73.766003983265563, 40.775067006932531],
[-73.765727969039276, 40.774603328092049],
[-73.765104367542833, 40.773799038219131],
[-73.764176331146999, 40.772829989940099],
[-73.761263012598405, 40.770395965074243],
[-73.760605240662528, 40.769765933457215],
[-73.760440568486771, 40.769485186931462],
[-73.759600780928238, 40.768723256713002],
[-73.759373894944673, 40.768636388787101],
[-73.758935120936954, 40.768334328515841],
[-73.758807765609973, 40.768182652725386],
[-73.758827360020405, 40.767767523872244],
[-73.758642643580785, 40.767357170035446],
[-73.758421565507987, 40.767199067448061],
[-73.758023872588225, 40.767075329044388],
[-73.757870305674103, 40.766946427446968],
[-73.757606837992356, 40.766969919006883],
[-73.757521943089586, 40.767106756132314],
[-73.757390208038743, 40.7671666723584],
[-73.757345231740075, 40.76706980756655],
[-73.757031148200397, 40.76682325434129],
[-73.756410842897509, 40.766514222767583],
[-73.756500720039284, 40.766344505019376],
[-73.756286644115761, 40.76634340404928],
[-73.75602210333291, 40.766464421210159],
[-73.755473104397922, 40.76636558041649],
[-73.75493674407366, 40.766093252140251],
[-73.754255534196403, 40.765532892788265],
[-73.754100654886258, 40.76534935346195],
[-73.754019619790313, 40.765307450826093],
[-73.753882348746956, 40.765349292897071],
[-73.753770365306337, 40.765304631484341],
[-73.754675724056625, 40.764939759645515],
[-73.755672268554648, 40.76469114912981],
[-73.759216897689228, 40.764324855548146],
[-73.758864313990713, 40.763274541259051],
[-73.758593205357997, 40.764088229559121],
[-73.758446721131889, 40.764115146067084],
[-73.75844568810335, 40.763681530625831],
[-73.757848587166947, 40.762566799540238],
[-73.75784418114992, 40.762367940583175],
[-73.75802364180413, 40.762110961357237],
[-73.758114519993185, 40.762053897189695],
[-73.758480750666337, 40.761994737148939],
[-73.758001317010653, 40.760379867479095],
[-73.76239510540735, 40.759496998122259],
[-73.761766928588443, 40.757278802073074],
[-73.761927137546294, 40.755772853360909],
[-73.761843440030162, 40.755537269313407],
[-73.7616766980221, 40.755323476822028],
[-73.761015399821289, 40.754816092993408],
[-73.760801941475265, 40.754547729821901],
[-73.760129488129138, 40.753022117169095],
[-73.759946497310622, 40.752760006378054],
[-73.759684943539526, 40.752536256845126],
[-73.759062492025222, 40.752209181328887],
[-73.757370347706654, 40.750243856764527],
[-73.756841273004497, 40.749322077704278],
[-73.758028055830167, 40.748957816318551],
[-73.760736120984447, 40.747737385471964],
[-73.768577012204261, 40.745522204884409],
[-73.769371641227863, 40.745220309086342],
[-73.771376784884623, 40.744251035500611],
[-73.772414610026615, 40.743884845221935],
[-73.773621851743897, 40.743630462619301],
[-73.775738369270982, 40.743325647163992],
[-73.780520378005917, 40.753330743102637],
[-73.782124619780447, 40.755339311528381],
[-73.784289918846994, 40.759440299435724],
[-73.785024347447035, 40.761036515858727],
[-73.785463830703378, 40.76259192540882],
[-73.785719935667458, 40.762921464725935],
[-73.785958106263493, 40.763102243651467],
[-73.788075237408364, 40.764199490424119],
[-73.788368565469042, 40.764438428846987],
[-73.790598581246016, 40.767418687704655],
[-73.794936367994595, 40.772404529882984],
[-73.795657020774243, 40.773036086212031],
[-73.793652302700096, 40.773360438641312],
[-73.791635260664592, 40.774238655585854],
[-73.78826972953263, 40.77507535732957],
[-73.779476560584158, 40.777664169919177],
[-73.77678363262261, 40.7784095837903],
[-73.775839583323403, 40.778612372112015],
[-73.775537321813601, 40.777025597979112],
[-73.768573050353012, 40.779105428804371],
[-73.768337889774159, 40.778682525141299],
[-73.768071922267595, 40.778748448538316],
[-73.768111746646241, 40.778834034780907],
[-73.768033333930475, 40.778858394557311],
[-73.767960731275991, 40.778776009213296],
[-73.767822075640126, 40.77881037631181]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX05",
"NTAName": "Bedford Park-Fordham North",
"Shape_Leng": 22565.481707099999767,
"Shape_Area": 14998883.2737
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.883625181295784, 40.867257588006979],
[-73.8868331704345, 40.865389993860539],
[-73.888122787761091, 40.864254570577643],
[-73.888895660102222, 40.864754153236532],
[-73.891771887992022, 40.861871716750073],
[-73.891380233802607, 40.861700588263041],
[-73.893215207578095, 40.859874206155673],
[-73.893810260725033, 40.858986565131993],
[-73.894693264075087, 40.859426282309059],
[-73.895739246655353, 40.858138206764629],
[-73.898838145714237, 40.85930730834145],
[-73.897143798098838, 40.862445064649897],
[-73.897980993700216, 40.862402539869791],
[-73.899436708404068, 40.862116912065531],
[-73.901079669515283, 40.862756383422372],
[-73.897403232987216, 40.867474189711132],
[-73.89631315736122, 40.867038575444582],
[-73.894381303247641, 40.866068851211629],
[-73.891917182608196, 40.869302110075438],
[-73.891574001094426, 40.869684252840855],
[-73.890986969935767, 40.870160715430785],
[-73.888335470315965, 40.871709830532922],
[-73.887851963287943, 40.87211417612788],
[-73.889371637531937, 40.87338229790118],
[-73.88773577644082, 40.877033881790197],
[-73.885276832077324, 40.879217668991096],
[-73.883838595739036, 40.87679795008237],
[-73.883455793292072, 40.876056095136306],
[-73.883400352871647, 40.873946626765864],
[-73.883190481556028, 40.873393279907376],
[-73.882719513862185, 40.872770781290065],
[-73.882553915484948, 40.872457287713175],
[-73.881468897287832, 40.868573646263386],
[-73.883625181295784, 40.867257588006979]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX43",
"NTAName": "Norwood",
"Shape_Leng": 22160.766363200000342,
"Shape_Area": 15711462.1212
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.883090031704853, 40.866591509289933],
[-73.883625181295784, 40.867257588006979],
[-73.881468897287832, 40.868573646263386],
[-73.882553915484948, 40.872457287713175],
[-73.882719513862185, 40.872770781290065],
[-73.883190481556028, 40.873393279907376],
[-73.883400352871647, 40.873946626765864],
[-73.883455793292072, 40.876056095136306],
[-73.883838595739036, 40.87679795008237],
[-73.885276832077324, 40.879217668991096],
[-73.885675180256698, 40.878872510808471],
[-73.885950716642014, 40.880507412132523],
[-73.887165051991502, 40.882576510892207],
[-73.886942468094659, 40.882682766755892],
[-73.886970075228717, 40.882795642716843],
[-73.887231940098275, 40.883054978428362],
[-73.887123035848091, 40.883200939945446],
[-73.887051425361179, 40.88434957584596],
[-73.886834866084826, 40.884342026064665],
[-73.886624130396413, 40.884267302707286],
[-73.884216964431815, 40.883197728058455],
[-73.883683368565229, 40.883157615331406],
[-73.882748333608717, 40.883397386801668],
[-73.882086236745408, 40.883132221408609],
[-73.881244225415543, 40.882709633005554],
[-73.878149445682013, 40.886873807866614],
[-73.878035624264854, 40.887118321756155],
[-73.877831258380638, 40.886772759678152],
[-73.877606766124003, 40.884523044122993],
[-73.877728177277305, 40.883454195085193],
[-73.878125943607998, 40.882153825727983],
[-73.874676014422647, 40.881562851685516],
[-73.874792407319035, 40.880075128890361],
[-73.874945897554952, 40.879947669295291],
[-73.871918032867143, 40.880237466106919],
[-73.871871006937965, 40.880328119922751],
[-73.870840770800953, 40.880438894006019],
[-73.87024100052578, 40.880229352906312],
[-73.87160577396476, 40.876921927761565],
[-73.872552509004294, 40.87517518282332],
[-73.875188028223775, 40.871576828447097],
[-73.876192249125197, 40.870476710929672],
[-73.876943520250762, 40.869954681572104],
[-73.881338555091858, 40.867590087756817],
[-73.883090031704853, 40.866591509289933]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI37",
"NTAName": "Stapleton-Rosebank",
"Shape_Leng": 56444.282321500002581,
"Shape_Area": 46549990.6714
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.072581338734707, 40.637941874089464],
[-74.072572752126078, 40.637871909875891],
[-74.073483538017243, 40.637787357935579],
[-74.073456362257829, 40.63765394568523],
[-74.073534476593395, 40.63764172263182],
[-74.073487373035618, 40.637233529236205],
[-74.07053959705145, 40.637471404121676],
[-74.070494122138385, 40.637161886839557],
[-74.073415626987909, 40.636893950965103],
[-74.073373428880359, 40.636610725639386],
[-74.072103951648955, 40.636725230989192],
[-74.072094838075088, 40.636647277624547],
[-74.073358220455944, 40.636536094165137],
[-74.072831843444632, 40.633666032826071],
[-74.073328213823743, 40.632058442989894],
[-74.07298474612324, 40.630308978981432],
[-74.068021735439515, 40.628787585185442],
[-74.068130192479913, 40.628539046091475],
[-74.072911779365583, 40.629996379406478],
[-74.072512594068201, 40.627768778426969],
[-74.072455279318149, 40.627644995424497],
[-74.072399006167657, 40.62763110052596],
[-74.072292230799562, 40.627151707203971],
[-74.072711512580028, 40.627103445651073],
[-74.072783822048677, 40.627048554676179],
[-74.072780660160873, 40.626927963129646],
[-74.072705433772796, 40.626874148562827],
[-74.072255009557722, 40.624608750193943],
[-74.071061793964915, 40.622793154505416],
[-74.070917070432131, 40.622656428624829],
[-74.070719940369244, 40.622577481823278],
[-74.070027351275357, 40.62145406385028],
[-74.069983007522922, 40.621417665898178],
[-74.069903746607906, 40.621439036687889],
[-74.069897824662434, 40.621351086649184],
[-74.069755430883276, 40.621208139872358],
[-74.06946265791278, 40.621087493009533],
[-74.066691579244306, 40.619085764247444],
[-74.066493352963832, 40.618897601595144],
[-74.06596065271782, 40.619359015593702],
[-74.065910032300323, 40.619315800403868],
[-74.066409890192048, 40.618864467064078],
[-74.06619908020825, 40.618722481288387],
[-74.065572808412114, 40.619274543599914],
[-74.065445861354391, 40.61920262828891],
[-74.066682079829235, 40.618067495938504],
[-74.066415587151766, 40.617872498165553],
[-74.066049915359073, 40.618195410352712],
[-74.065698647441423, 40.617956415586576],
[-74.065465499527548, 40.618107070280772],
[-74.064961892804305, 40.617772398565229],
[-74.064357051586668, 40.618245944865585],
[-74.064257217515916, 40.618171687585544],
[-74.065099084072074, 40.617510956125443],
[-74.064436620050259, 40.617062414602543],
[-74.064012117679468, 40.617402225630514],
[-74.063908922403627, 40.617328825149038],
[-74.064327458580493, 40.616988503022149],
[-74.064198129356356, 40.616900934589978],
[-74.063868167730135, 40.616857710927242],
[-74.063761299231544, 40.616798749654713],
[-74.063766687440761, 40.616603630839904],
[-74.061832637466068, 40.614787310647422],
[-74.061307095502713, 40.614192250765576],
[-74.060808531657486, 40.613031733806189],
[-74.060737794433777, 40.613046677094729],
[-74.060649405894779, 40.612807849916784],
[-74.060674262110098, 40.612577998116805],
[-74.060612389963268, 40.612305676737378],
[-74.060336807920152, 40.611901880219641],
[-74.059854443286241, 40.612102958608112],
[-74.060047368216928, 40.612721594064659],
[-74.060016251162338, 40.612763687895388],
[-74.060197727296526, 40.612786375932281],
[-74.059999197116355, 40.612783899618634],
[-74.059769307381828, 40.612056647139333],
[-74.060272248099452, 40.611819639939192],
[-74.060077548967698, 40.611830179759998],
[-74.059901104285842, 40.611749173078195],
[-74.059533067489113, 40.611714254064239],
[-74.059270762436881, 40.61149313250732],
[-74.058901334215236, 40.61100228648629],
[-74.058927447541848, 40.610938377544429],
[-74.059123339397715, 40.61082228858649],
[-74.059085843087047, 40.610633677254484],
[-74.058578812309662, 40.610048643884831],
[-74.058480429711167, 40.610010740453689],
[-74.058477365035898, 40.609927294808948],
[-74.058327114803788, 40.609768228979739],
[-74.0577621977924, 40.609326051707001],
[-74.057163838789791, 40.608742783103651],
[-74.056858123804815, 40.608056357545159],
[-74.057890168854598, 40.607580754464685],
[-74.057787103985163, 40.607449591882506],
[-74.060428672391822, 40.606352729885401],
[-74.060464297212874, 40.606405824063607],
[-74.065170912507782, 40.604213508846286],
[-74.063640585538337, 40.602541948797345],
[-74.063505656601905, 40.602150054830467],
[-74.065506631910367, 40.602719880932405],
[-74.069140309874314, 40.604039718730192],
[-74.072066828499203, 40.605186347766541],
[-74.073999653080989, 40.605725567958117],
[-74.075432397144453, 40.605987967345392],
[-74.076567346693892, 40.606121664158529],
[-74.081554700577215, 40.606290297070402],
[-74.079394239723598, 40.609084364536741],
[-74.075025698608641, 40.616378739654223],
[-74.074180309757963, 40.617304933798742],
[-74.073531108494905, 40.617782014512329],
[-74.072750224507473, 40.6181934096345],
[-74.07225884864917, 40.618523274836669],
[-74.07183293044929, 40.618900751466022],
[-74.071406083431185, 40.619431378949493],
[-74.071181111210919, 40.619979026738491],
[-74.071134623303081, 40.620359948773562],
[-74.071165687707548, 40.620698785784903],
[-74.072535517397597, 40.622464022221614],
[-74.080000950056643, 40.618552952059652],
[-74.087209827615638, 40.613306973504841],
[-74.087472184735574, 40.614560803337866],
[-74.087848429992761, 40.61516473025344],
[-74.087833754803256, 40.615317650682393],
[-74.086571577686655, 40.617169385715904],
[-74.086267566267338, 40.617832010894418],
[-74.086080062784305, 40.618515304364387],
[-74.085812691570851, 40.620375549533492],
[-74.085249916318347, 40.622800871285818],
[-74.084962118106972, 40.62462523303396],
[-74.084154198756849, 40.626267115430267],
[-74.083923623605742, 40.626609355256633],
[-74.083622367495366, 40.626922578123313],
[-74.082988089291661, 40.627350072842937],
[-74.08241960136391, 40.627452403085663],
[-74.082024283449726, 40.627435125100646],
[-74.081652203262678, 40.627351029347878],
[-74.08099625451284, 40.627339814231682],
[-74.080843715184599, 40.62737949104411],
[-74.080646906217567, 40.62762867631286],
[-74.08051601991103, 40.628099884470608],
[-74.079724922435403, 40.628950687893365],
[-74.081731353177673, 40.630012225931409],
[-74.081406154508898, 40.63030123556296],
[-74.083437383535056, 40.632280404296182],
[-74.084913216641809, 40.633639924178134],
[-74.085749289996713, 40.633955557725308],
[-74.084436475786234, 40.635405248048869],
[-74.081779405184847, 40.636623014754967],
[-74.078722025882897, 40.638289669913966],
[-74.078368904210492, 40.638290794678461],
[-74.078131634340409, 40.638171453608919],
[-74.076839977804013, 40.637750259619565],
[-74.075152079774398, 40.637788617580455],
[-74.075060528909674, 40.637748400333258],
[-74.074869174751981, 40.637792809577569],
[-74.072581338734707, 40.637941874089464]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI08",
"NTAName": "Grymes Hill-Clifton-Fox Hills",
"Shape_Leng": 37119.60178150000138,
"Shape_Area": 37745913.0016
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.081554700577215, 40.606290297070402],
[-74.082809498634518, 40.606410979069722],
[-74.083419333742214, 40.606522508661236],
[-74.085427563142829, 40.607022390529032],
[-74.093056856199297, 40.610119935737288],
[-74.094109590434428, 40.610406552122512],
[-74.094824891188239, 40.610548057360035],
[-74.095558297685201, 40.6106247780369],
[-74.097769686979348, 40.610623592940705],
[-74.098621513452855, 40.611518912145257],
[-74.099350430217072, 40.61241907603295],
[-74.099877338055023, 40.612918652021271],
[-74.102094343796267, 40.614600490701925],
[-74.10350925295981, 40.616416075397623],
[-74.102549405567615, 40.616853685226992],
[-74.101898351105547, 40.61745221106974],
[-74.10073089155803, 40.618709754656962],
[-74.100044269755685, 40.619357955413065],
[-74.092239713612756, 40.625742916247759],
[-74.091580959835383, 40.626545923338092],
[-74.089340457081789, 40.629923285457949],
[-74.08914567603216, 40.63012462153565],
[-74.08835621368921, 40.630734963691324],
[-74.085749289996713, 40.633955557725308],
[-74.084913216641809, 40.633639924178134],
[-74.083437383535056, 40.632280404296182],
[-74.081406154508898, 40.63030123556296],
[-74.081731353177673, 40.630012225931409],
[-74.079724922435403, 40.628950687893365],
[-74.08051601991103, 40.628099884470608],
[-74.080646906217567, 40.62762867631286],
[-74.080843715184599, 40.62737949104411],
[-74.08099625451284, 40.627339814231682],
[-74.081652203262678, 40.627351029347878],
[-74.082220942625213, 40.627452545326868],
[-74.082616217217918, 40.627434701271412],
[-74.083062468026156, 40.627312504419237],
[-74.083622367495366, 40.626922578123313],
[-74.083923623605742, 40.626609355256633],
[-74.084154198756849, 40.626267115430267],
[-74.084962118106972, 40.62462523303396],
[-74.085249916318347, 40.622800871285818],
[-74.085812691570851, 40.620375549533492],
[-74.086080062784305, 40.618515304364387],
[-74.086267566267338, 40.617832010894418],
[-74.086571577686655, 40.617169385715904],
[-74.087851475885685, 40.615243073683978],
[-74.087823372021433, 40.615087800163302],
[-74.087472184735574, 40.614560803337866],
[-74.087209827615638, 40.613306973504841],
[-74.080000950056643, 40.618552952059652],
[-74.072535517397597, 40.622464022221614],
[-74.071165687707548, 40.620698785784903],
[-74.07114283741366, 40.620549107043693],
[-74.071181111210919, 40.619979026738491],
[-74.071311303819542, 40.619608138850424],
[-74.071518881934338, 40.619262758372507],
[-74.07183293044929, 40.618900751466022],
[-74.072497190958543, 40.618351755792517],
[-74.073531108494905, 40.617782014512329],
[-74.073976159903538, 40.61747364232086],
[-74.074370799435201, 40.617127704517152],
[-74.075025698608641, 40.616378739654223],
[-74.079394239723598, 40.609084364536741],
[-74.081554700577215, 40.606290297070402]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK69",
"NTAName": "Clinton Hill",
"Shape_Leng": 23971.460640299999795,
"Shape_Area": 20528139.3248
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.953370174428443, 40.68064050844405],
[-73.953281874399977, 40.680200031475508],
[-73.955436814932554, 40.679957855183936],
[-73.955293615993867, 40.679203151043907],
[-73.968689613576345, 40.682005257597297],
[-73.969062020326504, 40.684157361362722],
[-73.97013154130974, 40.68950630795856],
[-73.969103623994997, 40.689467521505399],
[-73.969831184735241, 40.693134243973894],
[-73.968809896471654, 40.693120382398817],
[-73.969394500454584, 40.696080389420437],
[-73.965467213665448, 40.695932161736586],
[-73.964698201051874, 40.696064373252682],
[-73.964348014671444, 40.696183765515883],
[-73.963971858073876, 40.696378655389708],
[-73.963475152078544, 40.696800668200915],
[-73.963054801992968, 40.697392872436119],
[-73.962839637163441, 40.698038668339827],
[-73.961051006339716, 40.698326078818845],
[-73.960158546583031, 40.694117309658608],
[-73.956142392682068, 40.694579018572369],
[-73.955410580156297, 40.690908291886132],
[-73.960292816681118, 40.690346249915414],
[-73.959859394917274, 40.688147451217453],
[-73.95956770187361, 40.686682555927518],
[-73.95468418916532, 40.687244854437388],
[-73.953370174428443, 40.68064050844405]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK72",
"NTAName": "Williamsburg",
"Shape_Leng": 16874.444407599999977,
"Shape_Area": 11590051.4674
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.950236937579135, 40.705473246654513],
[-73.947052052314447, 40.703663949842458],
[-73.951288193686963, 40.700922365485617],
[-73.9538119690652, 40.703180979795441],
[-73.957457364388716, 40.700822603184811],
[-73.957225174056262, 40.69999935002626],
[-73.957019931234058, 40.698973914349565],
[-73.962839637163441, 40.698038668339827],
[-73.962179781551797, 40.700220710604377],
[-73.967209620426217, 40.704255709153294],
[-73.967615477907856, 40.704961635386901],
[-73.968389336807874, 40.706829186746916],
[-73.963278737770764, 40.707729298518665],
[-73.958455767946447, 40.707251847445583],
[-73.958384323672178, 40.707676690799097],
[-73.95790430738559, 40.708427173470042],
[-73.951910556992857, 40.706360078923787],
[-73.950236937579135, 40.705473246654513]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX26",
"NTAName": "Highbridge",
"Shape_Leng": 18507.418822899999213,
"Shape_Area": 16457559.8071
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.91728719351066, 40.845104086159473],
[-73.917506596529051, 40.84464196561288],
[-73.917439569803719, 40.8440607682384],
[-73.917464497284968, 40.8438237613246],
[-73.917557861587625, 40.843593802302479],
[-73.917858992207059, 40.843224471665216],
[-73.917960930669977, 40.842992517222235],
[-73.917949652132293, 40.842229570607664],
[-73.916183444320723, 40.842334900254109],
[-73.919016682964283, 40.838381093063902],
[-73.919308633778741, 40.838126322857612],
[-73.92399049458308, 40.835052298082353],
[-73.924393550783378, 40.834484027112374],
[-73.925375400636469, 40.832628095504361],
[-73.927612063058589, 40.830126482630881],
[-73.928027249269647, 40.829719539373862],
[-73.928500739229676, 40.829352349549545],
[-73.929449833685041, 40.828810404435224],
[-73.930339330734043, 40.828495554900606],
[-73.931141319741258, 40.82830380833223],
[-73.933072510681058, 40.828156152538774],
[-73.933546067470431, 40.831509452998851],
[-73.933605920367057, 40.83278953052077],
[-73.933500333287313, 40.833123465601062],
[-73.933462356369745, 40.833643823071313],
[-73.933143066430915, 40.835194127616084],
[-73.932996390016086, 40.835678789188677],
[-73.932656203539793, 40.83647347652591],
[-73.932355641525078, 40.83699333562798],
[-73.931866601727791, 40.837640056250336],
[-73.930958197667849, 40.839254147415552],
[-73.93081468528483, 40.839428345146587],
[-73.930750079598454, 40.839615822633448],
[-73.930515723199562, 40.839933642183802],
[-73.930431840385708, 40.840231705387907],
[-73.930483245209942, 40.840460061069649],
[-73.929589394419096, 40.842083549079277],
[-73.929578708845185, 40.842276669602441],
[-73.929380125882147, 40.842467145624376],
[-73.929194080071838, 40.842818415739529],
[-73.929184586069198, 40.843203757647238],
[-73.928615748223521, 40.844676865029953],
[-73.928274546406129, 40.844975761156526],
[-73.928082093736322, 40.845391597336111],
[-73.925963419108399, 40.844889744210775],
[-73.924783187830784, 40.844752664810493],
[-73.923877434172454, 40.844740507650982],
[-73.91728719351066, 40.845104086159473]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK25",
"NTAName": "Homecrest",
"Shape_Leng": 27514.22388,
"Shape_Area": 29991966.2154
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.958592784957673, 40.610403030935025],
[-73.956830016332077, 40.60108734857495],
[-73.957757459885329, 40.600985889105324],
[-73.956077203524274, 40.59210143244551],
[-73.95700330423729, 40.592002256235226],
[-73.956193137080206, 40.587762268954684],
[-73.960349535852089, 40.587306286073911],
[-73.960679840683682, 40.591597582626171],
[-73.97115101831308, 40.590442444533224],
[-73.971896848230756, 40.594352510693128],
[-73.971533244507484, 40.596368708748287],
[-73.97132951000971, 40.596352430718198],
[-73.971910804770758, 40.59942305913215],
[-73.972911168412253, 40.599315804203165],
[-73.972351520872166, 40.603348118861021],
[-73.972177428008635, 40.604194711537346],
[-73.972397354759337, 40.60565189064674],
[-73.972994340048416, 40.60881414180237],
[-73.964296498979806, 40.609776426175237],
[-73.964781128089427, 40.612330922164233],
[-73.962859740274041, 40.612549486467223],
[-73.962379478247627, 40.609986374525803],
[-73.958592784957673, 40.610403030935025]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK46",
"NTAName": "Ocean Parkway South",
"Shape_Leng": 21975.997556700000132,
"Shape_Area": 17782031.7484
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.962859740274041, 40.612549486467223],
[-73.964781128089427, 40.612330922164233],
[-73.964296498979806, 40.609776426175237],
[-73.974030977693317, 40.608702310158812],
[-73.97517176991694, 40.61472418588103],
[-73.973993194613755, 40.614029894242492],
[-73.97290326943272, 40.614152968384488],
[-73.973358793507458, 40.616541715296599],
[-73.975480970462158, 40.616311924641728],
[-73.97537335532121, 40.615754722382384],
[-73.977850093381008, 40.61728760629201],
[-73.97752301889588, 40.617676540767341],
[-73.975393805236763, 40.62076998723731],
[-73.977053528645669, 40.621532521807595],
[-73.97656583927008, 40.621994903193695],
[-73.977109592928386, 40.62494826019411],
[-73.977196656450033, 40.625101978558952],
[-73.977261500327359, 40.625852772813587],
[-73.970921262687767, 40.626569985505505],
[-73.970471719311348, 40.624170030481622],
[-73.96909724465462, 40.624332825137976],
[-73.968645106226887, 40.621941695814826],
[-73.964719833855838, 40.622372960702698],
[-73.962859740274041, 40.612549486467223]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK82",
"NTAName": "East New York",
"Shape_Leng": 88841.194584400000167,
"Shape_Area": 117154211.734
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.861062950167508, 40.674342934730134],
[-73.861071924991265, 40.674019813894503],
[-73.860389379181342, 40.671268775444425],
[-73.857633231083625, 40.671656194038007],
[-73.855684612211434, 40.663867492372923],
[-73.858429508574091, 40.663453360429251],
[-73.8576153718558, 40.66011893315379],
[-73.858514363936379, 40.659898942468573],
[-73.860359782061138, 40.659645828509582],
[-73.863170833405064, 40.658276512446257],
[-73.862697782996364, 40.657618308509775],
[-73.863002022012893, 40.657488116627256],
[-73.86300321556196, 40.657264200715595],
[-73.863131361129987, 40.657212044822906],
[-73.86315811040204, 40.657087784104405],
[-73.863270517115865, 40.656962603776762],
[-73.86300171715267, 40.656653757370201],
[-73.863055156901211, 40.656472481903101],
[-73.862999209486929, 40.656357333686742],
[-73.863069667187659, 40.656331681968261],
[-73.863166299015731, 40.656405659592039],
[-73.86320115439635, 40.65634937801665],
[-73.862972735292857, 40.656002940727724],
[-73.862641173431655, 40.655667537007659],
[-73.861733555475908, 40.65529522177399],
[-73.860989173540176, 40.655209766602582],
[-73.860483081968852, 40.654658928677563],
[-73.859755336732675, 40.654104176189733],
[-73.858980029791553, 40.652675457835485],
[-73.856958702919329, 40.650587373471723],
[-73.857232121154354, 40.650200433636201],
[-73.857524293743538, 40.649996190231342],
[-73.857705420776256, 40.648745971467243],
[-73.857834693504515, 40.648302337784251],
[-73.858376052516888, 40.647274415312644],
[-73.858403153463087, 40.647003901171175],
[-73.858378157062305, 40.646597601322306],
[-73.858223576532254, 40.646068601423956],
[-73.858019970960839, 40.645692581868516],
[-73.857548305568741, 40.645068835218837],
[-73.857292275992563, 40.644530580004279],
[-73.857190939483829, 40.644107913546954],
[-73.857169782982112, 40.643678558885966],
[-73.857911227212995, 40.643442186613669],
[-73.858940976020904, 40.643217036203865],
[-73.861046533888398, 40.643025680906256],
[-73.862013010278517, 40.642887040517493],
[-73.862894632903661, 40.642550679683232],
[-73.863311388731447, 40.642299129027748],
[-73.863798657776115, 40.641799577166566],
[-73.865093623944091, 40.640939675694149],
[-73.865311737311032, 40.640751191444558],
[-73.866704119737776, 40.640021763495398],
[-73.866092102260239, 40.639433878959963],
[-73.865987970606611, 40.639504411182614],
[-73.865353899691172, 40.638951293675724],
[-73.865362564864441, 40.638835690116998],
[-73.865486370007375, 40.638765182476448],
[-73.865632473913394, 40.638786763622903],
[-73.866255350250242, 40.639316314065709],
[-73.86617093077615, 40.639367600067224],
[-73.866815282013505, 40.639963527164127],
[-73.867029944031643, 40.63985106851873],
[-73.867322910067358, 40.639871983952069],
[-73.868672828950878, 40.640925079203399],
[-73.86991239405414, 40.643278202994296],
[-73.870017082735799, 40.644071372405413],
[-73.870614924611587, 40.644856741384153],
[-73.871191729496417, 40.645305356312434],
[-73.871571741837897, 40.645414961832302],
[-73.872122027919275, 40.64542370386372],
[-73.872570431029885, 40.645575611857041],
[-73.879216581649061, 40.654591083772281],
[-73.879268637199559, 40.654569130731879],
[-73.8793321168056, 40.654622016849785],
[-73.8796386550232, 40.654499091804226],
[-73.879719790343032, 40.654375929776307],
[-73.879241246223202, 40.653737186431954],
[-73.879108373929213, 40.653706235539573],
[-73.876761939563124, 40.650560954495113],
[-73.876721924918982, 40.650323221967831],
[-73.873524624631457, 40.645871229068156],
[-73.873423370826856, 40.645650703594903],
[-73.873185933309543, 40.645445013361588],
[-73.873356381790074, 40.645114714537826],
[-73.873443445211905, 40.644671914241847],
[-73.873394699367864, 40.644225717683241],
[-73.873270312552421, 40.643903214344888],
[-73.873098156667368, 40.643934683541616],
[-73.87297320666589, 40.643839231064526],
[-73.872756357709676, 40.643248964655484],
[-73.871948801165544, 40.642394084538722],
[-73.871894398301222, 40.642248236727497],
[-73.870881071736378, 40.640771870752438],
[-73.870845034222725, 40.640556620183141],
[-73.870435783702348, 40.640290807380083],
[-73.870085441585474, 40.639844180862909],
[-73.870079584070169, 40.639211694016971],
[-73.869895833862472, 40.638934528919535],
[-73.869524351893631, 40.638645701918662],
[-73.868088571080207, 40.638185614280239],
[-73.867997096682288, 40.638115264707025],
[-73.869609721365634, 40.637085534608715],
[-73.869695498189529, 40.637147389615038],
[-73.869208461106396, 40.637465809260981],
[-73.86955902490304, 40.637947484327491],
[-73.871238960090082, 40.637322621760539],
[-73.872553371192581, 40.636493365070002],
[-73.872934350105353, 40.636364807955324],
[-73.873479391545018, 40.636285545798785],
[-73.874262194908894, 40.636573390618103],
[-73.875150141786705, 40.637049704311025],
[-73.875471037301281, 40.63727332446765],
[-73.87633004507326, 40.638060229119624],
[-73.877169097317392, 40.638658069503428],
[-73.877494479786847, 40.638781237553104],
[-73.87829429281895, 40.638839444447555],
[-73.878415894140602, 40.638912188701518],
[-73.87683349023564, 40.642118589839399],
[-73.876199330329186, 40.643257173092842],
[-73.875306464314988, 40.644655669102129],
[-73.874580810750061, 40.64561010598652],
[-73.876103979505018, 40.646214788924681],
[-73.881721880576805, 40.653753827322234],
[-73.882213648543939, 40.654518638085079],
[-73.89000589190583, 40.651148697131077],
[-73.891365435872459, 40.652364719446901],
[-73.892457374151547, 40.653710939080511],
[-73.893546771398391, 40.655202714084254],
[-73.897610133083518, 40.653453816121157],
[-73.895861549359594, 40.651880526830745],
[-73.903982005530594, 40.64662856757711],
[-73.908275706655488, 40.650498573806814],
[-73.908687694780085, 40.650721481122019],
[-73.909448463794007, 40.651521598790211],
[-73.907400356628273, 40.652843990142273],
[-73.90784346310059, 40.65459153024284],
[-73.903178584134054, 40.655311633837385],
[-73.902619114018705, 40.655558110733374],
[-73.901185599087114, 40.65651455110136],
[-73.900649047667756, 40.657041558237566],
[-73.900394866788332, 40.657184205304944],
[-73.89612587286426, 40.657814664033893],
[-73.896167560452142, 40.657978451628168],
[-73.881855573447595, 40.664149988540167],
[-73.883308833906597, 40.666112004945546],
[-73.88810817419629, 40.664047412457755],
[-73.889906694976332, 40.663778289998092],
[-73.89069385325422, 40.666852234346322],
[-73.88976988627573, 40.666989914671866],
[-73.890878049946082, 40.671318087158575],
[-73.892710906697644, 40.671045828912604],
[-73.893670364266129, 40.674821770884378],
[-73.899306754422554, 40.673982041766493],
[-73.900046261425004, 40.676893089537728],
[-73.898362292416337, 40.677658276426818],
[-73.897756555611195, 40.678060721050286],
[-73.896536765436935, 40.678593581165231],
[-73.896217736666145, 40.677358184272443],
[-73.889874391663426, 40.678302150448665],
[-73.884670465597353, 40.679940285178155],
[-73.884892547381199, 40.680811116190704],
[-73.881167303377808, 40.681353663164643],
[-73.880613778096063, 40.679110032495977],
[-73.876889551566961, 40.68016499699057],
[-73.875567075828926, 40.680169464696377],
[-73.87531627567067, 40.680110983644589],
[-73.874835390369384, 40.679942570177388],
[-73.874208666522392, 40.679576339636512],
[-73.873760758433377, 40.679112497381709],
[-73.873427670601927, 40.678618847345028],
[-73.8730484567254, 40.678194107436696],
[-73.872570154603878, 40.677866610019898],
[-73.872310180457347, 40.67775574736514],
[-73.869423128785726, 40.676912227565744],
[-73.864133334941727, 40.674997252376301],
[-73.861764096621798, 40.674232260606033],
[-73.861062950167508, 40.674342934730134]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK93",
"NTAName": "Starrett City",
"Shape_Leng": 17406.125772100000177,
"Shape_Area": 11597800.9304
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.888285313560559, 40.646722413276045],
[-73.888467879233133, 40.646899734050592],
[-73.888459864113315, 40.646954915173332],
[-73.888535492932292, 40.646968149198372],
[-73.888641376413688, 40.64707955331599],
[-73.888582478951918, 40.647110311452799],
[-73.888635725881812, 40.647216407859695],
[-73.888516375685228, 40.647360691521939],
[-73.888444612073769, 40.647358063271881],
[-73.888303644352121, 40.647160615302802],
[-73.888200507266575, 40.647140869529082],
[-73.888176393264004, 40.646808577703212],
[-73.888285313560559, 40.646722413276045]
]
],
[
[
[-73.879925986620279, 40.651334759896805],
[-73.876103979505018, 40.646214788924681],
[-73.874580810750061, 40.64561010598652],
[-73.875306464314988, 40.644655669102129],
[-73.876199330329186, 40.643257173092842],
[-73.87683349023564, 40.642118589839399],
[-73.878415894140602, 40.638912188701518],
[-73.878621637734938, 40.639152019392213],
[-73.878656760444841, 40.639410387012596],
[-73.878820001579541, 40.639489105663827],
[-73.879106730718988, 40.639757783795631],
[-73.879309545368443, 40.640067074223104],
[-73.879511062118141, 40.640208299219736],
[-73.879894043976549, 40.640363279157192],
[-73.879889279692122, 40.640517877101679],
[-73.879954167640392, 40.64059994323312],
[-73.880095362771087, 40.640650486493463],
[-73.88016359994792, 40.640741098279761],
[-73.880167804381855, 40.640897413528606],
[-73.880256256660374, 40.640970109035969],
[-73.880483869226254, 40.640978034547473],
[-73.880478010881561, 40.641118964553804],
[-73.880736235465093, 40.641565957470583],
[-73.88058841799608, 40.641455617852571],
[-73.880292480685711, 40.641404915733119],
[-73.880097082261486, 40.641565292818626],
[-73.880026164262659, 40.641718113295966],
[-73.880067141325156, 40.642003446124129],
[-73.880278861608957, 40.642120686273422],
[-73.880365319358589, 40.642056714670652],
[-73.880541361795977, 40.642060314256113],
[-73.880779962926823, 40.642195518684048],
[-73.880989613951826, 40.642217090875725],
[-73.881393062306202, 40.642347339979111],
[-73.881572210576891, 40.642496147730398],
[-73.881628994539426, 40.642725122055481],
[-73.881753144345495, 40.642905476480998],
[-73.882241081656574, 40.643453492409051],
[-73.882148325625707, 40.643743727840565],
[-73.883020048172654, 40.644179192377656],
[-73.883245545281994, 40.644437584642581],
[-73.883419992690065, 40.644523815650125],
[-73.883604970478501, 40.644461418055812],
[-73.883697595603124, 40.644351988163407],
[-73.883872233989237, 40.644328695075252],
[-73.883995410705623, 40.644367935456771],
[-73.884324526012918, 40.644102280623699],
[-73.884807504111279, 40.643946303680252],
[-73.885577621489929, 40.644040949789762],
[-73.886005828562247, 40.644502890608329],
[-73.886005711760177, 40.644571257699582],
[-73.886731349848773, 40.645131935322887],
[-73.887201134656195, 40.645602171716824],
[-73.887434446424379, 40.64593668177308],
[-73.887360299812173, 40.645987185683438],
[-73.887388237812644, 40.646078641369051],
[-73.887636685744383, 40.646325451264381],
[-73.88766589163491, 40.646504924553206],
[-73.887637649073199, 40.646594379774527],
[-73.887726112332246, 40.64714302919986],
[-73.887567559821193, 40.647267371223684],
[-73.88751623247262, 40.64741516069423],
[-73.887641082673454, 40.647588411316995],
[-73.887640722327149, 40.647802390007854],
[-73.887770822142258, 40.64789199866518],
[-73.888069613504115, 40.647903961223086],
[-73.888153948511672, 40.647870974667164],
[-73.888434654279479, 40.648007415594719],
[-73.888636384341012, 40.64802449261564],
[-73.888781872065422, 40.648203152193005],
[-73.888813043733506, 40.648340702560525],
[-73.889246779360249, 40.648745653606738],
[-73.889534308467233, 40.648880222586264],
[-73.890067801390515, 40.649323635641089],
[-73.890217821764026, 40.649375843248713],
[-73.890335291412256, 40.649347769001956],
[-73.890137010169738, 40.649170412116426],
[-73.890347347597611, 40.649033605778691],
[-73.890567929885705, 40.649208632935014],
[-73.891251471744781, 40.650025597383937],
[-73.89000589190583, 40.651148697131077],
[-73.882213648543939, 40.654518638085079],
[-73.881721880576805, 40.653753827322234],
[-73.879925986620279, 40.651334759896805]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK21",
"NTAName": "Seagate-Coney Island",
"Shape_Leng": 51792.98503989999881,
"Shape_Area": 38728989.1671
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.974610918789224, 40.583129875625701],
[-73.974517871516582, 40.581513261571445],
[-73.974633768477986, 40.579974345605997],
[-73.981938396122814, 40.579199708921422],
[-73.981563673979906, 40.576981820497402],
[-73.981201151546429, 40.575564282623411],
[-73.979638503535583, 40.575536730754294],
[-73.977867989018193, 40.575430464835549],
[-73.976609230055217, 40.575304286001831],
[-73.973528403240408, 40.574804025227756],
[-73.973293885312273, 40.575265264369925],
[-73.973028444316768, 40.576050054410508],
[-73.970781559758137, 40.575787605512652],
[-73.969920148018304, 40.575582621400045],
[-73.968258788175675, 40.575045488990824],
[-73.96795533369405, 40.575012553710827],
[-73.967657435234784, 40.575043682490389],
[-73.967567072914207, 40.574881526949099],
[-73.964711288595268, 40.574782617767994],
[-73.962861179987783, 40.574980140758939],
[-73.959417782885453, 40.575177983139191],
[-73.959391822474345, 40.573912109249783],
[-73.959828649112396, 40.573929309635673],
[-73.960908859595079, 40.573865028946599],
[-73.962107695507598, 40.573713520018522],
[-73.96720294103956, 40.573326317397424],
[-73.967435678590405, 40.573208969671462],
[-73.967363900805694, 40.573044568952177],
[-73.9674262847454, 40.57298510896922],
[-73.967531497537252, 40.573190731882022],
[-73.968390378289072, 40.573154442437477],
[-73.968848939446502, 40.573058027445029],
[-73.969451262682838, 40.57285728036333],
[-73.969211980180347, 40.572335376423631],
[-73.969246212155667, 40.572304075654522],
[-73.969558951517385, 40.572808580460709],
[-73.969961102676365, 40.572860024587627],
[-73.970853631402832, 40.572770515279991],
[-73.971329896263413, 40.572643810384029],
[-73.971350445875345, 40.572599459040113],
[-73.971377857913339, 40.572510753098854],
[-73.971142487945215, 40.572050631514564],
[-73.971135152197391, 40.571960151633412],
[-73.971183063557177, 40.571941899084152],
[-73.971517909202873, 40.572581681399228],
[-73.971607064523894, 40.572628223919821],
[-73.97249673747082, 40.572576256747396],
[-73.973146933443587, 40.572414639995245],
[-73.973345022298105, 40.572321214006102],
[-73.97323268078631, 40.571905865966954],
[-73.973249901151632, 40.571626685606411],
[-73.973325157562684, 40.5716762781272],
[-73.973448053256831, 40.572272106969329],
[-73.973732099712095, 40.572286924591374],
[-73.974847627624712, 40.572164541765986],
[-73.975470819686947, 40.571969003817038],
[-73.975405640942185, 40.571421040640494],
[-73.975484327343878, 40.571454977344025],
[-73.975517188203838, 40.571694315280347],
[-73.975679180292659, 40.571955984497315],
[-73.975925520915297, 40.572018657437525],
[-73.976842562480016, 40.571948397930115],
[-73.977301100927306, 40.571862385946275],
[-73.977663845222338, 40.571729387798953],
[-73.977568200912074, 40.5712466666591],
[-73.977670875897331, 40.571171020079184],
[-73.978075997982245, 40.571229570128672],
[-73.977715330724891, 40.571251913842204],
[-73.977751279497596, 40.571680289782549],
[-73.9778079653709, 40.571756200609073],
[-73.977999244940349, 40.571830476771893],
[-73.978454865114728, 40.57189220424457],
[-73.979100015568946, 40.571840698017972],
[-73.979456810466488, 40.571742768460929],
[-73.97984694469406, 40.571539319610125],
[-73.979805924776684, 40.571403634548489],
[-73.979723822913741, 40.571346217412454],
[-73.979415013658198, 40.571297323869025],
[-73.97944328367619, 40.571220925948012],
[-73.979754647456801, 40.571249682581978],
[-73.979959889266638, 40.571440189997901],
[-73.980007715722451, 40.571698509185957],
[-73.980325921601164, 40.571737702218449],
[-73.98104449475359, 40.571680420365979],
[-73.981841806513458, 40.57146920355467],
[-73.982040758525159, 40.571480370522458],
[-73.981992391989934, 40.571351813309306],
[-73.981598911234499, 40.571307395484226],
[-73.981544174273836, 40.571273466484385],
[-73.981571554234293, 40.571249988424803],
[-73.981947940423851, 40.571237002157474],
[-73.982095043462365, 40.57134661147844],
[-73.982177106251882, 40.571560578454381],
[-73.982255803189219, 40.571568418289736],
[-73.982827232018309, 40.571542413574534],
[-73.983672701532626, 40.571407057687367],
[-73.983404407376767, 40.570165544510743],
[-73.98305809245096, 40.570209656268474],
[-73.983043288837251, 40.570145860485354],
[-73.983391685025595, 40.57009468451696],
[-73.983269966753298, 40.569541893853689],
[-73.983360580392855, 40.569529993984119],
[-73.9834852186614, 40.570089015062742],
[-73.983821253949017, 40.570045789481732],
[-73.983839494892607, 40.570112467157912],
[-73.983488421466973, 40.570156029543888],
[-73.983757903827424, 40.571396227250823],
[-73.986450876547735, 40.571148908407835],
[-73.986467999186246, 40.57107846272519],
[-73.986546685941008, 40.571133264865786],
[-73.988037167444531, 40.570985108266179],
[-73.988620254155521, 40.570896051314065],
[-73.988577720388719, 40.570697909504929],
[-73.988664764781717, 40.570729067240109],
[-73.9887214578292, 40.570883692082539],
[-73.990262675274394, 40.570708340117214],
[-73.990773103898334, 40.570599421837841],
[-73.990717815927454, 40.570259595148507],
[-73.990792647669423, 40.570248648755516],
[-73.990863746848731, 40.570602016242361],
[-73.991193375236165, 40.570611874968193],
[-73.992728548311632, 40.570433788037356],
[-73.992969230148518, 40.570366732042253],
[-73.99298098138074, 40.570196773309185],
[-73.993052899442688, 40.570339025558816],
[-73.993157418867384, 40.570379789438825],
[-73.994019665382993, 40.570411148678836],
[-73.994937632299468, 40.570354674512359],
[-73.995138544368032, 40.570314661206666],
[-73.995135140701905, 40.570066786606752],
[-73.995187260857335, 40.570021877633096],
[-73.99529301203259, 40.570321282713799],
[-73.995764696771019, 40.570392961357264],
[-73.997194938258417, 40.570348649043794],
[-73.99735575750897, 40.570278204147904],
[-73.997369449485078, 40.570137307542872],
[-73.997419662248603, 40.570140854445839],
[-73.997448140485801, 40.570286034393042],
[-73.997667121352009, 40.570374751166142],
[-73.998467779001587, 40.570497396972954],
[-73.99961402575245, 40.57046609660145],
[-73.999658506864321, 40.570382602502754],
[-73.99973291179316, 40.570411511105064],
[-73.999748522224522, 40.570495796956969],
[-74.001064386672581, 40.570401541435288],
[-74.002011670539048, 40.570208758524096],
[-74.002057809975241, 40.570152461896569],
[-74.001983968883678, 40.569596541321197],
[-74.00208547639734, 40.569585983984915],
[-74.00222854386304, 40.570609862768734],
[-74.002487077377097, 40.571738388872433],
[-74.003031861570236, 40.572185594497931],
[-74.00336282592022, 40.572280963097533],
[-74.003734310994247, 40.572286844168957],
[-74.003839236928144, 40.57235922508471],
[-74.003961013863147, 40.572552406730438],
[-74.004401859024767, 40.572797892588078],
[-74.006669156325955, 40.573393648375315],
[-74.008708657301966, 40.573759818587639],
[-74.010074107854265, 40.573830809517624],
[-74.011156687951768, 40.574166761858727],
[-74.012015401911299, 40.574885052474201],
[-74.012321835206748, 40.575652682365046],
[-74.01245951831028, 40.576681770667378],
[-74.012797219345316, 40.577489237133165],
[-74.013022230183878, 40.577804459633391],
[-74.013031480017943, 40.577910012717169],
[-74.012749824703846, 40.57855731173521],
[-74.01235035995137, 40.579221820653757],
[-74.011761242975439, 40.579854082025285],
[-74.011173723052991, 40.580283978751716],
[-74.01054358463756, 40.580614483910033],
[-74.009897638448152, 40.580752651305339],
[-74.00944620589523, 40.580922795403552],
[-74.00858199195919, 40.581421963230518],
[-74.007958303644571, 40.581677050030258],
[-74.007453660081651, 40.581803522847892],
[-74.006047343017357, 40.58198365303577],
[-74.003980235505111, 40.581721295663904],
[-74.002943741578065, 40.581432835520999],
[-74.002205828768041, 40.581365886020357],
[-74.001240326995969, 40.581426264873301],
[-74.000507424144303, 40.581275800781988],
[-74.000011782641778, 40.581251835982506],
[-73.99871927778473, 40.581486428014721],
[-73.998219465029578, 40.581474377236617],
[-73.998071808710563, 40.581418507571392],
[-73.997930193044979, 40.581238173807129],
[-73.997897422207188, 40.581081972805961],
[-73.997991474113959, 40.580765720886717],
[-73.99792055753943, 40.58064984871227],
[-73.997808624704618, 40.580595800869084],
[-73.991829127902761, 40.579247080928766],
[-73.991404286744654, 40.579240358190276],
[-73.991071412969774, 40.579331445319625],
[-73.99036206466559, 40.579424580120467],
[-73.989579561386037, 40.579192941693648],
[-73.989447971861935, 40.579055815691419],
[-73.988990935563393, 40.578835099968813],
[-73.988428337694288, 40.57881584261947],
[-73.988142083563275, 40.578865963713781],
[-73.987608379346511, 40.57903313614559],
[-73.987616315213359, 40.579064168652693],
[-73.98786647687939, 40.579026351107842],
[-73.987451518249273, 40.579131513198341],
[-73.987586539582097, 40.579040701764228],
[-73.987390643884055, 40.579086983063661],
[-73.986695399970728, 40.579814908132533],
[-73.987021385117885, 40.580022764875189],
[-73.986165267445912, 40.580950228792346],
[-73.985885673948516, 40.581144424564741],
[-73.986045099162396, 40.581720684648971],
[-73.986945069293242, 40.581136421807969],
[-73.987347213824037, 40.580608059532643],
[-73.987574002281733, 40.580031451227399],
[-73.988009733767598, 40.579670687155726],
[-73.988117305416154, 40.579679685952549],
[-73.988903539238194, 40.580008678684663],
[-73.989136362014108, 40.580214877927254],
[-73.989541951502844, 40.580415365221015],
[-73.989699693838801, 40.580421107303387],
[-73.989955049217642, 40.580661670033962],
[-73.989717624542152, 40.580838226572347],
[-73.989287250166981, 40.581957582910121],
[-73.988299482949245, 40.583466746658146],
[-73.986544570422637, 40.583658591316443],
[-73.987101203194527, 40.584644591762547],
[-73.986275736124355, 40.584479981432487],
[-73.985481580198652, 40.584519677417425],
[-73.984927310362224, 40.584595952702195],
[-73.984821928353739, 40.584168523276638],
[-73.981754520761697, 40.583583763728086],
[-73.980447909360649, 40.583410642881447],
[-73.980065679751519, 40.583317863745982],
[-73.97742525335677, 40.582906593171586],
[-73.974610918789224, 40.583129875625701]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK23",
"NTAName": "West Brighton",
"Shape_Leng": 14120.420783199999278,
"Shape_Area": 8748036.47375
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.968889958779428, 40.575261238994102],
[-73.969920148018304, 40.575582621400045],
[-73.970781559758137, 40.575787605512652],
[-73.973028444316768, 40.576050054410508],
[-73.973293885312273, 40.575265264369925],
[-73.973528403240408, 40.574804025227756],
[-73.976609230055217, 40.575304286001831],
[-73.977867989018193, 40.575430464835549],
[-73.979638503535583, 40.575536730754294],
[-73.981201151546429, 40.575564282623411],
[-73.981563673979906, 40.576981820497402],
[-73.981938396122814, 40.579199708921422],
[-73.974633768477986, 40.579974345605997],
[-73.974517871516582, 40.581513261571445],
[-73.974610918789224, 40.583129875625701],
[-73.970453734740815, 40.583892279787023],
[-73.968999792948608, 40.584063503932647],
[-73.967815849646925, 40.584539050676227],
[-73.966615314619773, 40.584571036935834],
[-73.968681195432737, 40.575630882762674],
[-73.968889958779428, 40.575261238994102]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX01",
"NTAName": "Claremont-Bathgate",
"Shape_Leng": 29972.776027500000055,
"Shape_Area": 16451627.1492
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.890389540095015, 40.854689058587738],
[-73.892166874032299, 40.852769462390668],
[-73.893071408956018, 40.853249987047739],
[-73.894317741349937, 40.851891311471284],
[-73.894787649287352, 40.851081667595672],
[-73.894072590426561, 40.85071318966213],
[-73.894946280008654, 40.849104853027931],
[-73.896177129767523, 40.846658321071928],
[-73.895358490328604, 40.846518031633721],
[-73.893849860210551, 40.84647439404506],
[-73.893373098557035, 40.846401193778348],
[-73.892901023470003, 40.846268330322452],
[-73.893984675222782, 40.844703958912838],
[-73.895378361144751, 40.842938779458514],
[-73.895914870988364, 40.843142919119195],
[-73.896661617333578, 40.843524607067891],
[-73.901225349875489, 40.835499911237356],
[-73.901341011720092, 40.835441324410574],
[-73.905531167850171, 40.829104132590366],
[-73.91049010681661, 40.83073737253013],
[-73.907402005308214, 40.836232283418518],
[-73.905979404417266, 40.838505195802561],
[-73.905383580073945, 40.839768983469476],
[-73.905607394542656, 40.839843619302009],
[-73.905192080110197, 40.840707581824134],
[-73.904831219701393, 40.84480034209291],
[-73.901344045741496, 40.84442875076973],
[-73.895608833461807, 40.854570370097868],
[-73.894775960693622, 40.855929525634529],
[-73.89174395026582, 40.860177147816358],
[-73.891153756122137, 40.860913616167302],
[-73.891062806792334, 40.861529412117228],
[-73.890275555707817, 40.86110907335059],
[-73.891125688306687, 40.860061825009709],
[-73.891086765745385, 40.856597257047547],
[-73.890442592832812, 40.85504635186544],
[-73.890389540095015, 40.854689058587738]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX35",
"NTAName": "Morrisania-Melrose",
"Shape_Leng": 27740.845659599999635,
"Shape_Area": 16891753.524
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.896965890848577, 40.834342145895249],
[-73.896301999655876, 40.833543217997303],
[-73.896472962090897, 40.833047568106011],
[-73.896900178752205, 40.83103333642682],
[-73.897172210353702, 40.830368832895488],
[-73.894692051442391, 40.8306190943945],
[-73.893360418190838, 40.830152530588251],
[-73.889911064731791, 40.830124192291144],
[-73.887613078692979, 40.82933741954033],
[-73.886012627123819, 40.828238531426095],
[-73.886096241671609, 40.827655777357926],
[-73.88789510901421, 40.826743185296529],
[-73.889979424878362, 40.826809992740756],
[-73.892932261010628, 40.826787036532345],
[-73.894835229240527, 40.826246841212203],
[-73.895152778599837, 40.827834290178146],
[-73.895110208608202, 40.82803689895232],
[-73.895485227646702, 40.828248540882335],
[-73.899797567567646, 40.827684354294504],
[-73.900935107008564, 40.82792810175718],
[-73.901648955605125, 40.826256978347054],
[-73.900505404703139, 40.826007622430005],
[-73.901987585974297, 40.822440423105597],
[-73.900611410808267, 40.82210880792951],
[-73.901292776270324, 40.820475442614168],
[-73.905658902478123, 40.821556532634403],
[-73.909908941379342, 40.822551108117374],
[-73.911593918018681, 40.822126774511915],
[-73.911816157567358, 40.82203502241245],
[-73.911891549216691, 40.822141481777294],
[-73.916215886271218, 40.82346793022586],
[-73.915877358172821, 40.824103731527224],
[-73.916774005197098, 40.824387087373175],
[-73.916087827917409, 40.824837851830807],
[-73.91661368442395, 40.824992308507383],
[-73.915411082354794, 40.825773909123171],
[-73.914751210647665, 40.825200473433682],
[-73.913511916760797, 40.824804944417721],
[-73.913166744370741, 40.825456455312313],
[-73.911309744733984, 40.824848558895035],
[-73.911793619507563, 40.826428155601469],
[-73.911694302385627, 40.827758715809402],
[-73.91030770386979, 40.828772485243213],
[-73.909481783593577, 40.829592118977054],
[-73.908959903099969, 40.830226233044044],
[-73.905531167850171, 40.829104132590366],
[-73.901341011720092, 40.835441324410574],
[-73.901225349875489, 40.835499911237356],
[-73.901215784313749, 40.835410141021327],
[-73.896965890848577, 40.834342145895249]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX17",
"NTAName": "East Tremont",
"Shape_Leng": 29437.68809,
"Shape_Area": 19258749.3604
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.883119825038165, 40.84822109187666],
[-73.882844455748128, 40.847817226451625],
[-73.879194088331602, 40.84532173372957],
[-73.877339072382398, 40.843991755057907],
[-73.878175469586708, 40.842617696045004],
[-73.876798720594053, 40.84229978727668],
[-73.874591753707833, 40.841520647538623],
[-73.874568449506299, 40.841642720121555],
[-73.873992954548001, 40.842561505616771],
[-73.872807082059936, 40.84342426412389],
[-73.871901850338531, 40.843721433488838],
[-73.871092078653859, 40.844324780835031],
[-73.869442304495593, 40.847244180265953],
[-73.868892433408888, 40.84811232162388],
[-73.86941402690951, 40.848788024629101],
[-73.869209445698672, 40.849238372872456],
[-73.868373889316146, 40.848969598246228],
[-73.867859929938646, 40.848864931388306],
[-73.868354658966126, 40.847080233386365],
[-73.868926526932256, 40.846881740609717],
[-73.868753947596616, 40.846584364326063],
[-73.868661938199224, 40.846260153941898],
[-73.868658740272153, 40.845928452779681],
[-73.868741865620834, 40.845609728581628],
[-73.868637217447926, 40.845309843267778],
[-73.868042003918418, 40.844813839306894],
[-73.868892587775392, 40.844409658798511],
[-73.870995180673219, 40.843111392043717],
[-73.872299210891583, 40.841579995738968],
[-73.873597136339228, 40.839798555433369],
[-73.878419249798867, 40.839994590458119],
[-73.880061995597984, 40.840162234733008],
[-73.880271526275195, 40.839896239539399],
[-73.880365837630876, 40.8395405069232],
[-73.880547354365802, 40.839198111175151],
[-73.880808953138697, 40.838887035925204],
[-73.881135502485193, 40.838622141501126],
[-73.881549246594261, 40.838182756683956],
[-73.882003840808153, 40.837443782327149],
[-73.882258312303506, 40.838031218183552],
[-73.882464047968824, 40.838247240902938],
[-73.882853650975306, 40.838495335472459],
[-73.8827476985781, 40.838592341766009],
[-73.884127244839334, 40.839355919306207],
[-73.884648981306185, 40.839174632601036],
[-73.886184321004222, 40.840105044973441],
[-73.886598023451214, 40.839279050108473],
[-73.888137521593393, 40.839862002384741],
[-73.88869040830879, 40.839158026467977],
[-73.88941724869116, 40.839422733882778],
[-73.895378361144751, 40.842938779458514],
[-73.893984675222782, 40.844703958912838],
[-73.892901023470003, 40.846268330322452],
[-73.893373098557035, 40.846401193778348],
[-73.893849860210551, 40.84647439404506],
[-73.895358490328604, 40.846518031633721],
[-73.896177129767523, 40.846658321071928],
[-73.894946280008654, 40.849104853027931],
[-73.894072590426561, 40.85071318966213],
[-73.894787649287352, 40.851081667595672],
[-73.894317741349937, 40.851891311471284],
[-73.893071408956018, 40.853249987047739],
[-73.892166874032299, 40.852769462390668],
[-73.890389540095015, 40.854689058587738],
[-73.889609780779551, 40.853621880548715],
[-73.889633283023144, 40.853173818437561],
[-73.88993961562204, 40.852590762961597],
[-73.88987871399155, 40.852070221026686],
[-73.888952563160757, 40.851440780772968],
[-73.888239740962945, 40.851035366411438],
[-73.887550060066388, 40.850910754062689],
[-73.887285123560233, 40.85082090055792],
[-73.88322877667612, 40.848345878337575],
[-73.883119825038165, 40.84822109187666]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK17",
"NTAName": "Sheepshead Bay-Gerritsen Beach-Manhattan Beach",
"Shape_Leng": 91059.116122599996743,
"Shape_Area": 63343705.968
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.918092564808362, 40.586570335004716],
[-73.918125333696622, 40.586507374499128],
[-73.91805568651229, 40.586436545676733],
[-73.918114893221869, 40.586454053666927],
[-73.918175904598968, 40.586395093266837],
[-73.918262504037557, 40.586404285760928],
[-73.918553387168302, 40.586299934021703],
[-73.91919033106555, 40.585962493141999],
[-73.919611163540722, 40.58616907889423],
[-73.919976132938331, 40.586059235165003],
[-73.920139229238075, 40.5860569452635],
[-73.920184911955232, 40.585990609887197],
[-73.920046916467783, 40.585988600256748],
[-73.920174897506371, 40.585972430677764],
[-73.92017117347487, 40.585939908784958],
[-73.920252689665205, 40.585962919603837],
[-73.920202483033748, 40.585983926442893],
[-73.920218740831729, 40.586026976881172],
[-73.920404982311013, 40.586089779645668],
[-73.920550808165714, 40.586009799326774],
[-73.920821568760772, 40.585995773200665],
[-73.920868429261972, 40.585921080321036],
[-73.920728374934995, 40.585777970772007],
[-73.920669808659596, 40.585773626519611],
[-73.920739016601374, 40.585730096693531],
[-73.92089145806905, 40.585903061300435],
[-73.920902175794424, 40.585830406473782],
[-73.920989056990734, 40.585769048620705],
[-73.920906038363853, 40.585590581533602],
[-73.921012183320244, 40.585753595858655],
[-73.92147080915781, 40.585746195162464],
[-73.921762614219872, 40.585799705445744],
[-73.921781487584497, 40.585733486204767],
[-73.921835608397132, 40.585776575921379],
[-73.921899551879449, 40.58569317567391],
[-73.921948174388547, 40.58571175204424],
[-73.921848191077729, 40.585838421436357],
[-73.922118512898621, 40.585810514153025],
[-73.922353373772992, 40.586023936562341],
[-73.922716915812416, 40.585996761617587],
[-73.922964098264202, 40.585894456561164],
[-73.923341180797991, 40.585995220555446],
[-73.923535158909289, 40.585977723369538],
[-73.923698330456006, 40.585941599249381],
[-73.923895018840881, 40.585800713812297],
[-73.924042621471685, 40.585899717842175],
[-73.924021820754263, 40.585773535332557],
[-73.924295769220308, 40.585682758902337],
[-73.924679452837736, 40.585637746453415],
[-73.924757098656116, 40.585632575099659],
[-73.924860511512989, 40.585713398157296],
[-73.924993314265436, 40.58571284597128],
[-73.925203615142465, 40.58580627115542],
[-73.925222544594163, 40.585879044353653],
[-73.925466445052791, 40.586092369107185],
[-73.925418357534781, 40.586196514062841],
[-73.92554277632243, 40.586193290070675],
[-73.925708472197087, 40.586402684622115],
[-73.925706009483562, 40.586467491616339],
[-73.925790619193265, 40.58645844726842],
[-73.926002798041893, 40.586630936862171],
[-73.925983984276158, 40.586680240041972],
[-73.926075818398871, 40.586679729897547],
[-73.926303734897076, 40.586902116967138],
[-73.926370186370349, 40.586871420938628],
[-73.926573228901475, 40.587049125842078],
[-73.926497818990882, 40.587096082357078],
[-73.926739776715308, 40.587188506716039],
[-73.926842328019575, 40.587289689954183],
[-73.926778744975351, 40.587330385064412],
[-73.92709462919936, 40.587560457033739],
[-73.927127858330692, 40.587540225316751],
[-73.926967338343005, 40.587353795865695],
[-73.927187610782269, 40.58755950327776],
[-73.927099356257244, 40.587591037162994],
[-73.927207741889035, 40.58772275918674],
[-73.927650069995394, 40.587466693287652],
[-73.927682877473231, 40.587361600134038],
[-73.927665990625286, 40.587475013439352],
[-73.927247505213728, 40.587753274719788],
[-73.927356809288938, 40.588022176276155],
[-73.927945983511307, 40.587658820005039],
[-73.927874260205357, 40.587588158853784],
[-73.927916257411638, 40.587548735386818],
[-73.92807906817859, 40.58770246052319],
[-73.928030414951948, 40.587731484346513],
[-73.927955552924118, 40.587666603557558],
[-73.927369357535397, 40.588044598802959],
[-73.927438236915293, 40.588147891351888],
[-73.927404523116664, 40.588206445198104],
[-73.927503962039822, 40.588221360130277],
[-73.927901758069154, 40.587953409280338],
[-73.928021852764232, 40.588068756350872],
[-73.927923180483148, 40.587996187276786],
[-73.927454677909921, 40.588299564074042],
[-73.927486125815207, 40.588320574518626],
[-73.927434896819278, 40.588369014793614],
[-73.927550359723398, 40.588513531318071],
[-73.927633720655066, 40.588458920017672],
[-73.927761436391137, 40.588660609758797],
[-73.92395294850094, 40.591139850525039],
[-73.924199633926591, 40.591364280188685],
[-73.924601299385657, 40.591199325003124],
[-73.924756921434039, 40.591044529716669],
[-73.925888010194086, 40.590352034559913],
[-73.928159051230963, 40.588825249589981],
[-73.928362712668061, 40.588969016091845],
[-73.928418858090339, 40.588934035098141],
[-73.928216169948584, 40.588783912903871],
[-73.928358662963376, 40.588865431329374],
[-73.928673449337893, 40.588635164878106],
[-73.928630614815631, 40.588572636421041],
[-73.928757615536753, 40.58867429700576],
[-73.928695670822123, 40.588638434100751],
[-73.92839036790626, 40.588863457828126],
[-73.928469107603163, 40.588932555108236],
[-73.928377459715151, 40.588981323616018],
[-73.928440904937631, 40.589030427136819],
[-73.928620264991991, 40.58912043629617],
[-73.928913518453925, 40.588919632774434],
[-73.928881396844318, 40.588853719575326],
[-73.928951029273051, 40.588909642409114],
[-73.928631587027041, 40.589126361638932],
[-73.928734264673039, 40.589147165167702],
[-73.929134403826396, 40.588879241681937],
[-73.929258352174131, 40.588932373437252],
[-73.929133120057031, 40.588896603969211],
[-73.928848206983318, 40.589091286834794],
[-73.928840552195254, 40.589150125109526],
[-73.928757034994192, 40.589152966924985],
[-73.928878448959807, 40.5892099567237],
[-73.928846791573591, 40.589232123876258],
[-73.929063101257839, 40.589295923803739],
[-73.929084173054093, 40.589261065908374],
[-73.929645245279531, 40.589361846343536],
[-73.929981878661906, 40.589515997878614],
[-73.930013991319058, 40.589461997600047],
[-73.929750943531076, 40.589320355186516],
[-73.929361283544694, 40.589250661977275],
[-73.92937312241645, 40.589223659165327],
[-73.929766157734122, 40.589292068442461],
[-73.930034274505516, 40.589425996500701],
[-73.930577057182575, 40.589890641203155],
[-73.930389903301801, 40.589773484264917],
[-73.930340743125853, 40.589807684238359],
[-73.930228466835558, 40.589688136025046],
[-73.930271247812144, 40.589653162598459],
[-73.930162355018879, 40.589563697105724],
[-73.930103259887659, 40.589606105071411],
[-73.930375432473355, 40.589940459710405],
[-73.930297880916754, 40.590035167629964],
[-73.93056682228962, 40.590016943606123],
[-73.93058940447365, 40.589952591132516],
[-73.930628493644264, 40.59025299033776],
[-73.930589092257762, 40.590252966543588],
[-73.930569609519026, 40.590042691535906],
[-73.930467689171536, 40.590061372588018],
[-73.930528883332585, 40.590307988677502],
[-73.930652138464367, 40.590290979492266],
[-73.930674343554628, 40.590590721315145],
[-73.930627578262659, 40.590590693091265],
[-73.930631314133649, 40.590329258099992],
[-73.930525072287026, 40.59033311292719],
[-73.930471350802236, 40.590859601196989],
[-73.930499054447324, 40.590929956321339],
[-73.930623441806503, 40.590918694275757],
[-73.930647499486284, 40.590619683169187],
[-73.930641067665022, 40.590944566419722],
[-73.930493841491838, 40.590945798260336],
[-73.930460136619317, 40.591001218518294],
[-73.930696415921219, 40.591018541399791],
[-73.930456320758651, 40.591025416994071],
[-73.930449601729251, 40.591079691929131],
[-73.930725787957527, 40.591089860265519],
[-73.930505922827351, 40.591093850737941],
[-73.930371977849546, 40.591211400876297],
[-73.930426671696779, 40.591247715831962],
[-73.930604443069598, 40.591186176220965],
[-73.930600669062329, 40.591484582041666],
[-73.930564284293794, 40.591495123287935],
[-73.930574953010691, 40.591229731111348],
[-73.930465367658726, 40.591273407093517],
[-73.930499452490849, 40.59129603764017],
[-73.930405416622051, 40.591730942142931],
[-73.930461857134702, 40.591720848494454],
[-73.930571177550078, 40.591528137431638],
[-73.93060580656639, 40.591541362005849],
[-73.930465294205177, 40.591747258891715],
[-73.9304249356843, 40.592246341830887],
[-73.930437580935219, 40.591747242118338],
[-73.930399056021386, 40.591755596428975],
[-73.930301619930574, 40.592299178721476],
[-73.93036426041914, 40.592299087031073],
[-73.930388506965031, 40.592252239751886],
[-73.930364436033003, 40.592480093513544],
[-73.930362216339915, 40.59231177060942],
[-73.930301099510402, 40.592308036853382],
[-73.930286563483634, 40.592445575465348],
[-73.930204418852895, 40.59237817596906],
[-73.930176166341994, 40.592406220970382],
[-73.930353645245049, 40.592554950294414],
[-73.930265108613881, 40.592619404932535],
[-73.930326340603941, 40.59255368983694],
[-73.930189706582809, 40.592454118288771],
[-73.930023010262047, 40.592683046384785],
[-73.930115932472802, 40.592726278084541],
[-73.930101916565647, 40.59276076618967],
[-73.930212514893668, 40.592678370292404],
[-73.93010658211621, 40.592804955384828],
[-73.929990088155122, 40.592728285882018],
[-73.929912502223758, 40.592853394873416],
[-73.93007018426367, 40.592902776553736],
[-73.93009899390043, 40.592872440452723],
[-73.93005244539404, 40.59300024352072],
[-73.930063535951277, 40.592917168468389],
[-73.929890669643669, 40.592870791368057],
[-73.929712820366021, 40.593120048248032],
[-73.929981208803909, 40.593158886907169],
[-73.930042384195886, 40.593060879318038],
[-73.92995591843642, 40.593308572326194],
[-73.929975936292905, 40.593173815413437],
[-73.929741473226528, 40.593143922445535],
[-73.92982317336849, 40.593372695598802],
[-73.930039224626, 40.593348430884191],
[-73.929800684045375, 40.593391441458081],
[-73.929780817420578, 40.593436741471585],
[-73.92985305834155, 40.593525079228087],
[-73.929860320306844, 40.593782101239299],
[-73.930016509521863, 40.594094535056954],
[-73.930215194703152, 40.593972944184507],
[-73.930081594531387, 40.593595462871228],
[-73.930227562800411, 40.593930620896849],
[-73.930459345646923, 40.593814497242171],
[-73.930524887278011, 40.593880240701182],
[-73.930359688756027, 40.593975941323578],
[-73.930546790707112, 40.594199304085528],
[-73.930299344703215, 40.593938054510616],
[-73.930040119476928, 40.594104887330424],
[-73.930432460636794, 40.594402674949485],
[-73.930613496877825, 40.594476810566896],
[-73.930761229054937, 40.594381900521164],
[-73.930623056186292, 40.594204497659469],
[-73.930834465024674, 40.594413571304578],
[-73.9307683990762, 40.594392122116837],
[-73.930663035101119, 40.594463950932813],
[-73.930769010269614, 40.594493014815633],
[-73.930832065874498, 40.594430655669164],
[-73.930935161146081, 40.594459949860976],
[-73.9312630157238, 40.594244186118601],
[-73.931220560048402, 40.594183317263102],
[-73.931325121460702, 40.594276256189993],
[-73.931276505557548, 40.594256764914121],
[-73.930954634264012, 40.594465945206167],
[-73.931366847608771, 40.594529172094077],
[-73.931587582299272, 40.594495062910866],
[-73.931615620362095, 40.594365963109446],
[-73.931739947737213, 40.594370867902803],
[-73.931763873340827, 40.594284098762429],
[-73.931758081012859, 40.594384328258286],
[-73.931631775891603, 40.594376622558627],
[-73.931613137372651, 40.594503517911782],
[-73.931368063433709, 40.594546450784669],
[-73.930846267272827, 40.594451525297167],
[-73.930781313796189, 40.594498955276755],
[-73.931138203750578, 40.59464019048005],
[-73.93169652225825, 40.594709929228614],
[-73.931933649839792, 40.59469240430235],
[-73.932308263954042, 40.594916340487096],
[-73.932452176884496, 40.594914967665716],
[-73.932371883310822, 40.594802363889926],
[-73.932563438393345, 40.594763472296982],
[-73.932437629032236, 40.594843636039769],
[-73.932477028886822, 40.594916096675931],
[-73.932671473270631, 40.594911753314058],
[-73.932826549188206, 40.594803744969504],
[-73.932676539757509, 40.594236417967579],
[-73.932350899995612, 40.593868469124253],
[-73.931758907430861, 40.592830104899178],
[-73.93167410829318, 40.592853950218874],
[-73.931760735343985, 40.593037094133457],
[-73.9317109079429, 40.593050300520481],
[-73.931534952933262, 40.592692830518892],
[-73.931625260004168, 40.592827948760409],
[-73.931740875119829, 40.59279439369439],
[-73.931564625602917, 40.59255174077164],
[-73.931436756138055, 40.592167134518093],
[-73.931309322931654, 40.592160581226089],
[-73.931139561234943, 40.592008928747859],
[-73.931364067928428, 40.591928373072179],
[-73.931399979863869, 40.59180489056213],
[-73.931009893431579, 40.591931042480915],
[-73.930994659732264, 40.591818198986061],
[-73.931153602383475, 40.591855069690624],
[-73.931353010206649, 40.591791193962251],
[-73.931301308550132, 40.591692970610318],
[-73.931425654397444, 40.591604184147364],
[-73.931070404597605, 40.591728812269537],
[-73.931076021598102, 40.591597592767727],
[-73.931077024843475, 40.591688696653421],
[-73.931230571089529, 40.591641983133421],
[-73.93130541636036, 40.591360358668304],
[-73.931245924948186, 40.591636976995822],
[-73.931422527160365, 40.591588570390883],
[-73.931422322536918, 40.591506634691527],
[-73.931492919683606, 40.591481039286975],
[-73.931543347331072, 40.591350471183389],
[-73.931480849458538, 40.59135294100976],
[-73.931466548946304, 40.591398901858959],
[-73.931432724208165, 40.591239241307946],
[-73.931476475035254, 40.59134207228152],
[-73.931546649803082, 40.591337935423425],
[-73.931559394416198, 40.59129296407076],
[-73.931552722119889, 40.591199797036374],
[-73.931428831043874, 40.591136381001725],
[-73.931416002948964, 40.590609105922525],
[-73.931341259166999, 40.590615463252568],
[-73.931133019598107, 40.589546118924019],
[-73.931212948589547, 40.589531308119263],
[-73.931091781645833, 40.589326565572101],
[-73.930888800735744, 40.589207340173722],
[-73.930704885959287, 40.588942066777037],
[-73.930685680598131, 40.588821954226788],
[-73.930624387219595, 40.588849071568951],
[-73.930568895627175, 40.588778436819354],
[-73.930091382132943, 40.588988862378528],
[-73.930070047635937, 40.588954093083736],
[-73.930586020908763, 40.588751292833024],
[-73.930534441941617, 40.588679590084467],
[-73.930650219275236, 40.588669869770712],
[-73.9306353232422, 40.588623580120164],
[-73.930547334351218, 40.588628541291364],
[-73.930399675975096, 40.588465520415262],
[-73.929744107808702, 40.588641079227052],
[-73.929728463801865, 40.588613915829733],
[-73.930385452562675, 40.588441616078839],
[-73.93036150933797, 40.588278995714077],
[-73.930263381574733, 40.588229816921846],
[-73.929702550204453, 40.587607355474141],
[-73.929722326467314, 40.587560082903785],
[-73.931349178240637, 40.587328167229479],
[-73.931365561929766, 40.587169225128932],
[-73.931251913330513, 40.586849825214642],
[-73.93118073044306, 40.586798733713387],
[-73.93104528754786, 40.586814160037136],
[-73.931058092347186, 40.586907276373012],
[-73.930814450178019, 40.58692342249568],
[-73.930805930352264, 40.58689626302754],
[-73.929643222251116, 40.587031326968486],
[-73.930820197740857, 40.58687563400688],
[-73.930828712603727, 40.586908224439085],
[-73.93091135186279, 40.586902843190792],
[-73.931016798516367, 40.586885528219142],
[-73.931012180684718, 40.586830487683045],
[-73.929668946906716, 40.586955311677272],
[-73.929563433128664, 40.587035622623887],
[-73.929194376664967, 40.587087532114403],
[-73.928573940024464, 40.587061501869215],
[-73.928296749540266, 40.586917956054933],
[-73.928082329716432, 40.586697693435021],
[-73.928119578844317, 40.586329149696958],
[-73.928038944034142, 40.586323829754036],
[-73.928110398925867, 40.58629489156008],
[-73.928149693795731, 40.586178107260309],
[-73.927919337858469, 40.586135806046094],
[-73.927925144409144, 40.586093653926547],
[-73.928164738609425, 40.586114003495112],
[-73.928172739299569, 40.586172852198857],
[-73.928276724976143, 40.586106943570066],
[-73.92815700695617, 40.585864523066064],
[-73.927859990748374, 40.585917423186757],
[-73.927743111531484, 40.586050065209321],
[-73.927369557858881, 40.586006585316326],
[-73.927336834717934, 40.586040384460503],
[-73.927532713767889, 40.586259441808579],
[-73.927586418299001, 40.586254135332325],
[-73.927595598574655, 40.586400097098434],
[-73.927516219296891, 40.58639826671498],
[-73.927511688804216, 40.586270107541239],
[-73.927280797270484, 40.586043909008509],
[-73.927372477274929, 40.585959204313497],
[-73.927304338238798, 40.585865928419864],
[-73.926762975065316, 40.585600371980576],
[-73.926662729557506, 40.585466812383146],
[-73.926380419469922, 40.585295756348145],
[-73.926305636422299, 40.585361566237225],
[-73.926601959125108, 40.585529071239215],
[-73.926548209633268, 40.58557531538758],
[-73.925493543583087, 40.585019292003146],
[-73.925528608745779, 40.584978376572657],
[-73.926275295422371, 40.585352647441979],
[-73.926345420747737, 40.585276154250529],
[-73.925833359168905, 40.58495307722125],
[-73.9267829272558, 40.58486143783675],
[-73.927120818501933, 40.584879357670829],
[-73.928404771700315, 40.585262066841345],
[-73.928589120221545, 40.585207259721784],
[-73.931399475763072, 40.586079895491217],
[-73.931269450008614, 40.585436393418767],
[-73.93019077880875, 40.585085593039409],
[-73.930096162340163, 40.584502076232027],
[-73.931076412755871, 40.584379675531061],
[-73.931063837188219, 40.584318467639697],
[-73.932042449704326, 40.584233960077768],
[-73.931863454942757, 40.583082861252372],
[-73.931977212163233, 40.583110542036131],
[-73.931928111867549, 40.58286976893524],
[-73.932376957428247, 40.5829185099781],
[-73.932371968887068, 40.582961384699161],
[-73.932013799611525, 40.582925981744872],
[-73.93201839411536, 40.583111124618526],
[-73.932598770576419, 40.582919267411775],
[-73.933040473669109, 40.582941455495074],
[-73.93349145637734, 40.583058717260258],
[-73.933489528337233, 40.582964588043851],
[-73.934209714870164, 40.582979798390831],
[-73.934207728653888, 40.583094258737994],
[-73.934379702092329, 40.583139033674037],
[-73.934559929029476, 40.583165413126302],
[-73.934560571019816, 40.583020173832239],
[-73.935281943721549, 40.583096976870252],
[-73.935276112469012, 40.583242913181309],
[-73.935690716397673, 40.583275093189116],
[-73.935719338755547, 40.583152699792812],
[-73.93567676468075, 40.583153530701026],
[-73.935673531459869, 40.58301942441252],
[-73.935824392098567, 40.583021115551659],
[-73.935766572110879, 40.58327750984968],
[-73.936132335854538, 40.583314474089633],
[-73.93625253184905, 40.583247188621982],
[-73.936287231894042, 40.5830009035583],
[-73.936128022111774, 40.582979364522004],
[-73.936098249696215, 40.583011638934032],
[-73.936096686913586, 40.582948745832866],
[-73.936566070950661, 40.582957648786788],
[-73.93656436830716, 40.582986944224679],
[-73.936300312726843, 40.583002955675838],
[-73.936317161954562, 40.583179051201462],
[-73.936539128470926, 40.583163620917936],
[-73.936575924407833, 40.583240505589949],
[-73.936974274638089, 40.583230325908694],
[-73.936987678970041, 40.583016272171555],
[-73.936633074225071, 40.582972211904064],
[-73.937059216774713, 40.582977982320124],
[-73.937052904510296, 40.583084699478015],
[-73.93763269743296, 40.583096268284059],
[-73.937026755887231, 40.583125872599325],
[-73.937005584082655, 40.583016019471366],
[-73.937014810871105, 40.583233272364318],
[-73.937124597984507, 40.583346730164195],
[-73.937297440067908, 40.58334884150787],
[-73.937324708257975, 40.583292818456357],
[-73.9378318029718, 40.583293093958567],
[-73.937887327490301, 40.583343966662575],
[-73.938119176951389, 40.583340478492531],
[-73.938094206277697, 40.583116810716952],
[-73.938239914138194, 40.583116889132853],
[-73.938257457699123, 40.583279567141687],
[-73.938330891397783, 40.583341198278113],
[-73.938552763024276, 40.583337984991608],
[-73.938477128858722, 40.583177897271135],
[-73.93866846657744, 40.58316442817501],
[-73.938627557651174, 40.583067021797454],
[-73.938786604415156, 40.583070937875441],
[-73.938668517306297, 40.583084064326215],
[-73.938697458647027, 40.583164939367187],
[-73.939296404506692, 40.583167268735288],
[-73.939301530189695, 40.583333215054104],
[-73.939825389164895, 40.583331446250838],
[-73.939828840505442, 40.583170535692517],
[-73.939858516427236, 40.583331334095774],
[-73.940577458289098, 40.58332822557346],
[-73.940566089477699, 40.583087368308057],
[-73.940109036170483, 40.583075068681325],
[-73.940676578022732, 40.583065805567323],
[-73.940585684712318, 40.583085976388936],
[-73.940588728099328, 40.583206947456418],
[-73.940628555083066, 40.583205295764905],
[-73.940636493303245, 40.583328341195632],
[-73.940700194488329, 40.583327624731751],
[-73.940916454907381, 40.583302406531288],
[-73.940897105433805, 40.583087606577507],
[-73.940738406046293, 40.583075612817524],
[-73.941025179186852, 40.583070361906188],
[-73.940914503629301, 40.583088338415557],
[-73.940934220853563, 40.5833023064367],
[-73.941156996754884, 40.583299227468054],
[-73.941098445655328, 40.583094776197171],
[-73.941201557288863, 40.583090465204968],
[-73.941154086105129, 40.583113222225229],
[-73.941209298239841, 40.583298504883025],
[-73.941263511646369, 40.583336756295587],
[-73.941440508572484, 40.583340146973583],
[-73.941488337183401, 40.583528736446176],
[-73.941544387232284, 40.583518083299715],
[-73.941574080836176, 40.583607555436785],
[-73.942551335652936, 40.583514476170805],
[-73.942020333527509, 40.583110423782443],
[-73.942149387442825, 40.583106679550568],
[-73.942701678289026, 40.583508797614286],
[-73.943047097119248, 40.583492129464553],
[-73.942563161909774, 40.583127347516431],
[-73.94268774005667, 40.583122816572029],
[-73.943195062239454, 40.583489662633575],
[-73.943544675309226, 40.583471014361066],
[-73.943093348473809, 40.583134545214705],
[-73.943228155465562, 40.583130820211032],
[-73.943691530045712, 40.583467754265953],
[-73.94406764167104, 40.583472009110366],
[-73.943635897957421, 40.583145573909533],
[-73.943765117073795, 40.583144718831868],
[-73.944234035871347, 40.583479951646517],
[-73.944618286662347, 40.583496626087666],
[-73.944174584578462, 40.583158291217906],
[-73.944320597521582, 40.583159424877294],
[-73.944775440812947, 40.583507804409805],
[-73.945174777816149, 40.583521378244193],
[-73.944712710301502, 40.583165044530588],
[-73.944845129409146, 40.583164234340913],
[-73.945349925034748, 40.583529052110372],
[-73.945730148645495, 40.583544874558406],
[-73.945266701246254, 40.583182518567234],
[-73.945376052378805, 40.5831819316505],
[-73.945899118880888, 40.583552662610209],
[-73.946286346919536, 40.583568684702762],
[-73.945799412589324, 40.583194639727658],
[-73.945924130012259, 40.583194104435059],
[-73.946434290593515, 40.583563152592404],
[-73.946789450688186, 40.583550467111543],
[-73.946316036487531, 40.583206940210658],
[-73.946454964772983, 40.583205168080021],
[-73.946917962761049, 40.583546033249696],
[-73.947268327053067, 40.58353318156928],
[-73.946822029471946, 40.583191191871023],
[-73.947013908835785, 40.583188100979427],
[-73.947468678613191, 40.583528195362383],
[-73.948367479249271, 40.583488596258235],
[-73.953493220486791, 40.582988198260963],
[-73.953301359956768, 40.58200274963346],
[-73.94969672499397, 40.582319401066641],
[-73.94274062592514, 40.580995589559244],
[-73.933812806639096, 40.581132925742033],
[-73.933813646309247, 40.581213989052408],
[-73.935134076390199, 40.581183789054755],
[-73.935108791151904, 40.581303817020974],
[-73.935095325968348, 40.581210618963176],
[-73.93340042885238, 40.581215388869218],
[-73.933399318690121, 40.581164801525084],
[-73.933763133654693, 40.581183466225319],
[-73.933758013561231, 40.581132041605827],
[-73.933003489164122, 40.58114467541715],
[-73.932971619566516, 40.581283629572575],
[-73.932963503757591, 40.58114517026214],
[-73.932909587448179, 40.581145767361072],
[-73.932913408149631, 40.581283739337131],
[-73.932872950224024, 40.581286000473149],
[-73.932869163647069, 40.581148482520582],
[-73.932806364933853, 40.581147418686825],
[-73.932697532665316, 40.58126928847301],
[-73.932580066339554, 40.581264741203796],
[-73.932503411559281, 40.581146987633907],
[-73.931814978333279, 40.578958697230028],
[-73.931826884271999, 40.578680471095403],
[-73.93169026396194, 40.578178861147258],
[-73.931640693942057, 40.578170809176036],
[-73.931060281080065, 40.576265920096823],
[-73.931062884016683, 40.576163099718514],
[-73.931442256855732, 40.575700970430283],
[-73.931502567440589, 40.575660505126763],
[-73.933344210197546, 40.575565703052597],
[-73.934860928304303, 40.57552779666814],
[-73.934902291009706, 40.575485353545879],
[-73.934893564552397, 40.575221645997615],
[-73.934995402381773, 40.575226412588357],
[-73.935001617820475, 40.575435620836153],
[-73.935078618963487, 40.575509466010551],
[-73.935757223162724, 40.575727216272483],
[-73.936471075865896, 40.575860496356356],
[-73.936603581898751, 40.575772405447431],
[-73.936707525374302, 40.575418427211559],
[-73.936831162288044, 40.575560016695015],
[-73.942509078284274, 40.575373554531744],
[-73.942537687418309, 40.575436547227952],
[-73.942476265181682, 40.575494106450321],
[-73.942557122499906, 40.575564330832478],
[-73.943641495331292, 40.575772859958384],
[-73.944279114090179, 40.575800511412645],
[-73.944505804693932, 40.575771413769566],
[-73.944633191296063, 40.575691196747087],
[-73.944552722379427, 40.575293496210627],
[-73.944596428811494, 40.575245617788624],
[-73.944648107941305, 40.575261112339248],
[-73.944682365382917, 40.575444782616529],
[-73.944748418059618, 40.575512024748612],
[-73.94527483146129, 40.575567913134059],
[-73.945723520509304, 40.575559439476379],
[-73.946036037391778, 40.575465656660043],
[-73.946182375879715, 40.575298836059176],
[-73.946205501513077, 40.575199066946247],
[-73.945953301441747, 40.575212017721654],
[-73.945923903017515, 40.575115432309694],
[-73.94896375973471, 40.574778204211484],
[-73.949918626260015, 40.574551624739051],
[-73.950185524329115, 40.574559567931175],
[-73.951325095654369, 40.574424377915321],
[-73.952077916478672, 40.574398602865294],
[-73.952358467426166, 40.574274686193014],
[-73.95374063177276, 40.581355892240346],
[-73.953838016546314, 40.581745552315319],
[-73.953920007470302, 40.581869793573347],
[-73.954142877955874, 40.583106140105542],
[-73.956457291256967, 40.582658851057737],
[-73.957031341804012, 40.583035332416927],
[-73.959007400390789, 40.582838127802084],
[-73.960047986674823, 40.583269872406589],
[-73.960149241296065, 40.583575897039189],
[-73.960341907620062, 40.585968366262129],
[-73.960349535852089, 40.587306286073911],
[-73.956193137080206, 40.587762268954684],
[-73.95700330423729, 40.592002256235226],
[-73.956077203524274, 40.59210143244551],
[-73.956927197136295, 40.596612076311288],
[-73.942484733407397, 40.5982003656123],
[-73.942889540614971, 40.600318650198759],
[-73.934471589014166, 40.601231511897332],
[-73.935032745001621, 40.601733790398171],
[-73.933551171536052, 40.602687280824874],
[-73.928131396050176, 40.597777928145732],
[-73.92956858243312, 40.596820265421989],
[-73.918190877980734, 40.586606854925449],
[-73.918092564808362, 40.586570335004716]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK73",
"NTAName": "North Side-South Side",
"Shape_Leng": 28176.052074399998673,
"Shape_Area": 28868679.7978
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.95814292441024, 40.724404284402375],
[-73.957719892051657, 40.724284957359536],
[-73.954776629474509, 40.722459504668088],
[-73.951646322523629, 40.723485857483972],
[-73.950645942672324, 40.721705693281777],
[-73.949865995297472, 40.722179483745066],
[-73.949078168387359, 40.722540287203003],
[-73.948416386050582, 40.718455533123063],
[-73.947213418107481, 40.718560986118312],
[-73.94866397410118, 40.717682771455991],
[-73.951144336997601, 40.716034520785961],
[-73.952753812696372, 40.714735991056855],
[-73.953484721648138, 40.714070208078638],
[-73.949372318506818, 40.714066878309701],
[-73.948655335118019, 40.70972498318217],
[-73.950874926672157, 40.709513115198298],
[-73.950236937579135, 40.705473246654513],
[-73.951910556992857, 40.706360078923787],
[-73.95790430738559, 40.708427173470042],
[-73.958384323672178, 40.707676690799097],
[-73.958455767946447, 40.707251847445583],
[-73.963278737770764, 40.707729298518665],
[-73.968389336807874, 40.706829186746916],
[-73.969292962824539, 40.707093331095372],
[-73.969848648235143, 40.708003042190256],
[-73.969940881256278, 40.709310231405937],
[-73.969556795897248, 40.71029607081725],
[-73.96964728659573, 40.710374910985507],
[-73.969944892989176, 40.710399733650611],
[-73.970009532225248, 40.710453937627591],
[-73.969970645875279, 40.710508071218946],
[-73.969731236958083, 40.710512829442322],
[-73.969633999363964, 40.710665396155726],
[-73.969794160005407, 40.710740506479439],
[-73.9697502667848, 40.710832877727157],
[-73.969348948808317, 40.710960614786423],
[-73.96976280291112, 40.711172617257226],
[-73.969704492484425, 40.711236584008596],
[-73.969335826173833, 40.711113238785842],
[-73.969258121947433, 40.711162421749009],
[-73.969238609537797, 40.711246109846719],
[-73.969451957847397, 40.711393965517274],
[-73.969425982485589, 40.711472725629918],
[-73.969302995648022, 40.711512029747851],
[-73.969186582101955, 40.711467636156073],
[-73.969115353610121, 40.711511898978102],
[-73.968867018984653, 40.71223244458902],
[-73.968809342546137, 40.712256055474661],
[-73.968869220900118, 40.712266197516293],
[-73.968831456523588, 40.712392763650222],
[-73.968944555917432, 40.712426547217625],
[-73.968795809314557, 40.712737038853582],
[-73.968729279088038, 40.712720143798251],
[-73.968679975133938, 40.712849269902584],
[-73.968469733470428, 40.71282470934613],
[-73.968452316902514, 40.712923186645021],
[-73.96856767224719, 40.712949263785021],
[-73.968499274458566, 40.71310284084992],
[-73.968842290502749, 40.713223925021602],
[-73.967363916333952, 40.716483679557626],
[-73.967244043489515, 40.716585350418903],
[-73.967263313816176, 40.716666167688352],
[-73.967113542899057, 40.716897539606514],
[-73.967267984220967, 40.716985740955785],
[-73.966352785822494, 40.718304373921491],
[-73.96624200755943, 40.718251778769812],
[-73.966075979130494, 40.718397328056966],
[-73.966146725054557, 40.718501871395176],
[-73.9658789353267, 40.718755077686396],
[-73.965703320762572, 40.718918114225119],
[-73.965525773331521, 40.718900892712249],
[-73.965153859760392, 40.719269683047351],
[-73.965288492140644, 40.719363999608383],
[-73.965396134386438, 40.719564879254179],
[-73.965546930186591, 40.719659198690643],
[-73.965385158055554, 40.719954272782324],
[-73.965374309956871, 40.720093632564087],
[-73.965137135622882, 40.720343594754155],
[-73.965013254380821, 40.720290272593907],
[-73.964905486712368, 40.720327129365479],
[-73.964463861803665, 40.720064662999889],
[-73.964356061313552, 40.72016300359865],
[-73.964479934595673, 40.720232723486355],
[-73.963538554145174, 40.721573378514336],
[-73.963437595529243, 40.721559095162313],
[-73.962965664030435, 40.722034476620287],
[-73.962235049643525, 40.723570258762621],
[-73.96200744799043, 40.72399190110518],
[-73.961894267121849, 40.724106702101054],
[-73.961659842353157, 40.72486045396024],
[-73.962114615668355, 40.72514806339889],
[-73.961902396431299, 40.725320500811073],
[-73.961536793587229, 40.725108918349491],
[-73.961163663023569, 40.725264605830674],
[-73.960432302406105, 40.725114108660506],
[-73.960366511024205, 40.725047309386106],
[-73.958759282359523, 40.724541354369791],
[-73.958330782269087, 40.72441170076614],
[-73.95814292441024, 40.724404284402375]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI07",
"NTAName": "Westerleigh",
"Shape_Leng": 41651.121531899996626,
"Shape_Area": 63292089.2484
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.130474290094824, 40.63088550974053],
[-74.130141415417825, 40.629965208529867],
[-74.131309853179573, 40.626328343649099],
[-74.13069767192907, 40.626340956869008],
[-74.130079468968276, 40.626418596120232],
[-74.122162255041147, 40.627476892666088],
[-74.121256779275768, 40.627822750339512],
[-74.120128880248259, 40.62653615348659],
[-74.117906548825133, 40.624877461477318],
[-74.117476065198261, 40.624673502372623],
[-74.113262495578098, 40.623054425040735],
[-74.111533938938578, 40.621603646054631],
[-74.110943928657335, 40.621194488998526],
[-74.110015506506116, 40.620688344255413],
[-74.106089396268558, 40.618984195708471],
[-74.105525988884168, 40.618592329499606],
[-74.105187096795774, 40.618281474843712],
[-74.10350925295981, 40.616416075397623],
[-74.102094343796267, 40.614600490701925],
[-74.099877338055023, 40.612918652021271],
[-74.099350430217072, 40.61241907603295],
[-74.098621513452855, 40.611518912145257],
[-74.097769686979348, 40.610623592940705],
[-74.107229638388546, 40.610252445315602],
[-74.108901461581112, 40.610251585499363],
[-74.110009341182348, 40.610336205547085],
[-74.110479564361341, 40.610418656145356],
[-74.112637473809812, 40.6109673662597],
[-74.113599203997012, 40.611143912511139],
[-74.114585478340516, 40.61120229579376],
[-74.11566833840763, 40.611175384412796],
[-74.116874581820213, 40.610971825929809],
[-74.121351796263369, 40.609765268661583],
[-74.124526187874395, 40.609022318953947],
[-74.126509115243763, 40.60866290780352],
[-74.128748975064482, 40.60839174103171],
[-74.132104597224554, 40.608152924106314],
[-74.13215051174825, 40.608551963880842],
[-74.142832905522269, 40.607992595485555],
[-74.144711006242716, 40.608034297118394],
[-74.145751668025312, 40.60818646197572],
[-74.147196466536613, 40.608562929745858],
[-74.14852820185925, 40.609080795272831],
[-74.149543435570848, 40.609627172890271],
[-74.146968642161028, 40.610151355705888],
[-74.146035621151626, 40.617012777499774],
[-74.14419491885171, 40.616870261569844],
[-74.139821847942144, 40.616299825940921],
[-74.138366668754543, 40.621737116862072],
[-74.138612740615272, 40.621772877689764],
[-74.138263581995588, 40.624243769572551],
[-74.137640145347177, 40.624215382200667],
[-74.137230369855672, 40.624271603579764],
[-74.136686300571242, 40.62453351425988],
[-74.135810082780324, 40.625064339588612],
[-74.138058494958955, 40.627068517893072],
[-74.137891267039024, 40.627452880391935],
[-74.138063938001807, 40.627568471136456],
[-74.137858001427517, 40.627690487617372],
[-74.136742377823921, 40.628662536725422],
[-74.135861083503443, 40.628061528380073],
[-74.134086982618982, 40.629541681215223],
[-74.133437312205956, 40.629074345750908],
[-74.131618344921378, 40.630583689452408],
[-74.131074603415144, 40.631147729710584],
[-74.130594998289396, 40.630880282672024],
[-74.130474290094824, 40.63088550974053]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI28",
"NTAName": "Port Richmond",
"Shape_Leng": 38927.05813,
"Shape_Area": 36422542.2931
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-74.12613276551231, 40.641264388028233],
[-74.12599542488428, 40.640231242627998],
[-74.126069828621993, 40.64025447268741],
[-74.126199962916516, 40.641264314302909],
[-74.126341804446938, 40.641252783696963],
[-74.126368086889812, 40.641332380486901],
[-74.12564026804624, 40.641418492082984],
[-74.125632658063367, 40.641341718192841],
[-74.12613276551231, 40.641264388028233]
]
],
[
[
[-74.122703196618502, 40.64137664893174],
[-74.122721144496538, 40.641347623546253],
[-74.12276203509289, 40.641426635297123],
[-74.122711031418376, 40.641433755251974],
[-74.122703196618502, 40.64137664893174]
]
],
[
[
[-74.121853295978212, 40.64158069227954],
[-74.121806610821608, 40.641412159578117],
[-74.121841470614569, 40.641405894270882],
[-74.121865617992327, 40.641555949324271],
[-74.121981464466458, 40.641501066768747],
[-74.121990838075391, 40.641554639499418],
[-74.121853295978212, 40.64158069227954]
]
],
[
[
[-74.121305290170284, 40.641600703130713],
[-74.121373329390323, 40.64147647474077],
[-74.121326171116507, 40.641606569228848],
[-74.121305290170284, 40.641600703130713]
]
],
[
[
[-74.121077274050251, 40.641607419583508],
[-74.121180395076976, 40.641383445379525],
[-74.121214703201744, 40.641396839986797],
[-74.121077274050251, 40.641607419583508]
]
],
[
[
[-74.121553436712659, 40.64161162782144],
[-74.121760526686245, 40.641574314056548],
[-74.121757646968746, 40.641423424454295],
[-74.121779111975115, 40.641592547116957],
[-74.121553436712659, 40.64161162782144]
]
],
[
[
[-74.121172462089916, 40.641669144567963],
[-74.121280747943644, 40.64143249598709],
[-74.121311947636912, 40.641452531325712],
[-74.121172462089916, 40.641669144567963]
]
],
[
[
[-74.134352696395084, 40.641886796901787],
[-74.134302812512459, 40.641753794405936],
[-74.133497197666713, 40.64171690148109],
[-74.133415392332793, 40.641547116550989],
[-74.133227996160741, 40.641457073586793],
[-74.132991724594632, 40.641416936663838],
[-74.132825050530059, 40.641419630335584],
[-74.132562222536961, 40.641531855788706],
[-74.132420432099522, 40.641623421081462],
[-74.132402836431027, 40.641704388983726],
[-74.131255811802561, 40.64159683076381],
[-74.131461998307955, 40.641310104074272],
[-74.131080839375215, 40.641026560604864],
[-74.130183700791861, 40.640723826082287],
[-74.129677851002484, 40.641385312553595],
[-74.129490576373669, 40.64135483519582],
[-74.129977401967466, 40.640729872856312],
[-74.12987750736707, 40.640686818458697],
[-74.129920885796025, 40.64062898297604],
[-74.129307131868501, 40.640337411210957],
[-74.129229772610614, 40.640484372352375],
[-74.128933012098031, 40.640413928985247],
[-74.128994963094996, 40.641189313241043],
[-74.128907290334524, 40.641194827586133],
[-74.12881201847128, 40.640226977503893],
[-74.128132149191259, 40.640249999438083],
[-74.128109004858686, 40.640139674293216],
[-74.127526773068567, 40.640155304715712],
[-74.127395685512781, 40.639974722156197],
[-74.127391193802694, 40.639829798961998],
[-74.127244818383986, 40.639766890856841],
[-74.127147745638979, 40.639311056850197],
[-74.127027360209041, 40.639319077984275],
[-74.126990542332351, 40.639110891786999],
[-74.126976791839439, 40.638432590383992],
[-74.127079235616449, 40.638122437476142],
[-74.126888727316256, 40.637210088094058],
[-74.128670473006494, 40.637348264806384],
[-74.128856495125248, 40.636702186044793],
[-74.12885281941945, 40.635074419365438],
[-74.128931294150874, 40.63457748796835],
[-74.129000540646587, 40.634333593856482],
[-74.129932475951705, 40.632908787459556],
[-74.130469768393255, 40.631676321095561],
[-74.13060220372229, 40.63135782719116],
[-74.130474290094824, 40.63088550974053],
[-74.130594998289396, 40.630880282672024],
[-74.131074603415144, 40.631147729710584],
[-74.131618344921378, 40.630583689452408],
[-74.133437312205956, 40.629074345750908],
[-74.134086982618982, 40.629541681215223],
[-74.135861083503443, 40.628061528380073],
[-74.136742377823921, 40.628662536725422],
[-74.137858001427517, 40.627690487617372],
[-74.138063938001807, 40.627568471136456],
[-74.137891267039024, 40.627452880391935],
[-74.138058494958955, 40.627068517893072],
[-74.135810082780324, 40.625064339588612],
[-74.136686300571242, 40.62453351425988],
[-74.137230369855672, 40.624271603579764],
[-74.137640145347177, 40.624215382200667],
[-74.138263581995588, 40.624243769572551],
[-74.138612740615272, 40.621772877689764],
[-74.138366668754543, 40.621737116862072],
[-74.139821847942144, 40.616299825940921],
[-74.14419491885171, 40.616870261569844],
[-74.146035621151626, 40.617012777499774],
[-74.146968642161028, 40.610151355705888],
[-74.150186664511509, 40.609497811155229],
[-74.153791166574081, 40.612255612755334],
[-74.152592664497689, 40.616573081411659],
[-74.152311704300914, 40.617162755917754],
[-74.151657578883402, 40.618040557990447],
[-74.148319823197284, 40.621449516078002],
[-74.147728303692872, 40.622136619261902],
[-74.14710957687771, 40.623032260225521],
[-74.146784425536879, 40.623607550677285],
[-74.146228125370527, 40.624925361709565],
[-74.14563382845752, 40.626725150753806],
[-74.145540720129176, 40.627832522115973],
[-74.145935446285165, 40.627824114565335],
[-74.146087564062753, 40.628915902787519],
[-74.146222028148586, 40.629106957185456],
[-74.147526190297981, 40.629389288299301],
[-74.146830165537168, 40.631382654000284],
[-74.144782289955145, 40.637953780297273],
[-74.143599982922893, 40.638514125687969],
[-74.143128025090434, 40.639680373126751],
[-74.142859746324504, 40.639569304524187],
[-74.142577694020247, 40.639534137500974],
[-74.142387951493262, 40.639641210829893],
[-74.142319697732646, 40.639792266964491],
[-74.142404638359025, 40.640198251281383],
[-74.142297669808585, 40.640305806591051],
[-74.14215420029258, 40.640343247770353],
[-74.14205431483461, 40.640296759707326],
[-74.141556230383287, 40.640366768816186],
[-74.141480474693196, 40.64009219379205],
[-74.141286240226847, 40.640145275160897],
[-74.141192218398984, 40.64038867508107],
[-74.141024305521185, 40.640506668843912],
[-74.140762536452783, 40.640589396911182],
[-74.139297457638875, 40.640805837751877],
[-74.13925744852591, 40.640735726221614],
[-74.139203823771041, 40.640745967172947],
[-74.139183280358907, 40.64085489201922],
[-74.137575749044601, 40.641001152370336],
[-74.137344015292967, 40.641148322830105],
[-74.137370018159558, 40.641295463488142],
[-74.134352696395084, 40.641886796901787]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI22",
"NTAName": "West New Brighton-New Brighton-St. George",
"Shape_Leng": 67963.716186299992842,
"Shape_Area": 56065727.0217
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.072581338734707, 40.637941874089464],
[-74.074869174751981, 40.637792809577569],
[-74.075060528909674, 40.637748400333258],
[-74.075152079774398, 40.637788617580455],
[-74.076839977804013, 40.637750259619565],
[-74.078131634340409, 40.638171453608919],
[-74.078368904210492, 40.638290794678461],
[-74.07865269666793, 40.638304025202657],
[-74.078788310356089, 40.638268558586532],
[-74.081779405184847, 40.636623014754967],
[-74.083020911993032, 40.636025070642432],
[-74.083733972764037, 40.635737144056556],
[-74.085878828991511, 40.636691589500927],
[-74.086905928278441, 40.635857243131206],
[-74.088705823397589, 40.636845206278181],
[-74.089221678216106, 40.636088080893934],
[-74.08970378337375, 40.635682500983521],
[-74.090277385939203, 40.635499030077085],
[-74.090906987812573, 40.63548572915699],
[-74.09242513546198, 40.635581813311482],
[-74.093389423182956, 40.636599554995072],
[-74.093862763843788, 40.638024917086931],
[-74.094093125560448, 40.639266913730253],
[-74.096379062096787, 40.639035370194428],
[-74.097672907888281, 40.63896067917031],
[-74.097879691756276, 40.64035805499109],
[-74.099904096045307, 40.640162954613743],
[-74.104809908332427, 40.63897670148306],
[-74.106967068374999, 40.638717039320966],
[-74.10719674747105, 40.638639851255427],
[-74.1074632319621, 40.638438488335993],
[-74.109051205190369, 40.6381848658148],
[-74.109389618232186, 40.638066982355269],
[-74.109748333434496, 40.637865832885872],
[-74.114995597130772, 40.637292225803506],
[-74.115191473776818, 40.638347681052352],
[-74.117657225118805, 40.638062466925291],
[-74.117459865503974, 40.635769405401184],
[-74.117077857795934, 40.634007108452224],
[-74.116143211769653, 40.628702264526929],
[-74.11544777625285, 40.627220617646344],
[-74.113262495578098, 40.623054425040735],
[-74.117476065198261, 40.624673502372623],
[-74.117906548825133, 40.624877461477318],
[-74.120128880248259, 40.62653615348659],
[-74.121256779275768, 40.627822750339512],
[-74.122162255041147, 40.627476892666088],
[-74.130079468968276, 40.626418596120232],
[-74.13069767192907, 40.626340956869008],
[-74.131309853179573, 40.626328343649099],
[-74.130141415417825, 40.629965208529867],
[-74.13060220372229, 40.63135782719116],
[-74.129932475951705, 40.632908787459556],
[-74.129000540646587, 40.634333593856482],
[-74.12885281941945, 40.635074419365438],
[-74.128856495125248, 40.636702186044793],
[-74.128670473006494, 40.637348264806384],
[-74.126888727316256, 40.637210088094058],
[-74.127079235616449, 40.638122437476142],
[-74.126976791839439, 40.638432590383992],
[-74.126990542332351, 40.639110891786999],
[-74.127124430091357, 40.639863184264193],
[-74.127053622052642, 40.640241737638952],
[-74.126346334461644, 40.64037630175882],
[-74.12569811633216, 40.640155933689108],
[-74.124697289470319, 40.640239351074598],
[-74.124155784450096, 40.640134716640013],
[-74.123637260256018, 40.640342870891288],
[-74.12354404678014, 40.640405535131578],
[-74.123547937720147, 40.640490843382032],
[-74.123407269992853, 40.640588957109237],
[-74.122856305553384, 40.640820508848847],
[-74.122651741262729, 40.640626765630373],
[-74.122572805451341, 40.640622340093465],
[-74.12290724898476, 40.641019266114498],
[-74.122825654103124, 40.641293875515011],
[-74.122695558876728, 40.641353026672554],
[-74.121958501283217, 40.641446983080627],
[-74.121841470614569, 40.641405894270882],
[-74.121447533669169, 40.641502737584709],
[-74.121180395076976, 40.641383445379525],
[-74.120713175887815, 40.641045782693425],
[-74.119934800889112, 40.641197604383819],
[-74.119971112135858, 40.641314814562264],
[-74.119607167478691, 40.641380309354147],
[-74.119956998757644, 40.642209453429054],
[-74.119854439420948, 40.642235613904766],
[-74.119529861057543, 40.641469914321874],
[-74.119465612968298, 40.641478874171902],
[-74.119426312923977, 40.641423524184667],
[-74.119097205596105, 40.641473466020066],
[-74.119480871550877, 40.642355101709761],
[-74.119400295324553, 40.642379378532716],
[-74.11900348200308, 40.641464614510056],
[-74.11861635170294, 40.641530365029681],
[-74.118688341002297, 40.641797643553247],
[-74.118651715985607, 40.641808846121741],
[-74.11896077402352, 40.642504515993195],
[-74.118836246169423, 40.642541864060327],
[-74.118401850835497, 40.641529800542855],
[-74.118155365868901, 40.641593684261046],
[-74.118208315493888, 40.641750235375895],
[-74.118007670936564, 40.641805497533284],
[-74.118156357438579, 40.642131298298722],
[-74.118048911563619, 40.642157461011791],
[-74.117917286831343, 40.641825876952097],
[-74.117734783857031, 40.641796698535572],
[-74.117628416807918, 40.641621582900669],
[-74.117456896042199, 40.641644801773694],
[-74.117288144803766, 40.641594377204576],
[-74.117170932846903, 40.641624271041778],
[-74.117112356995563, 40.641655967138846],
[-74.117507025232882, 40.642420408430098],
[-74.117419125580071, 40.642448412155879],
[-74.117137064693367, 40.641898064630418],
[-74.116721876638877, 40.642031756096564],
[-74.117224700825446, 40.643027359962574],
[-74.117149005274143, 40.643049768652276],
[-74.11666607646228, 40.642106766333903],
[-74.116300000827437, 40.642202665102246],
[-74.116753428746591, 40.643161826702318],
[-74.116670413826867, 40.643189824892815],
[-74.1161420863572, 40.642216454150315],
[-74.115719170422963, 40.642351819214007],
[-74.116226918394361, 40.643307105862725],
[-74.116148430057279, 40.643331112591753],
[-74.11564823433703, 40.642374682329233],
[-74.11535082182931, 40.642470540158172],
[-74.115117148180389, 40.642784992677186],
[-74.114780764943035, 40.64295761592831],
[-74.113796660860089, 40.643609515807867],
[-74.114040531460219, 40.644042502119753],
[-74.113950941344626, 40.64413659167456],
[-74.11288806510882, 40.644532444134931],
[-74.112829608934547, 40.644462428185975],
[-74.113791528936289, 40.644075221830754],
[-74.113890108903234, 40.643989669126007],
[-74.113815904007708, 40.643895741339939],
[-74.11354450863908, 40.643954120067256],
[-74.113330232584374, 40.643723496580492],
[-74.111807991368323, 40.644610674476731],
[-74.11190333685154, 40.644706026740288],
[-74.11116129469174, 40.645096422678677],
[-74.111116336006191, 40.64504690232372],
[-74.11176646649939, 40.644706159842336],
[-74.111725299957143, 40.644659361726085],
[-74.111011109998614, 40.645053095282059],
[-74.109739325644838, 40.645463728184716],
[-74.108864898959666, 40.645579128803959],
[-74.104722215997626, 40.645563657399435],
[-74.104645777822043, 40.64563047031573],
[-74.104396135552022, 40.645669941080023],
[-74.104340587448149, 40.645721165402776],
[-74.104123563017453, 40.645740432200093],
[-74.103986447910557, 40.645622702844257],
[-74.103072966774079, 40.645638148417383],
[-74.10231679337322, 40.645542599677498],
[-74.10168264441667, 40.645406732986693],
[-74.101629417616309, 40.645488958940213],
[-74.101699065869809, 40.64553648533392],
[-74.101618289547375, 40.645526538871444],
[-74.101578339747761, 40.645514421316072],
[-74.1016426644115, 40.645396548926129],
[-74.100605420053526, 40.6451323333171],
[-74.100100073566225, 40.645059415591973],
[-74.098800668198265, 40.645047034311347],
[-74.098499816255071, 40.645370361953738],
[-74.096045553475619, 40.645372747442117],
[-74.094685008552787, 40.64555571773532],
[-74.092988282536297, 40.645972780751919],
[-74.093005072962356, 40.646076314314229],
[-74.09135697876026, 40.646700724101017],
[-74.089923340475096, 40.647176131601775],
[-74.089403516277102, 40.647305776155683],
[-74.088360434892252, 40.647907905327635],
[-74.088241124740264, 40.64790165648607],
[-74.087674426814999, 40.648235293614761],
[-74.085707543782121, 40.648880553370446],
[-74.085226984116701, 40.648925551773452],
[-74.084844032157164, 40.64889114733942],
[-74.084021793918041, 40.648604354917097],
[-74.082212729149362, 40.648280162290064],
[-74.08142228269665, 40.648504724943756],
[-74.080728387623722, 40.648274873846255],
[-74.080518237883581, 40.648245514732679],
[-74.079809964287037, 40.648383312987917],
[-74.078995463992428, 40.648142554421945],
[-74.077086579366494, 40.647199860765717],
[-74.076993410888804, 40.647205851839018],
[-74.076828956808882, 40.647080521936203],
[-74.076506571528583, 40.646968818183339],
[-74.07599222761543, 40.646552023758986],
[-74.074452825635859, 40.645067487718052],
[-74.074078120912162, 40.645084328910656],
[-74.073958399764663, 40.645193205445509],
[-74.073591079192767, 40.64499892804298],
[-74.073498514336009, 40.645083373474655],
[-74.073758612953227, 40.645313351270275],
[-74.073829112321746, 40.645311772142662],
[-74.073778803429533, 40.645356298464222],
[-74.073856536846691, 40.645424815597011],
[-74.073338139229108, 40.645783115659235],
[-74.073245394648524, 40.645704925269506],
[-74.073486941951231, 40.645549807744835],
[-74.073418387540571, 40.645488479178283],
[-74.073690118064434, 40.645305724054779],
[-74.073238538107603, 40.644963863909808],
[-74.07302520573127, 40.645131237817147],
[-74.073202259546974, 40.644943941243504],
[-74.073012399635132, 40.644838679702175],
[-74.073055598817206, 40.6448079178409],
[-74.073425908135121, 40.645000567509591],
[-74.073272729014747, 40.644916278972886],
[-74.073345171336157, 40.64485025792893],
[-74.073121841835089, 40.644714799468929],
[-74.072798503414944, 40.644910123768732],
[-74.072587754878882, 40.644790863174045],
[-74.072703082675474, 40.644645595124935],
[-74.072564682329528, 40.644719748858144],
[-74.072612327956207, 40.644675289579901],
[-74.072525875209791, 40.644670039514558],
[-74.072575517192149, 40.644617685388575],
[-74.072623112181319, 40.644653878335241],
[-74.072666308371851, 40.644620920659086],
[-74.072532219597477, 40.64455679217064],
[-74.072586231092686, 40.644530414249438],
[-74.072724670790976, 40.644620883766493],
[-74.072782606129323, 40.644491840017423],
[-74.072698287990249, 40.644441273467329],
[-74.072331008942911, 40.64459987318498],
[-74.071658297597835, 40.645033746435004],
[-74.072309191127175, 40.644577753051713],
[-74.072255884362832, 40.64454643110188],
[-74.072161483806056, 40.644581534806505],
[-74.072018432132381, 40.644411932940834],
[-74.072291902818208, 40.644266047820402],
[-74.072184886016672, 40.644110465395116],
[-74.071860809368559, 40.644201761769722],
[-74.071756480877809, 40.644011845498589],
[-74.072058174400553, 40.643900427699009],
[-74.072000801554765, 40.643781132969551],
[-74.071792593093832, 40.643816308578501],
[-74.071770752125261, 40.643772054835331],
[-74.071649694085195, 40.643786885724602],
[-74.07159679201105, 40.643460156986023],
[-74.071356121766328, 40.643497304556021],
[-74.071341094179189, 40.643456225521561],
[-74.071490900638921, 40.643428740585868],
[-74.071482024326187, 40.643292625063495],
[-74.070983282307751, 40.643388744008298],
[-74.070937844714763, 40.643345963840545],
[-74.070959421686027, 40.643309727028274],
[-74.071257659815174, 40.643258501727018],
[-74.071272831442613, 40.643296361122502],
[-74.071443317062631, 40.643270560828007],
[-74.07141659782495, 40.643193109595323],
[-74.071143092890097, 40.643250909742001],
[-74.071131057209342, 40.643205263678269],
[-74.071502631474019, 40.643129304192875],
[-74.071477773885945, 40.642808293774557],
[-74.071645409014607, 40.642800359680614],
[-74.071648921989407, 40.642679931177035],
[-74.071702861874428, 40.642679897557301],
[-74.071703519672667, 40.642796335279961],
[-74.072184349030593, 40.642714093289484],
[-74.072109524446319, 40.642463216792741],
[-74.070374309905972, 40.642691403053135],
[-74.070329237153899, 40.642526128132289],
[-74.073238292495745, 40.64218473608193],
[-74.073144005859206, 40.641852973474933],
[-74.070246587646395, 40.642206974296464],
[-74.070193995592192, 40.642007502805278],
[-74.073086898193282, 40.64163681446702],
[-74.072890056095744, 40.640922672373449],
[-74.071962809616778, 40.640995579760656],
[-74.071805003670377, 40.64102934375623],
[-74.071811418229217, 40.641123124201883],
[-74.070018491487403, 40.641278132237495],
[-74.069983546539504, 40.641068943116778],
[-74.072850411948806, 40.64080368794243],
[-74.072776900770862, 40.640528963146913],
[-74.073077258377438, 40.640513311796305],
[-74.073090355787841, 40.638618999685832],
[-74.072929333847483, 40.638592649838223],
[-74.072926011363478, 40.638441154560006],
[-74.073014445621524, 40.638409383616214],
[-74.072670246420614, 40.638376389626742],
[-74.072588090541515, 40.638301894170546],
[-74.072609339335983, 40.638226895320599],
[-74.072388529502945, 40.638245265996709],
[-74.072379411293809, 40.638162726074071],
[-74.072606327974952, 40.638136307844405],
[-74.072581338734707, 40.637941874089464]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI35",
"NTAName": "New Brighton-Silver Lake",
"Shape_Leng": 30322.520368,
"Shape_Area": 47142780.3891
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.083733972764037, 40.635737144056556],
[-74.084436475786234, 40.635405248048869],
[-74.085749289996713, 40.633955557725308],
[-74.08835621368921, 40.630734963691324],
[-74.08914567603216, 40.63012462153565],
[-74.089340457081789, 40.629923285457949],
[-74.091580959835383, 40.626545923338092],
[-74.092239713612756, 40.625742916247759],
[-74.100044269755685, 40.619357955413065],
[-74.10073089155803, 40.618709754656962],
[-74.101898351105547, 40.61745221106974],
[-74.102549405567615, 40.616853685226992],
[-74.10350925295981, 40.616416075397623],
[-74.105187096795774, 40.618281474843712],
[-74.105525988884168, 40.618592329499606],
[-74.106089396268558, 40.618984195708471],
[-74.110015506506116, 40.620688344255413],
[-74.110943928657335, 40.621194488998526],
[-74.111533938938578, 40.621603646054631],
[-74.113262495578098, 40.623054425040735],
[-74.11544777625285, 40.627220617646344],
[-74.116143211769653, 40.628702264526929],
[-74.117077857795934, 40.634007108452224],
[-74.117459865503974, 40.635769405401184],
[-74.117657225118805, 40.638062466925291],
[-74.115191473776818, 40.638347681052352],
[-74.114995597130772, 40.637292225803506],
[-74.109748333434496, 40.637865832885872],
[-74.109389618232186, 40.638066982355269],
[-74.109051205190369, 40.6381848658148],
[-74.1074632319621, 40.638438488335993],
[-74.10719674747105, 40.638639851255427],
[-74.106967068374999, 40.638717039320966],
[-74.104809908332427, 40.63897670148306],
[-74.099904096045307, 40.640162954613743],
[-74.097879691756276, 40.64035805499109],
[-74.097672907888281, 40.63896067917031],
[-74.096379062096787, 40.639035370194428],
[-74.094093125560448, 40.639266913730253],
[-74.093862763843788, 40.638024917086931],
[-74.093389423182956, 40.636599554995072],
[-74.09242513546198, 40.635581813311482],
[-74.090906987812573, 40.63548572915699],
[-74.090277385939203, 40.635499030077085],
[-74.08970378337375, 40.635682500983521],
[-74.089221678216106, 40.636088080893934],
[-74.088705823397589, 40.636845206278181],
[-74.086905928278441, 40.635857243131206],
[-74.085878828991511, 40.636691589500927],
[-74.083733972764037, 40.635737144056556]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX52",
"NTAName": "Schuylerville-Throgs Neck-Edgewater Park",
"Shape_Leng": 90942.400351400006912,
"Shape_Area": 88569711.3595
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.83979488496, 40.835619207491888],
[-73.839614872385795, 40.835610568365723],
[-73.839698866422523, 40.835575279916519],
[-73.839686594208317, 40.83550917341244],
[-73.839599555696367, 40.835518494224829],
[-73.839667987619421, 40.835492625479326],
[-73.839577927351243, 40.835466536852067],
[-73.839664999928004, 40.835443053947266],
[-73.839652716393687, 40.835381668420233],
[-73.839568775125244, 40.835395713843269],
[-73.839631116496392, 40.835317910359777],
[-73.839547192383236, 40.835324873875159],
[-73.839615612083847, 40.83530372664373],
[-73.839603329945845, 40.835242340441745],
[-73.839531858773441, 40.835239881110432],
[-73.839618906985848, 40.835225840034674],
[-73.839606596407634, 40.835176255534137],
[-73.839513371202941, 40.835173765935977],
[-73.839603534798613, 40.835157369294073],
[-73.839585013694915, 40.835105416240573],
[-73.839507333448509, 40.835100587842206],
[-73.839594376454642, 40.835088907192976],
[-73.839575867423591, 40.835032232653347],
[-73.839457837977065, 40.835006105189365],
[-73.839566668401545, 40.834980292729547],
[-73.839557471376935, 40.834928353644941],
[-73.839482882037501, 40.834930609770545],
[-73.839551307708831, 40.834907101499184],
[-73.839548308082286, 40.834862251443397],
[-73.839461326692444, 40.834847967741396],
[-73.839619931150352, 40.834800981937406],
[-73.839476939168577, 40.834817305076641],
[-73.839613773824766, 40.834777369890482],
[-73.83960141648538, 40.834746668476768],
[-73.839470855926152, 40.834763009566842],
[-73.839604564749521, 40.834730151287012],
[-73.839595309722796, 40.834701814602305],
[-73.839464742675176, 40.834720514919269],
[-73.839412203108751, 40.834600065107395],
[-73.839483741924013, 40.83457420079435],
[-73.839592666888677, 40.834560475644608],
[-73.839708994863201, 40.834852717937721],
[-73.839674454292947, 40.835098757889334],
[-73.83979488496, 40.835619207491888]
]
],
[
[
[-73.839600986116039, 40.835670718699447],
[-73.839625994769023, 40.835699712369603],
[-73.839608504003081, 40.835708050684509],
[-73.839600986116039, 40.835670718699447]
]
],
[
[
[-73.825986868952782, 40.840675752386588],
[-73.825849859606308, 40.83706086710302],
[-73.82573525138082, 40.83664539491425],
[-73.82544296399837, 40.835959170774011],
[-73.825404825812782, 40.835659274740031],
[-73.825446074191362, 40.835361129367115],
[-73.825603502956085, 40.835030147213388],
[-73.825877755826298, 40.834674047450626],
[-73.826220878047408, 40.834354708293255],
[-73.826012525707341, 40.834020778205286],
[-73.825158838689532, 40.834614471596971],
[-73.824633464909937, 40.83385580771462],
[-73.823793831684895, 40.834300146959286],
[-73.822231300704942, 40.834556012682128],
[-73.816060682346759, 40.836030196456882],
[-73.815850506097277, 40.835904355108212],
[-73.815525009225126, 40.835976306926007],
[-73.815542577776895, 40.835897274649376],
[-73.816063395742177, 40.835772927473684],
[-73.816072562059247, 40.835595055319665],
[-73.816007730708407, 40.835512597336034],
[-73.815573970601008, 40.835525081831086],
[-73.815608805142674, 40.835475724413044],
[-73.815960240722063, 40.83543346101672],
[-73.816081883797679, 40.835361182401243],
[-73.816091386924839, 40.83506142683305],
[-73.81600054186795, 40.834975633491311],
[-73.816084014672825, 40.834590346266232],
[-73.816010582129806, 40.834481520305808],
[-73.815663581392556, 40.834490849306903],
[-73.815993470922677, 40.834395844552908],
[-73.816028295894071, 40.834349781182041],
[-73.816011966814585, 40.833980805210771],
[-73.815992151491386, 40.833919580162757],
[-73.815888011710243, 40.833925191540615],
[-73.815986842867005, 40.833901590474611],
[-73.815939209823284, 40.833676866415509],
[-73.815810944336164, 40.833480989755138],
[-73.81573283041142, 40.833497541851855],
[-73.815698772217303, 40.833462280861134],
[-73.815779424323054, 40.833410526271791],
[-73.815816320507253, 40.833301259350193],
[-73.815739315913376, 40.832917569023245],
[-73.815639625870745, 40.832796965424649],
[-73.815486958518903, 40.832299891057588],
[-73.815367786695731, 40.832200168603151],
[-73.815286869875294, 40.831875700533189],
[-73.815118866417507, 40.831709417054078],
[-73.815031252541161, 40.831682117017856],
[-73.815117436138465, 40.83161415874406],
[-73.814975258838061, 40.831420756393321],
[-73.814879373885901, 40.831030086491396],
[-73.814853469147906, 40.831008199729432],
[-73.814492209462799, 40.831171140223269],
[-73.814470336880305, 40.831141458251992],
[-73.814843134985907, 40.830986120514652],
[-73.814763876919599, 40.830816799993478],
[-73.814520085115348, 40.830622875793182],
[-73.813914253888612, 40.830924257035491],
[-73.813897832943269, 40.830907554157172],
[-73.814510165876129, 40.830614047052144],
[-73.8144099091828, 40.830495338636894],
[-73.814294162663145, 40.830505169430836],
[-73.814309206815111, 40.830359271207421],
[-73.813856719772787, 40.83056144292263],
[-73.814299592950491, 40.8303501037026],
[-73.813903841214639, 40.830068161662034],
[-73.81382087385569, 40.829967581462469],
[-73.813867750153307, 40.82985736878264],
[-73.813702960018205, 40.829933033128526],
[-73.813668313508643, 40.82989128485486],
[-73.81388709570129, 40.829821032467656],
[-73.813889712465709, 40.829777452202208],
[-73.81382829192323, 40.829641467990072],
[-73.813697262791152, 40.82955233460175],
[-73.813566699552723, 40.829589547888382],
[-73.813688818708343, 40.829534579120114],
[-73.813611104944769, 40.829376757955956],
[-73.813546141928668, 40.829344534658965],
[-73.813376873733759, 40.829391202711548],
[-73.813504204095793, 40.829220934676172],
[-73.813387663891248, 40.829023094473513],
[-73.813199275795995, 40.828928904764624],
[-73.812994208980072, 40.828982926550729],
[-73.812903219189081, 40.828953131163374],
[-73.813180114089249, 40.828802871229527],
[-73.81305326961018, 40.828800194856015],
[-73.813131637151599, 40.828691613924335],
[-73.812939705150768, 40.828701184855802],
[-73.812839028332377, 40.828646666695661],
[-73.812800150000612, 40.828592250455102],
[-73.812872332363256, 40.828370008559496],
[-73.812754699945231, 40.828248236251333],
[-73.810726856764191, 40.828285906243124],
[-73.810015683221934, 40.828254470281394],
[-73.809925159200176, 40.828179711978393],
[-73.809978875185124, 40.827907695808648],
[-73.810095781382472, 40.827819493091447],
[-73.81029679260439, 40.82799085251051],
[-73.811055781086125, 40.827984995683465],
[-73.811042916562897, 40.827839986368176],
[-73.810253423547763, 40.827834131709373],
[-73.810253573039759, 40.827797176894492],
[-73.810039400333068, 40.827778138786748],
[-73.810275783363522, 40.827778524071697],
[-73.810275625517875, 40.827817716832392],
[-73.81182240952792, 40.827825507298044],
[-73.811062941682351, 40.827843649433582],
[-73.811073267299832, 40.827984402313632],
[-73.811707327714686, 40.828006745095287],
[-73.812271675027489, 40.827866531791216],
[-73.812603389134381, 40.827835076207556],
[-73.812717967894855, 40.827733999987565],
[-73.812652064666722, 40.827558779615806],
[-73.813277315628071, 40.827219873522537],
[-73.813547809289844, 40.826941819513344],
[-73.81384974863515, 40.826803528854256],
[-73.813890623196514, 40.826660051263786],
[-73.813680863931538, 40.826430139468393],
[-73.813722076866128, 40.826271592515027],
[-73.812917761312278, 40.826350389120599],
[-73.813727878503656, 40.826261218717981],
[-73.813991116234916, 40.826069598588894],
[-73.814039052736504, 40.825956305508264],
[-73.813950541423111, 40.825729151444648],
[-73.813421021972061, 40.825925016768288],
[-73.813941620195521, 40.825717031729532],
[-73.813796161247808, 40.825576382293953],
[-73.813841585374092, 40.825390214389898],
[-73.813795234515027, 40.82529808600043],
[-73.813335226722458, 40.82517094670866],
[-73.812113505564412, 40.825552634659289],
[-73.812937815790065, 40.82523532904694],
[-73.813277355814648, 40.825161321708592],
[-73.813123685015043, 40.825068708754003],
[-73.813082150930057, 40.824944546839703],
[-73.813359465596889, 40.824748433179437],
[-73.814037458433518, 40.82448346949387],
[-73.81402237553111, 40.82430397457793],
[-73.81393383597657, 40.824137163161012],
[-73.813780802575508, 40.823999920519384],
[-73.813274173990294, 40.823966665819555],
[-73.813193392447104, 40.824137980292427],
[-73.813076878926822, 40.824158431179875],
[-73.812810286929903, 40.824339113316761],
[-73.812822558676132, 40.824679680218459],
[-73.812748349127688, 40.824777187043992],
[-73.812320055457803, 40.824411308342846],
[-73.812019133948837, 40.824325687226377],
[-73.811772848712053, 40.824339806172794],
[-73.811587527852907, 40.824492599866069],
[-73.811643556196174, 40.82460166226862],
[-73.81155844768891, 40.824512090235061],
[-73.811221362661414, 40.82458580068856],
[-73.811199030054752, 40.824791113380698],
[-73.811031475255973, 40.824708227041931],
[-73.810847286786512, 40.8248724909648],
[-73.810874962945277, 40.825113947943954],
[-73.810784852865879, 40.825113800122459],
[-73.810761925593312, 40.824901570211615],
[-73.810409143962644, 40.825021130469004],
[-73.810296873871891, 40.825164925808089],
[-73.810060787040584, 40.825143294570587],
[-73.809654810757351, 40.825275535117946],
[-73.809248390892009, 40.825635263618736],
[-73.80919816842237, 40.825812205215442],
[-73.80909234633549, 40.825873398164063],
[-73.808784939214448, 40.825799718982921],
[-73.80846922650889, 40.825860338652369],
[-73.808275344770337, 40.825801233282974],
[-73.807997781514331, 40.825790367363638],
[-73.807952493624398, 40.825825576973756],
[-73.807963092997653, 40.825781742732303],
[-73.80783421253129, 40.825767454801927],
[-73.807666047652503, 40.825896992059036],
[-73.807346773181749, 40.825629741443407],
[-73.807228750939103, 40.825455623239336],
[-73.806977711523515, 40.825388370394855],
[-73.806971913864601, 40.825244380706081],
[-73.806817273698599, 40.824996285912924],
[-73.806734283993265, 40.824684582984403],
[-73.806563615549763, 40.824606405431751],
[-73.806716072565308, 40.824535851616361],
[-73.80677536296291, 40.824448617736891],
[-73.806707553540207, 40.824259677586653],
[-73.806518194075323, 40.82419799191269],
[-73.806731046277804, 40.824134881493855],
[-73.806790494361806, 40.823993361689141],
[-73.806750581261838, 40.823828070659701],
[-73.806464806104742, 40.823799267499112],
[-73.806691977289915, 40.823679271064201],
[-73.80666166000627, 40.823419584237094],
[-73.806509774918339, 40.82329423114605],
[-73.806264174748037, 40.823341025704615],
[-73.806236306936995, 40.82330793465065],
[-73.806460274180495, 40.823220977511362],
[-73.806510186710284, 40.823152611720381],
[-73.806383550869555, 40.822892762130749],
[-73.806299823795925, 40.822835973734492],
[-73.8060479275223, 40.822911081148249],
[-73.805951691244502, 40.822882595349412],
[-73.806147630859101, 40.822816835274843],
[-73.806222420820959, 40.822741429989428],
[-73.806211364740335, 40.822609352914768],
[-73.805824656470065, 40.821767789794123],
[-73.805851392202669, 40.821546971806278],
[-73.805958224896784, 40.821428043773345],
[-73.805991598489385, 40.820823558490055],
[-73.805728029897324, 40.820177338694997],
[-73.804619312715104, 40.819027114214862],
[-73.804054031829523, 40.818569939789519],
[-73.803483206493141, 40.818276985466589],
[-73.802674076341631, 40.818238575091421],
[-73.802521634019215, 40.818525987803291],
[-73.802300242532269, 40.818484716294464],
[-73.802078929380158, 40.818556736969704],
[-73.802039915762336, 40.818466448695965],
[-73.80188453083619, 40.818358950889198],
[-73.801115263539629, 40.818106540094711],
[-73.800812803955964, 40.81809119590072],
[-73.800707626358047, 40.818045097792684],
[-73.800589067371149, 40.817935428096646],
[-73.800572911445173, 40.817700094331613],
[-73.80032337978146, 40.817562833914494],
[-73.798496790703467, 40.816906147782397],
[-73.798127652980639, 40.816814069932029],
[-73.797948042116701, 40.816622801752452],
[-73.797590327773264, 40.816507532070098],
[-73.797381125735356, 40.815763504895607],
[-73.79771465236783, 40.815513292743383],
[-73.798119452936277, 40.815698784500647],
[-73.798642207127557, 40.815464015936293],
[-73.79902816313998, 40.815541134938648],
[-73.799946782524131, 40.814449565690552],
[-73.800111468642783, 40.814024525560598],
[-73.800488247915652, 40.81386700886415],
[-73.800915932376412, 40.813761402506508],
[-73.801319918564559, 40.81326090053895],
[-73.80145800517316, 40.81294094720311],
[-73.801745612159635, 40.812865017415675],
[-73.801426344476994, 40.812424421536093],
[-73.801373859851012, 40.812444246324787],
[-73.801339061412065, 40.81239373439238],
[-73.801403809688509, 40.812363308658504],
[-73.801759321146719, 40.812861396986108],
[-73.802168428007349, 40.812756994237027],
[-73.802590506106739, 40.812509319403347],
[-73.803047753942124, 40.812448708192221],
[-73.803470495673849, 40.812559365853851],
[-73.803613902242674, 40.812521106622512],
[-73.803650348474704, 40.812606140520444],
[-73.80351997906503, 40.812921871251568],
[-73.803620633280374, 40.812964740817705],
[-73.803737571624168, 40.812793607519964],
[-73.803779120198826, 40.812809906042993],
[-73.803614292611854, 40.813044514425513],
[-73.804236532017541, 40.813646527993221],
[-73.804358103466939, 40.813608538673947],
[-73.804153653010459, 40.813730672865091],
[-73.80422899591791, 40.813663305211655],
[-73.803559211936431, 40.813042712172248],
[-73.803614558059451, 40.812972191191555],
[-73.803513706430749, 40.812935243289374],
[-73.80338820741234, 40.813129966521252],
[-73.803252944549826, 40.81319677354994],
[-73.803235433169206, 40.813296366370693],
[-73.803461013801254, 40.813329243757508],
[-73.803232013787152, 40.813315809673639],
[-73.803224493666278, 40.813358580521204],
[-73.803455192997646, 40.813402690990507],
[-73.803967045232739, 40.81396655325652],
[-73.804090734082621, 40.813951524759652],
[-73.80443465897423, 40.814293196487164],
[-73.804530816098335, 40.814254619924334],
[-73.804433676573652, 40.814318885597253],
[-73.804036020004958, 40.813963048120179],
[-73.803959553454021, 40.813988085558215],
[-73.803430421099989, 40.813422119842834],
[-73.803221762992948, 40.813374109942174],
[-73.803198705388226, 40.813505240572098],
[-73.803516673373679, 40.813951963648613],
[-73.80418033130357, 40.814589962811425],
[-73.804314669045382, 40.814592160480899],
[-73.80439172006534, 40.814537856201675],
[-73.804430033335933, 40.814583062613089],
[-73.804329778927368, 40.81460314258581],
[-73.804472820805174, 40.814889831651072],
[-73.804718123328229, 40.815230505093929],
[-73.805114655118047, 40.815635849359538],
[-73.805960264160191, 40.816042449239404],
[-73.80619919500414, 40.816287070772759],
[-73.806284518144651, 40.816268486892234],
[-73.80641593661197, 40.816513690358782],
[-73.806572473263159, 40.816606355393482],
[-73.80630968775057, 40.816146807157722],
[-73.806117613737626, 40.815952208823482],
[-73.805378787848255, 40.815482620282644],
[-73.805081035329891, 40.815197963511096],
[-73.804554405851661, 40.814629841735602],
[-73.804659428151822, 40.814544988619396],
[-73.80468358440335, 40.814571940402018],
[-73.804589245725751, 40.814621511143962],
[-73.805278788252309, 40.815377264273678],
[-73.806101417980514, 40.815919716451234],
[-73.806329326324629, 40.816137958316084],
[-73.806612161227747, 40.816577945431561],
[-73.806719680532183, 40.816575170748031],
[-73.806579236980483, 40.81661807421051],
[-73.806606031896578, 40.816664494041071],
[-73.80692933243698, 40.816568379077822],
[-73.806535724939479, 40.815891986386262],
[-73.806941996019034, 40.816564614221825],
[-73.807046001535085, 40.816533693875279],
[-73.806946869978589, 40.816214078576763],
[-73.806628734894502, 40.815683839706203],
[-73.80657844298625, 40.815730314685602],
[-73.806401778114562, 40.81570203064949],
[-73.806412305787134, 40.815664449389558],
[-73.806617738026091, 40.815668558243431],
[-73.806593284056277, 40.815616706153619],
[-73.805674985540648, 40.815212292189734],
[-73.805319025806639, 40.814781312998207],
[-73.805165805833681, 40.813685080692849],
[-73.805192243692503, 40.813143821116348],
[-73.805052136462578, 40.812894962434115],
[-73.804796866771028, 40.812727892155756],
[-73.804387197251003, 40.812229793214577],
[-73.804214915075207, 40.81216226582476],
[-73.803902817892833, 40.812143998376492],
[-73.803613820821639, 40.81193828205911],
[-73.803348452132354, 40.811632068063858],
[-73.803166607394118, 40.811267696376099],
[-73.802725954658996, 40.810630164398184],
[-73.802242452682052, 40.810197393659202],
[-73.802049646329039, 40.810160714877242],
[-73.801355528130628, 40.810710844896022],
[-73.80115707624914, 40.810587765615004],
[-73.801011729098477, 40.810713399647284],
[-73.801240324644013, 40.810479339739246],
[-73.801466700073263, 40.810141717963091],
[-73.800109499829318, 40.809710953576825],
[-73.798537659649597, 40.80958707552967],
[-73.793763469761203, 40.807451167872841],
[-73.792289073374278, 40.806849005579465],
[-73.791662406520686, 40.806882912417912],
[-73.791400598768845, 40.806997877932297],
[-73.791301575645946, 40.807172520584103],
[-73.791590053313215, 40.807411598721835],
[-73.791523590879038, 40.807489087312469],
[-73.791441756649363, 40.807499749287331],
[-73.790864757387212, 40.80734113943538],
[-73.790739033351002, 40.806971042540276],
[-73.790734800499209, 40.806588828857763],
[-73.790428394429327, 40.806326649910737],
[-73.790252637286088, 40.806019196522008],
[-73.7901246322796, 40.805771559884498],
[-73.790062562619056, 40.805408941833193],
[-73.790284108741716, 40.804817103688784],
[-73.790659582578144, 40.804485792582092],
[-73.79103717449442, 40.804263031700785],
[-73.791694480009653, 40.804121917860762],
[-73.792062049017957, 40.804100892141037],
[-73.792245292191652, 40.803996364314834],
[-73.79284911697782, 40.804167128048746],
[-73.793389823528642, 40.804204330037415],
[-73.794006314516835, 40.804637952165272],
[-73.794013836259907, 40.804826861296782],
[-73.794516486262623, 40.80500321868417],
[-73.795049024792405, 40.805609294724327],
[-73.795777693278538, 40.806162949027986],
[-73.795841873285738, 40.806168721200976],
[-73.796010375691054, 40.805921031866987],
[-73.7961882392365, 40.805996877675035],
[-73.796209034731959, 40.805968590461802],
[-73.79650268526504, 40.80610443548742],
[-73.796369459997976, 40.806277202766587],
[-73.79702945544382, 40.806345377216374],
[-73.797919677694097, 40.806694227050563],
[-73.798859456998557, 40.807136472950091],
[-73.800576843757597, 40.808311824761503],
[-73.801952383767301, 40.809002826445472],
[-73.802503504662099, 40.809114065941159],
[-73.8029592168226, 40.809077082723263],
[-73.80359386615072, 40.808757170477882],
[-73.803731540993965, 40.80853414303246],
[-73.803926734172023, 40.808527970811646],
[-73.804053638876184, 40.808751658089946],
[-73.804678084130273, 40.80922579878002],
[-73.805015116524416, 40.80944269570697],
[-73.805061352327016, 40.80936497193477],
[-73.805118922657073, 40.809396934363043],
[-73.805036399189419, 40.809455602310649],
[-73.80621482271205, 40.81004741226068],
[-73.807139878841909, 40.810661676453726],
[-73.807594703692587, 40.811269283289981],
[-73.808227992166181, 40.8118910021971],
[-73.808940876301719, 40.812411655877696],
[-73.809920290817942, 40.812929152261752],
[-73.810268123285624, 40.812999480373279],
[-73.810501592464021, 40.812964941433876],
[-73.8105983227575, 40.812938824102119],
[-73.810669312878488, 40.812764366537529],
[-73.810784778683399, 40.812770951354977],
[-73.810904942000406, 40.812889354345899],
[-73.811077478862515, 40.812881835775151],
[-73.811247037683444, 40.812993290874715],
[-73.811566074259403, 40.813054001915091],
[-73.811773473175762, 40.813043718612988],
[-73.811850657474423, 40.812939400040236],
[-73.811941270777737, 40.813029830717291],
[-73.812765726626481, 40.813158630665789],
[-73.813133817963106, 40.813331054243008],
[-73.813470052449006, 40.813392518454435],
[-73.813598063456453, 40.813326342085638],
[-73.813552461133867, 40.813431990941574],
[-73.813888574354763, 40.813589888576956],
[-73.814157123667286, 40.813520892258538],
[-73.814430673125685, 40.813518375213114],
[-73.814460179193631, 40.812963102256617],
[-73.814369384368703, 40.812936401405963],
[-73.814499941160079, 40.812908287604465],
[-73.814618608451269, 40.812966897238695],
[-73.81449745463847, 40.812964931466951],
[-73.8144772719115, 40.813518541338546],
[-73.815663263919333, 40.813512039744516],
[-73.815761693039022, 40.813571849822068],
[-73.815879190935718, 40.813767055363797],
[-73.81620056962727, 40.813847475475228],
[-73.81648015546817, 40.813853231878788],
[-73.81667835320107, 40.813800439468217],
[-73.816748507069846, 40.813708497771231],
[-73.817372016931472, 40.813574343805435],
[-73.817359884567622, 40.813375719534633],
[-73.817389421576735, 40.813570736251663],
[-73.817920841277115, 40.813544679598088],
[-73.817935463036733, 40.813297964232817],
[-73.817976089531712, 40.813299024147412],
[-73.817958071767507, 40.813541089529558],
[-73.81804229161196, 40.813532967856268],
[-73.818084406012389, 40.813469306190278],
[-73.818743915834645, 40.813426088350873],
[-73.819816384549569, 40.813179933155894],
[-73.820069554369283, 40.813044738620327],
[-73.820107593403051, 40.812864069665395],
[-73.820392072802591, 40.812844014007197],
[-73.820413029544966, 40.812971611123977],
[-73.820555215834673, 40.813017655077914],
[-73.820490243263407, 40.812836449195551],
[-73.820445950324597, 40.812845231399336],
[-73.820404201630879, 40.812774355799938],
[-73.820462498975687, 40.812756744078087],
[-73.820439332565684, 40.812707141586515],
[-73.820244361220574, 40.812430677573971],
[-73.821065121372385, 40.812203591463273],
[-73.820323555820366, 40.812439652195913],
[-73.820420879505988, 40.812638072505187],
[-73.821129698049162, 40.812449756866819],
[-73.82044179624144, 40.812657577836184],
[-73.820562548975758, 40.812808237822821],
[-73.820527551334592, 40.812825885699425],
[-73.820587091439933, 40.813019446608088],
[-73.821179606953379, 40.81295258706848],
[-73.821254294972334, 40.812904906205375],
[-73.821224152557079, 40.81284998084557],
[-73.821412534398974, 40.812872952477996],
[-73.821394263617066, 40.812841393320319],
[-73.821457235786795, 40.812818477967866],
[-73.821422599152584, 40.812701587306357],
[-73.821517185047654, 40.812847321234372],
[-73.821689252615442, 40.812768327455068],
[-73.821695305499034, 40.812664834272439],
[-73.821755990674959, 40.812768536024201],
[-73.822109944750636, 40.812700879643849],
[-73.822091500082351, 40.81262827121305],
[-73.822177571261648, 40.812679740811674],
[-73.822282908918936, 40.812661499788575],
[-73.822134139691599, 40.812366339030184],
[-73.822171452187419, 40.812354005276411],
[-73.822308634939844, 40.812658215077512],
[-73.822639183805862, 40.812576006813508],
[-73.822725580913783, 40.812505329450659],
[-73.823394680204885, 40.812355885495428],
[-73.823450684028032, 40.812324106031951],
[-73.823474335503491, 40.8121913737791],
[-73.823557988749499, 40.812276473616812],
[-73.823620897329292, 40.812276569873468],
[-73.824063874326399, 40.812169261023605],
[-73.824535504238369, 40.811986954676229],
[-73.824596157455034, 40.811769995066349],
[-73.824710511252306, 40.811699358406059],
[-73.824794337886289, 40.811718958579512],
[-73.824873219499182, 40.811846536864948],
[-73.82505782163031, 40.811829917384152],
[-73.824809053599978, 40.811439281599952],
[-73.824927623804797, 40.811536824817168],
[-73.825076591717988, 40.811823313387428],
[-73.825243504678355, 40.811761340240047],
[-73.824879389380826, 40.811272983828161],
[-73.82491670053443, 40.811260649183424],
[-73.825266643180839, 40.811752347898477],
[-73.825490753185662, 40.811659330423375],
[-73.82523137433445, 40.811209788793683],
[-73.82551303817354, 40.811649133409354],
[-73.825650702320857, 40.811592290412463],
[-73.825357668595473, 40.811027643923715],
[-73.82567229150942, 40.811584743731352],
[-73.825766450331315, 40.811551828553334],
[-73.825499793493776, 40.811027859126284],
[-73.825537104615478, 40.81101552428062],
[-73.825812557189138, 40.811533704520308],
[-73.825927149846592, 40.811486501396629],
[-73.825797559052305, 40.811205335137153],
[-73.825956410999368, 40.811474448435064],
[-73.826114896547111, 40.811406375292208],
[-73.826224087468887, 40.811281770160782],
[-73.827251431859438, 40.811428593533179],
[-73.828218375534831, 40.811424591994601],
[-73.828788789533093, 40.811340668051251],
[-73.829338326658231, 40.811197350277688],
[-73.830179153342414, 40.810834549441424],
[-73.83094750433294, 40.810302088124239],
[-73.831474377542023, 40.809775148273935],
[-73.831878850088742, 40.809189081061589],
[-73.832166169996952, 40.808502277704648],
[-73.832228936087134, 40.807984483018153],
[-73.832156337096166, 40.807467430904715],
[-73.831880060682778, 40.806852913055053],
[-73.831801274542713, 40.806737296271024],
[-73.831672340196349, 40.806710783882302],
[-73.831620632745228, 40.806628128680622],
[-73.831683113552373, 40.806530596318069],
[-73.831912716153283, 40.806493899790375],
[-73.832059968812118, 40.806357863817929],
[-73.831960885030469, 40.805916291261518],
[-73.831671878827891, 40.805401841141467],
[-73.831615744554483, 40.804938255993228],
[-73.833013741582192, 40.804971027727269],
[-73.83431545174605, 40.805162656761738],
[-73.835068667900828, 40.80535872729893],
[-73.835892565784008, 40.805661448481082],
[-73.836912256533594, 40.805929093724458],
[-73.837436121260041, 40.806202642680567],
[-73.838060765281881, 40.807039774693294],
[-73.838048664220096, 40.80755797010692],
[-73.838244209403783, 40.808176809872208],
[-73.838482575684708, 40.80849122098715],
[-73.838618357559312, 40.808862770094912],
[-73.838972987659687, 40.809514719445559],
[-73.8391878232663, 40.809741611933667],
[-73.840087116347974, 40.811266068642908],
[-73.840259528962591, 40.811443036782741],
[-73.84030146989987, 40.811697520670819],
[-73.840263390444193, 40.812031062392791],
[-73.840431995408323, 40.812541128739475],
[-73.840294548718191, 40.812855649801051],
[-73.840327015544347, 40.813135788137778],
[-73.840268676803916, 40.813280475023809],
[-73.840023469920212, 40.813620023177648],
[-73.839662366834673, 40.813921645583214],
[-73.839629016696847, 40.814009718051842],
[-73.839657754486382, 40.81411676059539],
[-73.839568065287466, 40.81449124911066],
[-73.839530914811505, 40.815183454949],
[-73.839617425515556, 40.815381843825371],
[-73.839537666695534, 40.81581918222215],
[-73.839712806510278, 40.816176605090071],
[-73.839743559437593, 40.816406071502783],
[-73.836960702706691, 40.816340540534732],
[-73.836678563641783, 40.817588762913694],
[-73.836660686622466, 40.81797116118242],
[-73.836501459380187, 40.818710659292364],
[-73.836142395039047, 40.819198902998039],
[-73.836125989547881, 40.823497432031289],
[-73.836260036298256, 40.824971880684814],
[-73.836618196516127, 40.827114148693667],
[-73.836916089077235, 40.828451826101585],
[-73.837090613758349, 40.828967147310898],
[-73.840322947632345, 40.828823951222859],
[-73.842284283097541, 40.828646604981792],
[-73.842330774111119, 40.829073962452782],
[-73.842230136481135, 40.829830691248901],
[-73.841886438406107, 40.830713176535347],
[-73.840845845913421, 40.831748524329889],
[-73.840750473031193, 40.83177986361094],
[-73.840243963111391, 40.832204023321083],
[-73.839434119284604, 40.832983380288567],
[-73.839180951993043, 40.83315611875247],
[-73.838998091431478, 40.833382455358084],
[-73.838852323847334, 40.833690667848231],
[-73.83881438398808, 40.833958119304398],
[-73.838929266767224, 40.834427198085102],
[-73.838965156729088, 40.835006315757809],
[-73.83923392305779, 40.836741040258232],
[-73.839186420651444, 40.837107415925011],
[-73.839263103192621, 40.837204885477561],
[-73.839220693240563, 40.837392472615583],
[-73.839286718895607, 40.838042244632504],
[-73.839159842939452, 40.838459845655052],
[-73.839192552357105, 40.838713628057761],
[-73.839361804031711, 40.838801784715869],
[-73.839589537656977, 40.838798485825663],
[-73.839720143831869, 40.839565405984281],
[-73.839567002668772, 40.840547227886489],
[-73.839367942506499, 40.840882973481769],
[-73.838390562250751, 40.84067681413417],
[-73.837713748293609, 40.840406309516432],
[-73.837670016171899, 40.841121907655555],
[-73.836889251544235, 40.843374788305987],
[-73.835829114074713, 40.843471294694098],
[-73.832940764255937, 40.843519159966789],
[-73.830431863580912, 40.843857983630052],
[-73.827575360474142, 40.84473187468047],
[-73.826113007111545, 40.845338693771289],
[-73.826241329098579, 40.842993594144396],
[-73.825986868952782, 40.840675752386588]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX07",
"NTAName": "Bronxdale",
"Shape_Leng": 17426.999219099998299,
"Shape_Area": 15194897.6072
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.861379240695015, 40.871336512141447],
[-73.861562741298954, 40.86554946455496],
[-73.859612811831013, 40.865512718112363],
[-73.858909567906721, 40.864636926125918],
[-73.858060984990388, 40.863042359762645],
[-73.857803788310648, 40.863036216622348],
[-73.857353196143421, 40.859711605849668],
[-73.856637746041329, 40.858119171989209],
[-73.867587524687679, 40.857830089651884],
[-73.868077723514773, 40.857846842343427],
[-73.868173340236467, 40.857918549295697],
[-73.868188305588333, 40.858063833808266],
[-73.86841539696033, 40.857780357641083],
[-73.86954868104695, 40.85772602967981],
[-73.870889838986443, 40.857272817811328],
[-73.871002277392151, 40.857276842691078],
[-73.871082625790777, 40.857377039633349],
[-73.870579376565772, 40.861404553425281],
[-73.870388547229808, 40.864053876299273],
[-73.870561925246619, 40.871510778453704],
[-73.861379240695015, 40.871336512141447]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI05",
"NTAName": "New Springville-Bloomfield-Travis",
"Shape_Leng": 109225.694407,
"Shape_Area": 327752859.629
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.195559752593581, 40.635023986130555],
[-74.183687910928427, 40.628737925050686],
[-74.181902357135911, 40.627755807206192],
[-74.179937060479205, 40.626601296520917],
[-74.178883905737052, 40.625932871736872],
[-74.178281773680638, 40.625451361419955],
[-74.176100527930913, 40.62340624288138],
[-74.175196256663227, 40.622706243880586],
[-74.17459706258596, 40.62236401199165],
[-74.173612440943373, 40.621948740869797],
[-74.172362610238764, 40.621635798864965],
[-74.169536565114171, 40.62127050010983],
[-74.16888894245777, 40.621151143350609],
[-74.168080863396426, 40.620936256187015],
[-74.164841903853699, 40.619572404903359],
[-74.161630103268095, 40.617934936409348],
[-74.15986704925254, 40.616813225100174],
[-74.157926738624241, 40.615457424604152],
[-74.150186664511509, 40.609497811155229],
[-74.149543435570848, 40.609627172890271],
[-74.148783295272366, 40.609199987170982],
[-74.148269120010085, 40.608966709994831],
[-74.146906093330983, 40.608468340485871],
[-74.145494130016374, 40.60813857257147],
[-74.144711006242716, 40.608034297118394],
[-74.143918164141141, 40.60798983747879],
[-74.142832905522269, 40.607992595485555],
[-74.13215051174825, 40.608551963880842],
[-74.132104597224554, 40.608152924106314],
[-74.130940023272899, 40.608214312415292],
[-74.128748975064482, 40.60839174103171],
[-74.126509115243763, 40.60866290780352],
[-74.123506391973152, 40.609233602197115],
[-74.121351796263369, 40.609765268661583],
[-74.121168798817493, 40.608834375961329],
[-74.118344420544588, 40.609144126734037],
[-74.1174246645393, 40.609289009413779],
[-74.117069652733363, 40.608206249754929],
[-74.116493188434276, 40.60765675164923],
[-74.116158577894566, 40.607480947968838],
[-74.115877164014094, 40.607257470533895],
[-74.115113425958597, 40.602533817373072],
[-74.114870584140562, 40.602136659544037],
[-74.115000310230656, 40.602074285992515],
[-74.116843687193111, 40.601894807453775],
[-74.120595462767071, 40.601809758239554],
[-74.120555767657194, 40.60104529194858],
[-74.120595780848788, 40.600866937331283],
[-74.120704243153313, 40.600705980947033],
[-74.122294250561595, 40.599687177518796],
[-74.122643487057957, 40.599418584730458],
[-74.123185790699196, 40.599195115840473],
[-74.123224997349539, 40.599096953227559],
[-74.124701647738277, 40.598304926093121],
[-74.125061155100866, 40.598180056334073],
[-74.125452234115045, 40.59813734974918],
[-74.127981056531368, 40.59842483609134],
[-74.130919094255916, 40.598855048153986],
[-74.130998476672076, 40.598621542073502],
[-74.131239358520816, 40.598309748759682],
[-74.132054308011689, 40.597818705713486],
[-74.132813064694787, 40.597240973589869],
[-74.133787495649571, 40.596330532161616],
[-74.135101767822803, 40.594535032674735],
[-74.136397613902744, 40.591973457051537],
[-74.136599571406961, 40.59166794779334],
[-74.138497442363459, 40.589313705232342],
[-74.138644585936945, 40.589060804809776],
[-74.141682774562511, 40.58874118495153],
[-74.143873267309175, 40.588615299376997],
[-74.146364021375973, 40.588557869225731],
[-74.147905765422308, 40.588556346170023],
[-74.148198077485745, 40.588599680504984],
[-74.148468825017616, 40.588698541992699],
[-74.149727771639917, 40.589492503581951],
[-74.155372596554074, 40.592597338963515],
[-74.156103004300064, 40.593047475550506],
[-74.159892279483429, 40.595170141572211],
[-74.160257560934056, 40.595343938133162],
[-74.161899405782108, 40.595298771131979],
[-74.161888411073321, 40.594837457613465],
[-74.162004208402848, 40.594326342648543],
[-74.162193053225081, 40.593841516391088],
[-74.162610283618648, 40.593154532448622],
[-74.163230169481551, 40.592571294085261],
[-74.165786412592325, 40.590707803800399],
[-74.16770593043519, 40.588820819784694],
[-74.167962940730419, 40.588304028666002],
[-74.168429162774004, 40.586497923240472],
[-74.169623450085652, 40.578429043918533],
[-74.169954656426654, 40.573458038303592],
[-74.169942435906691, 40.571908620760389],
[-74.169685588145398, 40.569591521183924],
[-74.169626434186725, 40.568298409627033],
[-74.169825823163308, 40.56109042060551],
[-74.170655309639514, 40.561196446388188],
[-74.171462960761787, 40.561375429473031],
[-74.173485079958951, 40.562267489964086],
[-74.174887504223975, 40.562826419265335],
[-74.176593660742427, 40.563241329320675],
[-74.177945442082788, 40.563983366606685],
[-74.181595564727346, 40.565317961462547],
[-74.182259532335749, 40.565472350230067],
[-74.182958160110331, 40.565480200239584],
[-74.183403117443206, 40.565404962385614],
[-74.184250305759747, 40.565108990557803],
[-74.18525395953219, 40.564549354714295],
[-74.18627446177058, 40.564325527074026],
[-74.187268976300757, 40.564041693798515],
[-74.189099239993539, 40.563689271632931],
[-74.189477546114219, 40.563580990170628],
[-74.189979731282051, 40.563311605886078],
[-74.190560412688455, 40.562765455937488],
[-74.191010217348619, 40.562569402189567],
[-74.191460343131652, 40.562519429383727],
[-74.191919674654812, 40.562525704923658],
[-74.19288348022269, 40.56265384000212],
[-74.193173883640199, 40.562604344371231],
[-74.193410947048619, 40.562485039578362],
[-74.194075645383791, 40.562078473670468],
[-74.197694812214294, 40.558887053520117],
[-74.200182739225738, 40.556454433568511],
[-74.200626072490678, 40.556132261910243],
[-74.200915013434624, 40.556005260991661],
[-74.201421653522075, 40.555898410343005],
[-74.201946317500131, 40.555873852124819],
[-74.202612071868145, 40.555947706423503],
[-74.203148260345202, 40.556061784616574],
[-74.203532192105442, 40.556231009260046],
[-74.203984500759233, 40.556617484571419],
[-74.205200411758383, 40.557332220532182],
[-74.206138725342328, 40.557544505675729],
[-74.206998852819183, 40.557567489102745],
[-74.20569605157344, 40.558516005600367],
[-74.213240314745633, 40.556672623737008],
[-74.213135863289423, 40.557051009890998],
[-74.212940063154747, 40.557206720406484],
[-74.212643437989115, 40.55728972655433],
[-74.212673026654826, 40.557647560008029],
[-74.212269504037238, 40.557972792057406],
[-74.211998432301485, 40.558378066977113],
[-74.211756204551293, 40.559124757276152],
[-74.211784400219713, 40.559187906913763],
[-74.211970292347104, 40.559297737575712],
[-74.211880423216812, 40.559596937861762],
[-74.211178266081816, 40.560446842907183],
[-74.211173035603991, 40.560730128385913],
[-74.211296787683139, 40.560860885135448],
[-74.211340053472242, 40.561230353084035],
[-74.211193282955037, 40.56154221937723],
[-74.211096003550736, 40.562131470789168],
[-74.211343924853836, 40.562923312780242],
[-74.211379978587786, 40.563492205274827],
[-74.210962774012273, 40.564290450150224],
[-74.210743305422611, 40.5652281791291],
[-74.210623437439438, 40.565520200174497],
[-74.209541259233049, 40.567514584873244],
[-74.209534672329085, 40.567928048658032],
[-74.209385154291709, 40.567961725131639],
[-74.209321752683351, 40.568025300756887],
[-74.209241685472435, 40.568409858879768],
[-74.209058166510104, 40.568575017520516],
[-74.20886661112192, 40.568909793929137],
[-74.208843095504776, 40.569090280672008],
[-74.208926363286693, 40.569624298449973],
[-74.208758303014079, 40.56980773732964],
[-74.208618818325959, 40.569862585605271],
[-74.208459330295071, 40.570178251163462],
[-74.208255675708131, 40.57029184662187],
[-74.208017053814189, 40.570517957400732],
[-74.208013601337981, 40.570623363855809],
[-74.208168511021881, 40.570719423414239],
[-74.207835590149756, 40.572610000446446],
[-74.207262982732203, 40.574113027771538],
[-74.207078004102598, 40.574266339714008],
[-74.207081410866479, 40.574371999440743],
[-74.207226502060522, 40.574486796411705],
[-74.207091369794625, 40.574604446795945],
[-74.207070243002704, 40.574743025323485],
[-74.207284314131755, 40.575254532872584],
[-74.207106017702756, 40.575355823932782],
[-74.206974123868193, 40.575525127205957],
[-74.206812056267751, 40.575922020188194],
[-74.206886555877631, 40.576217271059569],
[-74.207089171793413, 40.576305589836174],
[-74.206927399634509, 40.57654399035156],
[-74.206702747359401, 40.576543180016756],
[-74.206580405319002, 40.57665273633409],
[-74.206531254956033, 40.576901637367683],
[-74.206692975096317, 40.57698904544462],
[-74.20681606548132, 40.577121241783928],
[-74.206808279616538, 40.577179568289942],
[-74.206716028267607, 40.577230757580068],
[-74.206635283036988, 40.577396121726387],
[-74.206504683643843, 40.577412149770112],
[-74.206323441953558, 40.577538818964825],
[-74.206181172104493, 40.577903527587182],
[-74.206173902067192, 40.578163474741928],
[-74.205917325092415, 40.578616647051007],
[-74.205992550814912, 40.580410383935892],
[-74.205764941556296, 40.580655810160181],
[-74.205724032897137, 40.580965688932132],
[-74.20541737056935, 40.581069486480246],
[-74.205287968222109, 40.581202881590023],
[-74.205267003783845, 40.581373875096126],
[-74.205081369870797, 40.581599468300034],
[-74.205123673628819, 40.581781219333457],
[-74.205070124647023, 40.5819148905235],
[-74.205132259195011, 40.582066521470203],
[-74.205088544746687, 40.582208190070169],
[-74.204965594538592, 40.582563721077939],
[-74.204864303884392, 40.5826696938312],
[-74.204769762909081, 40.582691234654803],
[-74.204709119027257, 40.582797669406794],
[-74.204739011926392, 40.58317590192997],
[-74.204624173657862, 40.583206562938145],
[-74.204400764996123, 40.583712945840752],
[-74.204468353006973, 40.584043024571272],
[-74.204633902740255, 40.584323238800081],
[-74.204364338989294, 40.584634148868062],
[-74.204442001190301, 40.585050232886751],
[-74.204414717295464, 40.585523674823548],
[-74.20431893886213, 40.5856007842591],
[-74.204336219645711, 40.585751428174945],
[-74.20413954494434, 40.585836197054654],
[-74.204119403242558, 40.585895541074571],
[-74.204274942826004, 40.586110054126955],
[-74.204202285311894, 40.586414202142414],
[-74.204265330027411, 40.587320534540346],
[-74.204378201029201, 40.587560770747686],
[-74.204386333882482, 40.587928356344932],
[-74.204542122941007, 40.587993264462384],
[-74.204580656946433, 40.58821760318002],
[-74.20449833794224, 40.588342776187631],
[-74.204272703991975, 40.588482555449318],
[-74.204260680744113, 40.588627023001777],
[-74.204181317627715, 40.588666372556617],
[-74.204122009643626, 40.58888147442012],
[-74.204203682473491, 40.589087300784016],
[-74.204323021423932, 40.589136617473308],
[-74.204574220727864, 40.588719138822881],
[-74.204705298486275, 40.588772370830547],
[-74.204435484007817, 40.589218397291695],
[-74.204646089432089, 40.589285745465801],
[-74.204408926175176, 40.589706763810376],
[-74.204203006091618, 40.589642971741675],
[-74.203858866092759, 40.590249525361621],
[-74.203699743356466, 40.590199905972213],
[-74.20394167611984, 40.58980739639928],
[-74.203885504562166, 40.589786109736252],
[-74.20265866971728, 40.59072214527977],
[-74.202534969068068, 40.590647960160226],
[-74.20237763610119, 40.590644712498943],
[-74.20201405533291, 40.590895798622427],
[-74.202467759565849, 40.590838824857329],
[-74.203052549115029, 40.591140541809821],
[-74.202963401956453, 40.591230922776631],
[-74.202454950631363, 40.590951125851966],
[-74.202027339207007, 40.590999079291961],
[-74.202123782331086, 40.591253326955375],
[-74.20189898808043, 40.591393252704663],
[-74.201840929231736, 40.591636483361818],
[-74.202003498130267, 40.591780764795011],
[-74.202302845917558, 40.591469321774326],
[-74.202316457681718, 40.591523964600128],
[-74.202020324577774, 40.591786715019531],
[-74.202059608716155, 40.591808854189537],
[-74.202009445573367, 40.591860299961034],
[-74.201943676217553, 40.591823674119922],
[-74.201754789485747, 40.592017324818414],
[-74.201824436755359, 40.59205295636847],
[-74.201782482924699, 40.592095134284193],
[-74.201721601605854, 40.592053021679106],
[-74.201303393943945, 40.592531488640532],
[-74.200925404963584, 40.59286637930483],
[-74.200748808064048, 40.592750339419752],
[-74.200471268804449, 40.592811752111515],
[-74.200331021309211, 40.593095398803214],
[-74.1997406100636, 40.59356466906813],
[-74.199362123454748, 40.594094082291775],
[-74.199493579868843, 40.594240640918635],
[-74.199483449271113, 40.594320936251464],
[-74.19902465726129, 40.59467644801812],
[-74.198874436070369, 40.594944927759222],
[-74.198732326196634, 40.595011798309336],
[-74.198561371435872, 40.595552781012294],
[-74.198008800776066, 40.596261837149569],
[-74.197950028516019, 40.596470354803671],
[-74.197637177821576, 40.596776683748338],
[-74.197513576527768, 40.596798986037868],
[-74.197522384963534, 40.597364548349162],
[-74.197452433806632, 40.597557758992799],
[-74.19749670863952, 40.597724259604533],
[-74.197383788939291, 40.59780564230558],
[-74.197306197797545, 40.598059522239787],
[-74.197417643726595, 40.598203679702245],
[-74.197438932519518, 40.598460834052133],
[-74.198759582052986, 40.601711975176229],
[-74.200148667599109, 40.603683350098684],
[-74.201385274065814, 40.604636966209604],
[-74.202218498510561, 40.605969679616479],
[-74.202816283745918, 40.608270827967296],
[-74.202672991690832, 40.609827861231885],
[-74.202301790141078, 40.611875642039003],
[-74.202443744493721, 40.613284693429335],
[-74.200383484286689, 40.616428097238582],
[-74.200589865119795, 40.617028927388283],
[-74.200828043861975, 40.617094288048229],
[-74.200914232382829, 40.617798822398584],
[-74.200874787401318, 40.618100410855853],
[-74.200782903839382, 40.618111675721387],
[-74.20069507526793, 40.617979433723306],
[-74.200541563316676, 40.617997638990971],
[-74.200438671096066, 40.618075546664087],
[-74.200352038560965, 40.618342198052105],
[-74.200516571490425, 40.618634034631995],
[-74.200839915165957, 40.618804302606122],
[-74.200697992742434, 40.618949758130746],
[-74.200680713488723, 40.619168454348056],
[-74.200820916318079, 40.61956881248706],
[-74.200964996988958, 40.619767580584437],
[-74.201035483947081, 40.620095455804062],
[-74.200986844502822, 40.620321893958923],
[-74.201069974031242, 40.620381539773575],
[-74.200774079259133, 40.620394870069298],
[-74.200505881957142, 40.620299671597486],
[-74.200457831648592, 40.620350151538076],
[-74.200495147423837, 40.620457710591069],
[-74.200428001919192, 40.620495411016812],
[-74.200526880041622, 40.620572967453725],
[-74.200873315820488, 40.620591154721112],
[-74.201121381946933, 40.621073322938138],
[-74.201258473101177, 40.621554830872171],
[-74.201432399980391, 40.621612608965307],
[-74.201308107791647, 40.621658098267176],
[-74.201230891375275, 40.622074210990583],
[-74.201324145789982, 40.622515648995446],
[-74.201275342631334, 40.622688276286041],
[-74.201545533347684, 40.622698052023075],
[-74.201632010381573, 40.62312156545854],
[-74.201584944355631, 40.623498333681397],
[-74.201344089053492, 40.623552568644286],
[-74.20139733073573, 40.62373612103805],
[-74.201076627903333, 40.624078346589755],
[-74.201143942163867, 40.624467727275871],
[-74.200978480413767, 40.625362325463385],
[-74.20106090574285, 40.625557784350704],
[-74.201060800332996, 40.625895179006818],
[-74.201182523536659, 40.62611021520685],
[-74.201216155316175, 40.626053771069621],
[-74.201416706677591, 40.626070513393131],
[-74.200986254994461, 40.62934414810745],
[-74.200804796812804, 40.629332571444237],
[-74.200754838954396, 40.629594634113431],
[-74.200621232885197, 40.629587638108063],
[-74.20047681715856, 40.629657077505016],
[-74.200425737851162, 40.629821165953324],
[-74.200408127716173, 40.630250100694539],
[-74.200724237280269, 40.630275007317245],
[-74.200773558410233, 40.630245975901232],
[-74.200787299827866, 40.630346273462649],
[-74.200746384784765, 40.630370434747412],
[-74.200708380162411, 40.630323808906148],
[-74.200403115770925, 40.630292362268506],
[-74.200184621590523, 40.631328669464182],
[-74.200353467108229, 40.631377236551259],
[-74.200418090547217, 40.631348588698366],
[-74.200403803731533, 40.6314458206772],
[-74.200172654077321, 40.631361080530979],
[-74.200020799547801, 40.6316207362025],
[-74.198690221042852, 40.632698760932506],
[-74.198500805625883, 40.632797911274352],
[-74.198340812953049, 40.632963826979754],
[-74.198400578548913, 40.63307903541763],
[-74.198343583296847, 40.633141487706276],
[-74.198159986581004, 40.633234908336668],
[-74.197959390075354, 40.63326685737902],
[-74.197591092146368, 40.633081284078585],
[-74.197461449741553, 40.633221589005437],
[-74.197286752227186, 40.633291930579489],
[-74.197226827890219, 40.633501303052313],
[-74.197285843609464, 40.633742929374797],
[-74.197149607106169, 40.63392851677316],
[-74.196886187539505, 40.633949467480747],
[-74.196469651591343, 40.634135533685338],
[-74.196332892298003, 40.634526118816225],
[-74.19618464614517, 40.634625724563669],
[-74.196198797251782, 40.634730209672533],
[-74.196033038632777, 40.634877187276132],
[-74.19602904691304, 40.634995848304399],
[-74.195883553967619, 40.635066961837218],
[-74.195559752593581, 40.635023986130555]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 5,
"BoroName": "Staten Island",
"CountyFIPS": "085",
"NTACode": "SI32",
"NTAName": "Rossville-Woodrow",
"Shape_Leng": 33248.966432300003362,
"Shape_Area": 64948359.9859
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-74.203148260345202, 40.556061784616574],
[-74.20326490006957, 40.555628476993355],
[-74.200970392763921, 40.550790139340307],
[-74.199850316155548, 40.548132419104526],
[-74.19730759116851, 40.543262045725037],
[-74.196092983837445, 40.540497736875608],
[-74.192374034122977, 40.533040610564314],
[-74.191743688367666, 40.53191669720956],
[-74.19313383033797, 40.531194915641734],
[-74.193984569225506, 40.530871047133132],
[-74.196083901645153, 40.529911747235168],
[-74.199097837671587, 40.52829964529554],
[-74.199843605101492, 40.527857441051452],
[-74.200710575284361, 40.527225952382722],
[-74.201033241756676, 40.526919415352161],
[-74.201526616250931, 40.526265206398065],
[-74.202769733384258, 40.525907218079801],
[-74.207553064746278, 40.52524734900318],
[-74.208063387535518, 40.525238938519919],
[-74.208827696550699, 40.525379899011213],
[-74.209196602029394, 40.525376579771965],
[-74.20961205809617, 40.52522663513917],
[-74.209834043667556, 40.524990767691605],
[-74.210282018525589, 40.524721067197156],
[-74.211425183838784, 40.524414101550455],
[-74.212292945284062, 40.524276853080295],
[-74.215672304212077, 40.523957628361032],
[-74.215596992908843, 40.524061069624032],
[-74.215607836390902, 40.525494739255706],
[-74.215743410970006, 40.52646400559],
[-74.216845170775358, 40.52864208718379],
[-74.217283245096212, 40.529873283052076],
[-74.218006764554971, 40.532298590227249],
[-74.218315152370224, 40.535312078801915],
[-74.217910534906508, 40.537028860884007],
[-74.217709761229955, 40.538311993245088],
[-74.217677857779066, 40.5401315469949],
[-74.217769416445734, 40.541126629926381],
[-74.218444324871086, 40.542964094755533],
[-74.221315627153714, 40.550253073856474],
[-74.221148698256414, 40.550489658403329],
[-74.219115764572749, 40.552232314136731],
[-74.217783777078779, 40.553049188028666],
[-74.217772326538423, 40.553244885044165],
[-74.217892044279338, 40.553835854855315],
[-74.217843978605117, 40.554432717640516],
[-74.217213381615252, 40.554714858943498],
[-74.215093396887667, 40.555498932556752],
[-74.214738030168689, 40.555576132954641],
[-74.213501755611119, 40.55566761810389],
[-74.212200340928305, 40.556443430360417],
[-74.210507894470695, 40.557064181867148],
[-74.206998852819183, 40.557567489102745],
[-74.206138725342328, 40.557544505675729],
[-74.205575884395543, 40.557443592962585],
[-74.205062883182208, 40.557277876271094],
[-74.203984500759233, 40.556617484571419],
[-74.203532192105442, 40.556231009260046],
[-74.203148260345202, 40.556061784616574]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN41",
"NTAName": "Fresh Meadows-Utopia",
"Shape_Leng": 22107.124925399999483,
"Shape_Area": 27774859.4949
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.777575068820596, 40.73019327580699],
[-73.781160549676187, 40.729212758598919],
[-73.790856598438339, 40.726027489297671],
[-73.791744726697871, 40.725788850395666],
[-73.793789386517801, 40.730701181663861],
[-73.79384983414468, 40.731246783490924],
[-73.793819372303403, 40.731657388233799],
[-73.793909425157636, 40.731717775562174],
[-73.793977087147567, 40.73229685316651],
[-73.794384497842543, 40.732865929349082],
[-73.794594865411, 40.733409358171549],
[-73.794586332404023, 40.735052252144641],
[-73.795164508875942, 40.736411403992982],
[-73.795948528310973, 40.73781371914783],
[-73.795848032888287, 40.738074680211113],
[-73.796510291157688, 40.737908637229054],
[-73.796503500059785, 40.738003835926413],
[-73.796076051607457, 40.738144298246368],
[-73.796361088753613, 40.738124153260308],
[-73.796402186402915, 40.738282358190233],
[-73.795337729221259, 40.738493673275336],
[-73.7803660354394, 40.742591662644003],
[-73.778599247779937, 40.742908122651521],
[-73.775738369270982, 40.743325647163992],
[-73.774550668502897, 40.740815102009321],
[-73.773157936254549, 40.736992898159265],
[-73.772295855232187, 40.735109696236179],
[-73.771216780931212, 40.733337477278738],
[-73.77010680441991, 40.731779183261452],
[-73.774913352490174, 40.730912859767052],
[-73.777575068820596, 40.73019327580699]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN18",
"NTAName": "Rego Park",
"Shape_Leng": 26675.61717679999856,
"Shape_Area": 19941034.5827
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.858724657632592, 40.73570864419564],
[-73.856256651023983, 40.730959123100234],
[-73.858510979083931, 40.730286802804557],
[-73.857629236479852, 40.72860692181527],
[-73.857715924115453, 40.7285054608001],
[-73.85741240598783, 40.728322479762937],
[-73.858087657338146, 40.728568721830925],
[-73.859419880331473, 40.726464837562943],
[-73.857271081169259, 40.725681298089526],
[-73.858054168940086, 40.724445406102539],
[-73.862038337834889, 40.725956785405828],
[-73.859907964889516, 40.724346234659166],
[-73.858680976485701, 40.722612440484021],
[-73.857771684703238, 40.716456293206051],
[-73.857448579092903, 40.713692800048662],
[-73.857292871923264, 40.711467676688379],
[-73.859759328629607, 40.711845059282055],
[-73.859629209701808, 40.713975295194537],
[-73.859827461722375, 40.714561689609098],
[-73.860037898757739, 40.714932235723943],
[-73.863018501424349, 40.717707881856818],
[-73.865238706117438, 40.719976710026678],
[-73.869292704890839, 40.724435929474879],
[-73.869707653512307, 40.725146434141379],
[-73.870845394241812, 40.727484593440543],
[-73.871460742495728, 40.729326374138402],
[-73.875091541556088, 40.730671363219606],
[-73.870547251648389, 40.732037018702137],
[-73.864470861790224, 40.734007274928928],
[-73.864621933561068, 40.734281690114742],
[-73.858865557538024, 40.735939139311085],
[-73.858724657632592, 40.73570864419564]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN25",
"NTAName": "Corona",
"Shape_Leng": 23900.478318900000886,
"Shape_Area": 20084081.5829
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.854425752536628, 40.748851726884496],
[-73.854054532987178, 40.748158316947894],
[-73.853605682938209, 40.747496828592006],
[-73.850115566364181, 40.740723562798379],
[-73.847801646205241, 40.740049676962151],
[-73.848236280108992, 40.73929040113395],
[-73.847778442174288, 40.739344835246307],
[-73.847508203441393, 40.739007807040032],
[-73.849564537854164, 40.738106092395924],
[-73.851870674824966, 40.737342929186021],
[-73.85340136479013, 40.737002758278209],
[-73.855674276512161, 40.736586658152717],
[-73.858724657632592, 40.73570864419564],
[-73.858865557538024, 40.735939139311085],
[-73.864621933561068, 40.734281690114742],
[-73.865829560398979, 40.736643223514562],
[-73.867562534287245, 40.740941888591188],
[-73.867557295549574, 40.741677696823885],
[-73.867471692337162, 40.742095722519601],
[-73.86749135058345, 40.743302047457348],
[-73.867909638603578, 40.744933716588363],
[-73.860320276597264, 40.747195699021354],
[-73.860273360934329, 40.74710172766283],
[-73.854425752536628, 40.748851726884496]
]
],
[
[
[-73.854425752536628, 40.748851726884496],
[-73.855834955660555, 40.751577272458881],
[-73.854555522562876, 40.751961919034088],
[-73.85579909030595, 40.754409528174612],
[-73.853830813555348, 40.754958337513372],
[-73.853126354642072, 40.755109343016308],
[-73.853007622680096, 40.754554565520174],
[-73.852617253522425, 40.753405065527922],
[-73.850864397100324, 40.749995641874605],
[-73.854425752536628, 40.748851726884496]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN29",
"NTAName": "Elmhurst",
"Shape_Leng": 36705.016430199997558,
"Shape_Area": 32671507.7917
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.867909638603578, 40.744933716588363],
[-73.86749135058345, 40.743302047457348],
[-73.867471692337162, 40.742095722519601],
[-73.867557295549574, 40.741677696823885],
[-73.867562534287245, 40.740941888591188],
[-73.865829560398979, 40.736643223514562],
[-73.864470861790224, 40.734007274928928],
[-73.870547251648389, 40.732037018702137],
[-73.876283024266357, 40.730313093919648],
[-73.879693540885071, 40.729010159418607],
[-73.880490682124844, 40.728816542046232],
[-73.881309176877039, 40.728680826521192],
[-73.885007295019903, 40.728371895070104],
[-73.886237658849794, 40.72812701722863],
[-73.887205249540472, 40.72779299719091],
[-73.887235730076625, 40.728932964660807],
[-73.887360932700673, 40.729570783396198],
[-73.887559621605106, 40.730197055740703],
[-73.888059751521908, 40.730087230197633],
[-73.88852285901477, 40.734531160015322],
[-73.887514266208797, 40.734225348823081],
[-73.886891977563522, 40.734099162842888],
[-73.885000178557419, 40.733970056541146],
[-73.883810869684709, 40.733559535668725],
[-73.883529103696148, 40.733848278704315],
[-73.881086916117894, 40.732935630218016],
[-73.880293919211894, 40.732561645303356],
[-73.877521957659283, 40.731593169216296],
[-73.877251224537545, 40.731794153381486],
[-73.878224559640387, 40.7321022697678],
[-73.877082762817011, 40.732909316762054],
[-73.880661889455112, 40.735707874190936],
[-73.880515367916132, 40.735752171924034],
[-73.880330593230184, 40.737333677227298],
[-73.882302526772222, 40.737707701154001],
[-73.879451548923228, 40.738198113637495],
[-73.877430583524855, 40.738600515668317],
[-73.877918317427017, 40.739394957188566],
[-73.878486822932686, 40.739933909058969],
[-73.879107397566855, 40.740445078215437],
[-73.881003879840236, 40.741840662492585],
[-73.882942868152554, 40.741609543720138],
[-73.882829121730339, 40.740992282854272],
[-73.885512251285192, 40.740165018885797],
[-73.885725881243403, 40.741288705926756],
[-73.887511320575101, 40.741082526635637],
[-73.887986507953244, 40.743548192370021],
[-73.890716475229851, 40.74312778397546],
[-73.891391455323372, 40.746641004329845],
[-73.891750487925307, 40.746811727636668],
[-73.86942458603157, 40.749156851519999],
[-73.868913958013025, 40.748368877041763],
[-73.86852925170723, 40.74758830224426],
[-73.868437510288771, 40.747031197315799],
[-73.867909638603578, 40.744933716588363]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN44",
"NTAName": "Glen Oaks-Floral Park-New Hyde Park",
"Shape_Leng": 33596.52641830000357,
"Shape_Area": 45665592.3077
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.710499953620726, 40.727227087413205],
[-73.710752172302861, 40.730525375058399],
[-73.711478048761165, 40.732501401376332],
[-73.714769826905609, 40.737900348238817],
[-73.715449468357107, 40.739216804071205],
[-73.718944063311795, 40.746944255672666],
[-73.719886640049367, 40.749369510672864],
[-73.720101015015359, 40.749775329304839],
[-73.722585718437401, 40.748850451206117],
[-73.723395962177378, 40.750389075924367],
[-73.726272132229383, 40.749306490760581],
[-73.727680326181741, 40.74963924507562],
[-73.728062049870445, 40.74856135087763],
[-73.728290559622963, 40.747458664996827],
[-73.728886215798397, 40.747566636703439],
[-73.728961830104424, 40.747632869035549],
[-73.728719528034404, 40.748197080556579],
[-73.728253810495048, 40.749693728645596],
[-73.727884011004235, 40.750387483323877],
[-73.727378891401585, 40.751029567399691],
[-73.727093895577696, 40.751341604743665],
[-73.726414721371526, 40.751915877812721],
[-73.72384451856351, 40.753456811667498],
[-73.723266734112798, 40.753947599496982],
[-73.722645435278409, 40.754600524027786],
[-73.722410947975703, 40.754920188745814],
[-73.721458702613546, 40.75665808054616],
[-73.720965117101628, 40.757293789168727],
[-73.72031595291358, 40.757897258620083],
[-73.719564607207403, 40.758450560420506],
[-73.718970503648563, 40.75878323753907],
[-73.718319718185384, 40.759082076177911],
[-73.717672370657056, 40.759311211520334],
[-73.716854404447119, 40.759525514522245],
[-73.716125282334986, 40.759660714307273],
[-73.714982140229637, 40.759782865022075],
[-73.713518281059919, 40.759837730830796],
[-73.712449407307162, 40.75924170421861],
[-73.707825386315932, 40.756216404324327],
[-73.70527128316661, 40.754770440951098],
[-73.702178416798915, 40.752885939497325],
[-73.701633458260702, 40.752493329691156],
[-73.701347159165749, 40.75078058137418],
[-73.701173165489138, 40.748924301621166],
[-73.700893400278417, 40.747057265625138],
[-73.700779607405664, 40.745041453798414],
[-73.700581640374537, 40.743183841588454],
[-73.700020204372166, 40.7392365417302],
[-73.700811470962606, 40.738439152387905],
[-73.701470730381175, 40.73751156096408],
[-73.702060363564627, 40.736442757168412],
[-73.706480281997301, 40.729711299228782],
[-73.70766217305993, 40.727830934509427],
[-73.710499953620726, 40.727227087413205]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN60",
"NTAName": "Kew Gardens",
"Shape_Leng": 21357.418655900000886,
"Shape_Area": 20452336.7409
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.816378244929851, 40.702451964468636],
[-73.817443407809577, 40.702417520090151],
[-73.817543761933933, 40.702657348817432],
[-73.82147824879263, 40.703415604251099],
[-73.822458903440904, 40.703655531283545],
[-73.822708114364161, 40.703624812754242],
[-73.831521096066439, 40.701389628798729],
[-73.832132040858269, 40.70279408079233],
[-73.833917096866656, 40.702347367970354],
[-73.834602449160599, 40.703927467125432],
[-73.835561777736118, 40.703680883184084],
[-73.835965924037041, 40.70344533017505],
[-73.836169713252204, 40.703414829758863],
[-73.836440569556657, 40.703454947159123],
[-73.836618821981816, 40.703420017872773],
[-73.836962378110357, 40.704212452333117],
[-73.838005790920349, 40.705870746353362],
[-73.838101930873052, 40.706222822822852],
[-73.838081600077103, 40.706492520252411],
[-73.837982802422729, 40.706751987803912],
[-73.837147029890147, 40.70795704576075],
[-73.837895597681211, 40.708273466059396],
[-73.838648205811694, 40.708484722362186],
[-73.843146253012961, 40.709223456418741],
[-73.841339366090892, 40.709946234363116],
[-73.839724399088468, 40.71039876558735],
[-73.83952312732589, 40.71049645145645],
[-73.837708941993696, 40.711036484271276],
[-73.837036882173081, 40.711311705082124],
[-73.836114765167608, 40.711825146873309],
[-73.836005107524983, 40.711729671540674],
[-73.831298178768748, 40.714264133076782],
[-73.829957526272949, 40.71458088793365],
[-73.828508077165168, 40.715044329760801],
[-73.827155242150582, 40.7153880043901],
[-73.825919451980226, 40.71598987682755],
[-73.825597163292713, 40.715514336939208],
[-73.824717494937119, 40.714506849726739],
[-73.82428940584002, 40.713870066106843],
[-73.823850720684092, 40.712933205640638],
[-73.823638606454438, 40.712666644482155],
[-73.823202474454902, 40.712205948691775],
[-73.820985191305269, 40.710323845271546],
[-73.820452363935715, 40.70977454857411],
[-73.819553633258906, 40.708425229555154],
[-73.818099051968233, 40.70597371522998],
[-73.81709738756588, 40.704029801085063],
[-73.816378244929851, 40.702451964468636]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN66",
"NTAName": "Laurelton",
"Shape_Leng": 29501.128309299998364,
"Shape_Area": 39764130.2416
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.733558353210341, 40.685517053807644],
[-73.727182724940064, 40.683597330018749],
[-73.728102387993914, 40.681765637074797],
[-73.728516567967844, 40.681210472559933],
[-73.729247398971538, 40.680430985640498],
[-73.729505557952336, 40.680055725643854],
[-73.730473011947709, 40.679347937261603],
[-73.731061424726889, 40.678306620722488],
[-73.733032234113381, 40.676495026141055],
[-73.735059153461975, 40.673989749967248],
[-73.735974693716727, 40.672567421782375],
[-73.73624941770629, 40.672630601723107],
[-73.735934385903903, 40.672432971356457],
[-73.737184244549397, 40.670909813249168],
[-73.737757943909187, 40.670057546901283],
[-73.74117817298486, 40.666402954373268],
[-73.756021734424877, 40.666391716104144],
[-73.757631296181486, 40.666451156607003],
[-73.756995333614228, 40.667741268564356],
[-73.756716024684579, 40.668562526875164],
[-73.756437343579577, 40.669666378743457],
[-73.756406213019602, 40.670372915422824],
[-73.756483745617189, 40.671489866373136],
[-73.756362392596728, 40.672429237110244],
[-73.758147606785357, 40.672706914807655],
[-73.75857198867719, 40.672637331616613],
[-73.758596302770258, 40.672747903665069],
[-73.760314640009412, 40.6751099713793],
[-73.756918817190311, 40.676528870874932],
[-73.75672742391518, 40.676208765412049],
[-73.756488858358068, 40.676022762088451],
[-73.755761692274689, 40.675885909420444],
[-73.755234578057141, 40.677288409244824],
[-73.75484909670557, 40.677928838387388],
[-73.752258286854115, 40.681491411474006],
[-73.751804092156576, 40.682403323490654],
[-73.751030206225721, 40.684222867368142],
[-73.750089911971301, 40.685923446360121],
[-73.748093026578417, 40.685283092591888],
[-73.748015844923486, 40.685418776111149],
[-73.740952914100177, 40.683291215707385],
[-73.740463880754433, 40.684193838213794],
[-73.739502375472441, 40.683896682520697],
[-73.739645964988384, 40.683598485925963],
[-73.735811492552884, 40.682452446198567],
[-73.734237348634636, 40.68534277938339],
[-73.733733501377699, 40.685200486079701],
[-73.733558353210341, 40.685517053807644]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN28",
"NTAName": "Jackson Heights",
"Shape_Leng": 29425.581581400001596,
"Shape_Area": 47842277.0416
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.873657217120808, 40.756803485601992],
[-73.870842156407505, 40.751544693089471],
[-73.86942458603157, 40.749156851519999],
[-73.891750487925307, 40.746811727636668],
[-73.892409066818175, 40.747135328888824],
[-73.89624245572702, 40.748719545581679],
[-73.897076500198835, 40.750118875578863],
[-73.897211437775624, 40.750466375410717],
[-73.897339428149266, 40.75141956802873],
[-73.897622978215566, 40.752523183602662],
[-73.897902353250529, 40.753087715088427],
[-73.898971171146002, 40.754715305945304],
[-73.899235837136814, 40.755530017451171],
[-73.89976862080843, 40.756664237360127],
[-73.899860475258407, 40.757337462519111],
[-73.899789216644578, 40.757898478894774],
[-73.899567439398879, 40.758545262512868],
[-73.897007146068177, 40.762351193489593],
[-73.896247447316341, 40.763332747213731],
[-73.895424477948623, 40.763947245817945],
[-73.89516837063907, 40.764197362230973],
[-73.894835351250833, 40.764655316201377],
[-73.894617164094939, 40.765256257411849],
[-73.894460442833307, 40.765446391153922],
[-73.894037631302055, 40.765758919728114],
[-73.89349605945462, 40.765950930000749],
[-73.893251087880671, 40.766271445231091],
[-73.891835357963473, 40.766227080049347],
[-73.890890436941021, 40.765858198110394],
[-73.88918520529235, 40.766297691929203],
[-73.888354711114104, 40.766697713800028],
[-73.886025541989028, 40.767282958202564],
[-73.884397294282124, 40.767842170369349],
[-73.882772418262519, 40.768529441437451],
[-73.878549156737705, 40.77077199556588],
[-73.877433398373071, 40.771200255282267],
[-73.876089496418643, 40.771536903086599],
[-73.875973626148195, 40.771042762244896],
[-73.876014155797421, 40.769816976085004],
[-73.876387924441715, 40.768999558474071],
[-73.874995750939604, 40.761264322429419],
[-73.87601371860643, 40.761443732139405],
[-73.875138742995333, 40.756633816060678],
[-73.873657217120808, 40.756803485601992]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK42",
"NTAName": "Flatbush",
"Shape_Leng": 38737.96046010000282,
"Shape_Area": 45254292.7562
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.95870789822969, 40.65038727378257],
[-73.9582608207769, 40.648532745031297],
[-73.95815003514555, 40.647767673691114],
[-73.957977646829249, 40.644576256019043],
[-73.957636445762532, 40.642689499463202],
[-73.957463598708813, 40.642371669776281],
[-73.953600047193774, 40.638422347449996],
[-73.95116311183466, 40.638448183395688],
[-73.945372724241437, 40.638786955243674],
[-73.944628854259875, 40.631837734632107],
[-73.94647961784932, 40.631708161678063],
[-73.944155352558241, 40.629508285207962],
[-73.959955651218351, 40.627778672540586],
[-73.960407343420542, 40.630162530576236],
[-73.962325993645905, 40.629968716737558],
[-73.97136622157025, 40.628929162715856],
[-73.970921262687767, 40.626569985505505],
[-73.976234536827533, 40.625976350730213],
[-73.97716511994669, 40.630746654129318],
[-73.969868693395711, 40.634194674598142],
[-73.97029036162948, 40.636406341418002],
[-73.968038684877982, 40.636650985436347],
[-73.971396316881524, 40.648257786114058],
[-73.970693441266121, 40.648496776396591],
[-73.9646543863076, 40.650887727955961],
[-73.966213218932594, 40.653189405048934],
[-73.959861030471401, 40.655634788936482],
[-73.95932926470222, 40.652928178711704],
[-73.95870789822969, 40.65038727378257]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN06",
"NTAName": "Jamaica Estates-Holliswood",
"Shape_Leng": 35446.879737399998703,
"Shape_Area": 42789695.341
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.756703292337221, 40.726229432159201],
[-73.756709873004056, 40.726179072948121],
[-73.755480736881793, 40.725119807263894],
[-73.755086250989635, 40.724490060116366],
[-73.754969194627947, 40.724159647308994],
[-73.755771210053538, 40.723640215893482],
[-73.753012954400845, 40.721099279291884],
[-73.752635823194524, 40.720697966463128],
[-73.752334383398207, 40.720262460692986],
[-73.757256715091387, 40.718138601662559],
[-73.758327286730946, 40.719582089363932],
[-73.765714472406358, 40.716393378712979],
[-73.766640952436845, 40.717646613664421],
[-73.767332281529349, 40.717289796811919],
[-73.773571352344561, 40.71512009536999],
[-73.786575286935758, 40.711972493277912],
[-73.787846784801417, 40.71181083266498],
[-73.788717895554925, 40.712049793039753],
[-73.789012095879585, 40.712072709100696],
[-73.789283350676058, 40.712031729151086],
[-73.793038000523524, 40.710711075425401],
[-73.793026542040295, 40.711981364640984],
[-73.793132249179649, 40.712407236014911],
[-73.793607044023219, 40.713508470009799],
[-73.793636366695708, 40.713819397324677],
[-73.793585702994008, 40.714128678174433],
[-73.793460124044643, 40.714419192045526],
[-73.792404133495566, 40.716193040973735],
[-73.792241756334988, 40.717427179493207],
[-73.792013766396593, 40.717967687438119],
[-73.791628426481211, 40.71841796531011],
[-73.790899606015799, 40.718875807790759],
[-73.79073248864259, 40.71920875733025],
[-73.790376616843417, 40.720103724217708],
[-73.790302674295773, 40.720891465459715],
[-73.790357038792862, 40.723005300179736],
[-73.790451493234329, 40.723554531823289],
[-73.791476136985921, 40.725138464981988],
[-73.791744726697871, 40.725788850395666],
[-73.790856598438339, 40.726027489297671],
[-73.781160549676187, 40.729212758598919],
[-73.777575068820596, 40.73019327580699],
[-73.77523387160997, 40.725237532823563],
[-73.776341890430317, 40.724465646594524],
[-73.776679109660975, 40.723993613293509],
[-73.777003278593341, 40.723720008682271],
[-73.777389993074223, 40.723498367251857],
[-73.77803765890819, 40.723284268714657],
[-73.77774895414781, 40.722842109564532],
[-73.777278080274982, 40.72234633629504],
[-73.775836314213208, 40.723431739568426],
[-73.776056310926464, 40.723355940083835],
[-73.775484735947302, 40.72372061487232],
[-73.774371086865827, 40.7242611321102],
[-73.772867841405059, 40.724867985125783],
[-73.771395781473473, 40.725350501341346],
[-73.769240748621698, 40.725902701256501],
[-73.768726303006531, 40.725993143328743],
[-73.768566053505921, 40.725853970734555],
[-73.767457879528934, 40.726139281435017],
[-73.765682532429324, 40.726377523600583],
[-73.764757812196081, 40.726397124111024],
[-73.761027560785877, 40.725894179025538],
[-73.759948541330445, 40.725805277834219],
[-73.759227086171023, 40.72580597829969],
[-73.758354331653749, 40.725888509861598],
[-73.756703292337221, 40.726229432159201]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN34",
"NTAName": "Queens Village",
"Shape_Leng": 41782.399643299999298,
"Shape_Area": 69533432.8564
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.728162339212119, 40.72308414028533],
[-73.728823835231154, 40.722883642695301],
[-73.729456142753847, 40.722629528913934],
[-73.73032628968096, 40.722157296784793],
[-73.729176295154446, 40.719167214561701],
[-73.727359618426561, 40.712388941114781],
[-73.72697146783058, 40.710714504033405],
[-73.72689487481324, 40.709978573619352],
[-73.727046965529183, 40.709498752810489],
[-73.726777595337097, 40.703059291901447],
[-73.727767918898024, 40.703020637944014],
[-73.734264552939464, 40.703219542878266],
[-73.734304036600079, 40.702478131695052],
[-73.740776757959097, 40.702679837862362],
[-73.740503364866242, 40.703433556949896],
[-73.741092940204965, 40.703481062682478],
[-73.741488052880229, 40.703431612136391],
[-73.745908710194371, 40.702287273664368],
[-73.745001190606672, 40.700262213049804],
[-73.747730121816303, 40.699553136834311],
[-73.746181579504039, 40.696121925982943],
[-73.748633258867756, 40.69544476092139],
[-73.750192957514869, 40.698912081578214],
[-73.749305471451081, 40.699142313492345],
[-73.752050665169051, 40.705228027516945],
[-73.750470581827258, 40.705639931035002],
[-73.751212469699198, 40.70730658007804],
[-73.75370834622872, 40.713324636739706],
[-73.754010245305352, 40.713834901379627],
[-73.757256715091387, 40.718138601662559],
[-73.752334383398207, 40.720262460692986],
[-73.752635823194524, 40.720697966463128],
[-73.753012954400845, 40.721099279291884],
[-73.755771210053538, 40.723640215893482],
[-73.754969194627947, 40.724159647308994],
[-73.755086250989635, 40.724490060116366],
[-73.755480736881793, 40.725119807263894],
[-73.756709873004056, 40.726179072948121],
[-73.756703292337221, 40.726229432159201],
[-73.754422225112776, 40.727042148232812],
[-73.752970287833151, 40.727705620133001],
[-73.7518423829017, 40.728326501898174],
[-73.750482957159278, 40.729221294395316],
[-73.749809875069204, 40.729746750057203],
[-73.74672140362712, 40.732477150643959],
[-73.74665689504377, 40.731814924561526],
[-73.746491621706895, 40.731414589046459],
[-73.746295557888459, 40.731180177967424],
[-73.745555914762733, 40.730637473483085],
[-73.732725779533055, 40.727734070362366],
[-73.731472151209118, 40.727411795274193],
[-73.729907810569699, 40.723273012360544],
[-73.728364153599188, 40.723614352381688],
[-73.728162339212119, 40.72308414028533]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN42",
"NTAName": "Oakland Gardens",
"Shape_Leng": 42329.690917799998715,
"Shape_Area": 50975465.2122
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.740169518288553, 40.7384818975084],
[-73.74151636839602, 40.73686036104047],
[-73.742947858558367, 40.735456552032872],
[-73.744724177667962, 40.734011030249782],
[-73.74672140362712, 40.732477150643959],
[-73.749809875069204, 40.729746750057203],
[-73.750482957159278, 40.729221294395316],
[-73.7518423829017, 40.728326501898174],
[-73.752970287833151, 40.727705620133001],
[-73.754422225112776, 40.727042148232812],
[-73.756552533965362, 40.726270754932905],
[-73.756703292337221, 40.726229432159201],
[-73.7578714145791, 40.727106851486425],
[-73.761608144385391, 40.729047534441143],
[-73.763275378105291, 40.730240541116004],
[-73.764350715262154, 40.73115119213589],
[-73.765643744656387, 40.732533126738993],
[-73.76369979170164, 40.732864116847814],
[-73.76510920615992, 40.734556584804068],
[-73.762733034679158, 40.7352621626722],
[-73.7624853869563, 40.736181695182829],
[-73.762486092772761, 40.736730981952221],
[-73.762596947708403, 40.737087326422639],
[-73.765568498105907, 40.743258155027185],
[-73.766491096328295, 40.743748430185285],
[-73.76687853596971, 40.744093578703655],
[-73.767729913593001, 40.74577622617263],
[-73.760736120984447, 40.747737385471964],
[-73.758028055830167, 40.748957816318551],
[-73.756841273004497, 40.749322077704278],
[-73.757370347706654, 40.750243856764527],
[-73.759062492025222, 40.752209181328887],
[-73.759684943539526, 40.752536256845126],
[-73.759946497310622, 40.752760006378054],
[-73.760129488129138, 40.753022117169095],
[-73.760801941475265, 40.754547729821901],
[-73.761015399821289, 40.754816092993408],
[-73.7616766980221, 40.755323476822028],
[-73.761843440030162, 40.755537269313407],
[-73.761927137546294, 40.755772853360909],
[-73.761766928588443, 40.757278802073074],
[-73.76239510540735, 40.759496998122259],
[-73.758001317010653, 40.760379867479095],
[-73.756820621963996, 40.759734806331863],
[-73.756256062902409, 40.758430469558178],
[-73.755837133232646, 40.757742061784498],
[-73.755573437164202, 40.758280951840582],
[-73.755116483564038, 40.758479498133276],
[-73.754047448913909, 40.758512386011354],
[-73.753690690975418, 40.758444788381397],
[-73.753209971183054, 40.758244873007037],
[-73.752302593228492, 40.759455199331633],
[-73.751155829715287, 40.759069768753264],
[-73.750577106913724, 40.758014894987355],
[-73.750047645321587, 40.758404658291774],
[-73.748095879411821, 40.755899549723871],
[-73.747111138343442, 40.754173286090818],
[-73.747741165056581, 40.75384994464688],
[-73.74709885341818, 40.752346828675378],
[-73.746842196804508, 40.752058075656123],
[-73.746526814127037, 40.751842646450719],
[-73.746216656608624, 40.751685850524396],
[-73.745779487476398, 40.751560805296883],
[-73.745079116663291, 40.75027389673685],
[-73.743843221320674, 40.747690096271022],
[-73.746259843998374, 40.746711475312814],
[-73.745930603046787, 40.745715659005619],
[-73.744775871290216, 40.743281097372225],
[-73.745676211154773, 40.74302729862093],
[-73.746719753288346, 40.743123648060056],
[-73.747848613009722, 40.743296077971152],
[-73.748876973323931, 40.743288374544626],
[-73.750727903200001, 40.742997846899726],
[-73.753473000272749, 40.742404844704815],
[-73.751389675276954, 40.740194159509016],
[-73.750982300335934, 40.74002146284618],
[-73.75037358668034, 40.739922467084398],
[-73.74996804311489, 40.739745752986792],
[-73.7439619355481, 40.740789126956024],
[-73.743719413110838, 40.73938314961697],
[-73.743602802548565, 40.739012608815166],
[-73.743068208213813, 40.738440817761841],
[-73.741281139169388, 40.738788692368054],
[-73.741006384856533, 40.738743968097758],
[-73.740773447642297, 40.738635273432529],
[-73.740169518288553, 40.7384818975084]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN35",
"NTAName": "Washington Heights North",
"Shape_Leng": 26623.873330300000816,
"Shape_Area": 22662452.9056
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.928722031375372, 40.866742663330243],
[-73.927269150919599, 40.865534559818961],
[-73.924741534075693, 40.861593638252025],
[-73.924998183740485, 40.861463738038431],
[-73.924963106400511, 40.861089283178217],
[-73.925021621304538, 40.860695310873112],
[-73.925286626622409, 40.86012579668752],
[-73.925738398674127, 40.859637680449289],
[-73.9266257510088, 40.859053325578529],
[-73.926980786284986, 40.858606241311307],
[-73.927122220717848, 40.858109611210793],
[-73.926911174911822, 40.857508760855858],
[-73.926742323417415, 40.857829767913387],
[-73.926347754932351, 40.858098971182251],
[-73.92599285788782, 40.858185866896982],
[-73.925465477893212, 40.85814241143536],
[-73.925081436189089, 40.857956788312634],
[-73.924869299423634, 40.857656191335678],
[-73.92472918878461, 40.857326286696228],
[-73.92467094585615, 40.856810889719753],
[-73.924691998990426, 40.856641997249234],
[-73.927695658043035, 40.852487782106117],
[-73.927033157366935, 40.852200775102766],
[-73.927079823439584, 40.85143234338458],
[-73.927476805517458, 40.850694369794653],
[-73.928249188467717, 40.849839854581795],
[-73.928585199968609, 40.849638802183939],
[-73.928866754219939, 40.84939231334598],
[-73.929707314930369, 40.848122612216429],
[-73.93062107886071, 40.848480976768847],
[-73.931393553157619, 40.847428231409459],
[-73.936396831360028, 40.849541194836931],
[-73.935753942962705, 40.850168202850213],
[-73.939570738465974, 40.851275556188313],
[-73.939926632495144, 40.851324304767111],
[-73.940688219683665, 40.851315432616992],
[-73.941262203066714, 40.851391962193738],
[-73.942038717152613, 40.851931028896026],
[-73.942539509647133, 40.851502105330411],
[-73.942903461592806, 40.850997163986833],
[-73.943096479439902, 40.850387302585411],
[-73.943178060548533, 40.849799943501971],
[-73.946926264710086, 40.850528056171221],
[-73.946515901499836, 40.850968338577609],
[-73.946372009515997, 40.850969818017646],
[-73.946320773458822, 40.850923256174035],
[-73.946352187039494, 40.850869964657548],
[-73.946275014967043, 40.850840977172972],
[-73.946173044139684, 40.850957954485352],
[-73.946200783220817, 40.851031488105349],
[-73.946158192276329, 40.851047286468919],
[-73.946119766479981, 40.850968754141576],
[-73.946081905010672, 40.85098071488104],
[-73.94614159383535, 40.851093698965016],
[-73.946117441051925, 40.851172582517115],
[-73.945767261656613, 40.851169465154577],
[-73.945728063619683, 40.851227773189841],
[-73.945652836264529, 40.851211097838615],
[-73.945449038005904, 40.851427659209804],
[-73.945253110291219, 40.851491886850923],
[-73.945266409990808, 40.851571028551149],
[-73.945153555931711, 40.851586484606706],
[-73.944977984618191, 40.851731648003209],
[-73.944693807038121, 40.851824093769174],
[-73.944667212443321, 40.851921226007057],
[-73.944503819459825, 40.851957079452589],
[-73.944505155125967, 40.851889898512013],
[-73.944422326593681, 40.851904704731218],
[-73.944325184824763, 40.8518225764386],
[-73.944210738693769, 40.851929655729606],
[-73.944196607813481, 40.852015341815829],
[-73.944013240169113, 40.851999843664686],
[-73.94388153574954, 40.852172377207431],
[-73.943479786118971, 40.852281881942261],
[-73.943026443711801, 40.85262617787096],
[-73.942473659920083, 40.853171277306956],
[-73.94186996426717, 40.853867738940217],
[-73.940999289991879, 40.855358618938581],
[-73.940957044724584, 40.855520333891917],
[-73.940488312693134, 40.856204628320114],
[-73.940293475633553, 40.85664177015537],
[-73.939948807433325, 40.857066614256432],
[-73.939684824102599, 40.857289321035992],
[-73.93911094164396, 40.858040911225714],
[-73.938914714435086, 40.858406937423204],
[-73.938437287918717, 40.85907336212113],
[-73.938309574343393, 40.859380523105521],
[-73.937529441725616, 40.860096641282013],
[-73.937580541403037, 40.860203206650837],
[-73.937135775777108, 40.860783636699956],
[-73.937042231421827, 40.861057532978883],
[-73.936810969729024, 40.861258023749819],
[-73.936810455154514, 40.861363466060283],
[-73.936475616648963, 40.861926591170722],
[-73.935594608640216, 40.86296505185242],
[-73.93443446917307, 40.864503731734132],
[-73.934355685135245, 40.864732907068372],
[-73.934016644266976, 40.865035548291594],
[-73.933950017115777, 40.865346746209838],
[-73.93378916436356, 40.865428634268504],
[-73.933571580737819, 40.86576675094463],
[-73.933573961882345, 40.865841295539063],
[-73.933436351359006, 40.865986581995678],
[-73.933401827008026, 40.866135646839886],
[-73.933323176237693, 40.866238095014523],
[-73.933256888799178, 40.866241784580993],
[-73.933131501856735, 40.866426213789545],
[-73.932663327215138, 40.867237065934397],
[-73.932901718255664, 40.867293043899295],
[-73.93283958205113, 40.867415276408813],
[-73.932597948528041, 40.867311349670395],
[-73.932518884044413, 40.867410503365832],
[-73.932386622357299, 40.867693893244713],
[-73.932373412886207, 40.868063488073219],
[-73.932267698924591, 40.868562318972756],
[-73.932492143648886, 40.868677518657485],
[-73.932650835128072, 40.868465033481861],
[-73.932523545600375, 40.868722078358907],
[-73.932250318212539, 40.868639508367878],
[-73.932313854482302, 40.868923720343695],
[-73.932568954827914, 40.868979403213928],
[-73.932504698031977, 40.869129558162612],
[-73.932293276899173, 40.869199501439645],
[-73.932189038922829, 40.869366976389443],
[-73.932468830699079, 40.869476099386972],
[-73.932353708072753, 40.869755255296575],
[-73.932265816369735, 40.869734771640026],
[-73.932359344660028, 40.869507363219356],
[-73.932133366030499, 40.86941597544098],
[-73.932050021697961, 40.869641746280131],
[-73.932198551151373, 40.869844870743428],
[-73.931565369397831, 40.869582158437041],
[-73.931414373806717, 40.868961928403749],
[-73.928722031375372, 40.866742663330243]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN01",
"NTAName": "Marble Hill-Inwood",
"Shape_Leng": 31826.674274900000455,
"Shape_Area": 17703895.1091
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.921518940590886, 40.856601170623179],
[-73.92175965629761, 40.856304681808467],
[-73.92182325044611, 40.856329125863496],
[-73.922296110144501, 40.855663835731761],
[-73.922344593741286, 40.855682335814841],
[-73.921698419708889, 40.856672301855397],
[-73.921518940590886, 40.856601170623179]
]
],
[
[
[-73.911224414078006, 40.873027751931993],
[-73.91096169203044, 40.872617010146072],
[-73.910648772778103, 40.872296248460621],
[-73.910540821284826, 40.872058327575431],
[-73.910433635042423, 40.87138081638372],
[-73.910543577620473, 40.871286247540631],
[-73.910723558799631, 40.870948835639432],
[-73.910677936501699, 40.87087278982883],
[-73.910756806336053, 40.870574726397152],
[-73.910748313474144, 40.870264646618395],
[-73.910924911580295, 40.869436591353605],
[-73.9110577159244, 40.869408651789449],
[-73.911346214378355, 40.86952428990773],
[-73.911474488991118, 40.869454757638316],
[-73.911463476069244, 40.869377382230134],
[-73.911030579502579, 40.869155402995972],
[-73.911128908818327, 40.868920043161417],
[-73.911328177588246, 40.868802439535763],
[-73.911325535544165, 40.868675895507579],
[-73.911514858710078, 40.868281239257094],
[-73.911711630381291, 40.868100284055359],
[-73.911805560346238, 40.867810479113864],
[-73.911911598659444, 40.867700205169854],
[-73.91184774646814, 40.867672520472468],
[-73.912731739857875, 40.86660521220923],
[-73.91254775130281, 40.86651494300429],
[-73.913918631332407, 40.864745584403586],
[-73.914312007125716, 40.864625022193231],
[-73.914923879278689, 40.864580378919115],
[-73.914540376260206, 40.864412351623358],
[-73.914411133927459, 40.864173626370388],
[-73.91508583854332, 40.864448143417277],
[-73.915431897844783, 40.864418303554132],
[-73.91545342726603, 40.864333736081228],
[-73.915632363476689, 40.864309472676858],
[-73.915664444583712, 40.864350153315954],
[-73.915899116458604, 40.864308037582482],
[-73.915931380498819, 40.864203964584327],
[-73.915871480657202, 40.864129090533012],
[-73.915583777570163, 40.864070651048557],
[-73.915359819540058, 40.864077289788391],
[-73.91519574800158, 40.863945224233277],
[-73.915175564297087, 40.863680433750915],
[-73.915361900151282, 40.863547232567129],
[-73.915476824442536, 40.863346107296742],
[-73.9154549655414, 40.863208457292373],
[-73.915345066894901, 40.863164541772278],
[-73.915386730511415, 40.863084384200683],
[-73.915520153282429, 40.862910074965463],
[-73.915671997137949, 40.862902427877529],
[-73.916105179278347, 40.862488144306049],
[-73.916795348224881, 40.86197760126722],
[-73.917051298018535, 40.861892622976505],
[-73.917294677417445, 40.861679417728048],
[-73.917504011826992, 40.861363324367041],
[-73.917827023801479, 40.861042782805249],
[-73.91782136420322, 40.860948901791083],
[-73.917921905838696, 40.86082542617207],
[-73.917883873876733, 40.860802220768043],
[-73.918434392517852, 40.860221533395261],
[-73.918360744617829, 40.86019580904361],
[-73.91839311151449, 40.860080469421412],
[-73.91861094928484, 40.859863110301617],
[-73.918777965339643, 40.859546750310891],
[-73.919502137271209, 40.858791133790938],
[-73.920360700299867, 40.859148711450686],
[-73.920444665887842, 40.859124492077129],
[-73.919774246108616, 40.858794772291141],
[-73.920478682731627, 40.859104092098825],
[-73.92043350742901, 40.859172355154989],
[-73.920653161435879, 40.859263265995963],
[-73.921270912963138, 40.860188042816688],
[-73.921364062500189, 40.860211465442489],
[-73.921590147820325, 40.860072800026423],
[-73.921736540903424, 40.859672459785919],
[-73.921648784825379, 40.859550932984007],
[-73.921833378048973, 40.859555065348076],
[-73.92172807921871, 40.859394815448269],
[-73.921845891913989, 40.859382881719348],
[-73.92179318314092, 40.859352814615029],
[-73.921866338499626, 40.859181339145074],
[-73.921818073266039, 40.859115237627435],
[-73.921576403583245, 40.859055001450976],
[-73.921296194372673, 40.858879953898125],
[-73.921370038701113, 40.858878671432883],
[-73.921255801367948, 40.858846553527009],
[-73.921256834756804, 40.858715082986947],
[-73.921071553093483, 40.85855344402605],
[-73.921121780104144, 40.858445356851206],
[-73.921068192304645, 40.858417288031653],
[-73.92108767646549, 40.858299841247998],
[-73.920941658017682, 40.8582844149145],
[-73.920938690169507, 40.858120674461475],
[-73.920609316609955, 40.858018695147891],
[-73.920484385475262, 40.858232548062446],
[-73.920351428754472, 40.858195220619123],
[-73.920364772497692, 40.858164937099126],
[-73.92047278308776, 40.85819530433254],
[-73.920431294055192, 40.858137220870944],
[-73.920493598719972, 40.858165341059085],
[-73.920478705235325, 40.858112949281967],
[-73.920518587708344, 40.858126232545835],
[-73.920582723202074, 40.85801141873182],
[-73.920531259292346, 40.857953013828912],
[-73.920598654633693, 40.857898787043318],
[-73.920564586813228, 40.857882978376054],
[-73.920773151525381, 40.857941185857911],
[-73.920724177034629, 40.857884988026342],
[-73.920758351768384, 40.857810540535681],
[-73.920631191598048, 40.857795938073245],
[-73.920706108160928, 40.857701014101913],
[-73.920717669090791, 40.857772332689585],
[-73.92090874801751, 40.857843772803719],
[-73.921014321597724, 40.857838802677961],
[-73.920987793154808, 40.857776308379663],
[-73.920950356848408, 40.8578103571393],
[-73.920824079859699, 40.857752207481532],
[-73.920839914218206, 40.857721294888421],
[-73.920985317233843, 40.857764312351847],
[-73.92086403145025, 40.857706165652907],
[-73.920958808125448, 40.857685411498565],
[-73.920889855177421, 40.857663905175635],
[-73.920914008311442, 40.857619113275398],
[-73.920814278307674, 40.857607059415365],
[-73.920772669072321, 40.857649939762382],
[-73.920783569148895, 40.857569803602338],
[-73.920697069938356, 40.857621485757114],
[-73.920755321305109, 40.857557159145706],
[-73.920982176603744, 40.857612216980648],
[-73.920951489096225, 40.857556663495757],
[-73.921031986922898, 40.857555043388487],
[-73.92090011378167, 40.857494287338653],
[-73.920996762309059, 40.857484474377095],
[-73.921048915136822, 40.857381521111556],
[-73.921164059457354, 40.857436619692621],
[-73.921072913947881, 40.857516980283052],
[-73.921121196903883, 40.857536770330583],
[-73.921223236586485, 40.857522330353788],
[-73.921304752093704, 40.857420651433138],
[-73.921519672686344, 40.857348906380025],
[-73.921592425989886, 40.857263415602617],
[-73.921591607045656, 40.857065154233396],
[-73.92188651896565, 40.856984611232527],
[-73.922044921497189, 40.856854159583719],
[-73.922779211339389, 40.856826198390777],
[-73.922828461030946, 40.856851409595109],
[-73.922958465730289, 40.858913781248766],
[-73.927269150919599, 40.865534559818961],
[-73.928722031375372, 40.866742663330243],
[-73.926233133774716, 40.868506138283891],
[-73.923821434319962, 40.86901838166758],
[-73.922343607051516, 40.869459040670932],
[-73.922141525869733, 40.869147795973532],
[-73.921329816245176, 40.86957128259192],
[-73.91925481689897, 40.871007842133181],
[-73.919698875982775, 40.8720635305367],
[-73.918459308521889, 40.873022053270873],
[-73.914009854169961, 40.871160593864474],
[-73.913664887129173, 40.871500585169905],
[-73.911542985410065, 40.873253742641722],
[-73.911224414078006, 40.873027751931993]
]
],
[
[
[-73.906665309411295, 40.875715608995364],
[-73.9077427078456, 40.872845952111561],
[-73.908463679124694, 40.872620792207115],
[-73.908720463913795, 40.872228665589304],
[-73.908932351753805, 40.872157347970081],
[-73.909716900726565, 40.87320461141757],
[-73.91035514009809, 40.873777855309164],
[-73.910921180095727, 40.874146396542656],
[-73.911484282956806, 40.874417920597573],
[-73.911946630074581, 40.87457702125154],
[-73.915786092739793, 40.875717182960301],
[-73.914874491734665, 40.876642146319533],
[-73.912058299640265, 40.878119320048121],
[-73.911489131904446, 40.879018858809516],
[-73.910331935664232, 40.879038047307212],
[-73.909498321174695, 40.878776732181699],
[-73.907652817052607, 40.877428022859384],
[-73.907037488704987, 40.876895160707534],
[-73.906818730070555, 40.876619587786436],
[-73.906665309411295, 40.875715608995364]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN57",
"NTAName": "Lindenwood-Howard Beach",
"Shape_Leng": 78496.447648200002732,
"Shape_Area": 63863596.1172
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.858980029791553, 40.652675457835485],
[-73.858548222764909, 40.652360790180872],
[-73.857833926073496, 40.651558152557257],
[-73.857319415155118, 40.651237099007837],
[-73.857302245353594, 40.651064104578424],
[-73.856958702919329, 40.650587373471723],
[-73.858980029791553, 40.652675457835485]
]
],
[
[
[-73.858980029791553, 40.652675457835485],
[-73.859755336732675, 40.654104176189733],
[-73.859410229428022, 40.653864736919751],
[-73.859444740271499, 40.65363754760169],
[-73.859342408681584, 40.65356106691091],
[-73.859249559397441, 40.653254295429186],
[-73.859045292297978, 40.653107976083902],
[-73.858980029791553, 40.652675457835485]
]
],
[
[
[-73.859755336732675, 40.654104176189733],
[-73.860483081968852, 40.654658928677563],
[-73.860989173540176, 40.655209766602582],
[-73.860762235572977, 40.655212130393785],
[-73.860454631708663, 40.655067107366129],
[-73.859792427507358, 40.65447615737699],
[-73.859755336732675, 40.654104176189733]
]
],
[
[
[-73.830327253370641, 40.655132805803277],
[-73.830413251250249, 40.655157822337166],
[-73.830412039057435, 40.655215855761647],
[-73.830266018514934, 40.655428646784728],
[-73.830003213188974, 40.655552128707022],
[-73.829889199220091, 40.655522822584949],
[-73.829945564358383, 40.6554244943529],
[-73.830327253370641, 40.655132805803277]
]
],
[
[
[-73.85096453684082, 40.671719511371116],
[-73.848477653024815, 40.670916738652728],
[-73.8478700087405, 40.670779499854518],
[-73.843221501544193, 40.669340410884523],
[-73.842885893747123, 40.669285075508093],
[-73.842435854201128, 40.669288557416728],
[-73.842272378806925, 40.668736046184492],
[-73.842158021639207, 40.668701447727997],
[-73.840136237567691, 40.668268025015088],
[-73.840089910678955, 40.668436556126821],
[-73.839278510162501, 40.668201849413173],
[-73.837449087267373, 40.667798350399657],
[-73.837300721345756, 40.66770735931361],
[-73.836678295345791, 40.667586492479352],
[-73.835701088282406, 40.667260222424765],
[-73.834876543007042, 40.667211664718053],
[-73.834649656321147, 40.667115307803371],
[-73.833348192033554, 40.666773187014442],
[-73.833002776161038, 40.665920517862496],
[-73.832477682141416, 40.664968212812219],
[-73.830305636821677, 40.660424996637971],
[-73.829913357534068, 40.659665668182967],
[-73.829314201528277, 40.658898656745478],
[-73.828599424046956, 40.657196973015992],
[-73.828071810966023, 40.655267702199943],
[-73.826392428444905, 40.648324348615581],
[-73.826552980602287, 40.64839690726852],
[-73.826601902116352, 40.648559272201233],
[-73.826811571149506, 40.648776515303233],
[-73.827338746587785, 40.648945397153682],
[-73.82752122443982, 40.648965706747468],
[-73.827636243379473, 40.648927869767796],
[-73.827877367252611, 40.649019270054275],
[-73.828283953156571, 40.649042562624288],
[-73.828598743491668, 40.649169794010675],
[-73.828914756636209, 40.649379155319004],
[-73.829120902366711, 40.649825815891624],
[-73.82933909047297, 40.649947325007247],
[-73.829386181338364, 40.650034408544137],
[-73.829680534965576, 40.650228865695311],
[-73.829869488326381, 40.650429629640129],
[-73.830011722887463, 40.650917353242733],
[-73.830381409031347, 40.651147919930779],
[-73.830531255155194, 40.651329520124385],
[-73.83069916378254, 40.651404311581054],
[-73.830936513534809, 40.651626129255803],
[-73.831103562109462, 40.652256694907628],
[-73.8313315146939, 40.652747556941002],
[-73.831292142957295, 40.653470924468422],
[-73.831560409288059, 40.653603267786842],
[-73.831613147936949, 40.653748953236189],
[-73.83158322059785, 40.65381378583109],
[-73.831131818491102, 40.654248096940918],
[-73.830157195823659, 40.655001356734637],
[-73.830134986815054, 40.65502863509915],
[-73.830209059996719, 40.655029971448329],
[-73.83018320665532, 40.655064273266767],
[-73.83013012659282, 40.655039666372254],
[-73.830081550694345, 40.65514384105466],
[-73.829344892431166, 40.655710021583708],
[-73.829040664224109, 40.656022380948919],
[-73.829014175579744, 40.656107884452439],
[-73.82918818921712, 40.656072270302744],
[-73.829666775861511, 40.655599040015325],
[-73.830150326207459, 40.655664602843395],
[-73.830308056017913, 40.655619993479107],
[-73.830443281379146, 40.655519472445441],
[-73.830582370832872, 40.655323754538792],
[-73.830556585894286, 40.655154737125891],
[-73.830530691518803, 40.655357648990609],
[-73.830537590906815, 40.654912223240331],
[-73.830569306876072, 40.655142455925329],
[-73.830556097561555, 40.654892921740505],
[-73.830602459747709, 40.654806889777511],
[-73.831343532877966, 40.654168378389976],
[-73.831708144775362, 40.653931174297838],
[-73.832054451305424, 40.654046418067587],
[-73.832123309816538, 40.654273161676052],
[-73.832000528707468, 40.65444081896505],
[-73.832160502298734, 40.654509508672696],
[-73.832216985185795, 40.654460386292961],
[-73.832165947770463, 40.65453045483013],
[-73.832046478390836, 40.654481076320501],
[-73.831904743031686, 40.654630519939097],
[-73.831858358178962, 40.654611839726492],
[-73.831493301030093, 40.654979820539722],
[-73.831357649381189, 40.655470975839791],
[-73.831161008098817, 40.655919232731982],
[-73.830212132269992, 40.656337192506477],
[-73.830033014566823, 40.656567167833479],
[-73.829927390665631, 40.65657155323354],
[-73.82955413715338, 40.656423770868464],
[-73.82937603410717, 40.65650633521588],
[-73.829236537990496, 40.656664527519006],
[-73.829309746953385, 40.656932457535163],
[-73.828967787402959, 40.657205247920054],
[-73.829179198005733, 40.657799778545254],
[-73.829323894221034, 40.657880663134165],
[-73.829513750969156, 40.657914524424228],
[-73.829654994965821, 40.658088203665571],
[-73.830130287406448, 40.65840264271597],
[-73.830050612844545, 40.658490048397184],
[-73.829853005497611, 40.658467911061003],
[-73.829707068390462, 40.658502513361938],
[-73.829626677384951, 40.65855707860328],
[-73.8295998696928, 40.65865680591115],
[-73.829928192875613, 40.659180980904864],
[-73.830012908935771, 40.659554586715764],
[-73.830149501047586, 40.659808684957298],
[-73.830175924555945, 40.659758451050173],
[-73.830012141849878, 40.659163163878787],
[-73.829825894686024, 40.658961269237658],
[-73.829695201493919, 40.658655928692433],
[-73.82970652828601, 40.658601976354412],
[-73.82979240260039, 40.6585680176266],
[-73.830001208237007, 40.658593890245022],
[-73.830199107209282, 40.658508969065096],
[-73.830244270393905, 40.65834996934813],
[-73.830006002740291, 40.658176348522971],
[-73.829827122817306, 40.658116434856673],
[-73.829630131976202, 40.657846297857652],
[-73.82937290582953, 40.657794788408125],
[-73.829223938368727, 40.65770651238293],
[-73.829064234364367, 40.657442112147464],
[-73.829094348911966, 40.657334218664261],
[-73.829498261079621, 40.656905907954389],
[-73.829461515930376, 40.656689977169478],
[-73.829502651859698, 40.656647431481652],
[-73.830091725696818, 40.656736357448622],
[-73.830185078748059, 40.656693887969773],
[-73.830505320573778, 40.656342367316157],
[-73.831066708064682, 40.656138454680907],
[-73.831271125649963, 40.656003271477033],
[-73.831441506998914, 40.655766516622855],
[-73.831553091773017, 40.655242971869569],
[-73.831852384792839, 40.654885038266954],
[-73.832181861340146, 40.654894751955723],
[-73.832852241123788, 40.657062138771686],
[-73.832903095245953, 40.657483771623035],
[-73.832781943614734, 40.657548460383488],
[-73.832084971008584, 40.656131028511304],
[-73.831943946442465, 40.656171427254378],
[-73.832600363707314, 40.657826591124696],
[-73.832014917081622, 40.658077531631555],
[-73.830969079966678, 40.658230294172334],
[-73.831284461836205, 40.6584066826304],
[-73.833384394725442, 40.658051859207973],
[-73.83111241607584, 40.649419922042348],
[-73.83103675141453, 40.648788443596558],
[-73.83109184508524, 40.648484806816747],
[-73.831346728347256, 40.648155767917338],
[-73.831669027678075, 40.647972211017652],
[-73.834618294808251, 40.648124104717354],
[-73.835278773068922, 40.648283844701169],
[-73.83546272695871, 40.648369340095215],
[-73.83561034769761, 40.648505684742219],
[-73.835699277813148, 40.648668914791465],
[-73.835711833895502, 40.649006377367193],
[-73.835787752732017, 40.649162198679967],
[-73.835722754121917, 40.649378229928423],
[-73.836223620569399, 40.651073757308566],
[-73.836538981054062, 40.652698463356316],
[-73.837549942313984, 40.656028284425503],
[-73.83796474521759, 40.657764771744048],
[-73.838268040547305, 40.659377900271991],
[-73.838785175031305, 40.661088448434775],
[-73.838058010146199, 40.662006063339959],
[-73.838736085560825, 40.662454059518481],
[-73.839979499756197, 40.66190427386222],
[-73.839725403531006, 40.660950658874675],
[-73.839787526130479, 40.660485997545415],
[-73.838958641434857, 40.657551393152879],
[-73.838140217020168, 40.654224792560882],
[-73.837629716936192, 40.652507710777215],
[-73.835923200732836, 40.645499790674947],
[-73.836330747212955, 40.645321149279546],
[-73.840006464643693, 40.64513606888876],
[-73.840093135469871, 40.645056203563399],
[-73.840303266700701, 40.645009444971841],
[-73.840583946775922, 40.6448630260453],
[-73.840892586851211, 40.644969036711764],
[-73.845996083007051, 40.644568319494461],
[-73.849506990841746, 40.644133765678745],
[-73.85183280803858, 40.645860055708248],
[-73.852169615523124, 40.646333648542573],
[-73.852367226020647, 40.646850803489691],
[-73.852416686220792, 40.64738809796718],
[-73.852303499202364, 40.647771028582291],
[-73.852078906019628, 40.64812430573491],
[-73.851935893991879, 40.648578595956813],
[-73.851590891323511, 40.649096478442104],
[-73.851437231876417, 40.649105676561383],
[-73.85133725114791, 40.649182421174999],
[-73.851294851818665, 40.649085846484937],
[-73.851135860614349, 40.649072324676347],
[-73.850905524614092, 40.649168196000353],
[-73.85092740820906, 40.649412514271425],
[-73.850809314776512, 40.649564400965417],
[-73.850781859960165, 40.649806092222747],
[-73.850610301664858, 40.649794765217102],
[-73.85058099294757, 40.649862205947777],
[-73.850576535985638, 40.65034992519287],
[-73.850520389601485, 40.65038231054293],
[-73.850377083496539, 40.6502744998756],
[-73.85043630981518, 40.650368534259549],
[-73.850422610127211, 40.650476994825411],
[-73.850241903003138, 40.650543384404585],
[-73.850155296246797, 40.650656020951587],
[-73.849854344589048, 40.650832439862903],
[-73.849689383168638, 40.650878348332441],
[-73.84968367444209, 40.650923612260755],
[-73.849425721564387, 40.65092925242017],
[-73.849257268408238, 40.651031532550874],
[-73.849216583572925, 40.651168997987604],
[-73.849397664063218, 40.651434878950354],
[-73.84992253250303, 40.651657963602808],
[-73.85011846068123, 40.651668168445319],
[-73.850241135520079, 40.651576918013362],
[-73.850449194697532, 40.65159692790651],
[-73.850697120567276, 40.651503308690991],
[-73.85078499726184, 40.651532851904271],
[-73.851111204369218, 40.651418847430463],
[-73.851491163700317, 40.651197972677281],
[-73.851786065723346, 40.650815639351876],
[-73.852063089952551, 40.650803960405923],
[-73.852306588344248, 40.650600913063698],
[-73.852509496011876, 40.650551403313983],
[-73.853216771058243, 40.650650338039071],
[-73.854033294880267, 40.650660311572246],
[-73.855145247679772, 40.651040739968707],
[-73.855442464439179, 40.651203543149819],
[-73.855492467963444, 40.651281160660389],
[-73.855719111067799, 40.651250207831694],
[-73.855919329686344, 40.651309261731917],
[-73.856161485809594, 40.651490985218643],
[-73.856276126966705, 40.651654533460153],
[-73.856327639631516, 40.65212833463643],
[-73.85651523464513, 40.652345819362672],
[-73.85654936967255, 40.652553211039965],
[-73.856712890063577, 40.652801664094476],
[-73.856910637628502, 40.652946593955285],
[-73.857053883478912, 40.652966699637268],
[-73.857192518315571, 40.652932667828203],
[-73.857302220888357, 40.65283599638952],
[-73.857515262652612, 40.652819870984352],
[-73.857723317740749, 40.652726228569058],
[-73.85828132383817, 40.652994872151808],
[-73.858520266581451, 40.653311189403738],
[-73.858571986902078, 40.653725197940965],
[-73.858764197534668, 40.654032554723607],
[-73.858758079915916, 40.654161627335029],
[-73.859154983801417, 40.65440246836765],
[-73.859265529023801, 40.65463850810449],
[-73.859305735544226, 40.654972383384226],
[-73.859670179377162, 40.655187895160765],
[-73.859959065947749, 40.655490297044111],
[-73.860729521360767, 40.656046812666801],
[-73.860840306999151, 40.656171574779137],
[-73.861363819503893, 40.656414754165247],
[-73.861401251725951, 40.656578087639978],
[-73.861360383613643, 40.656594204704454],
[-73.860988881836846, 40.656536966056862],
[-73.860674145860571, 40.656584591665592],
[-73.860616693956814, 40.656464657207714],
[-73.86061557040891, 40.656640542174522],
[-73.860442886746696, 40.65669698517317],
[-73.860515038884188, 40.656767009742801],
[-73.860208395010588, 40.657010374446457],
[-73.860159482945306, 40.657012263680734],
[-73.860067778195386, 40.6567798610495],
[-73.860055696404459, 40.65697225515617],
[-73.859833635214883, 40.656977063220438],
[-73.85996243295557, 40.657052618740359],
[-73.860074997982238, 40.657048611079986],
[-73.859810276096766, 40.657322411493674],
[-73.859790942472884, 40.657432013606552],
[-73.859938973455343, 40.657720177151162],
[-73.859705718286563, 40.657836984794443],
[-73.85957204821743, 40.658035349761107],
[-73.859555152544544, 40.658199410346967],
[-73.859635586693756, 40.658457772056451],
[-73.85989457525865, 40.658588418964122],
[-73.860258478900818, 40.658629711739039],
[-73.860310519082475, 40.65878442099239],
[-73.860197611957034, 40.658860858159997],
[-73.860232363275529, 40.658897130559993],
[-73.860451829926106, 40.658796719329366],
[-73.860392601022127, 40.65862014824468],
[-73.860512371981983, 40.658556095468953],
[-73.860512086016612, 40.658497671518475],
[-73.860634709779163, 40.658498060147757],
[-73.860719979767495, 40.658416295287338],
[-73.860924457445165, 40.658352349876125],
[-73.86098077488866, 40.658381303031454],
[-73.860981155010933, 40.658522645164389],
[-73.860857730895802, 40.658719926801027],
[-73.860616687863185, 40.658832395937843],
[-73.860490004467053, 40.658994143141115],
[-73.860484656967245, 40.659182432792043],
[-73.860612073772174, 40.659326534605924],
[-73.860792385030535, 40.659232941883332],
[-73.860855339801887, 40.659003680155891],
[-73.861249434383282, 40.658720910024499],
[-73.861322764688182, 40.658514932165829],
[-73.8612728031502, 40.658265167667196],
[-73.86095892098011, 40.658060942981507],
[-73.860537476328844, 40.658092262041151],
[-73.860387836827883, 40.658236906892057],
[-73.860112216390092, 40.658326815080088],
[-73.859768396548986, 40.658281936346533],
[-73.860024650256449, 40.658107789134824],
[-73.860043083919066, 40.658032976693285],
[-73.860195954076246, 40.657990551348121],
[-73.86021363811534, 40.657913469551566],
[-73.860575516812801, 40.657836051890506],
[-73.860407142018786, 40.657761341568133],
[-73.860405376312613, 40.657605820541988],
[-73.86031029516802, 40.657418070541944],
[-73.860341646388733, 40.657247905697162],
[-73.860609303926239, 40.657155456197991],
[-73.860623724034753, 40.657205456083666],
[-73.860663214972902, 40.657102965443983],
[-73.860753420420309, 40.657080134282289],
[-73.860875976057187, 40.65690816201699],
[-73.861275201185634, 40.657000906359244],
[-73.861613711636181, 40.65699651025276],
[-73.861625053620742, 40.657687328590022],
[-73.86170301261393, 40.658024889360419],
[-73.862697782996364, 40.657618308509775],
[-73.863170833405064, 40.658276512446257],
[-73.860359782061138, 40.659645828509582],
[-73.858514363936379, 40.659898942468573],
[-73.8576153718558, 40.66011893315379],
[-73.858429508574091, 40.663453360429251],
[-73.855684612211434, 40.663867492372923],
[-73.857633231083625, 40.671656194038007],
[-73.860389379181342, 40.671268775444425],
[-73.861071924991265, 40.674019813894503],
[-73.861062950167508, 40.674342934730134],
[-73.861318636485692, 40.675021268816181],
[-73.860295656466647, 40.674771894462161],
[-73.858251536921742, 40.674135610687571],
[-73.857113491966899, 40.673575054594949],
[-73.85096453684082, 40.671719511371116]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN43",
"NTAName": "Bellerose",
"Shape_Leng": 32084.885292200000549,
"Shape_Area": 55194904.2069
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.710499953620726, 40.727227087413205],
[-73.715879719946443, 40.726541905659133],
[-73.718287067785511, 40.726041111270398],
[-73.725671969594401, 40.72403765899314],
[-73.728162339212119, 40.72308414028533],
[-73.728364153599188, 40.723614352381688],
[-73.729907810569699, 40.723273012360544],
[-73.731472151209118, 40.727411795274193],
[-73.732725779533055, 40.727734070362366],
[-73.745555914762733, 40.730637473483085],
[-73.746295557888459, 40.731180177967424],
[-73.746491621706895, 40.731414589046459],
[-73.74665689504377, 40.731814924561526],
[-73.74672140362712, 40.732477150643959],
[-73.744724177667962, 40.734011030249782],
[-73.742947858558367, 40.735456552032872],
[-73.74151636839602, 40.73686036104047],
[-73.739869955343423, 40.738866901329118],
[-73.739331514266553, 40.739474475170873],
[-73.739012104184681, 40.739746479176645],
[-73.73816047986665, 40.74037643531593],
[-73.734369659092494, 40.742351598561129],
[-73.73375484853679, 40.742747628312401],
[-73.732416946135004, 40.743694576907266],
[-73.731064618808389, 40.744888375884287],
[-73.729931691068003, 40.746188124590155],
[-73.729066709740763, 40.747390959246133],
[-73.728961830104424, 40.747632869035549],
[-73.728886215798397, 40.747566636703439],
[-73.728290559622963, 40.747458664996827],
[-73.728062049870445, 40.74856135087763],
[-73.727680326181741, 40.74963924507562],
[-73.726272132229383, 40.749306490760581],
[-73.723395962177378, 40.750389075924367],
[-73.722585718437401, 40.748850451206117],
[-73.720101015015359, 40.749775329304839],
[-73.719886640049367, 40.749369510672864],
[-73.718944063311795, 40.746944255672666],
[-73.715449468357107, 40.739216804071205],
[-73.714769826905609, 40.737900348238817],
[-73.711478048761165, 40.732501401376332],
[-73.710752172302861, 40.730525375058399],
[-73.710499953620726, 40.727227087413205]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK79",
"NTAName": "Ocean Hill",
"Shape_Leng": 22496.50918079999974,
"Shape_Area": 20078320.1855
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.904046398088894, 40.679220598019157],
[-73.900046261425004, 40.676893089537728],
[-73.902918872628163, 40.675684581420761],
[-73.90438792800407, 40.675206746606364],
[-73.90450912336803, 40.675052110987878],
[-73.908419316322011, 40.673313332724078],
[-73.919230629656838, 40.668631365306055],
[-73.920114642531829, 40.66837600234431],
[-73.920148642554125, 40.668229483875351],
[-73.922752571544322, 40.667097332961632],
[-73.921647481319539, 40.678870547032624],
[-73.916301198614903, 40.67857711243402],
[-73.918046069584847, 40.687213247770913],
[-73.904046398088894, 40.679220598019157]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK35",
"NTAName": "Stuyvesant Heights",
"Shape_Leng": 28239.221292700000049,
"Shape_Area": 31406561.0274
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.918046069584847, 40.687213247770913],
[-73.916301198614903, 40.67857711243402],
[-73.921647481319539, 40.678870547032624],
[-73.921835001371079, 40.678945559144303],
[-73.921973762759819, 40.679077489287693],
[-73.922132428659324, 40.67974497770048],
[-73.922813742677434, 40.683414429622452],
[-73.929008840184082, 40.682702905485726],
[-73.929161307030498, 40.683436324443683],
[-73.935008217201229, 40.682763768003198],
[-73.93435066474018, 40.67956340755088],
[-73.940327939620985, 40.679889974562045],
[-73.943949472713044, 40.698221279839082],
[-73.938568547826748, 40.69884813554939],
[-73.929701924027981, 40.693863397109119],
[-73.918046069584847, 40.687213247770913]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK61",
"NTAName": "Crown Heights North",
"Shape_Leng": 35635.544496599999547,
"Shape_Area": 51618585.1081
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.921647481319539, 40.678870547032624],
[-73.922752571544322, 40.667097332961632],
[-73.928722045946571, 40.664495569182669],
[-73.928684044247774, 40.66508602327383],
[-73.936983623065913, 40.665535507877749],
[-73.936749470134089, 40.668127370786898],
[-73.947818575379486, 40.668783753674298],
[-73.947729963289049, 40.669713442409979],
[-73.955269636547627, 40.67012490485407],
[-73.959047252854177, 40.67088226754646],
[-73.961318779578491, 40.671406675930562],
[-73.960074282831229, 40.674878070971616],
[-73.963182387903444, 40.675529503985999],
[-73.961539619564292, 40.680086255027099],
[-73.961346558857869, 40.680463524300905],
[-73.955293615993867, 40.679203151043907],
[-73.955436814932554, 40.679957855183936],
[-73.953281874399977, 40.680200031475508],
[-73.953370174428443, 40.68064050844405],
[-73.951556826764957, 40.680498847575564],
[-73.93435066474018, 40.67956340755088],
[-73.935008217201229, 40.682763768003198],
[-73.929161307030498, 40.683436324443683],
[-73.929008840184082, 40.682702905485726],
[-73.922813742677434, 40.683414429622452],
[-73.922426520996524, 40.681210745173431],
[-73.921973762759819, 40.679077489287693],
[-73.921835001371079, 40.678945559144303],
[-73.921647481319539, 40.678870547032624]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN09",
"NTAName": "Morningside Heights",
"Shape_Leng": 20753.02756220000083,
"Shape_Area": 20157325.5613
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.952101252153682, 40.811442853501511],
[-73.953575778103641, 40.80947669765964],
[-73.95496657106321, 40.810064554703473],
[-73.958181672528298, 40.805596791128394],
[-73.958254825801347, 40.804713878441426],
[-73.958203008071635, 40.803894270998818],
[-73.958248783298146, 40.803106486471115],
[-73.959646854231522, 40.801156423256458],
[-73.95848111476144, 40.800670477586024],
[-73.958172970377078, 40.800582541457096],
[-73.960030184371192, 40.798038107394312],
[-73.97032589833502, 40.802384560870699],
[-73.97287179081539, 40.803356187142711],
[-73.972050955880079, 40.804530376010185],
[-73.971818495497246, 40.804717542199512],
[-73.971611133914394, 40.805096187474327],
[-73.971107658523252, 40.805790139174121],
[-73.968852186453475, 40.808751985611963],
[-73.968557478373668, 40.809072893821174],
[-73.968424735731801, 40.809394060333176],
[-73.967620388907577, 40.810584850394505],
[-73.96740185312369, 40.811022155397097],
[-73.96510784267484, 40.814275475527147],
[-73.964140828882989, 40.815771657453901],
[-73.963403951684867, 40.816684196935306],
[-73.962031057959905, 40.818086330979163],
[-73.95949328803863, 40.817007473778872],
[-73.956269580034117, 40.813375023165094],
[-73.955706901234535, 40.814143960040298],
[-73.954080584077133, 40.812280112895799],
[-73.952101252153682, 40.811442853501511]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN12",
"NTAName": "Upper West Side",
"Shape_Leng": 29158.131977400000324,
"Shape_Area": 34380993.6197
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.960030184371192, 40.798038107394312],
[-73.974997440205641, 40.777532545719424],
[-73.985071843450143, 40.781779680969194],
[-73.985679361176423, 40.78031263333493],
[-73.986543789518052, 40.780657980791055],
[-73.988127461025769, 40.781401796442232],
[-73.988041288067336, 40.781585960348622],
[-73.988100293163427, 40.7816028783052],
[-73.988076449806229, 40.781650935001679],
[-73.988018060633394, 40.7816341888105],
[-73.98546581263146, 40.785360700575531],
[-73.986172704965441, 40.786068452258675],
[-73.986455862401982, 40.7859192190814],
[-73.987072345615687, 40.785189638317533],
[-73.987119013942745, 40.785210317998938],
[-73.986497781023587, 40.785951202887247],
[-73.986164628806264, 40.786121882448306],
[-73.986128422485876, 40.786239001331118],
[-73.986027275450326, 40.786228964236798],
[-73.986097637849412, 40.786058225697936],
[-73.985429321269422, 40.785413942184618],
[-73.985081137732053, 40.785921935110444],
[-73.985198833254486, 40.785966552197756],
[-73.985170502389892, 40.786013334158156],
[-73.985216218673756, 40.786030501313824],
[-73.985249629330156, 40.785963139855831],
[-73.985240033545722, 40.786035858136849],
[-73.985683885242153, 40.786222123919678],
[-73.98571752900456, 40.786175994668781],
[-73.985765660297517, 40.786196274858625],
[-73.985682871922506, 40.786309786213131],
[-73.985636270930641, 40.786290149644117],
[-73.985670722564677, 40.786242911993796],
[-73.985162640608422, 40.78602099876467],
[-73.985131636312047, 40.786060297019965],
[-73.985016964064968, 40.78601423719563],
[-73.984655078830215, 40.786534741807941],
[-73.985743787901129, 40.786570082352149],
[-73.985892272944483, 40.786426529019657],
[-73.985949561556779, 40.786487112961353],
[-73.985812373526514, 40.78661686535709],
[-73.984619429245299, 40.786586016349915],
[-73.97287179081539, 40.803356187142711],
[-73.97032589833502, 40.802384560870699],
[-73.960030184371192, 40.798038107394312]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX33",
"NTAName": "Longwood",
"Shape_Leng": 18982.129360499999166,
"Shape_Area": 10732451.911
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.894835229240527, 40.826246841212203],
[-73.894870885349192, 40.823937272155767],
[-73.893200050337313, 40.824008182506127],
[-73.895860195678225, 40.822631045899307],
[-73.89588135872873, 40.820992574705102],
[-73.892836530795137, 40.820974054615853],
[-73.892901561985994, 40.820811223190631],
[-73.897044667220953, 40.816801859686677],
[-73.895428587725107, 40.815844672428106],
[-73.897591237796718, 40.813776873348985],
[-73.903089465303253, 40.809856399702248],
[-73.903417203736481, 40.811506882855625],
[-73.904180364357487, 40.812124820064739],
[-73.90446551410588, 40.812281959913086],
[-73.903009832143638, 40.816317791954702],
[-73.900611410808267, 40.82210880792951],
[-73.901987585974297, 40.822440423105597],
[-73.900505404703139, 40.826007622430005],
[-73.901648955605125, 40.826256978347054],
[-73.900935107008564, 40.82792810175718],
[-73.899797567567646, 40.827684354294504],
[-73.895485227646702, 40.828248540882335],
[-73.895110208608202, 40.82803689895232],
[-73.895152778599837, 40.827834290178146],
[-73.894835229240527, 40.826246841212203]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX55",
"NTAName": "Soundview-Bruckner",
"Shape_Leng": 19755.305906099998538,
"Shape_Area": 16260530.926
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.860338458462508, 40.83325316598345],
[-73.860325089565933, 40.833198639616121],
[-73.860082701998763, 40.833111456899005],
[-73.857391211875068, 40.832297372226023],
[-73.857375294578446, 40.832046546399241],
[-73.856151128295195, 40.826770045713381],
[-73.873568084644603, 40.824419846464771],
[-73.878988556145174, 40.823711090553623],
[-73.879930022766104, 40.823641062131472],
[-73.881786217697623, 40.823401700497328],
[-73.884389948616544, 40.822967396448554],
[-73.884646026497066, 40.823823537474574],
[-73.884613359442426, 40.825276503318882],
[-73.884387052875681, 40.826817283532158],
[-73.883784141345714, 40.828274292462368],
[-73.881980965951584, 40.828355980233127],
[-73.877299304491956, 40.828742774372479],
[-73.864565472709387, 40.832389234655309],
[-73.86155834859025, 40.833330221162335],
[-73.86129183742284, 40.833536420998684],
[-73.860850196826746, 40.833613538099868],
[-73.860752031068174, 40.83359537475684],
[-73.860490535345178, 40.833466404056402],
[-73.860338458462508, 40.83325316598345]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX09",
"NTAName": "Soundview-Castle Hill-Clason Point-Harding Park",
"Shape_Leng": 67150.476294599997345,
"Shape_Area": 51958951.0723
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.88054585187345, 40.818468022360655],
[-73.880980296594217, 40.818235623127926],
[-73.882447796190448, 40.81926832251218],
[-73.883787861264807, 40.821933413771255],
[-73.884294881450515, 40.822718205267307],
[-73.884389948616544, 40.822967396448554],
[-73.881786217697623, 40.823401700497328],
[-73.879930022766104, 40.823641062131472],
[-73.878988556145174, 40.823711090553623],
[-73.873568084644603, 40.824419846464771],
[-73.873422390253353, 40.824073453999723],
[-73.872468341823847, 40.820150090860871],
[-73.879814642975688, 40.819162449263303],
[-73.88054585187345, 40.818468022360655]
]
],
[
[
[-73.842317125464803, 40.827184684681164],
[-73.842076206473536, 40.826537734864928],
[-73.842027270660992, 40.826547447745028],
[-73.841704663620149, 40.825767381987966],
[-73.841754576159644, 40.825755420396682],
[-73.841202507320091, 40.824816858084958],
[-73.84100637880961, 40.824241027109551],
[-73.84086821879589, 40.824153507207313],
[-73.84044970382466, 40.823345566497551],
[-73.840466034599956, 40.823080023582847],
[-73.840127856231391, 40.82242142701557],
[-73.840112537960593, 40.822299406219912],
[-73.84001752995961, 40.822190242120335],
[-73.840026560788743, 40.82206773291383],
[-73.839959595261334, 40.821999859738149],
[-73.839987260191492, 40.82192193255414],
[-73.839829262416927, 40.821571501496017],
[-73.839908866752154, 40.821154798595281],
[-73.839881429986846, 40.820896867012735],
[-73.839984600831968, 40.820794776362639],
[-73.840100692020158, 40.820322761728583],
[-73.840060600442939, 40.820230071740767],
[-73.839967305287345, 40.820179082003953],
[-73.839998604735769, 40.819934946813973],
[-73.84014625733198, 40.819819248552413],
[-73.840289119450148, 40.819807704051264],
[-73.840231554314911, 40.81973553077011],
[-73.840365285256141, 40.819577750024223],
[-73.840618814960692, 40.819549500778429],
[-73.840813450230996, 40.819444691191229],
[-73.840843523359496, 40.819355043390544],
[-73.84104454654549, 40.819230169599088],
[-73.841289746031038, 40.81915650957],
[-73.841567037255146, 40.818940432211626],
[-73.841884417343152, 40.818850018103234],
[-73.84198684834044, 40.818774373908134],
[-73.842125858177468, 40.818458221410673],
[-73.842093663118547, 40.818059542951573],
[-73.842375344205024, 40.817489847080587],
[-73.842798758772446, 40.816937008650257],
[-73.842892164510658, 40.816730453426239],
[-73.843063790337368, 40.816558645026703],
[-73.843043018301188, 40.816377319049721],
[-73.843152834612141, 40.816273427965463],
[-73.843169927637206, 40.816051055013368],
[-73.843580014338215, 40.8154683465972],
[-73.8437405300036, 40.81532169954199],
[-73.843772268480393, 40.815139071280306],
[-73.844179114409712, 40.814357177091978],
[-73.844179207129855, 40.814186670056365],
[-73.844387368967432, 40.813645130827105],
[-73.844866226904784, 40.812751503417701],
[-73.845207368852257, 40.811887021506926],
[-73.845280192365593, 40.811778116745614],
[-73.845465386098851, 40.811764967160812],
[-73.845765617022266, 40.811582278841961],
[-73.846173029383166, 40.81067666392871],
[-73.846888711422011, 40.810521325177433],
[-73.847196845757921, 40.810580487615042],
[-73.847467722344177, 40.810903942855113],
[-73.847582834661409, 40.811281749251094],
[-73.848214865818548, 40.812462908996565],
[-73.848762868553422, 40.812904686119516],
[-73.849385562141237, 40.813236865345893],
[-73.85041066820115, 40.81358402388846],
[-73.850602462701104, 40.813930199540302],
[-73.851144722607017, 40.814396548875912],
[-73.85246819393376, 40.814279207419247],
[-73.852424036273135, 40.814420084234889],
[-73.852620587564275, 40.814505749279284],
[-73.852793699038571, 40.814435150542664],
[-73.852911775018583, 40.814500996711516],
[-73.85281883014774, 40.814335174743924],
[-73.852650133356335, 40.814363146473582],
[-73.852612625192691, 40.813962582840212],
[-73.85288616298557, 40.813881712529501],
[-73.852942663980215, 40.813750246390946],
[-73.852869369427395, 40.813692824922938],
[-73.853368578688219, 40.813593903136272],
[-73.853743580933809, 40.813645833154816],
[-73.854346556511203, 40.813863857914924],
[-73.854842354099162, 40.814091518012376],
[-73.855146953815861, 40.814368994297212],
[-73.85531511789938, 40.814412141184675],
[-73.85538030243687, 40.814288882082693],
[-73.855319658957498, 40.814161567150187],
[-73.855048601336861, 40.814073189622931],
[-73.854430755965979, 40.813717919069752],
[-73.853467740586339, 40.813477711106025],
[-73.853127647408044, 40.813535147980971],
[-73.852557394349276, 40.813735334655156],
[-73.852063574131762, 40.813726060160761],
[-73.851363576917166, 40.813550061697931],
[-73.851199977252975, 40.813553143873555],
[-73.850992188028385, 40.813479852662958],
[-73.850284181507817, 40.813029263913094],
[-73.849650104501649, 40.812751881768293],
[-73.849212438167271, 40.81238419948329],
[-73.849032941806769, 40.812118910078524],
[-73.849045360522197, 40.811986324291212],
[-73.849140375976546, 40.811698340231509],
[-73.849384203219699, 40.811287074768423],
[-73.84924827589532, 40.811122263471866],
[-73.849173584248518, 40.810924340783991],
[-73.84941898780481, 40.810587427449484],
[-73.849529774191339, 40.81027822112496],
[-73.849798045881656, 40.810032877885895],
[-73.84990892306422, 40.809660121586802],
[-73.849767051698976, 40.809669120009495],
[-73.849760116340775, 40.809645213220442],
[-73.84991938701836, 40.809626665926835],
[-73.8500171019232, 40.809330656288815],
[-73.850020123245429, 40.809254039530018],
[-73.849846625180774, 40.80925232875299],
[-73.850042416129057, 40.809215408487617],
[-73.849967328392367, 40.808875512453525],
[-73.849747788785379, 40.808913639149374],
[-73.849728654247841, 40.808875111639665],
[-73.849957495313475, 40.808830068425948],
[-73.849951169380105, 40.80871472017219],
[-73.84955076934942, 40.808720867510871],
[-73.849953556063809, 40.808693406076351],
[-73.84996696802817, 40.808578018843605],
[-73.849880931981716, 40.808476252427766],
[-73.84986663269072, 40.808337009760564],
[-73.849611664865293, 40.808124185052037],
[-73.848760076798399, 40.808337457792156],
[-73.848709624793486, 40.808240469916427],
[-73.849522182568478, 40.808055277217612],
[-73.849454311523075, 40.808023680195802],
[-73.849388385083842, 40.807877532836237],
[-73.848777379277465, 40.80763587777497],
[-73.848416409616519, 40.807368775795304],
[-73.848280240182973, 40.806852405047685],
[-73.848398797971299, 40.806524327281643],
[-73.848379536552727, 40.806360186333677],
[-73.848114991489169, 40.806128582675555],
[-73.84763420691263, 40.806008590411444],
[-73.847536219755952, 40.805926402795144],
[-73.847488226419102, 40.805448909149128],
[-73.847527769062751, 40.805329604285866],
[-73.847902986527416, 40.805002179397242],
[-73.848076246655211, 40.804919641150001],
[-73.848402728833719, 40.804858076828069],
[-73.84864784606215, 40.804699371480325],
[-73.848743172129687, 40.804896259183508],
[-73.84879992124705, 40.804899029440463],
[-73.848835625003133, 40.804796651169184],
[-73.848946040059957, 40.804762168994685],
[-73.849030720081657, 40.804796906828081],
[-73.849214665784032, 40.805020864419575],
[-73.849333823079363, 40.805051218261745],
[-73.849317889417847, 40.80466146570312],
[-73.84941036337716, 40.804667976275596],
[-73.849428526615696, 40.80505982813969],
[-73.849821071838477, 40.805094430843432],
[-73.849977227092964, 40.80505959447926],
[-73.850148675643112, 40.804534218812925],
[-73.850198391025572, 40.804510024974768],
[-73.850920705774897, 40.804477868117218],
[-73.85118552925951, 40.804492586101553],
[-73.851475372966462, 40.804598378326354],
[-73.852049225994875, 40.804599116241],
[-73.854071204931998, 40.804457462420238],
[-73.854601142482281, 40.804547649827427],
[-73.855388793113008, 40.804464426791647],
[-73.855854463353879, 40.804514646139516],
[-73.856626137677111, 40.804830303717367],
[-73.856577801484491, 40.804932851439773],
[-73.85639785205899, 40.804946835713338],
[-73.855929427867338, 40.804724869734834],
[-73.855690470983774, 40.804676565575505],
[-73.855563585000709, 40.804784995830573],
[-73.855604970397252, 40.805062157034875],
[-73.855720727087544, 40.805122104179659],
[-73.856125425633095, 40.805281681250761],
[-73.856523619930826, 40.805239932260783],
[-73.856948651788514, 40.805274614774298],
[-73.85712145614292, 40.805330474656159],
[-73.857244919885702, 40.805307238116065],
[-73.857127936943883, 40.805185494057874],
[-73.856675797245273, 40.804995370321599],
[-73.856674882405457, 40.804951910704688],
[-73.856834210245594, 40.80490927021274],
[-73.858127056997716, 40.805466520049258],
[-73.85889037502379, 40.805889490675177],
[-73.858911772504939, 40.805954126023963],
[-73.858826432391083, 40.805993192722482],
[-73.858505600391553, 40.805819542792754],
[-73.858443853597151, 40.805952045692337],
[-73.858314877070782, 40.805998591012155],
[-73.858381969382577, 40.806149331436451],
[-73.858393314486932, 40.806408476221328],
[-73.858503117691498, 40.806424269260617],
[-73.858517042406362, 40.806637883757944],
[-73.858611919673422, 40.806697513035957],
[-73.858934717264304, 40.80667435866588],
[-73.859084758526691, 40.806480218163472],
[-73.858857066335929, 40.80603596399029],
[-73.858877094031868, 40.805988508100747],
[-73.858972320740961, 40.80596606723865],
[-73.859195450244769, 40.806269877829692],
[-73.859366023323204, 40.806675683207786],
[-73.859401919202014, 40.807529591337229],
[-73.859376563575111, 40.807568295172608],
[-73.859257752760755, 40.807542673007745],
[-73.859222653139895, 40.807033569012113],
[-73.859158681488196, 40.806878974649152],
[-73.859082254880164, 40.806840406822033],
[-73.858665051691915, 40.806832751495591],
[-73.858389962288143, 40.808258809148768],
[-73.858774526546384, 40.809233974632939],
[-73.858951412879222, 40.810271417587316],
[-73.859076625664173, 40.809975558102082],
[-73.859471614928538, 40.809905114265085],
[-73.859548096766517, 40.809818250205524],
[-73.859666165586347, 40.809806564723146],
[-73.860126952356893, 40.809605499388667],
[-73.859746690434477, 40.809277881413756],
[-73.859540598624804, 40.809019702446314],
[-73.859329192950867, 40.808996540578164],
[-73.859413897470446, 40.808864947402071],
[-73.859316325848127, 40.808206799910927],
[-73.859401479640155, 40.80816510231115],
[-73.859702733385362, 40.808951925451538],
[-73.859969554676667, 40.809260763920186],
[-73.860236254542301, 40.80945027734429],
[-73.860774424293524, 40.809663140063385],
[-73.862286045827574, 40.809945911227331],
[-73.861357065347221, 40.810836841906386],
[-73.861111267015715, 40.811150153570033],
[-73.867079530290994, 40.81444134219911],
[-73.869544803622702, 40.816094753312868],
[-73.871459928312149, 40.824720208839061],
[-73.857278711816818, 40.826599624582762],
[-73.85635677476688, 40.826752085458125],
[-73.856196565338792, 40.826040994724437],
[-73.855971623905276, 40.826063877757861],
[-73.855136397492856, 40.822436188806613],
[-73.842898588274338, 40.824083059408451],
[-73.843906499447428, 40.828406333240082],
[-73.842895275078348, 40.828569176121739],
[-73.842721877858338, 40.828275620914447],
[-73.84253325731062, 40.827527303645873],
[-73.842317125464803, 40.827184684681164]
]
],
[
[
[-73.836678563641783, 40.817588762913694],
[-73.836960702706691, 40.816340540534732],
[-73.839743559437593, 40.816406071502783],
[-73.83979657390654, 40.816580281669431],
[-73.839966346469581, 40.816704117678377],
[-73.840033087476485, 40.816822140941603],
[-73.840190205893123, 40.817188273057269],
[-73.840071299348836, 40.817548908704126],
[-73.840100050578172, 40.817736156123658],
[-73.840053237176122, 40.817921288098916],
[-73.839210221010077, 40.818888356624221],
[-73.8389273336157, 40.819001209605439],
[-73.838791338108422, 40.819528588689899],
[-73.838683477671424, 40.819591380515135],
[-73.838807898762411, 40.819741935141778],
[-73.83906398923861, 40.819802432341611],
[-73.83893197193288, 40.821328934031975],
[-73.839011681338704, 40.821950170530542],
[-73.838882317128963, 40.822140489856928],
[-73.83891082771872, 40.822215260870081],
[-73.839070594730089, 40.82225284895754],
[-73.839012900139721, 40.822380433663149],
[-73.839060866131859, 40.82240162060198],
[-73.839049044811944, 40.822688748145829],
[-73.839212550595335, 40.822875802924457],
[-73.839454274491374, 40.822922846558917],
[-73.839527777143573, 40.823038158649254],
[-73.839449349394073, 40.823265355084345],
[-73.839580125645469, 40.823427453693412],
[-73.839611865724052, 40.823863426518095],
[-73.839740138772314, 40.82411049303667],
[-73.840041440005692, 40.824226669381382],
[-73.840131135286214, 40.82431708867481],
[-73.840272477875303, 40.824761978023595],
[-73.841107809121183, 40.826153326748745],
[-73.841320885427919, 40.826764735218468],
[-73.842220479993259, 40.8283418879438],
[-73.842284283097541, 40.828646604981792],
[-73.840322947632345, 40.828823951222859],
[-73.837090613758349, 40.828967147310898],
[-73.836916089077235, 40.828451826101585],
[-73.836618196516127, 40.827114148693667],
[-73.836260036298256, 40.824971880684814],
[-73.836125989547881, 40.823497432031289],
[-73.836142395039047, 40.819198902998039],
[-73.836501459380187, 40.818710659292364],
[-73.836660686622466, 40.81797116118242],
[-73.836678563641783, 40.817588762913694]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN23",
"NTAName": "College Point",
"Shape_Leng": 59480.666144499999064,
"Shape_Area": 50617410.2338
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.867884075368877, 40.78736103669533],
[-73.868033048734546, 40.787182029952689],
[-73.868130319338945, 40.787232777843379],
[-73.869181134377911, 40.785943489569966],
[-73.86923491765765, 40.785969915418924],
[-73.868171271251626, 40.787256195654486],
[-73.868237847022556, 40.787279643083998],
[-73.868099123240114, 40.787458661819137],
[-73.867884075368877, 40.78736103669533]
]
],
[
[
[-73.838390134206847, 40.798304872076883],
[-73.839190047273092, 40.797777265945044],
[-73.840258608091361, 40.797588858432142],
[-73.839970996561817, 40.79690564189314],
[-73.839036768122796, 40.797052477080776],
[-73.838400830778397, 40.796755258809405],
[-73.837362252898188, 40.794263524247704],
[-73.837084067699209, 40.793903461970558],
[-73.837126046975399, 40.793695550041129],
[-73.836632889233769, 40.792516375538597],
[-73.838180692069798, 40.792748501901542],
[-73.839223031061934, 40.793043046118271],
[-73.839536261381824, 40.793201322949344],
[-73.840187315720584, 40.79370471592344],
[-73.840678283373819, 40.793907891633204],
[-73.840815326280421, 40.791504885220604],
[-73.838956761160276, 40.791438430592557],
[-73.839005240848238, 40.790617322357015],
[-73.839923062011039, 40.790649901705613],
[-73.840081574796287, 40.787851531714331],
[-73.838244291379567, 40.787785915651433],
[-73.838349638299221, 40.785850306161009],
[-73.838456054787031, 40.785824467648872],
[-73.838699212556605, 40.781676956599952],
[-73.836693859428294, 40.781649575018498],
[-73.825137403229505, 40.781699706392388],
[-73.826164371673414, 40.779684645389793],
[-73.82830621345812, 40.776000787922001],
[-73.829082561726423, 40.774794320652795],
[-73.830000110595762, 40.77373240736587],
[-73.831614555177822, 40.772410209224908],
[-73.834339601565745, 40.770787819509245],
[-73.835366235998265, 40.770121440966861],
[-73.836140524864007, 40.769527373748446],
[-73.837467946198117, 40.768306717705713],
[-73.838057667097772, 40.76759634398352],
[-73.8391318926342, 40.765991105568347],
[-73.839526787139377, 40.766139549726503],
[-73.839697725490865, 40.766392677045367],
[-73.839733868068635, 40.766734414653186],
[-73.839498058619171, 40.767017016985626],
[-73.839590726098152, 40.767110824719005],
[-73.839753879822737, 40.767120444435726],
[-73.83978750406861, 40.76705148540924],
[-73.839869578182999, 40.767086535709169],
[-73.839939221774685, 40.767064277147341],
[-73.839884307565526, 40.766952204207591],
[-73.839901909134525, 40.766824158414025],
[-73.840007589709458, 40.766623420465876],
[-73.840223744469171, 40.766529239798771],
[-73.840311703152864, 40.766294797898368],
[-73.840865150711764, 40.766214869748289],
[-73.8408600710315, 40.766142193980627],
[-73.840888835383993, 40.766210379258219],
[-73.841021919226947, 40.7661851482762],
[-73.841008029598996, 40.76611688421675],
[-73.84107888708111, 40.76611036721399],
[-73.841056430088074, 40.766178605084171],
[-73.841205305611624, 40.766150380877384],
[-73.841200754978189, 40.766081242662338],
[-73.84122723929282, 40.766146221616175],
[-73.841722861411526, 40.766043280530404],
[-73.841662116382039, 40.765968483992069],
[-73.841713097118344, 40.765958160229587],
[-73.841744812572131, 40.766038413062326],
[-73.841964449218835, 40.76598971084907],
[-73.841965465831564, 40.765927323053489],
[-73.84186231560814, 40.765925291489729],
[-73.842317444971371, 40.765819136572702],
[-73.842364634537134, 40.765835266052676],
[-73.842272615954258, 40.765855928246545],
[-73.842318280101821, 40.765911251377084],
[-73.8425134757194, 40.765867967467607],
[-73.842472878600162, 40.765785331371816],
[-73.842522616589619, 40.76577500488191],
[-73.842536234948568, 40.765862920695383],
[-73.842681960024237, 40.765830607164276],
[-73.842959156373738, 40.765854722424898],
[-73.843369697530477, 40.765725292847613],
[-73.843468206296222, 40.765653071416416],
[-73.843706335279805, 40.765679968345282],
[-73.843947482697004, 40.765494881484813],
[-73.844488958842049, 40.765459602583931],
[-73.844913328461232, 40.76552838767595],
[-73.845281635415873, 40.765666119482518],
[-73.846027159812451, 40.766044871553845],
[-73.846200240379503, 40.766196343166378],
[-73.846521704849621, 40.766295799627443],
[-73.846849646368796, 40.766262034758391],
[-73.847230679761552, 40.766313158095699],
[-73.847805751044291, 40.766772948171663],
[-73.84821324018462, 40.767634597847994],
[-73.848566972051458, 40.768090907199912],
[-73.848330892274817, 40.768332115062627],
[-73.848301382657851, 40.768430440607467],
[-73.848835223817204, 40.768752302094036],
[-73.84901287145172, 40.76921530435213],
[-73.848922557803988, 40.769324534462847],
[-73.848922761677201, 40.769407173905343],
[-73.848658639603002, 40.769614331695756],
[-73.848601014253589, 40.769817824882757],
[-73.84872999189102, 40.769989541779182],
[-73.848927243433721, 40.769914788361568],
[-73.8488178109573, 40.769738054133235],
[-73.84950427178488, 40.76951022388225],
[-73.849555298110928, 40.769562898502194],
[-73.849492072848577, 40.769583401508442],
[-73.849555060429338, 40.769668112981506],
[-73.849630288974041, 40.769661349325837],
[-73.849705212952841, 40.769789535517639],
[-73.849641940382881, 40.76983062462466],
[-73.849695867329942, 40.76993133597955],
[-73.849774078593185, 40.769936012943802],
[-73.849075512613695, 40.770193563268386],
[-73.848992744326466, 40.770028680072748],
[-73.848726718904402, 40.770106189089653],
[-73.848586643045735, 40.770504249905002],
[-73.848671529349573, 40.770761572903353],
[-73.848905270655465, 40.770982250685819],
[-73.84912991114939, 40.77106378837756],
[-73.849494027118652, 40.771328616815438],
[-73.849773036567839, 40.771804799152584],
[-73.849942418829784, 40.77192719325987],
[-73.850303975165758, 40.771938199590359],
[-73.850338088185254, 40.771743668538754],
[-73.85036823592398, 40.771815393328851],
[-73.851260524614545, 40.771872872816807],
[-73.851301084405819, 40.77180636079845],
[-73.851270376207097, 40.771985534743564],
[-73.851253749133406, 40.771890786148546],
[-73.850361465963132, 40.771830745648693],
[-73.850334105693776, 40.772017605255563],
[-73.850297176401241, 40.771966353018279],
[-73.849951625835274, 40.771958298375324],
[-73.849869024119187, 40.772183062008224],
[-73.850037385729195, 40.772181072928362],
[-73.85004065546363, 40.772224600554921],
[-73.849839583777921, 40.772231002364848],
[-73.84957161022011, 40.772561103831613],
[-73.849185805032363, 40.773104720588584],
[-73.84897619933308, 40.773561667957807],
[-73.848961124000382, 40.77374268475333],
[-73.849216780940608, 40.774639582067245],
[-73.849163081407283, 40.775004546821592],
[-73.84893873474762, 40.775560358480696],
[-73.849116366639393, 40.775787518870267],
[-73.848955593915335, 40.777961673732179],
[-73.849033886359692, 40.778091376356343],
[-73.849367616270413, 40.778168680225527],
[-73.849535865963404, 40.77842588555707],
[-73.8497474142047, 40.778414054006049],
[-73.84974445808723, 40.778464814107764],
[-73.849536646905577, 40.778457620289842],
[-73.849451063247713, 40.778580904214081],
[-73.84945995577803, 40.778656567563452],
[-73.849757868603731, 40.778722305772476],
[-73.849801321641252, 40.778767306028669],
[-73.849933532961757, 40.778769123380989],
[-73.849800881783096, 40.778793284828531],
[-73.849781143163483, 40.779111930042752],
[-73.849571554537008, 40.779192836707068],
[-73.849579214437483, 40.779410264141568],
[-73.849639689991591, 40.77948327517759],
[-73.849754044352508, 40.779477201424335],
[-73.849738513423389, 40.779401446694081],
[-73.850128669578766, 40.779366811085112],
[-73.850111481302122, 40.779300895374035],
[-73.850672277316406, 40.779193997111548],
[-73.850967189564685, 40.779110914112529],
[-73.850947057242507, 40.77906915543025],
[-73.851476060604398, 40.778964408725429],
[-73.851487555466591, 40.778992977613228],
[-73.851013396194176, 40.779121956674338],
[-73.851079460828572, 40.779297757683999],
[-73.85015741651678, 40.779432741990881],
[-73.850140173819483, 40.779390986926551],
[-73.850122752504262, 40.779428304222343],
[-73.849793043476282, 40.77949768469491],
[-73.849817200661221, 40.779630347551596],
[-73.852352678815222, 40.779480671828182],
[-73.852320862422175, 40.779169284703755],
[-73.85238832844523, 40.779528902387767],
[-73.852357519172884, 40.779496739045165],
[-73.849821023259821, 40.779651338802175],
[-73.849843629104512, 40.779775474920079],
[-73.849567442403568, 40.779875404754321],
[-73.849553155500828, 40.779990415384006],
[-73.849734652075156, 40.779996391955443],
[-73.849740181069777, 40.780040450022895],
[-73.850314739578522, 40.780041535501496],
[-73.850376424469587, 40.780009592085506],
[-73.850449928615433, 40.78003365069722],
[-73.850456559655868, 40.779888279912882],
[-73.850483716545185, 40.779961803776203],
[-73.851622867815635, 40.779939312964508],
[-73.851635633286293, 40.779869035490286],
[-73.851690280855451, 40.779867507975588],
[-73.851670991622385, 40.780035228878113],
[-73.851622661341779, 40.780031971778158],
[-73.851624926462762, 40.77995848607226],
[-73.850485782258019, 40.779977782535632],
[-73.850475104838253, 40.780052854327074],
[-73.850418303210859, 40.780078342336914],
[-73.849493812744313, 40.780065828115049],
[-73.849588729054162, 40.780232725119795],
[-73.849617400299095, 40.780546002066323],
[-73.849815031521288, 40.780641713034569],
[-73.849811731023124, 40.780870733632185],
[-73.849889320817937, 40.781089134798421],
[-73.850939709450373, 40.781081162892065],
[-73.850936463965397, 40.781119575155998],
[-73.849887280637518, 40.781121511316854],
[-73.849836600803982, 40.781599624917121],
[-73.849187094185808, 40.781641811046931],
[-73.849234925789006, 40.781701568353235],
[-73.849487379028062, 40.781748850911455],
[-73.849547742659965, 40.781841078342701],
[-73.849492663819348, 40.781968408937679],
[-73.84926950290884, 40.782121661808752],
[-73.849252581828438, 40.782264775014028],
[-73.849523192047613, 40.782356538328749],
[-73.850230338555761, 40.782415578320958],
[-73.850280896577914, 40.782459562009578],
[-73.850501212431681, 40.782353875894849],
[-73.851158882904002, 40.782366938635022],
[-73.851230477342511, 40.782402547333717],
[-73.853149930691771, 40.782323936276157],
[-73.853223310161695, 40.782060533865852],
[-73.85331933850037, 40.782034604068478],
[-73.854854292065497, 40.781940041469866],
[-73.855282427867024, 40.781975383847332],
[-73.855388451745597, 40.782075715808041],
[-73.855450628350312, 40.783143078635767],
[-73.855734752639208, 40.783156572015201],
[-73.855734675822617, 40.783192025676755],
[-73.855818627638925, 40.783194156459047],
[-73.855875679967852, 40.783309704325617],
[-73.855874589304989, 40.783198278231758],
[-73.855926566160861, 40.783196317505386],
[-73.855932966801262, 40.783317879498824],
[-73.856452066617564, 40.783322990816075],
[-73.85643993663156, 40.783157516967002],
[-73.856676908934404, 40.783150087659486],
[-73.856602869123279, 40.78289226124879],
[-73.856649510906081, 40.782892319276414],
[-73.856718722291333, 40.78320553614919],
[-73.856841290146718, 40.783371363485166],
[-73.857340523168361, 40.783371270586187],
[-73.857493513681476, 40.7834495245745],
[-73.857612233528357, 40.783611870504132],
[-73.858083181034274, 40.783724078339084],
[-73.858173789318428, 40.784017400348937],
[-73.858125027093379, 40.784188151312172],
[-73.857889297697596, 40.784287035277544],
[-73.857831054503677, 40.784442088339411],
[-73.857846660001684, 40.784509044064542],
[-73.857935501129319, 40.784502087055976],
[-73.857976856086538, 40.784678164568909],
[-73.858526985935967, 40.78522893917453],
[-73.85899156051012, 40.785204168639865],
[-73.859056445323745, 40.785431813060384],
[-73.859095000083656, 40.785438748851469],
[-73.858990659254559, 40.785104900837872],
[-73.859036289739436, 40.785092722276936],
[-73.859110497986705, 40.78544258469838],
[-73.859529092635768, 40.785530559529683],
[-73.859523695720853, 40.785561954253453],
[-73.859066385960162, 40.78546668726041],
[-73.859088877021932, 40.785532288573137],
[-73.858990489374762, 40.785491598431115],
[-73.858940344318626, 40.785567647388191],
[-73.859074175104482, 40.785603856125633],
[-73.859135057392137, 40.785701412028942],
[-73.859012474674998, 40.785801218356866],
[-73.859124612238247, 40.785850159160674],
[-73.859103227980597, 40.785879508769902],
[-73.859007549358054, 40.785833144017914],
[-73.858985799879463, 40.786004942874506],
[-73.858588405085584, 40.786148140153834],
[-73.858569426178207, 40.786276185691037],
[-73.858682833500779, 40.786531166475243],
[-73.85812817092382, 40.787051561057432],
[-73.85797998052432, 40.78705739404154],
[-73.857535811258415, 40.786930550117027],
[-73.857232471857458, 40.786722690678133],
[-73.857011189698994, 40.786647358763524],
[-73.856811337655927, 40.786672613194575],
[-73.856634578844805, 40.786730115165824],
[-73.85651686958866, 40.786945620954143],
[-73.856355898207113, 40.786977730389673],
[-73.856200203811994, 40.787150099959781],
[-73.856172757866574, 40.787493219875678],
[-73.855958689791663, 40.78767517877457],
[-73.855397475799947, 40.787690540339725],
[-73.85476457398677, 40.787780011211545],
[-73.854284982631981, 40.787739117496706],
[-73.853451844614497, 40.787826111796271],
[-73.853228656793007, 40.787890223035888],
[-73.85284230067748, 40.788211371739067],
[-73.85284201072237, 40.788342555972633],
[-73.852889902612986, 40.788346669552105],
[-73.854383647885811, 40.788320128763019],
[-73.854631101802411, 40.788417983131701],
[-73.854801947993295, 40.788619154726753],
[-73.854772543713239, 40.789036374605246],
[-73.854561201888899, 40.789669700700379],
[-73.854471941373546, 40.790258975320413],
[-73.853551979362194, 40.790676814164392],
[-73.853093770375992, 40.790837843714009],
[-73.852745141586013, 40.791010602069832],
[-73.852658306930493, 40.791106420610326],
[-73.852664183658533, 40.791255794524531],
[-73.852858796492228, 40.791533785011652],
[-73.853743378942795, 40.792293772302585],
[-73.853778549768336, 40.792421274007893],
[-73.853630801660074, 40.793098182710629],
[-73.853733516600769, 40.793935374086779],
[-73.853532372425121, 40.79413885681258],
[-73.853040342602483, 40.794263553963887],
[-73.852766271986155, 40.794389246824153],
[-73.852637252934471, 40.794542292806319],
[-73.852630982562445, 40.79494485424469],
[-73.852556115767413, 40.794893564973442],
[-73.852426512229769, 40.794609758821004],
[-73.851590771574635, 40.794086530575285],
[-73.850970341527514, 40.79385794832401],
[-73.850007216296419, 40.793600911233163],
[-73.849336548760249, 40.793371499566177],
[-73.849061608350866, 40.793362610298466],
[-73.848930518989306, 40.793410697056011],
[-73.84884894723227, 40.793501685155732],
[-73.849078147957272, 40.794145384480792],
[-73.849031630984371, 40.794338084636095],
[-73.848783702199185, 40.794542102226124],
[-73.848876545633445, 40.795134041691234],
[-73.848709993613397, 40.795416481289855],
[-73.848559887389811, 40.795495060218315],
[-73.847819671806349, 40.795784695468086],
[-73.846609142581514, 40.796027234408477],
[-73.846322643840637, 40.796164088761671],
[-73.846245284724603, 40.796161950667937],
[-73.845974128904189, 40.796017301873171],
[-73.845591671224113, 40.796011819025679],
[-73.845616063245217, 40.795845718962205],
[-73.84528519601372, 40.795443390379127],
[-73.844984476870124, 40.795265209412115],
[-73.8448889217659, 40.795109095609796],
[-73.844599150444338, 40.79491154987516],
[-73.844384720545008, 40.794870341530419],
[-73.843905239360552, 40.794869306206365],
[-73.84354668938991, 40.794913944010482],
[-73.843337608761246, 40.7950213869603],
[-73.843364156414637, 40.795346098668723],
[-73.843306323869186, 40.795500933488874],
[-73.843179613149516, 40.795433872026997],
[-73.843043639192814, 40.795214739011726],
[-73.842895458472043, 40.795182785408137],
[-73.842848653223911, 40.795213401671695],
[-73.843284972603371, 40.796174392685927],
[-73.84320653702909, 40.796192903094067],
[-73.842808752412253, 40.79541822241309],
[-73.842259593683465, 40.795584968937327],
[-73.842920690252811, 40.796903686183946],
[-73.842866752593693, 40.796922229071917],
[-73.842167473411379, 40.795612940163593],
[-73.841904802519423, 40.795621794240745],
[-73.8416869879849, 40.795408670894936],
[-73.841587212407788, 40.79540106821694],
[-73.841427367831372, 40.795490430364019],
[-73.841362872719557, 40.795619950695084],
[-73.841361337098149, 40.79585660057846],
[-73.841494093422881, 40.795981889206381],
[-73.841341299229455, 40.796095358755387],
[-73.841299436121076, 40.796219669330895],
[-73.840599822946189, 40.796806803210544],
[-73.840139303644605, 40.796879187836097],
[-73.840439775759563, 40.797637513245306],
[-73.84041517975956, 40.797678436756129],
[-73.839233881553938, 40.79788530644818],
[-73.839209483241063, 40.797844314353952],
[-73.838419441500562, 40.798342146636365],
[-73.838429158291646, 40.79837567115333],
[-73.837899675038472, 40.798508970181459],
[-73.837870440509477, 40.798441908613221],
[-73.838390134206847, 40.798304872076883]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN32",
"NTAName": "Yorkville",
"Shape_Leng": 17409.21007660000032,
"Shape_Area": 13594779.619
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.938046406034374, 40.780829544275512],
[-73.937901336239392, 40.780749996172531],
[-73.937794487264156, 40.780781258755425],
[-73.937799442456779, 40.781031339796996],
[-73.937646318214831, 40.781001215892829],
[-73.937598946226217, 40.780467840861441],
[-73.937792691024583, 40.780357904212664],
[-73.938237735094006, 40.780259079465324],
[-73.938396225917828, 40.780262432888598],
[-73.938612008880597, 40.780338955869297],
[-73.939237461782795, 40.779733393555787],
[-73.939318219876, 40.779718001826858],
[-73.939530158593683, 40.779527620260822],
[-73.939583789724765, 40.779576474007129],
[-73.939432381007734, 40.77981220027457],
[-73.939493298181716, 40.77987369131575],
[-73.939375153796746, 40.779978771849201],
[-73.939305284967787, 40.779951224552093],
[-73.939217896252799, 40.780013520221424],
[-73.938728029265945, 40.780510743704582],
[-73.938839518450365, 40.780599249799842],
[-73.938744230892752, 40.781043876042219],
[-73.938300979516455, 40.781362084364993],
[-73.938082132687612, 40.781418437274596],
[-73.937967577216469, 40.781289334060247],
[-73.938049489217576, 40.781055806042438],
[-73.938046406034374, 40.780829544275512]
]
],
[
[
[-73.943832566760648, 40.782859088972664],
[-73.943760052744679, 40.782828932219687],
[-73.943632017278702, 40.782962323182787],
[-73.943544207124773, 40.782880524325201],
[-73.943648235390114, 40.78265616133325],
[-73.943880681024979, 40.781532042861755],
[-73.943870759887062, 40.781273026571569],
[-73.94360047475412, 40.780159099466161],
[-73.943213862652243, 40.779317588659971],
[-73.943004239504674, 40.779639495474157],
[-73.942780666419708, 40.779506154068137],
[-73.942716006112036, 40.779544169476409],
[-73.94262799650491, 40.779323118968954],
[-73.942712374762181, 40.779214856939802],
[-73.942535563208523, 40.779090956062419],
[-73.942893408187928, 40.778614093246098],
[-73.942655306768572, 40.778124965573816],
[-73.942438481745029, 40.777315235765954],
[-73.942328816537341, 40.777242655641246],
[-73.942361326155577, 40.777164737887141],
[-73.942198777371573, 40.777086771456666],
[-73.942074188038774, 40.776917846977071],
[-73.942002667883855, 40.776185317383025],
[-73.942081605234875, 40.775957016317363],
[-73.942401009490482, 40.775726927526115],
[-73.942587696406804, 40.77521895652805],
[-73.94293043781397, 40.774676268035805],
[-73.943664318148436, 40.773840763674222],
[-73.944878896628566, 40.772569561504994],
[-73.946404189851748, 40.771269045619526],
[-73.947489754563293, 40.770115154521598],
[-73.957294100438432, 40.774283554572712],
[-73.949331705609538, 40.785193126557587],
[-73.943832566760648, 40.782859088972664]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK37",
"NTAName": "Park Slope-Gowanus",
"Shape_Leng": 31492.342258600001514,
"Shape_Area": 42501384.4217
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.973755984166047, 40.6830340197846],
[-73.973740117321952, 40.682892032496298],
[-73.974691183072565, 40.680266616301957],
[-73.976180513523389, 40.678064320963692],
[-73.971885967728113, 40.676394652976754],
[-73.969497387844655, 40.675906379964239],
[-73.969693175491784, 40.67536085443335],
[-73.969283106819915, 40.67507596707361],
[-73.969077317256023, 40.674839670814478],
[-73.968839108508561, 40.674407967028472],
[-73.968742049657706, 40.674087121968881],
[-73.968741747173723, 40.673448029972036],
[-73.968942063512657, 40.67288749127016],
[-73.969663940145878, 40.672642367364517],
[-73.970412894844742, 40.672593723023965],
[-73.970854406351563, 40.671864364774223],
[-73.971815946547849, 40.670629475305191],
[-73.979653534103434, 40.661243233228312],
[-73.979933751574521, 40.661270780671913],
[-73.980171611037022, 40.661154658980422],
[-73.982230342131643, 40.662141492793666],
[-73.9839179262909, 40.660137488392884],
[-73.985086793031499, 40.659013288426657],
[-73.98648200798273, 40.659909879618205],
[-73.986884645121947, 40.660366389098186],
[-73.987250688445698, 40.660378956324152],
[-73.988716510596845, 40.662404938359266],
[-73.99063765228712, 40.660577413767868],
[-73.996926899467724, 40.664374915005453],
[-73.995810252801405, 40.665530989060848],
[-73.995958662707253, 40.665704549474086],
[-73.995759573601092, 40.665783888904862],
[-73.995308003780025, 40.666157999467998],
[-73.995028725632366, 40.666515285792968],
[-73.994903501339806, 40.666785434513706],
[-73.995071176483236, 40.667075731695078],
[-73.995851292124641, 40.667972496001973],
[-73.996481427014402, 40.668925235739763],
[-73.996671916716863, 40.668739168016621],
[-73.998618879700672, 40.671830172564718],
[-73.998471340586789, 40.67205910098933],
[-73.998057416522585, 40.672469545103176],
[-73.995962131135684, 40.674968224410819],
[-73.995409892931065, 40.675563097285583],
[-73.994930962247082, 40.675907052977443],
[-73.994504911184123, 40.676072774672242],
[-73.994057975807067, 40.676182783530216],
[-73.993123744738583, 40.676178713838993],
[-73.990698619475154, 40.675807418965903],
[-73.989408963839395, 40.677454517362186],
[-73.989318137370816, 40.678349389364278],
[-73.987668038993718, 40.680817809245518],
[-73.986533029747534, 40.680372638934536],
[-73.98610388172817, 40.681008522193281],
[-73.981753335241422, 40.679313221298692],
[-73.978760224629255, 40.683765444483107],
[-73.978388624956693, 40.684423341546257],
[-73.978042895473763, 40.684856615139985],
[-73.977457220972056, 40.684052286608065],
[-73.977097967191185, 40.683869780472165],
[-73.975952996979444, 40.683474698264583],
[-73.973755984166047, 40.6830340197846]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN17",
"NTAName": "Midtown-Midtown South",
"Shape_Leng": 27035.738962499999616,
"Shape_Area": 30192051.9793
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.973014871761208, 40.764278879445193],
[-73.969800288256337, 40.76291351263022],
[-73.975807394261977, 40.754677274611787],
[-73.976515694461469, 40.75497426334509],
[-73.97834877041339, 40.752410130141804],
[-73.980887098942674, 40.753480988738509],
[-73.982274904388547, 40.751577298413572],
[-73.984076360953566, 40.749102125383985],
[-73.980850544163829, 40.747750370378185],
[-73.984074851940733, 40.743324718416474],
[-73.990515035211118, 40.746040317412593],
[-73.991418585606979, 40.7448026824962],
[-73.99709902854309, 40.747205102042216],
[-73.982110615330981, 40.767744476546319],
[-73.981791746128081, 40.767713756832023],
[-73.98151276215215, 40.76789016803162],
[-73.973014871761208, 40.764278879445193]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN19",
"NTAName": "Turtle Bay-East Midtown",
"Shape_Leng": 21644.285441399999399,
"Shape_Area": 17397677.6899
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.961246822854704, 40.740424731718385],
[-73.961259579373433, 40.740332939444805],
[-73.961641639790471, 40.740356112924417],
[-73.961629825638397, 40.740458929457496],
[-73.961246822854704, 40.740424731718385]
]
],
[
[
[-73.96421230461786, 40.746604317974267],
[-73.964273647524621, 40.746541844552404],
[-73.964337292563101, 40.746545726592949],
[-73.964445227526767, 40.746410424758018],
[-73.964583184269458, 40.746454400673308],
[-73.964475436576976, 40.746640833197816],
[-73.964159802884311, 40.746865547359548],
[-73.964125144861754, 40.746845760605311],
[-73.96421230461786, 40.746604317974267]
]
],
[
[
[-73.961629275349168, 40.755152384259098],
[-73.965324056525631, 40.751047718272197],
[-73.968365193241482, 40.747433494620083],
[-73.968231716497058, 40.747368476489015],
[-73.968301910059253, 40.747273298741987],
[-73.969875614030599, 40.745444789137601],
[-73.96997377026274, 40.745495747430589],
[-73.970788347766415, 40.744406217690312],
[-73.970940630264991, 40.744471444025542],
[-73.971125030185704, 40.744189748445017],
[-73.970703174656066, 40.743990494908566],
[-73.970761235907943, 40.743942107641793],
[-73.971181935760811, 40.744103232707829],
[-73.971357530079473, 40.743838455359608],
[-73.971205463019672, 40.743771510301293],
[-73.971281018316773, 40.743651942051315],
[-73.971241277700656, 40.743637740147491],
[-73.971187801719879, 40.743707363261755],
[-73.971085334395738, 40.743664058345153],
[-73.971245841328127, 40.74340203417448],
[-73.971354168438211, 40.74342493319508],
[-73.971310624539811, 40.743524023190645],
[-73.971355634091736, 40.74353964934943],
[-73.971679212008397, 40.743054463557151],
[-73.973508349582943, 40.743782033683068],
[-73.971228061899083, 40.746919170690163],
[-73.975841378571545, 40.748885954867809],
[-73.974444515596062, 40.750764692994835],
[-73.97834877041339, 40.752410130141804],
[-73.976515694461469, 40.75497426334509],
[-73.975807394261977, 40.754677274611787],
[-73.969800288256337, 40.76291351263022],
[-73.958777908227304, 40.758270920346149],
[-73.959181032199922, 40.757856111052213],
[-73.960656381804739, 40.755923149550178],
[-73.961629275349168, 40.755152384259098]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN20",
"NTAName": "Murray Hill-Kips Bay",
"Shape_Leng": 23132.425551200001792,
"Shape_Area": 14465584.2197
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.962304080110982, 40.733114090908053],
[-73.962263404232957, 40.732915551623478],
[-73.963521361670317, 40.732827187365977],
[-73.963586652861721, 40.732921578065657],
[-73.963677260131973, 40.732920073478439],
[-73.963661226357459, 40.732798505981947],
[-73.964065071152405, 40.73277904065386],
[-73.964060479274295, 40.732945023828698],
[-73.962304080110982, 40.733114090908053]
]
],
[
[
[-73.972196416478084, 40.740402578750249],
[-73.972216854884024, 40.740307625061675],
[-73.972270012680795, 40.740308574345505],
[-73.972299795908626, 40.740034962742961],
[-73.972438889814157, 40.740021749973216],
[-73.97265743869113, 40.739222754277101],
[-73.972590381586272, 40.73676965433949],
[-73.972489941747398, 40.735803280107596],
[-73.97286939178467, 40.735770861285545],
[-73.974413858165306, 40.736414393858944],
[-73.974459750043906, 40.736294019718159],
[-73.974026921703768, 40.736125767245625],
[-73.974046792544755, 40.736099929432029],
[-73.974466471133596, 40.736278456830043],
[-73.97450375947156, 40.736064588443888],
[-73.974140620183903, 40.7359556566647],
[-73.97450488285962, 40.73604228053668],
[-73.974507939381795, 40.735796945269776],
[-73.974487379851368, 40.735876987533075],
[-73.974461258319323, 40.735832424064327],
[-73.974245331183141, 40.735781154932617],
[-73.974469392147924, 40.735799160979042],
[-73.974464612073334, 40.735668172162015],
[-73.974145397120765, 40.735672558313311],
[-73.973056987781391, 40.735177452913106],
[-73.972806617104609, 40.735523918521125],
[-73.972930319925283, 40.735607614396812],
[-73.972763083803528, 40.735505087473534],
[-73.972996952024843, 40.73518650689109],
[-73.972837459434814, 40.735199716201826],
[-73.972945206926113, 40.735065170070939],
[-73.972970836356055, 40.73515721697126],
[-73.973036847137308, 40.735127947144925],
[-73.973298951122089, 40.735242355077233],
[-73.973296273629643, 40.735040856642499],
[-73.973544728839414, 40.734944326604015],
[-73.974749005906489, 40.735425188500095],
[-73.97495992976468, 40.735368717998732],
[-73.975222755945822, 40.735397907530697],
[-73.978498456398043, 40.736790956525432],
[-73.978052264976156, 40.737553953656167],
[-73.982664974790254, 40.739497332704119],
[-73.980859654124075, 40.741969768081923],
[-73.984074851940733, 40.743324718416474],
[-73.980850544163829, 40.747750370378185],
[-73.984076360953566, 40.749102125383985],
[-73.980887098942674, 40.753480988738509],
[-73.974444515596062, 40.750764692994835],
[-73.975841378571545, 40.748885954867809],
[-73.971228061899083, 40.746919170690163],
[-73.973508349582943, 40.743782033683068],
[-73.971679212008397, 40.743054463557151],
[-73.971888889130653, 40.742724819852931],
[-73.971740597158458, 40.7426635795089],
[-73.971959558562531, 40.742337921543637],
[-73.972289920992168, 40.740721039031747],
[-73.972168483878733, 40.740693120300477],
[-73.972235043171651, 40.740413403401945],
[-73.972196416478084, 40.740402578750249]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN40",
"NTAName": "Upper East Side-Carnegie Hill",
"Shape_Leng": 23778.406396800000948,
"Shape_Area": 20065328.7099
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.949331705609538, 40.785193126557587],
[-73.96658338422283, 40.76155093507397],
[-73.973014871761208, 40.764278879445193],
[-73.955777359123232, 40.787913924471042],
[-73.949331705609538, 40.785193126557587]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN31",
"NTAName": "Lenox Hill-Roosevelt Island",
"Shape_Leng": 37847.364332199998898,
"Shape_Area": 21511130.8706
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.956201367350374, 40.749685633323473],
[-73.95619953007305, 40.749670714925344],
[-73.956201368672424, 40.749685632821375],
[-73.956201367350374, 40.749685633323473]
]
],
[
[
[-73.941800327955306, 40.769046926625016],
[-73.942855286207049, 40.768303494409288],
[-73.943814273888634, 40.767220912050199],
[-73.944840266522107, 40.765823628390805],
[-73.946621414086849, 40.763862772080927],
[-73.949431754971471, 40.760548616858593],
[-73.950333588805719, 40.759856755553841],
[-73.951260059087701, 40.758810116371727],
[-73.951778220259953, 40.758402549876948],
[-73.952092329565346, 40.75799314034456],
[-73.952176634237347, 40.757831335937368],
[-73.952211463420596, 40.757583639832895],
[-73.952540793368755, 40.757095314537246],
[-73.953306960358532, 40.756344327127501],
[-73.955073269281613, 40.754798682554771],
[-73.955195031835672, 40.754774523476179],
[-73.956924043707318, 40.752961159891399],
[-73.957914524931851, 40.752109854525308],
[-73.958607557564235, 40.751613323986902],
[-73.959039759873519, 40.751392485111623],
[-73.95902757442488, 40.751297369850938],
[-73.959558759968814, 40.750814597762172],
[-73.960829033923815, 40.749910550705252],
[-73.961173730269792, 40.749498442571529],
[-73.961424779365885, 40.749401290398801],
[-73.961583049385695, 40.749414301106484],
[-73.961607994424497, 40.749564316510174],
[-73.96155080004516, 40.749773889705608],
[-73.961320034087507, 40.750074671934833],
[-73.961110601418753, 40.750600469900711],
[-73.960709408762426, 40.751148498244319],
[-73.960011323298147, 40.7518315173348],
[-73.959500799950973, 40.752956382195713],
[-73.959016166935669, 40.753595059957611],
[-73.958926711209514, 40.75356249236139],
[-73.958458368717658, 40.753949236505086],
[-73.955655130980048, 40.757095106228114],
[-73.955504255244733, 40.757333456072537],
[-73.953662418768417, 40.759479733611165],
[-73.953323216179569, 40.759745964184809],
[-73.953391407339538, 40.759796762357688],
[-73.953124515710414, 40.760052758429794],
[-73.952977882160738, 40.759962107876866],
[-73.95208632266548, 40.760862154404805],
[-73.951625049739803, 40.761678863605738],
[-73.950937349280878, 40.762570495237789],
[-73.949971917502936, 40.763646029814446],
[-73.949203760227775, 40.764269643832762],
[-73.949086287915648, 40.764264027274926],
[-73.947701090128021, 40.766022397325123],
[-73.946552738931601, 40.767368204561464],
[-73.945851123330939, 40.768247750235524],
[-73.945844514238203, 40.768321228251388],
[-73.945703573348027, 40.768327933809196],
[-73.945481142892874, 40.768624779437786],
[-73.945627210934504, 40.768692953178856],
[-73.945563020487882, 40.768801775524508],
[-73.945404919161291, 40.768732173038856],
[-73.945245104074587, 40.768773268310689],
[-73.9451570422152, 40.769118317751655],
[-73.944724784974568, 40.769786271534819],
[-73.944004239563355, 40.770293982150797],
[-73.943204141142729, 40.770992399246033],
[-73.942578303009668, 40.771701857221032],
[-73.942126745807201, 40.772034700509074],
[-73.941369907424047, 40.772309150827695],
[-73.940887072116695, 40.772372515775992],
[-73.940569574866871, 40.772614759467018],
[-73.940274608551604, 40.772947436892593],
[-73.940179598041055, 40.772959315594377],
[-73.940076656855013, 40.772926186860182],
[-73.940011573244163, 40.772842361055488],
[-73.940282079241967, 40.772301406991204],
[-73.94027766722354, 40.77171314173949],
[-73.94020021779653, 40.771128305662707],
[-73.940279858293252, 40.770670711009771],
[-73.94035533477512, 40.770496574371023],
[-73.940826053003434, 40.769912156262976],
[-73.941117787180247, 40.769414408574626],
[-73.941800327955306, 40.769046926625016]
]
],
[
[
[-73.958543296129648, 40.758495622935556],
[-73.958777908227304, 40.758270920346149],
[-73.96658338422283, 40.76155093507397],
[-73.957294100438432, 40.774283554572712],
[-73.947489754563293, 40.770115154521598],
[-73.948664164779615, 40.768857623394268],
[-73.950069793691654, 40.767025088383569],
[-73.954418260786042, 40.762184104951039],
[-73.958543296129648, 40.758495622935556]
]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 2,
"BoroName": "Bronx",
"CountyFIPS": "005",
"NTACode": "BX59",
"NTAName": "Westchester-Unionport",
"Shape_Leng": 27119.050617600001715,
"Shape_Area": 23948059.0946
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.839367942506499, 40.840882973481769],
[-73.839567002668772, 40.840547227886489],
[-73.839720143831869, 40.839565405984281],
[-73.839589537656977, 40.838798485825663],
[-73.839720145156562, 40.83956540548354],
[-73.84030282537185, 40.839524313944985],
[-73.840273769538825, 40.839206272896057],
[-73.840162484974812, 40.839066064784447],
[-73.84010873937099, 40.838852118209786],
[-73.840030636645636, 40.838857592148692],
[-73.840028088690332, 40.838947871007939],
[-73.840009705047663, 40.838838090455859],
[-73.840098897026749, 40.838827455412215],
[-73.840068799739981, 40.83875204009076],
[-73.840135315334919, 40.838614176917432],
[-73.839955951343654, 40.838286517144091],
[-73.840002643486244, 40.838251975473852],
[-73.839920264826858, 40.837820663260203],
[-73.839851320073691, 40.837821749432237],
[-73.839841796470324, 40.837904938380149],
[-73.839828335718295, 40.837687178761243],
[-73.839849070655603, 40.837788111494895],
[-73.839915814048481, 40.837782796474023],
[-73.839950298181193, 40.837583896587525],
[-73.839841920331267, 40.836885276553048],
[-73.839842355563036, 40.836116241463877],
[-73.839754581120928, 40.836131970341889],
[-73.839759429015899, 40.836296278370433],
[-73.839659028527336, 40.836067113758816],
[-73.839825565694369, 40.836054399567615],
[-73.839821722927766, 40.836016554886143],
[-73.839711591467079, 40.836017397812732],
[-73.839821756490437, 40.836002614580011],
[-73.839817929437089, 40.835958795339366],
[-73.839724828183122, 40.835964641249213],
[-73.83981403197609, 40.835943854312582],
[-73.839810227583783, 40.835890077300832],
[-73.839757790194824, 40.83588801343361],
[-73.83981026594553, 40.835874144804073],
[-73.839799928255829, 40.835811398353655],
[-73.839651735478725, 40.835829115490043],
[-73.83968001567375, 40.836063159377467],
[-73.839608504003081, 40.835708050684509],
[-73.839655733467296, 40.83580223593772],
[-73.839796050876359, 40.835788489403384],
[-73.839789601503327, 40.835744667690314],
[-73.839658497406688, 40.835743489233657],
[-73.839792269410083, 40.83572575105287],
[-73.839779278245743, 40.835675944833056],
[-73.839682260141998, 40.835675810016028],
[-73.83979488496, 40.835619207491888],
[-73.839674454292947, 40.835098757889334],
[-73.839708994863201, 40.834852717937721],
[-73.839530851680735, 40.834368918235754],
[-73.839591084522908, 40.834041688090572],
[-73.839920484787982, 40.833320794296881],
[-73.840181516990086, 40.833043425473718],
[-73.841817259121115, 40.831726193654625],
[-73.842213347308615, 40.831550507278052],
[-73.842345274265512, 40.831300448019292],
[-73.842758842937798, 40.830818484142796],
[-73.84270324854316, 40.830745026669881],
[-73.842937312377174, 40.830121401184854],
[-73.843052562973384, 40.830101567081542],
[-73.843099509595959, 40.82996001179513],
[-73.843021162978729, 40.829961587120508],
[-73.843053452618051, 40.829762090038493],
[-73.843106915999044, 40.829794139319844],
[-73.843033946085498, 40.828934984940972],
[-73.842895275078348, 40.828569176121739],
[-73.843906499447428, 40.828406333240082],
[-73.842898588274338, 40.824083059408451],
[-73.855136397492856, 40.822436188806613],
[-73.855971623905276, 40.826063877757861],
[-73.856196565338792, 40.826040994724437],
[-73.85635677476688, 40.826752085458125],
[-73.856151128295195, 40.826770045713381],
[-73.857375294578446, 40.832046546399241],
[-73.857391211875068, 40.832297372226023],
[-73.860082701998763, 40.833111456899005],
[-73.860325089565933, 40.833198639616121],
[-73.860338458462508, 40.83325316598345],
[-73.859839376331394, 40.833340896342044],
[-73.851684597478283, 40.834201052350295],
[-73.852070059306868, 40.835625303052296],
[-73.853335250082225, 40.842470155155596],
[-73.850522780828626, 40.842789489298966],
[-73.847797919905517, 40.840696310626896],
[-73.844581291744547, 40.838535507629452],
[-73.842041447058023, 40.840645897248095],
[-73.84140548280682, 40.840602502952287],
[-73.839367942506499, 40.840882973481769]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 3,
"BoroName": "Brooklyn",
"CountyFIPS": "047",
"NTACode": "BK40",
"NTAName": "Windsor Terrace",
"Shape_Leng": 19033.540183299999626,
"Shape_Area": 14041611.8524
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.979842618844515, 40.660727441131378],
[-73.979680329162903, 40.660766656861163],
[-73.979578700956395, 40.660853242153919],
[-73.975157381000074, 40.658722794114951],
[-73.974482340347052, 40.65833944977868],
[-73.974267355617954, 40.65802878769351],
[-73.974119534582783, 40.65769375242148],
[-73.973791898343919, 40.65639232344359],
[-73.972328462880768, 40.651397929082854],
[-73.97259159552209, 40.651276460909777],
[-73.972680487935094, 40.651132382315446],
[-73.972688748538147, 40.650967127211622],
[-73.972586446177218, 40.650805064026905],
[-73.972442022311768, 40.650698175640692],
[-73.97208846041417, 40.650656908753611],
[-73.970841137296787, 40.646378571072312],
[-73.974642244099087, 40.644813218879243],
[-73.974827416236138, 40.645663420867798],
[-73.977773805642201, 40.645341876574996],
[-73.978190743593188, 40.647525991511117],
[-73.980291154772004, 40.647297161431233],
[-73.981795687184174, 40.655246097158184],
[-73.988431352521516, 40.659251211657804],
[-73.987250688445698, 40.660378956324152],
[-73.986884645121947, 40.660366389098186],
[-73.98648200798273, 40.659909879618205],
[-73.985086793031499, 40.659013288426657],
[-73.9839179262909, 40.660137488392884],
[-73.982230342131643, 40.662141492793666],
[-73.980171611037022, 40.661154658980422],
[-73.980229025947111, 40.660985325987717],
[-73.980172015525483, 40.660867753870484],
[-73.98000113758691, 40.660757564209675],
[-73.979842618844515, 40.660727441131378]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 4,
"BoroName": "Queens",
"CountyFIPS": "081",
"NTACode": "QN45",
"NTAName": "Douglas Manor-Douglaston-Little Neck",
"Shape_Leng": 45832.62903,
"Shape_Area": 68567595.9664
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-73.713518281059919, 40.759837730830796],
[-73.714982140229637, 40.759782865022075],
[-73.716125282334986, 40.759660714307273],
[-73.716854404447119, 40.759525514522245],
[-73.717672370657056, 40.759311211520334],
[-73.718319718185384, 40.759082076177911],
[-73.718970503648563, 40.75878323753907],
[-73.719564607207403, 40.758450560420506],
[-73.72031595291358, 40.757897258620083],
[-73.720965117101628, 40.757293789168727],
[-73.721458702613546, 40.75665808054616],
[-73.722410947975703, 40.754920188745814],
[-73.722645435278409, 40.754600524027786],
[-73.723266734112798, 40.753947599496982],
[-73.72384451856351, 40.753456811667498],
[-73.726414721371526, 40.751915877812721],
[-73.727093895577696, 40.751341604743665],
[-73.727378891401585, 40.751029567399691],
[-73.727884011004235, 40.750387483323877],
[-73.728253810495048, 40.749693728645596],
[-73.728719528034404, 40.748197080556579],
[-73.729066709740763, 40.747390959246133],
[-73.729931691068003, 40.746188124590155],
[-73.731064618808389, 40.744888375884287],
[-73.732416946135004, 40.743694576907266],
[-73.7337063066621, 40.742782501430511],
[-73.734517998421325, 40.743822457249905],
[-73.73487307226317, 40.744461268285427],
[-73.735035552249556, 40.745146598254109],
[-73.735039216207966, 40.74618407559818],
[-73.735224444893987, 40.746762954036114],
[-73.735430002527025, 40.747160668620609],
[-73.735914974876877, 40.747538879350152],
[-73.736899675713985, 40.748016700561429],
[-73.737413765122128, 40.748392216259631],
[-73.738304685292704, 40.749246829067062],
[-73.73985376108601, 40.751298529952777],
[-73.740873617949319, 40.751968385524734],
[-73.741433237013311, 40.752708735710186],
[-73.741646938138516, 40.75308533993153],
[-73.741780796944099, 40.753482215940238],
[-73.741278378485475, 40.754576386431673],
[-73.74075722166485, 40.754967468669008],
[-73.739793481738161, 40.75539888184548],
[-73.739499213492721, 40.755630340930779],
[-73.739294613734671, 40.755876248032592],
[-73.739177890897409, 40.756128954320495],
[-73.739143732194989, 40.756393617566744],
[-73.739178540200612, 40.756719203752098],
[-73.739292224047716, 40.756973935795578],
[-73.739643156578282, 40.756738382338796],
[-73.740416776288527, 40.756676317472795],
[-73.741208206459476, 40.756204617685633],
[-73.741259454407754, 40.756710496683816],
[-73.742502139244877, 40.758588149546803],
[-73.743106258310689, 40.758494264626343],
[-73.743466093594591, 40.759338298933542],
[-73.74473826476742, 40.760759975047563],
[-73.745978105634236, 40.763976284900181],
[-73.749369955287079, 40.762933643854254],
[-73.750212532212814, 40.763749382154685],
[-73.746875217669782, 40.764518628918992],
[-73.749408465733907, 40.767551978944304],
[-73.753388530727591, 40.765333945586207],
[-73.7540342230552, 40.766055019727169],
[-73.754149389161043, 40.76629953305325],
[-73.754360745820691, 40.76646023070888],
[-73.754638377439818, 40.766929936122686],
[-73.754886917310174, 40.767180372068324],
[-73.755072108490467, 40.76753310678734],
[-73.755076033835707, 40.767663747806296],
[-73.754872561003793, 40.768120704325078],
[-73.754859158295019, 40.768404252455831],
[-73.754702199632177, 40.768620872332761],
[-73.754491969138343, 40.768659715004333],
[-73.754393882693449, 40.768753462748627],
[-73.75471391688049, 40.768795143394932],
[-73.754705936505744, 40.769741522945267],
[-73.75533279459188, 40.770998154653263],
[-73.755512958526552, 40.770945013455133],
[-73.755534986627879, 40.770985526492957],
[-73.75534216256267, 40.771022152241187],
[-73.755502439618965, 40.771282509092394],
[-73.755573327154224, 40.771529125924097],
[-73.755424237035768, 40.771642135349843],
[-73.755082677138304, 40.771713228492196],
[-73.755115236284269, 40.771834906488358],
[-73.755073868690829, 40.771840266849161],
[-73.755059203860483, 40.771719174693374],
[-73.754380747575411, 40.772041271642145],
[-73.753570009061363, 40.772694616129293],
[-73.753409858125309, 40.772959173811437],
[-73.753366919996822, 40.773207846758233],
[-73.753679691216405, 40.773972978829683],
[-73.753836157189212, 40.77422433743277],
[-73.753955739399075, 40.774306209075107],
[-73.754104061049688, 40.774710474148087],
[-73.754144154585305, 40.77504467904685],
[-73.754274041823237, 40.775184235164616],
[-73.754241499993839, 40.775266830365211],
[-73.754660424423633, 40.775836284487184],
[-73.754800971863617, 40.77589859528338],
[-73.754886881944515, 40.776189322122129],
[-73.755185753282149, 40.776498070828787],
[-73.755022867179846, 40.776637616150801],
[-73.754858006454882, 40.776896399581432],
[-73.754873585379855, 40.776977087335986],
[-73.754981937472166, 40.777043803362758],
[-73.754892521259464, 40.777167236476089],
[-73.754813228934353, 40.777619032305587],
[-73.755418313538499, 40.777635743824177],
[-73.755424345784689, 40.777583945671282],
[-73.755517816047202, 40.777584144019919],
[-73.755517375817973, 40.777704048364164],
[-73.755420021108762, 40.777700881250176],
[-73.755422142120921, 40.77765351540986],
[-73.754812171246527, 40.77763599592339],
[-73.754557911058413, 40.777776590664253],
[-73.754484528283257, 40.7779044679815],
[-73.754649812513847, 40.777992106293027],
[-73.754441962820323, 40.778125156538415],
[-73.754301835408654, 40.778406111489844],
[-73.754111718784785, 40.779024568986998],
[-73.7541296414919, 40.779384143239007],
[-73.753932754672022, 40.779762610077796],
[-73.753008126160211, 40.780866074687296],
[-73.752998392964329, 40.781289489522109],
[-73.752459627532048, 40.781781090569801],
[-73.750805936137837, 40.782893378668064],
[-73.75029101900212, 40.78248292040108],
[-73.747067676330985, 40.78054553224991],
[-73.744123145681016, 40.778638657554154],
[-73.740759914893147, 40.776694710498425],
[-73.74007973971888, 40.7762087953963],
[-73.73937598887052, 40.776013669167277],
[-73.739123620037176, 40.775704143072694],
[-73.738862273638304, 40.77557315790127],
[-73.737702836222994, 40.774793585732326],
[-73.733892615913277, 40.772527178759276],
[-73.733042157134435, 40.771954434364588],
[-73.728707221187449, 40.769461484092567],
[-73.72771875324986, 40.768796135845697],
[-73.725545989994728, 40.767495355828977],
[-73.723560021542241, 40.766128761665129],
[-73.723059241725181, 40.766144406314133],
[-73.722484384118246, 40.765527210355806],
[-73.721142727509843, 40.764872606365557],
[-73.72021435717204, 40.764192605592712],
[-73.716575852522041, 40.761781811522184],
[-73.713518281059919, 40.759837730830796]
]
]
}
}, {
"type": "Feature",
"properties": {
"BoroCode": 1,
"BoroName": "Manhattan",
"CountyFIPS": "061",
"NTACode": "MN34",
"NTAName": "East Harlem North",
"Shape_Leng": 30619.339870600000722,
"Shape_Area": 24494704.8798
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-73.927185147783703, 40.797349896780219],
[-73.927671226208673, 40.797217014266224],
[-73.927706941271779, 40.797298662876955],
[-73.92738263558482, 40.79737706257486],
[-73.927366756606673, 40.797346820344785],
[-73.927202997042144, 40.797386747799365],
[-73.927185147783703, 40.797349896780219]
]
],
[
[
[-73.926720912351072, 40.80041421094397],
[-73.926538463899803, 40.800333898810472],
[-73.9265535165366, 40.800315172921408],
[-73.926742638929966, 40.800403498972756],
[-73.926720912351072, 40.80041421094397]
]
],
[
[
[-73.926665654803926, 40.80018271403577],
[-73.926695726295577, 40.80014697715243],
[-73.927247708554162, 40.800392957369368],
[-73.927114642306421, 40.800563756229515],
[-73.927066966284897, 40.800543012125793],
[-73.927169330224871, 40.80040585369612],
[-73.926665654803926, 40.80018271403577]
]
],
[
[
[-73.926886060219999, 40.80084064836889],
[-73.926509548673593, 40.800657031021956],
[-73.926552417423451, 40.800604825091845],
[-73.926869086133223, 40.800783676798822],
[-73.926995313692686, 40.800636176104682],
[-73.927046403640446, 40.800651743031686],
[-73.926886060219999, 40.80084064836889]
]
],
[
[
[-73.933805899480205, 40.816512493247458],
[-73.933829009507576, 40.815585360187846],
[-73.933946088253464, 40.815587624739152],
[-73.933966209503907, 40.814565210748867],
[-73.934014767269787, 40.814483752624774],
[-73.933856526388169, 40.814481474419189],
[-73.933929846001945, 40.813347690633762],
[-73.93428227801445, 40.81082305000605],
[-73.934340809714726, 40.809927582749552],
[-73.934338645847376, 40.809562213831335],
[-73.934120734181533, 40.808656451977015],
[-73.933561193114812, 40.807600677386638],
[-73.933084717497124, 40.80702691470205],
[-73.931159499873274, 40.804966940262432],
[-73.930308764588275, 40.803786014865501],
[-73.930012613029689, 40.803287498428723],
[-73.929981066790276, 40.803203772320316],
[-73.930049303997095, 40.803123313051564],
[-73.929453663996895, 40.801907368333794],
[-73.929208175298285, 40.80114752061084],
[-73.929034902403089, 40.801080903851854],
[-73.928901523442235, 40.799855214160104],
[-73.929036401796253, 40.796762594101246],
[-73.929279367411709, 40.795853139520574],
[-73.929874857121348, 40.795035156225325],
[-73.929809553499865, 40.794983166296682],
[-73.929832540425238, 40.794949061140784],
[-73.929916361205983, 40.794949112137012],
[-73.930068811016682, 40.794700828605833],
[-73.930107710281447, 40.794712991063669],
[-73.930196644590794, 40.794593223850057],
[-73.933484753496273, 40.792774284832007],
[-73.93505300005576, 40.791687202908996],
[-73.935428427322961, 40.791996880115917],
[-73.935553128392243, 40.791842225574229],
[-73.937736120573746, 40.792815804101579],
[-73.938648833004081, 40.791557754806092],
[-73.943272511905676, 40.793488102935555],
[-73.941876046608925, 40.795405868547874],
[-73.94831125454381, 40.798129217566782],
[-73.944597513456074, 40.803228145255666],
[-73.946131310486734, 40.803877357584135],
[-73.944301945871231, 40.806390824581001],
[-73.942753672281938, 40.805744012794605],
[-73.941771401700748, 40.807088999847082],
[-73.938544078632631, 40.805729652932506],
[-73.935807802011823, 40.809497638257618],
[-73.939017533145986, 40.810856556874455],
[-73.934873437688793, 40.816527847014648],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment