Skip to content

Instantly share code, notes, and snippets.

@ix4
Forked from john-guerra/README.md
Last active January 9, 2023 12:15
Show Gist options
  • Save ix4/6f44e559b29a72c4c5d130ac13aad317 to your computer and use it in GitHub Desktop.
Save ix4/6f44e559b29a72c4c5d130ac13aad317 to your computer and use it in GitHub Desktop.
GeoJson map of NYC Boroughs

Geo Json map of NYC Boroughs

Based on the Map of Thailand by Master Krist Wongsuphasawat, a simple map of Colombia using GeoJSON and D3.js

Forked from john-guerra's block

As in Krist example:

  • Each borough is color-coded by the length of its name in English.
  • Hover each borough to see text effects.
  • New font is chosen randomly every time you change boroughs.
  • Click on a borough to zoom in. Click somewhere else to zoom out.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Josefin+Slab|Arvo|Lato|Vollkorn|Abril+Fatface|Old+Standard+TT|Droid+Sans|Lobster|Inconsolata|Montserrat|Playfair+Display|Karla|Alegreya|Libre+Baskerville|Merriweather|Lora|Archivo+Narrow|Neuton|Signika|Questrial|Fjalla+One|Bitter|Varela+Round);
.background {
fill: #eee;
pointer-events: all;
}
.map-layer {
fill: #fff;
stroke: #aaa;
}
.effect-layer{
pointer-events:none;
}
text{
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
}
text.big-text{
font-size: 30px;
font-weight: 400;
}
.effect-layer text, text.dummy-text{
font-size: 12px;
}
</style>
<body>
<svg></svg>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500,
centered;
// Define color scale
var color = d3.scale.linear()
.domain([1, 20])
.clamp(true)
.range(['#fff', '#409A99']);
var projection = d3.geo.mercator()
.scale(45000)
// Center the Map in Colombia
.center([-73.935242, 40.730610])
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
// Set svg width & height
var svg = d3.select('svg')
.attr('width', width)
.attr('height', height);
// Add background
svg.append('rect')
.attr('class', 'background')
.attr('width', width)
.attr('height', height)
.on('click', clicked);
var g = svg.append('g');
var effectLayer = g.append('g')
.classed('effect-layer', true);
var mapLayer = g.append('g')
.classed('map-layer', true);
var dummyText = g.append('text')
.classed('dummy-text', true)
.attr('x', 10)
.attr('y', 30)
.style('opacity', 0);
var bigText = g.append('text')
.classed('big-text', true)
.attr('x', 20)
.attr('y', 45);
// Load map data
d3.json('nyc.geojson', function(error, mapData) {
var features = mapData.features;
// Update color scale domain based on data
color.domain([0, d3.max(features, nameLength)]);
// Draw each province as a path
mapLayer.selectAll('path')
.data(features)
.enter().append('path')
.attr('d', path)
.attr('vector-effect', 'non-scaling-stroke')
.style('fill', fillFn)
.on('mouseover', mouseover)
.on('mouseout', mouseout)
.on('click', clicked);
});
// Get province name
function nameFn(d){
return d && d.properties ? d.properties.boro_name : null;
}
// Get province name length
function nameLength(d){
var n = nameFn(d);
return n ? n.length : 0;
}
// Get province color
function fillFn(d){
return color(nameLength(d));
}
// When clicked, zoom in
function clicked(d) {
var x, y, k;
// Compute centroid of the selected path
if (d && centered !== d) {
var centroid = path.centroid(d);
x = centroid[0];
y = centroid[1];
k = 4;
centered = d;
} else {
x = width / 2;
y = height / 2;
k = 1;
centered = null;
}
// Highlight the clicked province
mapLayer.selectAll('path')
.style('fill', function(d){return centered && d===centered ? '#D5708B' : fillFn(d);});
// Zoom
g.transition()
.duration(750)
.attr('transform', 'translate(' + width / 2 + ',' + height / 2 + ')scale(' + k + ')translate(' + -x + ',' + -y + ')');
}
function mouseover(d){
// Highlight hovered province
d3.select(this).style('fill', 'orange');
// Draw effects
textArt(nameFn(d));
}
function mouseout(d){
// Reset province color
mapLayer.selectAll('path')
.style('fill', function(d){return centered && d===centered ? '#D5708B' : fillFn(d);});
// Remove effect text
effectLayer.selectAll('text').transition()
.style('opacity', 0)
.remove();
// Clear province name
bigText.text('');
}
// Gimmick
// Just me playing around.
// You won't need this for a regular map.
var BASE_FONT = "'Helvetica Neue', Helvetica, Arial, sans-serif";
var FONTS = [
"Open Sans",
"Josefin Slab",
"Arvo",
"Lato",
"Vollkorn",
"Abril Fatface",
"Old StandardTT",
"Droid+Sans",
"Lobster",
"Inconsolata",
"Montserrat",
"Playfair Display",
"Karla",
"Alegreya",
"Libre Baskerville",
"Merriweather",
"Lora",
"Archivo Narrow",
"Neuton",
"Signika",
"Questrial",
"Fjalla One",
"Bitter",
"Varela Round"
];
function textArt(text){
// Use random font
var fontIndex = Math.round(Math.random() * FONTS.length);
var fontFamily = FONTS[fontIndex] + ', ' + BASE_FONT;
bigText
.style('font-family', fontFamily)
.text(text);
// Use dummy text to compute actual width of the text
// getBBox() will return bounding box
dummyText
.style('font-family', fontFamily)
.text(text);
var bbox = dummyText.node().getBBox();
var textWidth = bbox.width;
var textHeight = bbox.height;
var xGap = 3;
var yGap = 1;
// Generate the positions of the text in the background
var xPtr = 0;
var yPtr = 0;
var positions = [];
var rowCount = 0;
while(yPtr < height){
while(xPtr < width){
var point = {
text: text,
index: positions.length,
x: xPtr,
y: yPtr
};
var dx = point.x - width/2 + textWidth/2;
var dy = point.y - height/2;
point.distance = dx*dx + dy*dy;
positions.push(point);
xPtr += textWidth + xGap;
}
rowCount++;
xPtr = rowCount%2===0 ? 0 : -textWidth/2;
xPtr += Math.random() * 10;
yPtr += textHeight + yGap;
}
var selection = effectLayer.selectAll('text')
.data(positions, function(d){return d.text+'/'+d.index;});
// Clear old ones
selection.exit().transition()
.style('opacity', 0)
.remove();
// Create text but set opacity to 0
selection.enter().append('text')
.text(function(d){return d.text;})
.attr('x', function(d){return d.x;})
.attr('y', function(d){return d.y;})
.style('font-family', fontFamily)
.style('fill', '#777')
.style('opacity', 0);
selection
.style('font-family', fontFamily)
.attr('x', function(d){return d.x;})
.attr('y', function(d){return d.y;});
// Create transtion to increase opacity from 0 to 0.1-0.5
// Add delay based on distance from the center of the <svg> and a bit more randomness.
selection.transition()
.delay(function(d){
return d.distance * 0.01 + Math.random()*1000;
})
.style('opacity', function(d){
return 0.1 + Math.random()*0.4;
});
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89680883223774,40.79580844515979],[-73.89796839783742,40.795644839161994],[-73.89919434249981,40.79650245601821],[-73.89788253240185,40.79711653214705],[-73.89680883223774,40.79580844515979]]],[[[-73.87287195837753,40.78597502780402],[-73.87288496983653,40.78596263321597],[-73.87677224850898,40.78580045898281],[-73.8783068005765,40.78535662050845],[-73.88596200181902,40.78675251948483],[-73.88830725732264,40.78700634478622],[-73.88940460807083,40.787791280074536],[-73.89056971575057,40.79010763621289],[-73.89218182984939,40.79039426960897],[-73.89282283610936,40.79281708195142],[-73.89179289686578,40.79677524575867],[-73.89060785824256,40.79776750713774],[-73.8871867416842,40.798299650460244],[-73.88391718206042,40.795795021959435],[-73.88166054417218,40.79507083151595],[-73.87789422394029,40.794319244803035],[-73.87491771753022,40.79230347842359],[-73.87288457445666,40.79145210820714],[-73.87119724046633,40.78999989667402],[-73.87080888567434,40.787896691683045],[-73.87287195837753,40.78597502780402]]],[[[-73.89833036270556,40.802412820940006],[-73.89646668834571,40.800790470891314],[-73.89864038714995,40.79910116462135],[-73.89978738800845,40.79950955437454],[-73.8993874857105,40.801935665070275],[-73.89833036270556,40.802412820940006]]],[[[-73.80222295355263,40.841634813144104],[-73.8026381115615,40.841081153267076],[-73.80694608641599,40.84146244718635],[-73.80680801372391,40.84248913998751],[-73.80393073307408,40.84259407254989],[-73.80222295355263,40.841634813144104]]],[[[-73.79018745195005,40.858609917386154],[-73.78898385013125,40.85847084373988],[-73.78888830770913,40.85660428310891],[-73.78796264288071,40.85347472093553],[-73.78641733510767,40.85214457646967],[-73.78447953199854,40.85107180299238],[-73.78357825260389,40.849266386802206],[-73.78149386587495,40.84858047582578],[-73.78142920347918,40.847456345357216],[-73.783050749408,40.84549682317586],[-73.78347481249254,40.84365473810971],[-73.78154308949135,40.84078478253003],[-73.78132522577035,40.839291781356565],[-73.78188455720282,40.83765027660476],[-73.78410164591313,40.83672552935794],[-73.78557796850949,40.83792711322535],[-73.7857350929869,40.83923423177581],[-73.78730353132516,40.839674724501016],[-73.78823199262376,40.8421960847721],[-73.78959737629594,40.84450197311116],[-73.79148034725685,40.8468020527137],[-73.791362881068,40.848232302390265],[-73.7897571107061,40.84953146928762],[-73.79012439171832,40.851189912194556],[-73.79113795170932,40.85205585257364],[-73.79129282160648,40.85458402597682],[-73.79205778470713,40.85651308623449],[-73.79018745195005,40.858609917386154]]],[[[-73.76783205637167,40.85444220574204],[-73.76938529139699,40.85253613399679],[-73.76860817687101,40.850788395378096],[-73.7695967431147,40.8475945190982],[-73.76789492672653,40.84528943351961],[-73.76901389181124,40.84509734272185],[-73.77157218833243,40.847500058580366],[-73.77088920221176,40.84975177133801],[-73.77246892938172,40.85170914738928],[-73.77214036841818,40.85441271260058],[-73.77219223055423,40.85998663859693],[-73.77084562360571,40.860101012856745],[-73.76836277290789,40.85835828885185],[-73.76836085918804,40.857655363705895],[-73.7653324399529,40.85504359512487],[-73.76783205637167,40.85444220574204]]],[[[-73.78452431937967,40.860477063147826],[-73.78470517053266,40.85917438144231],[-73.78657148225409,40.85923189058593],[-73.78685886773303,40.860045057839564],[-73.78452431937967,40.860477063147826]]],[[[-73.90893235241587,40.87215734797062],[-73.90774270784561,40.872845952111575],[-73.90665099539478,40.8757525041926],[-73.90682822856839,40.87663155188877],[-73.90949832117468,40.87877673218171],[-73.91148913190445,40.87901885880953],[-73.9120583003024,40.87811932004863],[-73.91484624156381,40.87666671027648],[-73.91578515571896,40.875716945064326],[-73.91775669395919,40.87566362786067],[-73.91978381232852,40.876421436105936],[-73.92206723651886,40.878572414802925],[-73.92359172553134,40.878952159332684],[-73.92362973950414,40.878963943243285],[-73.92380525605498,40.88032490163605],[-73.92058641877226,40.88718267861979],[-73.91694161078402,40.89664455170238],[-73.91518455871676,40.90158428286216],[-73.91264932172878,40.90807081195536],[-73.91143213027848,40.91282382621967],[-73.9116547240221,40.913417851896696],[-73.91011276625107,40.91539873414455],[-73.90851155017607,40.91500226402635],[-73.90245664004941,40.91295893342596],[-73.90060386058602,40.91260726539669],[-73.8860557544588,40.908314453104325],[-73.8830325744206,40.907333631157194],[-73.87294860419097,40.904441022668976],[-73.8656579432583,40.90224320754041],[-73.85946778766896,40.90051720977026],[-73.85886401316354,40.90171169504957],[-73.85601023389269,40.9053059836269],[-73.85692398180078,40.90597417011104],[-73.85423776686882,40.907032868254376],[-73.85458940588242,40.90893949929832],[-73.85295618487677,40.91035304418008],[-73.85227451682731,40.90985409964402],[-73.85347522399945,40.90753029302411],[-73.85092059362833,40.906616494489555],[-73.85017317552095,40.90750786565138],[-73.84708032914374,40.90615673253034],[-73.84481886985013,40.90552994967468],[-73.84489264975495,40.90419086679707],[-73.8413868930466,40.904172741533976],[-73.8406532745744,40.90140351285519],[-73.83924604741867,40.899501154049155],[-73.83964812813,40.89733053534064],[-73.83804277286059,40.89414233088522],[-73.82722429784302,40.89091023355181],[-73.82326489879229,40.88998702106102],[-73.8228533507269,40.8912068290962],[-73.81827738100141,40.889847131030976],[-73.80290946487276,40.886030680839255],[-73.79300652649339,40.88335873688039],[-73.7949170558667,40.88054379098488],[-73.79625097535785,40.877011999778546],[-73.79743815457286,40.87513533295314],[-73.79981389580338,40.87415984971623],[-73.80087270458255,40.87159011989391],[-73.80358314939251,40.86994806102859],[-73.8042202705176,40.869002148168185],[-73.80754063636182,40.87037755217343],[-73.80673074905107,40.868770013078354],[-73.80487266169938,40.86823330283224],[-73.80464604502922,40.86664711643685],[-73.80300388108952,40.8670418365688],[-73.80225816157765,40.8656082064108],[-73.79780377219309,40.87225613227393],[-73.79479044681605,40.87320048403398],[-73.79397363837722,40.874566594568314],[-73.79316703778711,40.877055639066455],[-73.79440294586249,40.87764184299895],[-73.79384702788164,40.87859445979079],[-73.79043046503078,40.880797258029226],[-73.78926161019817,40.88120541462362],[-73.789523093688,40.87899812706053],[-73.78588496976651,40.879067231752614],[-73.78438168107729,40.87842053116786],[-73.78470964026614,40.876357994345156],[-73.78708678479042,40.87353624221611],[-73.78719087560506,40.872730553729134],[-73.78568099853844,40.87238726505711],[-73.78439311743477,40.87278409492873],[-73.78306853426031,40.872153575922724],[-73.78320175426298,40.8706703608538],[-73.78490216077773,40.86976397324066],[-73.7890105979652,40.869663275452666],[-73.79139032586126,40.868141307466104],[-73.79265095767069,40.86413665318475],[-73.7914731711989,40.86220710624896],[-73.79190454927512,40.860829562711984],[-73.79351029757717,40.86055168129084],[-73.79486983866904,40.858075551258004],[-73.79430448203586,40.85657593402546],[-73.79685461759921,40.85626435821337],[-73.79904776834832,40.85405156055037],[-73.79795583310253,40.85298833071624],[-73.79819365996846,40.85059256140662],[-73.79968740734601,40.84947763459344],[-73.80009912704746,40.84829841440254],[-73.801233177689,40.848516186713255],[-73.8018305644413,40.8501306570584],[-73.8041755793241,40.85334012018912],[-73.8045424727661,40.85473937751507],[-73.80353916065035,40.85564938529114],[-73.80464293882288,40.85996820157232],[-73.8047323428176,40.8614796406207],[-73.80624571930768,40.861427484442444],[-73.80582041215632,40.860034612469434],[-73.8076417864338,40.86036907874323],[-73.80816306112644,40.85974534956733],[-73.8111045714928,40.862464468730785],[-73.81329281853384,40.86323679379236],[-73.81510315384155,40.86305746536774],[-73.81641392102728,40.86118062770387],[-73.81381802586874,40.86054827867073],[-73.81273146495045,40.85887754194775],[-73.81230602708416,40.85416202647323],[-73.81640870908018,40.854082255114704],[-73.81720828353123,40.851828165777334],[-73.81532344002714,40.84857757069265],[-73.81617026811985,40.84701547486435],[-73.81420573129107,40.84601018088837],[-73.81399066794319,40.84447977264607],[-73.81669068165954,40.84397496582526],[-73.81541503896413,40.8423913277834],[-73.81478277740275,40.83907648795761],[-73.81645257929443,40.83776982592479],[-73.81608401401112,40.8345903462652],[-73.8147638769196,40.830816799993485],[-73.81275469994522,40.828248236251326],[-73.81402734925915,40.82601594648593],[-73.81279452789254,40.82437323751556],[-73.81177284871205,40.8243398061728],[-73.80909234633549,40.82587339816408],[-73.80699654610879,40.82532231281296],[-73.80666166000627,40.82341958423712],[-73.80586237168586,40.821898128847664],[-73.80572802989734,40.820177338695004],[-73.80336840175116,40.818251071675974],[-73.80246811886735,40.818540907528245],[-73.79759032777328,40.816507532070105],[-73.79902816314,40.81554113493865],[-73.8001114686428,40.814024525560605],[-73.80276821717693,40.812464488961595],[-73.80319870538823,40.81350524057211],[-73.80515017994556,40.815667905940956],[-73.8056844290842,40.81503342491155],[-73.80502632413538,40.81225219542744],[-73.80391186062475,40.81211049788114],[-73.80235340279003,40.81003705895899],[-73.79853765964961,40.809587075529684],[-73.79228907337429,40.80684900557948],[-73.7907347998378,40.80658882885658],[-73.79006256328046,40.80540894183441],[-73.79103717515581,40.804263031702],[-73.79338982286725,40.80420433003624],[-73.79532316872105,40.80584451126843],[-73.79884822044156,40.807177192765714],[-73.80175278633817,40.80904200288157],[-73.80405363821474,40.80875165808883],[-73.80713987884191,40.81066167645373],[-73.80839689705716,40.812028355121576],[-73.80992029081796,40.812929152261766],[-73.8127657266265,40.81315863066579],[-73.8164801554654,40.81385323288393],[-73.82117960695338,40.81295258706849],[-73.82630784757443,40.81128412220894],[-73.82841384592567,40.81141787519129],[-73.82969355197902,40.81108017005485],[-73.83124330198662,40.81000298699243],[-73.83219461913036,40.80805256864777],[-73.83139548735753,40.805170708059734],[-73.83301374199651,40.804971027824905],[-73.83482062866499,40.80528676787697],[-73.83743612125882,40.80620264318315],[-73.83813869838782,40.80793445799727],[-73.84025952896259,40.811443036782734],[-73.84032701554436,40.8131357881378],[-73.8396623668359,40.81392164508063],[-73.83953766669555,40.81581918222216],[-73.84019020523161,40.81718827305637],[-73.83892733295293,40.8190012101071],[-73.83904904481194,40.822688748145836],[-73.84222047999327,40.82834188794381],[-73.84188643774445,40.830713176534445],[-73.83899809143146,40.8333824553581],[-73.8391925523571,40.83871362805777],[-73.84030282537185,40.83952431394499],[-73.83941220310875,40.834600065107395],[-73.83992048478557,40.83332079530202],[-73.84221334664694,40.831550507277164],[-73.84310691599906,40.82979413931985],[-73.84303394542385,40.82893498494009],[-73.83982926241693,40.82157150149604],[-73.84028506253644,40.81962626612636],[-73.84198684834045,40.81877437390814],[-73.84209366311855,40.81805954295158],[-73.84411020155801,40.814513576646526],[-73.84520736885109,40.811887022009515],[-73.84617302872054,40.81067666443041],[-73.84746772168272,40.810903942854246],[-73.84821486515594,40.81246290949828],[-73.84903294180677,40.81211891007853],[-73.84996696802818,40.80857801884362],[-73.8484164096165,40.80736877579531],[-73.84837953721414,40.80636018633455],[-73.8474882264191,40.80544890914915],[-73.85014867564311,40.80453421881292],[-73.85585446335388,40.80451464613954],[-73.85612542563202,40.80528168175336],[-73.85812705699665,40.80546652055184],[-73.85866505169193,40.806832751495584],[-73.85838996228814,40.80825880914877],[-73.85907662566417,40.80997555810209],[-73.86023625453458,40.80945027735151],[-73.8644033337942,40.81027598694018],[-73.86765646284466,40.810583761937174],[-73.86976955850037,40.81342369975716],[-73.8717160645012,40.81492233549018],[-73.8765199603363,40.81613106342415],[-73.87673185506817,40.81538649648658],[-73.87250110885971,40.81388812823407],[-73.87165777683398,40.813254261976],[-73.8681121914008,40.80675183283183],[-73.86846346959145,40.80593654893904],[-73.8717450937392,40.80154736611613],[-73.87287711063706,40.80084008904615],[-73.87814218819923,40.80131929030646],[-73.87816581140154,40.802551683744916],[-73.87921348407686,40.80279532683507],[-73.88505172336708,40.80213090679802],[-73.88727097347119,40.80394700233665],[-73.88795897223955,40.80499792592066],[-73.88954478026055,40.80580707619277],[-73.89197929534274,40.806384708976196],[-73.89829494887951,40.806097570698334],[-73.89852656516604,40.805434309097926],[-73.90219185700563,40.804823260645364],[-73.90452954095734,40.803170235651876],[-73.90816794754275,40.799461986193734],[-73.90830303542087,40.79895913592011],[-73.91168831241195,40.79662376988878],[-73.91372255973513,40.79678943926123],[-73.92024068092739,40.79961368786984],[-73.92132730778515,40.8012845916314],[-73.92292710065784,40.80237329464287],[-73.92665794788489,40.80240980391467],[-73.92762788658794,40.8026956659841],[-73.92764500352521,40.803988633348645],[-73.9287260748983,40.80410362522727],[-73.93051758839178,40.806590563566786],[-73.93228261982792,40.808363973622974],[-73.93287412001965,40.81041404342898],[-73.93237568884734,40.814651574300306],[-73.93246603518885,40.82157743497579],[-73.93276594581114,40.82545822768757],[-73.93360592036706,40.83278953052076],[-73.93299639001609,40.83567878918869],[-73.93051572386132,40.83993364218423],[-73.92861574822354,40.84467686502996],[-73.9246537993034,40.84978504351307],[-73.92256178946535,40.8531889115273],[-73.91956620878499,40.85684018368767],[-73.9172066464705,40.85892892273458],[-73.91462116355156,40.86209669073475],[-73.91041774440947,40.86656954469074],[-73.90949664312387,40.868831156137794],[-73.90893235241587,40.87215734797062]]]]},"properties":{"boro_code":"2","boro_name":"Bronx","shape_area":"1186612476.97","shape_leng":"462958.186921"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-74.05314036821107,40.57770271554574],[-74.05489778210803,40.57778244091981],[-74.05469316907485,40.579691632229434],[-74.05293190639816,40.579902474665836],[-74.05314036821107,40.57770271554574]]],[[[-74.15945602438185,40.641448333324036],[-74.16111242522173,40.64183545373721],[-74.16146036005293,40.64429496976488],[-74.15798759540647,40.643861788966056],[-74.15743349200989,40.643302857779],[-74.15945602438185,40.641448333324036]]],[[[-74.08221272914936,40.648280162290085],[-74.07899546333257,40.64814255442242],[-74.07650657152858,40.64696881818336],[-74.07445282563698,40.64506748872323],[-74.07201843213238,40.644411932940834],[-74.07147777322615,40.642808293774976],[-74.07323829183596,40.642184736082356],[-74.07309035578784,40.63861899968587],[-74.07348737303562,40.63723352923621],[-74.07283184410434,40.63366603282566],[-74.07332821316406,40.63205844299033],[-74.0722922308001,40.62715170770657],[-74.07270543377281,40.62687414856282],[-74.07225500955772,40.624608750193936],[-74.06998300752397,40.62141766690337],[-74.0661990795487,40.618722481288756],[-74.06391060234922,40.61686761382147],[-74.06143961457276,40.61437802069959],[-74.06033680792015,40.61190188021967],[-74.0571638387898,40.608742783103665],[-74.05649565936768,40.6072476482562],[-74.05381069805442,40.605912718852984],[-74.05287153843389,40.599867255467075],[-74.05719369904652,40.59639507881198],[-74.05984505851372,40.593780531941555],[-74.06215274432546,40.592025040541984],[-74.06503332356277,40.58899099887046],[-74.06477833032996,40.58848831072569],[-74.0672227681699,40.58673445026267],[-74.07096310182045,40.583181990402586],[-74.07177638431186,40.58187653516401],[-74.07508288192622,40.579160158755556],[-74.07579819540712,40.578309250650626],[-74.07877412894703,40.57601082224553],[-74.08090683283064,40.57468980475155],[-74.0846907599143,40.571477913939766],[-74.0865485869477,40.569632319135536],[-74.09123807762191,40.56650661322813],[-74.0940496840973,40.562981647611046],[-74.09611847135459,40.56258757449008],[-74.09829030823701,40.55933261415681],[-74.09971784547338,40.559141300031094],[-74.1007996392811,40.55832182111584],[-74.10184637674703,40.55621698878],[-74.10309839111537,40.555904641451136],[-74.10509470498079,40.55312902839255],[-74.10734831283652,40.55414815203114],[-74.11028457387542,40.55149635741752],[-74.11278846958066,40.54788426322685],[-74.11654532176985,40.54787239314658],[-74.11804133083712,40.54730661289458],[-74.11948690777866,40.545691803293835],[-74.12249960095468,40.544858107713026],[-74.12638185131075,40.540520755459205],[-74.13071184272671,40.534535075436196],[-74.1335644349804,40.53151117480558],[-74.1369079907635,40.52928191888262],[-74.13899637181738,40.530190567438],[-74.13920399458763,40.531635183401406],[-74.1406109270312,40.53413060019013],[-74.1399852560979,40.535486111869425],[-74.13801169425402,40.53520330598122],[-74.135075093257,40.53524117062302],[-74.13340691483275,40.53589811492251],[-74.12798728527221,40.54071097748308],[-74.12738789634474,40.542295429964334],[-74.1276700329568,40.54338134627289],[-74.12954591589452,40.54557572351748],[-74.13056711582483,40.546193655212655],[-74.13325905654528,40.5468472513372],[-74.13641153119032,40.54625235004185],[-74.1387350968491,40.544905099185165],[-74.14219151688192,40.54198317028685],[-74.14176587793767,40.53854204099977],[-74.143051626138,40.53723987385644],[-74.14536324652764,40.535856356896446],[-74.14794320046134,40.53492301699292],[-74.14971830290304,40.5334919100224],[-74.15245660936688,40.532067944000886],[-74.15643045569396,40.529003176875214],[-74.15701861946272,40.52897765580955],[-74.15970134520207,40.52729599283152],[-74.16222577962044,40.527202274889866],[-74.16690462540775,40.52483129006197],[-74.16999711161473,40.52304577245236],[-74.17135832896362,40.52345319237535],[-74.17342635928968,40.52256915991744],[-74.17601245479072,40.520875962829045],[-74.17761992136639,40.51932993503619],[-74.1798101694893,40.52055233770606],[-74.18116548663467,40.52065583620164],[-74.1848311647976,40.51934135860082],[-74.1865673319135,40.51811585040488],[-74.18971218498399,40.51532037853432],[-74.19521339999072,40.509977652955655],[-74.19658658122074,40.509954367182715],[-74.19996805073878,40.51185279031432],[-74.20082898254242,40.51303070395843],[-74.2075686699848,40.51185615263292],[-74.21013466035612,40.5104167507874],[-74.21114086689151,40.5090054327501],[-74.21352692087255,40.50660119549381],[-74.21578892250365,40.505495958655764],[-74.21760226300269,40.50333541478965],[-74.21959842973507,40.50278571471269],[-74.22310507084595,40.50246194841404],[-74.22500232195861,40.50177029513202],[-74.22674819633875,40.502248084339385],[-74.23124443244185,40.50182686031893],[-74.23359904119738,40.50091253160123],[-74.2353533411834,40.50057821782871],[-74.23851321635705,40.49889607636883],[-74.23966845041296,40.497702924941834],[-74.2445532823162,40.49748883827948],[-74.24676102774195,40.496133987611806],[-74.24917156868959,40.49656729705335],[-74.25085489422248,40.49800616359517],[-74.251104114858,40.49893419785413],[-74.25340575133811,40.500514145784756],[-74.25523408934781,40.50393456923248],[-74.25545272937909,40.50803277630554],[-74.25331579805132,40.509861504540936],[-74.25307524977133,40.51214073504985],[-74.2521259139706,40.51371037979995],[-74.24851245601484,40.51622571840381],[-74.24751811835532,40.51573586477862],[-74.24520861528356,40.51728974362411],[-74.24431751097606,40.51851322704367],[-74.24232477833276,40.51832652502175],[-74.24003142061719,40.52031311901846],[-74.2429323503651,40.52122716113278],[-74.24259542896432,40.5220616542492],[-74.24333883883855,40.52585380517993],[-74.24224528137324,40.529822779504954],[-74.2415492890359,40.530874891263885],[-74.24221152819236,40.53460413960288],[-74.2449619248464,40.53724338859933],[-74.24442748922033,40.538016433398944],[-74.24538509864777,40.539533266027796],[-74.24547647854257,40.54063300079158],[-74.24646660694746,40.54219273920428],[-74.2476777803961,40.54312540330282],[-74.24613743768708,40.54569644693195],[-74.24363807144756,40.54766619523532],[-74.24179850544299,40.54700162778554],[-74.24045847559492,40.54762548430011],[-74.23650104019472,40.55043014360967],[-74.23635395672935,40.55236751379203],[-74.23489865800808,40.55300521667125],[-74.23353549801203,40.55246600479627],[-74.2326961146645,40.552928105949775],[-74.2306087628246,40.55557864294689],[-74.2287242997478,40.5562970171392],[-74.22606854510714,40.55621187928375],[-74.221431953254,40.55537877945291],[-74.21974356930723,40.55461267207244],[-74.21604246060636,40.555544118783004],[-74.2137903445896,40.55640128835268],[-74.21202260611172,40.558336250021625],[-74.21117440259931,40.56045988185247],[-74.2113799785878,40.56349220527483],[-74.21074330542261,40.56522817912912],[-74.20886661112192,40.56890979392914],[-74.20707024366182,40.574743025322306],[-74.20704010235723,40.57640894023969],[-74.20591732509398,40.57861664755362],[-74.20598341988722,40.5804239333732],[-74.20506822436222,40.58165990002629],[-74.20440076433692,40.58371294584194],[-74.2042022853119,40.586414202142414],[-74.2046460894321,40.58928574546582],[-74.20246775956585,40.59083882485734],[-74.20092540496357,40.592866379304844],[-74.1996516460884,40.59366471906849],[-74.19751357718711,40.59679898603674],[-74.19729933937757,40.59802023827334],[-74.19875958205299,40.60171197517623],[-74.20014866759912,40.60368335009868],[-74.20138527472524,40.60463696620847],[-74.20221849851056,40.6059696796165],[-74.20281628374592,40.60827082796731],[-74.20230179014106,40.611875642039024],[-74.20244374449526,40.61328469393195],[-74.20045324444482,40.616327996806355],[-74.20091423238283,40.61779882239859],[-74.20034850652026,40.6182858292698],[-74.20103548328753,40.62009545580519],[-74.20158494435563,40.62349833368142],[-74.20097848041377,40.62536232546339],[-74.20141670667911,40.62607051389573],[-74.20098625565413,40.6293441481063],[-74.20013810584054,40.63148215761569],[-74.19803227375799,40.6332692955705],[-74.19662858901314,40.634043012173485],[-74.19371964621949,40.637566814230105],[-74.18652496897599,40.64338866217144],[-74.18298000103789,40.64479439161926],[-74.17933117249432,40.64440051177251],[-74.1787907843687,40.64249850345951],[-74.17666795538246,40.64338684477162],[-74.17570768504727,40.64457172467191],[-74.17415373990458,40.64508009422507],[-74.17296865141032,40.64423753436872],[-74.17249012522645,40.64284041274662],[-74.1714949639567,40.64177040017785],[-74.16906431628865,40.642130016798575],[-74.16563409763798,40.641214371375646],[-74.16345445681999,40.63985656039824],[-74.16324577932504,40.64095741918557],[-74.16167534694235,40.640610784766764],[-74.16228465252085,40.63876565277229],[-74.15789262953881,40.637965051231106],[-74.15269700449667,40.63764184172464],[-74.14979386126174,40.63789278086409],[-74.14877792005885,40.6388762511277],[-74.14484204603143,40.63935381470649],[-74.14395302701145,40.638880756041466],[-74.14229766980965,40.64030580709365],[-74.13435269573631,40.64188679740515],[-74.12930713186852,40.64033741121096],[-74.12634633380188,40.64037630175957],[-74.1241557844501,40.64013471664004],[-74.12144753367009,40.641502738087304],[-74.11711235699558,40.64165596713886],[-74.11116129469256,40.64509642318127],[-74.10886489895967,40.645579128803966],[-74.10307296677563,40.64563814942255],[-74.10013219187381,40.645064050953096],[-74.09849981625507,40.645370361953745],[-74.09468500921261,40.64555571773477],[-74.0893975253534,40.64731035953123],[-74.087674426815,40.64823529361479],[-74.08484403215716,40.648891147339434],[-74.08221272914936,40.648280162290085]]]]},"properties":{"boro_code":"5","boro_name":"Staten Island","shape_area":"1623920681.95","shape_leng":"330432.867999"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.83668274106707,40.594946697015814],[-73.83303504965288,40.59274210173023],[-73.83403034912311,40.59140845038407],[-73.8325611097006,40.59132572977661],[-73.83246148069865,40.59030479057109],[-73.83359681259319,40.589328625478956],[-73.83664249160995,40.58957207712939],[-73.83865480129005,40.59092881716831],[-73.8394895814362,40.59254713982214],[-73.84098756626551,40.59241222051886],[-73.8437816141766,40.59354420675994],[-73.8435260073294,40.59424632611092],[-73.83902964248091,40.596253484748665],[-73.83743435500342,40.595800443013815],[-73.83668274106707,40.594946697015814]]],[[[-73.8099705940606,40.60006753738016],[-73.81029011586065,40.59899167007234],[-73.81157550345533,40.598141199259516],[-73.81305369627482,40.59950371201528],[-73.8149782940818,40.60217636966107],[-73.81484063710244,40.60399924090645],[-73.81428693698591,40.60445566622159],[-73.81085365186652,40.60322371301425],[-73.81003548752513,40.602654296920264],[-73.8099705940606,40.60006753738016]]],[[[-73.80031807729931,40.60706440184489],[-73.7980644884174,40.60670790661833],[-73.79634761133799,40.6057880028534],[-73.79731901178191,40.60406667887647],[-73.79964546961678,40.604344974878444],[-73.80242464702228,40.604222439901946],[-73.80394299194666,40.60558823323397],[-73.80307009926048,40.606391794852385],[-73.80031807729931,40.60706440184489]]],[[[-73.82718282107054,40.607919778091215],[-73.82598212776458,40.60715799759937],[-73.82861671457663,40.60583848413756],[-73.82815085191217,40.60795028983296],[-73.82718282107054,40.607919778091215]]],[[[-73.79665699659027,40.60896091507129],[-73.79571510696394,40.607925971132566],[-73.79530511083743,40.60650137250127],[-73.79640447212773,40.60619185418584],[-73.7978974694112,40.60686881041094],[-73.80107067504782,40.607179366917016],[-73.80181887813842,40.606695663880025],[-73.80319350929722,40.60736005302445],[-73.80099421230568,40.60867209791059],[-73.79665699659027,40.60896091507129]]],[[[-73.83587601623168,40.60563690704295],[-73.83446265620243,40.60719253294238],[-73.83428342620009,40.60918568185299],[-73.83240677103569,40.60965566916186],[-73.8302629981558,40.60854984282408],[-73.82991889866881,40.606770751199576],[-73.83275028159085,40.60533888355454],[-73.83587601623168,40.60563690704295]]],[[[-73.76669139771178,40.61425465545003],[-73.76516400829203,40.613754202686614],[-73.76508330393702,40.61205362367527],[-73.76229944090429,40.611359206045925],[-73.76172413788882,40.6118472427577],[-73.75944441573688,40.610347302026],[-73.75648245326464,40.610177346081976],[-73.75345836131058,40.61051986240472],[-73.75008771076791,40.61164055382717],[-73.74721567818867,40.612178839654405],[-73.74576150178679,40.61199165474872],[-73.74310894573772,40.60771599650379],[-73.74339731588086,40.607472171068075],[-73.74029138975948,40.60459823278357],[-73.73920739803121,40.60404014330117],[-73.73822597728028,40.60256602771246],[-73.73835617702467,40.59760047780453],[-73.73885520265665,40.59678311594175],[-73.73798981846915,40.59455604324499],[-73.73995801592365,40.59450076878706],[-73.74291424530844,40.594832159043534],[-73.74665511464745,40.594295694902115],[-73.74895116248132,40.59341287562496],[-73.75148111579594,40.5914683858626],[-73.75350449817815,40.59095197126987],[-73.75592115806569,40.59087110922587],[-73.75789189861872,40.59135698827768],[-73.76134311678325,40.59172663385039],[-73.76813345500128,40.59073689996823],[-73.77735319926101,40.5900938153919],[-73.78057452813778,40.589562559239596],[-73.7845331104849,40.58847805521788],[-73.79663442436531,40.58637609446336],[-73.806594911769,40.58444744569105],[-73.8079255826091,40.58400509638649],[-73.81352448727559,40.58347314904671],[-73.8192881203056,40.58176697435413],[-73.82228991494189,40.5810960731939],[-73.82495905834286,40.58013813920259],[-73.8338692317218,40.57764989760895],[-73.8377849130498,40.5759236834754],[-73.84615755209347,40.573034265606616],[-73.85220202399665,40.57074510300149],[-73.85713422195657,40.569126875590044],[-73.86255286029149,40.56681001230082],[-73.86355862677969,40.567027194390676],[-73.86924996432208,40.56538476045338],[-73.87257763511451,40.564097506007215],[-73.87633039968331,40.56308655327291],[-73.88041490293793,40.56147157034815],[-73.88326552705637,40.56085009611661],[-73.88495111801016,40.560160174555406],[-73.88766096256646,40.55954423998933],[-73.89208699685538,40.55804822513733],[-73.89501734885607,40.55726010812485],[-73.89789049233038,40.55710114337303],[-73.90053827001654,40.5565258568089],[-73.90346067954344,40.55661905180016],[-73.90723835028685,40.555490113310654],[-73.91625684813312,40.551971065616144],[-73.91948122277849,40.55062481534698],[-73.9264190939681,40.54815578031995],[-73.93054631827445,40.546425920804616],[-73.94047161197727,40.54286312131301],[-73.94012970302194,40.548005292338225],[-73.94021458014866,40.55282244132646],[-73.9386556383155,40.55567659276647],[-73.93683777099591,40.55678136470195],[-73.93322349006094,40.55736976477222],[-73.93136701204335,40.55817647967311],[-73.9261572327542,40.5615526097231],[-73.92329484208311,40.562090580451574],[-73.92107822881383,40.56207985288483],[-73.91766081900086,40.562826149686444],[-73.91519131236106,40.56409066671078],[-73.91220200769321,40.565054569849934],[-73.91007760883505,40.564919675878855],[-73.90615471755417,40.56268776849033],[-73.90287143330079,40.56351486420609],[-73.90209783338915,40.562766557634816],[-73.89968872074388,40.563381347929145],[-73.89613262445305,40.56535842756683],[-73.8956186197342,40.56687763449414],[-73.89314119161196,40.568395398445716],[-73.89146452569125,40.56841512401617],[-73.889594924492,40.567941890234025],[-73.884896782202,40.568499584876875],[-73.88445975335584,40.56789283675887],[-73.88121987918436,40.56877558101358],[-73.87830322053708,40.56869386726816],[-73.87598454034418,40.569519790171526],[-73.86554317468644,40.57464212861251],[-73.85305549585115,40.58125526785501],[-73.85044385149195,40.582130243581354],[-73.84861053538191,40.58218814264622],[-73.84521517459075,40.58157971389431],[-73.83929737266975,40.58186401349402],[-73.83868061854339,40.582710041639],[-73.8358408009742,40.58287893936211],[-73.82852471261212,40.58485422038238],[-73.82784670807484,40.58613745646898],[-73.823261572582,40.58746824128066],[-73.82145971991773,40.58676992492123],[-73.81883722364618,40.58825143495889],[-73.8108211633678,40.59207994851496],[-73.80901841432076,40.593345609720934],[-73.80480575004528,40.59146895958783],[-73.80416569103039,40.59185470983277],[-73.80783763517665,40.59338012130341],[-73.80711002967419,40.59528582792704],[-73.80603347280267,40.59555149765476],[-73.8046404689916,40.59490707260524],[-73.80392744479632,40.59310606972992],[-73.8024384629031,40.592640063835105],[-73.80309776811413,40.59456301417779],[-73.80511185479912,40.59715104799809],[-73.80292155267875,40.59887297197987],[-73.80123490662545,40.59912290165511],[-73.7938736608257,40.599606708559364],[-73.79153971412026,40.60036331374808],[-73.7878557488172,40.60311334463533],[-73.78650335648618,40.603250206178984],[-73.78768902814274,40.60133095195749],[-73.79033378979446,40.59919828434144],[-73.79124272166956,40.596626521651274],[-73.79086292379888,40.59501313776398],[-73.78917959368802,40.59518586671934],[-73.78916558855904,40.597882758079685],[-73.78599381598204,40.60029498478546],[-73.78528368751242,40.60158193287865],[-73.78350560905312,40.60256343874273],[-73.7831366383313,40.60358960204613],[-73.78395674485063,40.60486526297045],[-73.78098733071229,40.60790705402877],[-73.77856806939954,40.609643663429],[-73.7769279804783,40.60983520294522],[-73.77492336658474,40.60952078520296],[-73.77416577139451,40.60865140098888],[-73.7748982523166,40.60521900225538],[-73.77702968356839,40.601666182988055],[-73.77826431381602,40.600357686965275],[-73.77990294207429,40.600745406726006],[-73.78199231614119,40.59897721506155],[-73.78132973998126,40.597753037446914],[-73.78018334426073,40.59721256970326],[-73.77742174810766,40.59881240436135],[-73.77627647523339,40.6010837085876],[-73.77497207353781,40.60174448709191],[-73.77422161057758,40.59900244967737],[-73.77301251473737,40.59787977367212],[-73.77048898318378,40.59809485325846],[-73.7711557024036,40.59948176876552],[-73.77093512613946,40.60115230828564],[-73.77018588274095,40.60274882332508],[-73.77052344512471,40.604918387905684],[-73.77000932451242,40.60533671580601],[-73.77001920493653,40.60718689305377],[-73.76893524131827,40.60915534320667],[-73.76976745552504,40.6100641886717],[-73.77122891225676,40.61037905814711],[-73.77211190787816,40.611438909901565],[-73.77376767753127,40.61125622247547],[-73.77353557810973,40.61352843445138],[-73.77191126298035,40.61392384662244],[-73.76669139771178,40.61425465545003]]],[[[-73.78478547486449,40.61798072183546],[-73.7832255453002,40.615578730723236],[-73.78079376503526,40.61458756709236],[-73.78126051101876,40.613317933505044],[-73.78371299347512,40.61187334670785],[-73.78726107424697,40.610320577896005],[-73.78953790769849,40.61001777974279],[-73.79017032338821,40.61156639015276],[-73.78939733426343,40.61269388449941],[-73.78770634528414,40.61303602263854],[-73.78549898289548,40.6140594500658],[-73.78496522705201,40.616045916927064],[-73.78550014128353,40.61668261118666],[-73.78478547486449,40.61798072183546]]],[[[-73.76670827781241,40.614910866185554],[-73.76825288003394,40.61487772516937],[-73.7739769201883,40.61600357567147],[-73.76873454607978,40.620901104266174],[-73.76745926884585,40.620511322061205],[-73.76670827781241,40.614910866185554]]],[[[-73.8336821495259,40.62138130568643],[-73.83362242002201,40.62260263933207],[-73.83357550642091,40.62359791727925],[-73.8335592388046,40.62393603449994],[-73.83227940196079,40.623735169593424],[-73.8336821495259,40.62138130568643]]],[[[-73.79783533398518,40.62740871657153],[-73.79362927481345,40.62515647619491],[-73.79809093107173,40.62306294824432],[-73.79951085673741,40.62117553302097],[-73.79992057632704,40.618575240165946],[-73.80096292242341,40.61777236939703],[-73.80128049504093,40.61587983974751],[-73.80270343867812,40.61358065232174],[-73.80508906012298,40.613432560419476],[-73.80476592616557,40.61580099137091],[-73.80575302222276,40.61669485753833],[-73.80565945060557,40.617600255343724],[-73.80764116896117,40.62119965469225],[-73.80768917829117,40.62227766042472],[-73.80698502381061,40.623871998829955],[-73.8027134502958,40.62593478734805],[-73.80251577946912,40.62632913769236],[-73.79783533398518,40.62740871657153]]],[[[-73.81307233892618,40.62926109964269],[-73.81129432207649,40.62470377900031],[-73.81135581995866,40.622937515040675],[-73.812100453343,40.621100596814905],[-73.81171450418667,40.620703573736186],[-73.81109451157876,40.61791025228185],[-73.81200717773366,40.61717937148336],[-73.81370354000293,40.62138674458606],[-73.81449543302435,40.62239494530532],[-73.8141827855964,40.62369463155806],[-73.81612703184858,40.62534899918069],[-73.81679073502562,40.62634891812113],[-73.81627026043992,40.62714580591711],[-73.81720935727398,40.62910635115238],[-73.81730576927642,40.630621973797844],[-73.81637181200172,40.63137272824914],[-73.813917332198,40.63077639221816],[-73.81307233892618,40.62926109964269]]],[[[-73.83401888134368,40.61438116692222],[-73.83370152272126,40.62097860184685],[-73.83254808933042,40.621751186292904],[-73.8327402318547,40.62253938385187],[-73.83096500894308,40.62457612851376],[-73.83076901685124,40.62675276257908],[-73.83247393097163,40.627575791309624],[-73.83289548956775,40.62890347873293],[-73.83196080768144,40.62965272987928],[-73.83114086417234,40.63274939532597],[-73.83193878472694,40.634236225428445],[-73.83340607979218,40.63850135589902],[-73.83221658819181,40.63892849022077],[-73.82866782109745,40.63661471844798],[-73.8280856735328,40.635879726836585],[-73.8253300008263,40.635824956762356],[-73.8244303249705,40.636216521040716],[-73.8241357769007,40.63878799670455],[-73.82337592129355,40.63898765589755],[-73.82277105438686,40.63557691408504],[-73.82224934035115,40.63451242737347],[-73.82184604252805,40.63204018843732],[-73.82107505533321,40.62973377456619],[-73.819733846018,40.62771230408705],[-73.81796414839567,40.62710556569674],[-73.8176979659327,40.62596162249622],[-73.8161148342955,40.624604655172995],[-73.81795284720685,40.624093280117364],[-73.81889389047463,40.622629158032574],[-73.8169700782087,40.6214915571011],[-73.81571468044625,40.621489551516966],[-73.81543174704281,40.620116531242175],[-73.81718053878458,40.619267274493204],[-73.81775726750763,40.617307148815776],[-73.81711893622213,40.615282192345454],[-73.81554994675568,40.61430737811128],[-73.81602636691126,40.61236542446397],[-73.81477073792475,40.60885102878018],[-73.81522771665199,40.607049568881735],[-73.81725370593526,40.60394032418926],[-73.81831121054175,40.601339712714974],[-73.8184906612075,40.59938955947918],[-73.81928142201637,40.597529610876585],[-73.82038406339073,40.59656876163028],[-73.82135758220305,40.5946910092423],[-73.82480251192531,40.59508316135296],[-73.83048206027385,40.59458593827111],[-73.83241209664992,40.594618492621095],[-73.83465599514989,40.59516845865223],[-73.83420068056414,40.59665712416404],[-73.83154105940153,40.59795102605504],[-73.83076009448668,40.59744615830986],[-73.82948341823251,40.598133941902596],[-73.82806159675427,40.597680402648805],[-73.82667857326854,40.59895256446701],[-73.82431733672527,40.59831310504067],[-73.82376612281246,40.60004007082086],[-73.82443643762478,40.6003449833496],[-73.82294484740481,40.60258290946782],[-73.82290463377521,40.60585127742958],[-73.82126028812812,40.607144356103944],[-73.82138268125634,40.6085455449468],[-73.82209621221281,40.610158031735324],[-73.82289233348577,40.61033702219405],[-73.82555758997881,40.61413210471074],[-73.82703834217763,40.613395002152615],[-73.82845503182503,40.61421603915164],[-73.8314812223769,40.615006311228115],[-73.83401888134368,40.61438116692222]]],[[[-73.85722330984366,40.65027867054137],[-73.86098917353912,40.65520976710516],[-73.8594102294259,40.653864737924955],[-73.85898002913167,40.652675457834675],[-73.85731941515513,40.65123709900785],[-73.85722330984366,40.65027867054137]]],[[[-73.86269778233539,40.65761830901158],[-73.86317083274511,40.65827651244548],[-73.86035978140013,40.65964582901138],[-73.8576153718558,40.660118933153804],[-73.85842950791304,40.663453360931015],[-73.85568461155036,40.663867492874665],[-73.85763323174372,40.671656194038846],[-73.86038519854728,40.67125171098968],[-73.86234580535023,40.679164786146856],[-73.86328640844613,40.67907719656107],[-73.86410096679134,40.682372850292616],[-73.86601993220731,40.681919587028005],[-73.8665984828325,40.68526955906912],[-73.8674569407755,40.68840044165916],[-73.8689176269075,40.695146561514036],[-73.87402053240673,40.69419129521744],[-73.87950641154781,40.69114676934506],[-73.88377698583253,40.68786341118426],[-73.884522508914,40.6866847490949],[-73.88808341776523,40.68529363217041],[-73.8896278757877,40.68423645425291],[-73.89015418672898,40.68500398980448],[-73.89258303102321,40.68349191088717],[-73.894174632671,40.685283248673166],[-73.89652644236399,40.68240329924157],[-73.90116154994368,40.687877935355],[-73.90042465047067,40.688183898876254],[-73.90188776254817,40.691077720575834],[-73.9013984066204,40.69158999203776],[-73.90579597009209,40.69412715551359],[-73.90426018345657,40.69570037144264],[-73.91180820038451,40.699938002621316],[-73.91067882671317,40.70104596956615],[-73.91290404121894,40.702361891799235],[-73.91180710003329,40.70343495252868],[-73.9218918463265,40.70939609671037],[-73.92074853115804,40.71053364895872],[-73.92154601629636,40.71104328353437],[-73.92223466477621,40.712855954362894],[-73.92405909736993,40.71411156014749],[-73.92412241575497,40.71513804844516],[-73.92232970167701,40.7160765451724],[-73.92279414745396,40.717534576143976],[-73.92393252266965,40.71902927216989],[-73.92424364921007,40.72142949875855],[-73.92514671628452,40.72235199537208],[-73.92419217991097,40.72427574219597],[-73.92655663912397,40.7256690652872],[-73.9285567608544,40.727844828185546],[-73.93129800153272,40.72872544161517],[-73.9345317637569,40.729104806534956],[-73.93648138614026,40.729686519841515],[-73.93911054574816,40.73137980652555],[-73.94006709327039,40.73376215298009],[-73.94180143973267,40.73596257820131],[-73.94593191000166,40.737497787753625],[-73.95192208192246,40.73948730592797],[-73.95379878808716,40.73981986527195],[-73.95746607442858,40.73954341851145],[-73.96072580373679,40.73808017017914],[-73.96216416128229,40.738272234909694],[-73.96262015898662,40.73903266212604],[-73.96155253168956,40.74199326140715],[-73.9606460218035,40.74339270626311],[-73.9587753700448,40.74455559986341],[-73.95867072374396,40.746643109693856],[-73.95679453224425,40.74883951695536],[-73.9550665256017,40.74963273037541],[-73.95465000413118,40.750831040959476],[-73.95136748557826,40.75452388323725],[-73.94350281966635,40.764499040743495],[-73.94131174941451,40.76691800476962],[-73.93820383486072,40.76872757186394],[-73.93524016831186,40.76967932546295],[-73.93480681344163,40.771734138889876],[-73.93746638537077,40.772531495125165],[-73.93765483024703,40.775085685383274],[-73.93638022817588,40.77692145606005],[-73.93508232492148,40.77794423372777],[-73.93178834239043,40.777870607104454],[-73.92988058500086,40.77622163190185],[-73.9286051502335,40.776592675100964],[-73.92631833403904,40.778241775184924],[-73.92423363007518,40.77910119376548],[-73.91909034674545,40.78336764600398],[-73.91717118646432,40.784193484371414],[-73.91683277016423,40.78519139248735],[-73.9125998591149,40.789376329633875],[-73.90985862925778,40.790945493781884],[-73.90032629743821,40.789007662825696],[-73.89693993562564,40.786624668969694],[-73.8958291437706,40.785221527383484],[-73.89874897638398,40.78278115576603],[-73.89865437844038,40.7819954203208],[-73.89606377738431,40.78315720180519],[-73.89477429053537,40.78225359249425],[-73.89379799495995,40.78237168965071],[-73.89167103733044,40.78085485427354],[-73.89253484564902,40.77977051958848],[-73.89119589704401,40.77856328788708],[-73.89252259860889,40.777404628989046],[-73.89177229652564,40.77659352115332],[-73.89008729416798,40.77778419360686],[-73.88947105399761,40.77553555096721],[-73.88945486903737,40.773532951127166],[-73.88431556689008,40.77418436398409],[-73.88505522658453,40.77840531274414],[-73.8849346638119,40.77993691280696],[-73.88139075985559,40.78060160840802],[-73.87870562518874,40.780585909950084],[-73.87930868295156,40.7818536583323],[-73.87833923298064,40.78302592074941],[-73.8751575489337,40.781509449653264],[-73.87124856242515,40.78603815125499],[-73.86978081192642,40.78533793332583],[-73.86942344795422,40.783591314917736],[-73.87048029898963,40.78230611231519],[-73.87146292358183,40.78212640074076],[-73.87255732673732,40.78082112154257],[-73.86471066497091,40.77673318625358],[-73.85505106271819,40.7721953899891],[-73.85642119168858,40.77034671356568],[-73.85669054762333,40.769385508210135],[-73.85877376553063,40.76734999560101],[-73.86016778943647,40.76694222727402],[-73.86268864176635,40.76687591050482],[-73.859413393981,40.7624832653393],[-73.85712133534516,40.76118890387278],[-73.85372403934953,40.76024638863481],[-73.85158552901186,40.75935542065696],[-73.84868655658926,40.76013849511064],[-73.84411566722957,40.76313619957922],[-73.84298479705532,40.7644235941218],[-73.8391318926342,40.76599110556835],[-73.84031170315286,40.76629479789839],[-73.84394748335801,40.765494881485715],[-73.84528163541587,40.76566611948253],[-73.84780575104429,40.76677294817167],[-73.84899656368127,40.769148314006635],[-73.8485936853988,40.77062392002501],[-73.84994620808673,40.77205737261623],[-73.84896112400038,40.773742684753344],[-73.84921197208924,40.77454763447593],[-73.84895559325422,40.77796167373132],[-73.84980132097783,40.77876730703298],[-73.84949381208315,40.78006582811421],[-73.84991219996317,40.78108750458773],[-73.84924675980245,40.78225636532164],[-73.85123047734253,40.782402547333746],[-73.8553884517445,40.78207571631064],[-73.85545062834922,40.78314307913834],[-73.85808318103322,40.783724078841665],[-73.85798576369068,40.78468741105699],[-73.85912285858105,40.78573313179489],[-73.85811203509839,40.78705680902921],[-73.85701118969901,40.78664735876353],[-73.85479249924806,40.78858380770185],[-73.85445222779767,40.79027417881423],[-73.85266418431867,40.791255795027965],[-73.8537433789417,40.7922937728052],[-73.85353237176382,40.794138856811756],[-73.85276627198394,40.794389247829315],[-73.84933654876025,40.793371499566206],[-73.84870999361341,40.79541648128986],[-73.84624420656033,40.796163095437144],[-73.84451391906175,40.79488179016879],[-73.84343262021294,40.79494844908789],[-73.8405998229462,40.79680680321055],[-73.83840083077962,40.79675525830685],[-73.83663288923375,40.792516375538604],[-73.83763726122949,40.791049553569835],[-73.83714862250166,40.78955758773501],[-73.83554685397561,40.78951912231342],[-73.83377597877141,40.78851263800132],[-73.83211813285882,40.78877203892134],[-73.83214872000922,40.79003324485319],[-73.83099216040134,40.79156786522635],[-73.82977794576155,40.791617245801696],[-73.82798633399261,40.79277006460618],[-73.82797743419616,40.79480686912254],[-73.82924703839502,40.79648699495255],[-73.82707642035966,40.796987417623995],[-73.82673856166687,40.797796245452965],[-73.82504612538257,40.79738480723419],[-73.82289590533946,40.79869358954433],[-73.8210368860643,40.80044080625717],[-73.81948584786862,40.80081296894463],[-73.81738598276704,40.79928888682122],[-73.81288386452474,40.79716656522699],[-73.81182161861155,40.79745867632877],[-73.80460953451069,40.796135457863315],[-73.80348822878432,40.796477907211546],[-73.80065920162396,40.79635386816198],[-73.7945816733069,40.79475386753139],[-73.79483055922807,40.79143011207444],[-73.79378268703302,40.789118937377],[-73.7926879011279,40.78877761872355],[-73.79028202353207,40.7903169633998],[-73.78568101301406,40.79034067166],[-73.78383842514354,40.79064095467156],[-73.78107845970224,40.79167732177905],[-73.78070025516259,40.79364850590945],[-73.7818100376292,40.79480185241984],[-73.78154150032749,40.79565973732001],[-73.77827066301273,40.79672512573138],[-73.77617885953204,40.79609605336271],[-73.77402108830339,40.79404392106478],[-73.7736324818892,40.792749756215116],[-73.77236296162185,40.7915382036276],[-73.77210255348932,40.79013000015933],[-73.77063124537428,40.78846290603716],[-73.77199320470982,40.787356114307336],[-73.77379096552599,40.786828957833784],[-73.7740763829779,40.785917284019185],[-73.77160731979487,40.782996265185474],[-73.76816173051581,40.77939682124199],[-73.7670006806978,40.776695213965446],[-73.76572796903928,40.77460332809208],[-73.76417633114522,40.77282999044267],[-73.75880776560997,40.76818265272541],[-73.75864264358079,40.767357170035446],[-73.75493674341264,40.766093252138866],[-73.75469594529756,40.769709044463255],[-73.75557332649315,40.7715291259227],[-73.75438074757541,40.77204127164215],[-73.7533669199931,40.7732078477634],[-73.75424149999385,40.775266830365204],[-73.75513664233074,40.77640719547497],[-73.7539065978494,40.77977871026383],[-73.75245962687089,40.7817810905684],[-73.75080593613785,40.782893378668064],[-73.74412314568102,40.77863865755417],[-73.73770283622301,40.77479358573235],[-73.72153324745767,40.76482318958773],[-73.72097588434283,40.76476015928879],[-73.71657585318302,40.76178181152383],[-73.70782538631595,40.75621640432435],[-73.70163345892384,40.75249332919031],[-73.70089340027842,40.747057265625166],[-73.70058164037681,40.74318384108587],[-73.70002020437218,40.739236541730214],[-73.70081147096262,40.738439152387905],[-73.70766217305993,40.727830934509434],[-73.71049995362073,40.727227087413226],[-73.71740163640531,40.726275442846756],[-73.72567196959442,40.72403765899316],[-73.73032628968096,40.72215729678481],[-73.72917629515445,40.719167214561736],[-73.7269714678306,40.71071450403343],[-73.72704696486872,40.70949875280895],[-73.72665409149948,40.70111265939524],[-73.72616338318788,40.688453617698265],[-73.72579787942314,40.684353849825044],[-73.72590660060266,40.682656605629205],[-73.72563005119487,40.67958795178653],[-73.7262401352599,40.67722107996888],[-73.72755616356653,40.674161587688964],[-73.72827272254973,40.66642959208361],[-73.7278578721934,40.665067970184076],[-73.72793124345495,40.6617488351033],[-73.72644438608044,40.659161615924766],[-73.72498470778612,40.654253435908146],[-73.72522608107016,40.65200100014745],[-73.73028652972182,40.650368522674405],[-73.73513501472306,40.64973204046682],[-73.73904482131434,40.6482011803444],[-73.74143706042345,40.646889178321445],[-73.74166141251749,40.64219806167834],[-73.74227387159944,40.64012338144998],[-73.74125900067578,40.638897499435004],[-73.73947121560819,40.635706431827884],[-73.742000120511,40.63498325953498],[-73.74217084528767,40.63596535231393],[-73.74096487686366,40.63730477503008],[-73.74272966303367,40.638270155981665],[-73.7442212441808,40.63801970439633],[-73.7462638571203,40.63644221911147],[-73.74691427138512,40.63691572160056],[-73.74617068907204,40.64039592151595],[-73.74631467867948,40.64139431318157],[-73.7481573316999,40.64408592425382],[-73.75171302466916,40.64650059076871],[-73.7545036960127,40.64793547955685],[-73.75461208438024,40.647200458955474],[-73.75057032811958,40.64472855667386],[-73.74870701496526,40.64334349233743],[-73.74739887091208,40.641353376307165],[-73.74743599984329,40.64013013827331],[-73.74845072655371,40.63563613808878],[-73.75264023618979,40.633612115196925],[-73.75900955400704,40.63148929688246],[-73.76053159841477,40.63066331718959],[-73.76639863095268,40.62835013406256],[-73.76828692639444,40.625310468815115],[-73.76855833593444,40.62310686572973],[-73.77067093812195,40.62006678593008],[-73.77171699447305,40.620961678798004],[-73.7709149994593,40.6224038891555],[-73.77145620794956,40.623292972923274],[-73.77407526415503,40.62578348284014],[-73.77654229887835,40.62765172472891],[-73.77946897687782,40.62731550562401],[-73.78419483297871,40.62089266991027],[-73.78584280107007,40.620460889235154],[-73.7869014098436,40.61927184109028],[-73.78547463952066,40.615666911952374],[-73.78585245783472,40.61446198652663],[-73.79035464459227,40.61278971146848],[-73.7906309241883,40.61029857808052],[-73.79249966118846,40.610579627285524],[-73.79365104095648,40.60898581496911],[-73.79505655097412,40.61048896619428],[-73.79912946875947,40.61160755768697],[-73.80049472403944,40.61164318147944],[-73.799056741477,40.61549243921915],[-73.7963556790424,40.61845468453535],[-73.79523751343393,40.621657155463325],[-73.79434564765558,40.62274584748536],[-73.7922635135203,40.62236908907301],[-73.78981035454353,40.62257211265957],[-73.78487888740891,40.626631470707906],[-73.78346558375236,40.62811814075721],[-73.7826454343561,40.6302479690888],[-73.78377728675007,40.630634115649],[-73.78570293740455,40.63209498948076],[-73.78690666684496,40.63226190072893],[-73.78957614247963,40.634149546394454],[-73.790792842991,40.634282043205054],[-73.79222318037628,40.63589008827998],[-73.79474387433123,40.6366293673945],[-73.79725742867075,40.6380076137577],[-73.79923711983864,40.63842010970357],[-73.80044766948808,40.63913631161922],[-73.80670200675765,40.64177618467285],[-73.80864568716554,40.642814927880366],[-73.81075749444096,40.64349239125583],[-73.81643071612784,40.645998005645694],[-73.81853647403982,40.64651949339183],[-73.8218251362489,40.649899795874894],[-73.82321692539378,40.6542376986967],[-73.82340406982632,40.656080242093545],[-73.82246765596561,40.659159866398845],[-73.82156893575575,40.65995869387322],[-73.8186953155869,40.66110505105516],[-73.81309228037954,40.66019403855639],[-73.81151448346189,40.66076714280109],[-73.81867184374161,40.662132776928665],[-73.82352151962054,40.660075390257994],[-73.82496862375532,40.65565882975496],[-73.82397332709654,40.65211162901899],[-73.82319444111556,40.64801116168028],[-73.8243939524767,40.64946252741616],[-73.82844793440577,40.64909672578902],[-73.83093651353481,40.65162612925583],[-73.8312877447158,40.65347883842922],[-73.83212330981654,40.654273161676066],[-73.83108682901502,40.64909075463787],[-73.83166902767807,40.647972211017645],[-73.83540257287667,40.64833200838039],[-73.83653898105405,40.65269846335634],[-73.83804998206458,40.657712939054754],[-73.8387851750313,40.66108844843479],[-73.83978752612927,40.66048599804801],[-73.83845221411228,40.6558085044741],[-73.83592320073284,40.645499790674954],[-73.83633074787276,40.645321149280505],[-73.84599608300707,40.64456831949448],[-73.84950699084176,40.644133765678774],[-73.85207628474056,40.646176148090966],[-73.8523425750118,40.64767731014961],[-73.85057653598565,40.65034992519288],[-73.85078499726184,40.651532851904285],[-73.85256339779647,40.65055367148329],[-73.85410078463795,40.65067867567399],[-73.85620657650311,40.65154259566834],[-73.85666029300795,40.652744392252934],[-73.85852026658146,40.653311189403766],[-73.85930573554424,40.65497238338424],[-73.86269778233539,40.65761830901158]]]]},"properties":{"boro_code":"4","boro_name":"Queens","shape_area":"3044778579.91","shape_leng":"895169.617616"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-74.0050037331507,40.68760598489827],[-74.005629863304,40.686784206043626],[-74.00783293766683,40.68738505516271],[-74.00742012154097,40.6882062904359],[-74.0050037331507,40.68760598489827]]],[[[-74.0038203891973,40.68892964419672],[-74.00459270521772,40.68821522298657],[-74.0067843843981,40.688826879958285],[-74.00636461225267,40.689669668636974],[-74.0038203891973,40.68892964419672]]],[[[-74.00297565436566,40.69042657592068],[-74.0034092162452,40.68961326116011],[-74.00575900670344,40.69023640001618],[-74.00534209624915,40.691091602977856],[-74.00297565436566,40.69042657592068]]],[[[-74.0438776163991,40.69018767537123],[-74.04364078627412,40.68876655957014],[-74.04478399106388,40.6885956601156],[-74.04627538937642,40.68932742589699],[-74.04720029366251,40.69042481562375],[-74.04599418395566,40.69110495619731],[-74.0438776163991,40.69018767537123]]],[[[-74.00069905841879,40.69061185791646],[-74.00479415294552,40.69176162037439],[-74.00440941259976,40.69252880038931],[-74.00196938526081,40.6918432083175],[-74.00069905841879,40.69061185791646]]],[[[-74.0167475609607,40.693343368217604],[-74.01422123084906,40.692822906344055],[-74.01218355071057,40.691136215940624],[-74.01230688304491,40.68928018293757],[-74.01316926402762,40.688154771203166],[-74.0148809797501,40.687254570488534],[-74.01604730539523,40.68733800629772],[-74.0227589902996,40.68428444833225],[-74.02464809241233,40.68397856661304],[-74.02657640943092,40.68524166303809],[-74.02617488097594,40.686429072229025],[-74.02020527434277,40.692033923854225],[-74.0194356527521,40.69322117749475],[-74.0167475609607,40.693343368217604]]],[[[-74.00174362045013,40.69240674970547],[-74.00400795971098,40.69320819963236],[-74.00345348490625,40.69405163067133],[-74.00127014902641,40.693296061673735],[-74.00174362045013,40.69240674970547]]],[[[-74.00095868416989,40.6940690835822],[-74.00301393829082,40.69477784447914],[-74.00239802583795,40.69571165486448],[-74.00026872377788,40.694965802577904],[-74.00095868416989,40.6940690835822]]],[[[-73.99837760685773,40.69806329564351],[-73.99887117097656,40.69715757679324],[-74.00104903057525,40.69790823669739],[-74.00048768562517,40.69875777763452],[-73.99837760685773,40.69806329564351]]],[[[-73.99802102725111,40.69876173657377],[-74.0000184043362,40.69946604807362],[-73.99947463838926,40.70032277801832],[-73.9974989831,40.699638869321234],[-73.99802102725111,40.69876173657377]]],[[[-74.03995040788514,40.70089063064273],[-74.03771124796636,40.699344040347725],[-74.03822954445391,40.6983685916977],[-74.0393403767015,40.69811551483597],[-74.04124261832222,40.699536741434855],[-74.04174768868015,40.699147863566644],[-74.03991248872623,40.6977020403984],[-74.04166051914841,40.69645297163976],[-74.04367371230778,40.69802040433007],[-74.0410986123707,40.700492943389634],[-74.03995040788514,40.70089063064273]]],[[[-73.99669768997464,40.70087697691705],[-73.99813879899455,40.701518788248364],[-73.99619227228733,40.70337714086413],[-73.99513826840686,40.70297411472284],[-73.99669768997464,40.70087697691705]]],[[[-73.94180032729426,40.76904692662469],[-73.94285528620705,40.76830349440931],[-73.9448402665221,40.76582362839081],[-73.94943175563205,40.76054861736145],[-73.9520923302263,40.75799314034483],[-73.95254079336877,40.75709531453726],[-73.95692404304644,40.75296115989116],[-73.96100895811229,40.74974750185044],[-73.96068557958185,40.75120193696792],[-73.95845836805675,40.753949236504866],[-73.95366241810677,40.75947973461607],[-73.9520863226655,40.76086215440482],[-73.94997191750257,40.76364603031704],[-73.94908628791565,40.76426402727494],[-73.94472353220667,40.769734058884],[-73.94212674646828,40.772034700509415],[-73.9408870721167,40.77237251577601],[-73.94020021779653,40.77112830566273],[-73.94180032729426,40.76904692662469]]],[[[-73.9213375241928,40.800852107502166],[-73.9203146552123,40.79937545928999],[-73.91662985247802,40.797858139437096],[-73.91545470966419,40.79706346603097],[-73.91380428276814,40.79451184645589],[-73.91378385370594,40.793836285482065],[-73.91514134426109,40.79201248299488],[-73.91850876959093,40.789425089769395],[-73.92189248128902,40.78570326964315],[-73.92285203280153,40.78355569341766],[-73.92448052280425,40.782320490645816],[-73.92571808678534,40.78217655794456],[-73.92732422574863,40.781090629324254],[-73.92849269561364,40.78100835348084],[-73.9306381969117,40.78226141304896],[-73.93502345134512,40.783006382028816],[-73.93607064617002,40.78421721562025],[-73.93571265997697,40.785680489492535],[-73.93147595329808,40.79047915925791],[-73.92972400781915,40.79136617834302],[-73.92786889241084,40.79095483863441],[-73.9271356372808,40.79192930660312],[-73.92826520921278,40.79321287506621],[-73.92735332146681,40.79446189460991],[-73.92688967827914,40.796252011862755],[-73.92747588603496,40.798122899664904],[-73.92650954867304,40.800657031524544],[-73.92527521020125,40.801998522743325],[-73.92263378594897,40.80186873814105],[-73.9213375241928,40.800852107502166]]],[[[-73.92640556921116,40.87762147653734],[-73.92457036990587,40.87742891267131],[-73.9223766931572,40.87675893498172],[-73.92267322082175,40.87475084520202],[-73.92208320161838,40.87358380820009],[-73.92006343503769,40.87325378750954],[-73.92091322183161,40.875464660315174],[-73.9179290291799,40.87397889320502],[-73.91522402146056,40.874486621868144],[-73.91228918621248,40.8736289048214],[-73.91064877277677,40.87229624946576],[-73.91103057950258,40.86915540299598],[-73.91254775130282,40.86651494300431],[-73.9139186313324,40.864745584403586],[-73.91533281432893,40.864067325450755],[-73.91534506689362,40.863164542777405],[-73.91705129801854,40.861892622976505],[-73.91950213660927,40.85879113379047],[-73.92237695742354,40.85658356962483],[-73.92227873064483,40.85565498884374],[-73.92360595220678,40.85397719803465],[-73.92971850477537,40.84523177826375],[-73.93081019415838,40.842717972930494],[-73.9349153357865,40.83523082193877],[-73.93516725294587,40.83287499277847],[-73.93442396339051,40.82704289397213],[-73.93378997399208,40.81715137370164],[-73.93398178986824,40.81281463554522],[-73.93433864584739,40.80956221383135],[-73.93356119311481,40.80760067738665],[-73.93115949987327,40.80496694026245],[-73.92997373618591,40.80319646797409],[-73.9290349024031,40.80108090385186],[-73.92903640179625,40.79676259410125],[-73.93019664392844,40.7945932248548],[-73.93348489644649,40.792774171332496],[-73.93583106788908,40.79109470487022],[-73.93706168747065,40.78941359021348],[-73.93811570089727,40.78718476275638],[-73.9398261969646,40.78525655241547],[-73.94246970444772,40.78389646094701],[-73.94364823539011,40.78265616133327],[-73.94360047475412,40.78015909946618],[-73.94200266722274,40.776185317382705],[-73.94293043781397,40.77467626803581],[-73.94866416477885,40.76885762439943],[-73.95006979303062,40.7670250883833],[-73.95441826078606,40.762184104951054],[-73.95918103219992,40.75785611105221],[-73.96532405586477,40.75104771827202],[-73.9707883477664,40.74440621769032],[-73.97188888913044,40.7427248203555],[-73.97265743803038,40.739222754276966],[-73.97248994174741,40.73580328010761],[-73.97441385816532,40.73641439385896],[-73.97444065082591,40.73531677190054],[-73.97341321730858,40.73128241642864],[-73.97147994907206,40.729249577698404],[-73.97149039092832,40.72735009810991],[-73.97311210763185,40.720158739265536],[-73.97406236069766,40.717204566736044],[-73.97642872514528,40.71190903250366],[-73.97825557749195,40.71049790955784],[-73.98124579569945,40.70982621460123],[-73.98816491726686,40.70915678150646],[-73.98873681707525,40.70997074184507],[-73.99728287195578,40.7087316198429],[-74.0011868526283,40.70685982577176],[-74.0005829704798,40.7054339336489],[-74.00143719471637,40.70487222494061],[-74.00332307270787,40.70562859522006],[-74.01110886351555,40.700901420606286],[-74.01348560832739,40.700478222908394],[-74.01514231812101,40.700842892354245],[-74.01844742686767,40.70416230497785],[-74.01934155704542,40.706070538204024],[-74.01819029259647,40.707821626109904],[-74.01885500911968,40.708047534447395],[-74.01780037888393,40.712345124158524],[-74.01662424425291,40.71215731899531],[-74.01632006627581,40.71340798247826],[-74.01754443334657,40.713611222664234],[-74.01671018605823,40.71862417605798],[-74.01321322719193,40.71831571989578],[-74.01341376512872,40.7200194820142],[-74.01253875807262,40.721503176576356],[-74.01165326569942,40.72587176185136],[-74.01516324118423,40.72631971193679],[-74.01512356549462,40.72679394256454],[-74.01154201897604,40.726447346927074],[-74.01138323604756,40.72822927236716],[-74.01439069932388,40.72846304752011],[-74.01401552295431,40.73068283965607],[-74.01116195696476,40.73045067634904],[-74.01039303134554,40.73917429605917],[-74.01158818724917,40.7392715959002],[-74.01137438820489,40.740723947641285],[-74.00963145571754,40.74064536737425],[-74.009091568462,40.74288614957493],[-74.00951201767367,40.74367609376027],[-74.00872986359421,40.74488153782964],[-74.00955832929749,40.745288825298694],[-74.00905847901343,40.74778564533281],[-74.0099481793803,40.74893198800567],[-74.00910453215725,40.75037106973032],[-74.00761949611858,40.75428184227666],[-74.00541885841011,40.757323140851746],[-74.0050310513664,40.75835701647313],[-74.0069642874931,40.7591600575616],[-74.00652959987842,40.7598747512412],[-74.00450483093914,40.759084996552694],[-74.00313338991401,40.761078345096294],[-74.00233528130057,40.761543727001616],[-74.00097308022016,40.76342027172565],[-73.99915098087908,40.764205259582695],[-74.00227436642373,40.765525181099555],[-74.00202454330335,40.76589326657038],[-73.99888473174988,40.764569377048495],[-73.9964571540504,40.768098815795625],[-73.99657126439577,40.769424568273834],[-73.99092717414969,40.77756687876296],[-73.99039616003651,40.777585065679055],[-73.98886861740003,40.779692922911416],[-73.98796079284213,40.781770987031535],[-73.980537679464,40.79245681262499],[-73.9716111339144,40.80509618747434],[-73.96885218645302,40.80875198661713],[-73.96663300760085,40.812153970787996],[-73.9634039510228,40.81668419794027],[-73.95793904909121,40.82277435354728],[-73.95955575493863,40.82369379776878],[-73.95725896977147,40.827117309873074],[-73.9563178451031,40.827944215388555],[-73.95454188062128,40.827861476365506],[-73.95109620887548,40.83280509670186],[-73.95015520996611,40.83439675981584],[-73.94954210504446,40.83687963242823],[-73.94842860791512,40.83986085465321],[-73.94612416421772,40.84389249655713],[-73.94617174983877,40.84539289158064],[-73.94678956849322,40.84699674934533],[-73.94661949998888,40.848278425911936],[-73.94704980259193,40.85022334922836],[-73.9465159021609,40.85096833958307],[-73.94401323950726,40.85199984366438],[-73.94186996426673,40.8538677394428],[-73.9402934749712,40.856641770657596],[-73.93755734318508,40.86008135632523],[-73.93647561664896,40.86192659117072],[-73.93401664426698,40.86503554829161],[-73.93242538215341,40.86756824842365],[-73.9319137713681,40.87112949372273],[-73.92901345809736,40.875738660592674],[-73.92640556921116,40.87762147653734]]],[[[-73.90893235241587,40.87215734797062],[-73.90960006621941,40.87308761849046],[-73.91167146256713,40.87448786205669],[-73.91578515571896,40.875716945064326],[-73.91484624156381,40.87666671027648],[-73.9120583003024,40.87811932004863],[-73.91148913190445,40.87901885880953],[-73.90949832117468,40.87877673218171],[-73.90682822856839,40.87663155188877],[-73.90665099539478,40.8757525041926],[-73.90774270784561,40.872845952111575],[-73.90893235241587,40.87215734797062]]]]},"properties":{"boro_code":"1","boro_name":"Manhattan","shape_area":"636594017.194","shape_leng":"360282.142897"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.86706149472118,40.5820879767934],[-73.86896292210412,40.5816937947886],[-73.8705059791835,40.58334195301371],[-73.87115922675432,40.58687388796727],[-73.86981356482099,40.589460926788206],[-73.86849671647208,40.59008985028957],[-73.86635052164095,40.59189267656473],[-73.86327273492829,40.59090807569255],[-73.86125299377375,40.58798808592116],[-73.86167447867462,40.58614479499369],[-73.86327471071958,40.58387684853178],[-73.86449245335692,40.583614938178734],[-73.86706149472118,40.5820879767934]]],[[[-73.91990064335977,40.599600522592766],[-73.9186588759807,40.59947242837066],[-73.91626393108342,40.598161137312744],[-73.91306340001262,40.59407211068704],[-73.91349017419435,40.59186642662107],[-73.91482496106998,40.59151821536823],[-73.91596485962259,40.592105862876885],[-73.91786246291421,40.5947102932533],[-73.92161235974639,40.59713041386897],[-73.92227201543724,40.59837681843611],[-73.92083168628169,40.5995426486164],[-73.91990064335977,40.599600522592766]]],[[[-73.85243335807017,40.59733339779524],[-73.85492648581452,40.5963016643732],[-73.85716132350709,40.59604369786467],[-73.8604442053407,40.59647190559633],[-73.86054977985192,40.59706302019161],[-73.86274820792639,40.59907120592458],[-73.86335999147612,40.600322202771125],[-73.86112814224542,40.60255033107426],[-73.85905914327765,40.60206143157398],[-73.85482595782972,40.60186719535364],[-73.85276838155836,40.60094885402589],[-73.85076748001559,40.59883944383733],[-73.85243335807017,40.59733339779524]]],[[[-73.83587601623168,40.60563690704295],[-73.8361015662885,40.60736279382325],[-73.83428342620009,40.60918568185299],[-73.83446265620243,40.60719253294238],[-73.83587601623168,40.60563690704295]]],[[[-73.86966442958501,40.60654012341292],[-73.87105656646139,40.60628508849425],[-73.8724557981188,40.60818553034854],[-73.87300122724768,40.61055545845987],[-73.8710387011171,40.60972358252655],[-73.86966442958501,40.60654012341292]]],[[[-73.8504762496644,40.61234221905719],[-73.84956537299634,40.611529655050525],[-73.84942939580652,40.60985553255474],[-73.85158237107457,40.60906294004334],[-73.85306610161899,40.60795215758764],[-73.85426911931475,40.60782795432845],[-73.8555495238693,40.608982512968154],[-73.8555050511495,40.610144042591784],[-73.85322338065063,40.61013804394094],[-73.8504762496644,40.61234221905719]]],[[[-73.8447349265296,40.61396917180152],[-73.84264184886561,40.61317296630614],[-73.84070815291503,40.61163403860367],[-73.83797936685491,40.61309939400075],[-73.8362279975155,40.6121899778792],[-73.83864118274428,40.60896303397551],[-73.83877369719278,40.6080691031033],[-73.84140987488927,40.60643836366951],[-73.84112952895705,40.60469025115867],[-73.84361933184951,40.60439711213889],[-73.84460595564508,40.605036189917584],[-73.84740716002659,40.605075220463924],[-73.84754585891254,40.606979708799734],[-73.84594734015654,40.608034684211304],[-73.84575485121813,40.6112679875735],[-73.84507534677711,40.612334244282046],[-73.845696332668,40.61293436179796],[-73.8447349265296,40.61396917180152]]],[[[-73.83370152272126,40.62097860184685],[-73.83401888134368,40.61438116692222],[-73.8349619025123,40.61447290875],[-73.83729967326357,40.61577414773579],[-73.83574510959826,40.616717848584244],[-73.83496222645583,40.61778030881183],[-73.83570733216762,40.61972916695197],[-73.83370152272126,40.62097860184685]]],[[[-73.8502309076287,40.62332082362204],[-73.84939485574913,40.62247988728792],[-73.84964390536375,40.62136901747386],[-73.85082737598162,40.62033057706858],[-73.85346708738449,40.62019768154016],[-73.8565571040893,40.61971658203768],[-73.85710914017012,40.62097389613506],[-73.85596286045323,40.62179703014305],[-73.85464356472856,40.62159400376642],[-73.85358897081645,40.620461824049485],[-73.85180005267516,40.620595821331406],[-73.85132016651369,40.62190653590744],[-73.85231226879132,40.622871670335186],[-73.8502309076287,40.62332082362204]]],[[[-73.84589458447094,40.624971815313806],[-73.84474611970708,40.624795197163046],[-73.84309043788637,40.62336268714875],[-73.84520042270508,40.62298162759552],[-73.84520557917331,40.62435403207049],[-73.84589458447094,40.624971815313806]]],[[[-73.86872915290883,40.617356785003295],[-73.87395306206795,40.615839416235595],[-73.87862188757221,40.61593537869044],[-73.87951577316615,40.616561519796434],[-73.87973527002059,40.61892614465803],[-73.87937556321155,40.619857884714456],[-73.8777909888883,40.621652242560536],[-73.87481386865043,40.62358718918367],[-73.86645484055246,40.628255386807055],[-73.865187862763,40.62766280991837],[-73.86498193495922,40.62566070604098],[-73.86650860322545,40.62375400801792],[-73.86493256071745,40.62111495888482],[-73.86575831319405,40.61850144995795],[-73.86872915290883,40.617356785003295]]],[[[-73.8473435066699,40.62909473971626],[-73.84955404755291,40.62493961850557],[-73.8580043092287,40.62472901319991],[-73.85825556222694,40.625796339935796],[-73.85786309317038,40.62844490266745],[-73.8561347984124,40.62828091127289],[-73.85396544191144,40.62761094389787],[-73.85221536588142,40.627554830703225],[-73.84922230898053,40.628808804223624],[-73.8484686819617,40.629643330753154],[-73.8473435066699,40.62909473971626]]],[[[-73.853000146445,40.63202284225335],[-73.8535040256348,40.63086107992683],[-73.8558302413805,40.629920637589834],[-73.85775996793033,40.62994139819394],[-73.8585583634798,40.630458288195605],[-73.85806285776546,40.632177574724764],[-73.85724630388485,40.63280673907169],[-73.85556437065117,40.63281980294083],[-73.85434617214578,40.63372263127042],[-73.85251699199969,40.63374093205044],[-73.853000146445,40.63202284225335]]],[[[-73.84638458909862,40.63528576819142],[-73.84803372740583,40.632637685467984],[-73.85008470941543,40.632307216680005],[-73.84993315734384,40.63388939889022],[-73.84890467904907,40.63533984595715],[-73.8477434660719,40.63820022326081],[-73.84667914840229,40.63873171175706],[-73.84427265333407,40.63669234592954],[-73.84491843346878,40.63575094491376],[-73.84638458909862,40.63528576819142]]],[[[-73.92405909736993,40.71411156014749],[-73.92223466477621,40.712855954362894],[-73.92154601629636,40.71104328353437],[-73.92074853115804,40.71053364895872],[-73.9218918463265,40.70939609671037],[-73.91180710003329,40.70343495252868],[-73.91290404121894,40.702361891799235],[-73.91067882671317,40.70104596956615],[-73.91180820038451,40.699938002621316],[-73.90426018345657,40.69570037144264],[-73.90579597009209,40.69412715551359],[-73.9013984066204,40.69158999203776],[-73.90188776254817,40.691077720575834],[-73.90042465047067,40.688183898876254],[-73.90116154994368,40.687877935355],[-73.89652644236399,40.68240329924157],[-73.894174632671,40.685283248673166],[-73.89258303102321,40.68349191088717],[-73.89015418672898,40.68500398980448],[-73.8896278757877,40.68423645425291],[-73.88808341776523,40.68529363217041],[-73.884522508914,40.6866847490949],[-73.88377698583253,40.68786341118426],[-73.87950641154781,40.69114676934506],[-73.87402053240673,40.69419129521744],[-73.8689176269075,40.695146561514036],[-73.8674569407755,40.68840044165916],[-73.8665984828325,40.68526955906912],[-73.86601993220731,40.681919587028005],[-73.86410096679134,40.682372850292616],[-73.86328640844613,40.67907719656107],[-73.86234580535023,40.679164786146856],[-73.86038519854728,40.67125171098968],[-73.85763323174372,40.671656194038846],[-73.85568461155036,40.663867492874665],[-73.85842950791304,40.663453360931015],[-73.8576153718558,40.660118933153804],[-73.86035978140013,40.65964582901138],[-73.86317083274511,40.65827651244548],[-73.86269778233539,40.65761830901158],[-73.86297273468901,40.656002940964015],[-73.86098917353912,40.65520976710516],[-73.85722330984366,40.65027867054137],[-73.85837605317673,40.647274415313476],[-73.85716978298213,40.64367855888598],[-73.85867998081397,40.64326346969547],[-73.86201301027748,40.64288704102008],[-73.86331138939124,40.64229912902855],[-73.86531173665126,40.64075119144379],[-73.86732291072713,40.639871983952844],[-73.86867282895088,40.6409250792034],[-73.87001708273581,40.64407137240543],[-73.87119172949642,40.645305356312456],[-73.87257043102892,40.64557561235963],[-73.87921658230898,40.65459108377299],[-73.87910837392923,40.65370623553959],[-73.87318593330954,40.6454450133616],[-73.87343605572589,40.64444773945348],[-73.87008544224426,40.63984418136626],[-73.86955902490303,40.6379474843275],[-73.87347939154502,40.63628554579879],[-73.87547103730128,40.637273324467664],[-73.87711428476379,40.63864148678163],[-73.87835076562651,40.638871613745096],[-73.88047801022178,40.64111896455314],[-73.88214832562572,40.64374372784058],[-73.88341999203027,40.64452381564948],[-73.88557762148908,40.64404095029236],[-73.8876366864042,40.64632545126504],[-73.8876407216673,40.64780239000722],[-73.88863638434101,40.648024492615654],[-73.88995674148603,40.64926200244805],[-73.89108330605372,40.648792575696],[-73.88809441935732,40.646212786549334],[-73.88602529679086,40.643661450406476],[-73.88373578763786,40.6424503491884],[-73.88078889725557,40.63975743364067],[-73.87953888017081,40.63821783932069],[-73.87714434868597,40.63597649800753],[-73.87820590489783,40.634572943662576],[-73.88127068104541,40.63236911916103],[-73.88301362103512,40.631626149535364],[-73.88404726149385,40.6295601185465],[-73.88263248433402,40.628274273126905],[-73.88369231571501,40.62755937391401],[-73.8851295402378,40.628827258671386],[-73.887526737062,40.62833182448251],[-73.89042299743556,40.62627859879771],[-73.89148720748321,40.624481722415176],[-73.89300558864316,40.62335646909599],[-73.89518797857498,40.62250102100555],[-73.90289816742136,40.62587758767364],[-73.90412793207628,40.626306200134294],[-73.91475709001945,40.63114378665998],[-73.91624680487682,40.632074870493426],[-73.91739394674806,40.631613794531596],[-73.91659169782925,40.63045185797297],[-73.90918033297255,40.62720140975427],[-73.90269333271978,40.62421333487323],[-73.90063507082697,40.621772755125626],[-73.89811767568024,40.62185156212634],[-73.89647475412451,40.62142824608894],[-73.8956184277531,40.61975259916213],[-73.89662424028313,40.61712890782727],[-73.8954181943246,40.614414010107076],[-73.89249926249606,40.613792312183776],[-73.88979163130148,40.611685915674535],[-73.8903021138949,40.610317656862506],[-73.89225205821356,40.609181288998855],[-73.89274578072482,40.60719514834253],[-73.89672573151203,40.60563653751715],[-73.89850211043296,40.60529669018286],[-73.9001357604735,40.60560333508914],[-73.90109557726666,40.60700842864116],[-73.90055052315705,40.610439897967545],[-73.90271124133432,40.61224706649885],[-73.90838646239615,40.61739102978061],[-73.90964406040362,40.61657537149951],[-73.90730153384287,40.61480891300763],[-73.90544378702967,40.61301450900805],[-73.90221442765915,40.61034331603202],[-73.90167739606476,40.60609454913326],[-73.90189710069487,40.60572961179577],[-73.90520530979805,40.60490818290941],[-73.90597461177859,40.606384028704326],[-73.90984528326649,40.60616830550711],[-73.90832536835174,40.604073373918595],[-73.91092270021181,40.60350547610067],[-73.91352500916958,40.60392913916154],[-73.91673556486202,40.60681456155016],[-73.9161647503773,40.61051557507611],[-73.91449542205983,40.61165322366487],[-73.91493418790435,40.61395815505495],[-73.91662804371157,40.613443589265444],[-73.91573181927134,40.611830844513776],[-73.91805286362063,40.61027534308018],[-73.91802964454185,40.608846696743484],[-73.91950358918928,40.60797490397523],[-73.9192413501154,40.60738541386062],[-73.91560086104263,40.60393625315706],[-73.91329854635799,40.60225035124641],[-73.90914118247706,40.60163560841424],[-73.90784279095395,40.60226974077172],[-73.90567411116685,40.60260287517913],[-73.90331981912931,40.60258691705244],[-73.90192868283417,40.60318272162326],[-73.89933608368156,40.60356142067174],[-73.89568858266918,40.60301007029327],[-73.89164318857348,40.603447319928456],[-73.887756553346,40.605274507116576],[-73.88465003854392,40.605181548010584],[-73.88396434882077,40.60554914042641],[-73.88271777210468,40.60417883717934],[-73.8833914527329,40.60301632252459],[-73.88181902411156,40.59939400630031],[-73.88168153553481,40.59794814216655],[-73.88095853316935,40.596584818111005],[-73.88076383624811,40.59462881561259],[-73.87896840364141,40.58973041813033],[-73.87878760357641,40.588030461058366],[-73.87671672482074,40.5849144302008],[-73.87970231664,40.580135100698136],[-73.88408176568029,40.57868428518659],[-73.88952669185717,40.57780788850105],[-73.89104014553801,40.57787823343677],[-73.89552381007171,40.57676981843638],[-73.89698659156097,40.57954337094459],[-73.89660012312439,40.58312489552902],[-73.89795609974415,40.5849481533903],[-73.89794445722232,40.58601164332805],[-73.8988045858541,40.58746425427504],[-73.90088030290644,40.58805352438208],[-73.90209953736364,40.587356541176376],[-73.90423661649643,40.58691768167701],[-73.90810885035972,40.58679650530153],[-73.91088554171192,40.58594764500445],[-73.9119181178366,40.586427965433934],[-73.9114857900562,40.59110875301851],[-73.91198964223291,40.59427046977031],[-73.91365806430437,40.59710894063396],[-73.91512501505736,40.59876586874483],[-73.9185733692309,40.600786824423906],[-73.92147002357947,40.6019145922976],[-73.92324120433766,40.60107939346003],[-73.92400307854612,40.59973014522791],[-73.92507625606689,40.59992460579023],[-73.92950671202786,40.60270923350431],[-73.92901905320194,40.60367521127391],[-73.9311747616174,40.60385040643471],[-73.9319622706444,40.60312163761543],[-73.93148823885087,40.60210772913052],[-73.92922698259743,40.600488108516025],[-73.92840113840315,40.60053063589316],[-73.9250479145893,40.59828458169421],[-73.92252021192988,40.596043288540464],[-73.91788506186863,40.59282585142074],[-73.91656556230657,40.59111737687507],[-73.91458333215583,40.5898795895891],[-73.91454699795436,40.58874232600697],[-73.91708037510354,40.58757879416149],[-73.91820329129601,40.5863870423714],[-73.92101218266103,40.58575359585821],[-73.92235337377299,40.58602393656234],[-73.92475709799689,40.58563257509924],[-73.92684232736035,40.587289689953764],[-73.92776143639114,40.58866060975881],[-73.92395294850094,40.59113985052506],[-73.9241996339266,40.59136428018868],[-73.92815905123096,40.58882524959],[-73.93003427450552,40.58942599650071],[-73.93053560681564,40.5902636614617],[-73.93001650952081,40.59409453606215],[-73.9328265485289,40.59480374496915],[-73.93156462560293,40.59255174077165],[-73.93109178164583,40.589326565572115],[-73.92970255020445,40.58760735547415],[-73.92529083981734,40.58464073566464],[-73.92348001331943,40.58481765404848],[-73.92000618741412,40.584664652736514],[-73.91569387717736,40.58621442339274],[-73.91344030046768,40.58607696341778],[-73.91238199348396,40.584623153394475],[-73.91286173083527,40.58307045982728],[-73.91178656705165,40.582906464135164],[-73.91147523338651,40.58184362959961],[-73.91501420402969,40.581539295517025],[-73.91814011869592,40.58213869717276],[-73.92321384460413,40.583442933818965],[-73.92712531836806,40.583579273883316],[-73.92963248074902,40.58339880862547],[-73.93096003144579,40.58272861078609],[-73.93707737778301,40.58332975569455],[-73.9380942062777,40.58311681071695],[-73.94628634691873,40.58356868570794],[-73.9534932204868,40.58298819826098],[-73.95330135995677,40.58200274963347],[-73.94969672499398,40.582319401066655],[-73.94274062592515,40.58099558955926],[-73.93250341155827,40.58114698863907],[-73.93106028108006,40.57626592009684],[-73.93150256744059,40.57566050512677],[-73.94250907828427,40.57537355453176],[-73.94450580469352,40.57577141427217],[-73.94592390235839,40.5751154323094],[-73.95254341027396,40.574223979504254],[-73.95439793821805,40.574370845907175],[-73.95843476359008,40.57408881554888],[-73.96856335985478,40.57312594655187],[-73.97547081902785,40.571969003816925],[-73.97871536670131,40.57189154327845],[-73.9872686683531,40.57107594447701],[-73.9931574188674,40.570379789438825],[-73.99744814048582,40.57028603439304],[-74.00077859539269,40.57049099822121],[-74.0020578093162,40.57015246290177],[-74.0024870773771,40.57173838887243],[-74.00482247799985,40.57289022780212],[-74.01115668729264,40.57416676185882],[-74.01201540191131,40.5748850524742],[-74.0130271545442,40.57785089456403],[-74.01147928530143,40.58007840714519],[-74.00812030080371,40.58162226871542],[-74.00604734235817,40.58198365303582],[-74.00294374157806,40.58143283552103],[-73.99952302656172,40.58131902610888],[-73.99785315537416,40.581505928870094],[-73.99776522704225,40.580588033875756],[-73.99182912790278,40.57924708092878],[-73.9903620646656,40.57942458012048],[-73.9889909355634,40.578835099968835],[-73.98739064388405,40.57908698306367],[-73.98995504921773,40.5806616695314],[-73.99163007472379,40.58107988438183],[-73.99169553014778,40.58185850327886],[-73.99033762504457,40.584218254885855],[-73.99267391275036,40.583588443369436],[-73.9960552882052,40.58212890385413],[-74.00017922859408,40.5830739507476],[-74.00035951790483,40.584186445880405],[-73.99933976309936,40.584860814817205],[-73.99935665157747,40.58638136941568],[-73.99814530449004,40.586531693907126],[-73.9940790462178,40.58869344199056],[-73.99534737661217,40.58933138043996],[-73.99788311251038,40.588343437922795],[-73.9986729337556,40.58919554993967],[-73.99844325936868,40.59024010549443],[-73.99916761862079,40.59114913581567],[-73.99948304872375,40.592969199897595],[-74.00105748445719,40.59253700506226],[-74.00282412793432,40.59526159829329],[-74.00552621986125,40.5975391540707],[-74.0092172390491,40.59984404515234],[-74.01236981602699,40.60134925711616],[-74.01478363716747,40.6020821029708],[-74.0191356390289,40.602612754504946],[-74.02101662991083,40.60355555316097],[-74.02930882862769,40.604599064564454],[-74.03270681479886,40.60633106603806],[-74.03495830824205,40.60865948912371],[-74.03611335501431,40.60939472941209],[-74.03728195455994,40.611618849999246],[-74.03920557647396,40.613439512733684],[-74.04047612021517,40.61562526366408],[-74.04161740773601,40.62056271454572],[-74.04187652595631,40.6245193382939],[-74.04103311928144,40.63028243947477],[-74.03672484374883,40.63914119020668],[-74.0357127615073,40.64064015404648],[-74.0367030786914,40.64168561987398],[-74.03407329294261,40.644313932963925],[-74.0328429201386,40.64356371035059],[-74.03189708494338,40.64388934936976],[-74.03051830863419,40.64527442520901],[-74.02820569545007,40.64401598289028],[-74.0260494840032,40.64626135032617],[-74.02974078211074,40.6484860262104],[-74.02938990486619,40.648804055113885],[-74.02571758804812,40.64661549229094],[-74.0241456605057,40.64761510125985],[-74.02553864578044,40.64978215934805],[-74.02491122849038,40.65110628579329],[-74.02089862870834,40.65124727521829],[-74.02195900090598,40.65222278197075],[-74.0211867002789,40.65283983689534],[-74.02114963484493,40.65421075521156],[-74.01787407223816,40.65406150233084],[-74.01639437533777,40.65562064285076],[-74.01910843803122,40.65736888430346],[-74.01860569460999,40.65784587402284],[-74.01585370056827,40.65621324055539],[-74.01442130484553,40.65760802195137],[-74.01745803087904,40.65945019738672],[-74.01554165389007,40.66075835547611],[-74.01183862056553,40.65891283727472],[-74.0111075041031,40.65970627458062],[-74.01402247678024,40.66152974744006],[-74.01265358811494,40.66198165403757],[-74.0085995696829,40.65952092309824],[-74.00745858163896,40.66055847620989],[-74.0103720129723,40.66239888023254],[-74.00868371591301,40.66337201284023],[-74.00622698247925,40.66278782786097],[-74.00486193792659,40.66506482193818],[-74.00113519509661,40.662901724055104],[-73.99953152609916,40.66439748593692],[-74.00292463516388,40.66646231216338],[-74.00068774868765,40.66754595189878],[-74.00030337808883,40.66871689249705],[-74.00221506816546,40.668578637441215],[-74.00289483876949,40.66734846594938],[-74.00600183319813,40.667890361928016],[-74.00475388692325,40.67072135894501],[-74.00543926529352,40.67092146823844],[-74.00661572118399,40.668623156272005],[-74.00985411855626,40.668523628335386],[-74.01154017543331,40.66508591975665],[-74.0157487288266,40.66456833629161],[-74.01690267361069,40.66484660233887],[-74.0178871914939,40.66585046628535],[-74.01857605010876,40.67039241386994],[-74.01751037086694,40.67103453098412],[-74.01668768368887,40.66543706726947],[-74.01227967872792,40.66573241415885],[-74.01087664028975,40.66860161576353],[-74.01162527521356,40.67058102827584],[-74.01427407257732,40.671379299181794],[-74.01817618274659,40.67446417703668],[-74.0179768500939,40.67656791620602],[-74.01976925613235,40.676613224917254],[-74.01843040661619,40.677908321864855],[-74.01928128102031,40.67964814059537],[-74.01520082279144,40.68197941993064],[-74.01282000332847,40.68362241649735],[-74.01213481688791,40.68290592802511],[-74.01410549647974,40.681712519375466],[-74.01301835422105,40.68041237401431],[-74.00967108558883,40.683268727715024],[-74.0107731233938,40.684358615540894],[-74.01193259977079,40.6838877491549],[-74.0081641459391,40.686174717161464],[-74.005629863304,40.686784206043626],[-74.0050037331507,40.68760598489827],[-74.00459270521772,40.68821522298657],[-74.0038203891973,40.68892964419672],[-74.0034092162452,40.68961326116011],[-74.00297565436566,40.69042657592068],[-74.00069905841879,40.69061185791646],[-74.00196938526081,40.6918432083175],[-74.00174362045013,40.69240674970547],[-74.00127014902641,40.693296061673735],[-74.00095868416989,40.6940690835822],[-74.00026872377788,40.694965802577904],[-73.99952373903514,40.69657482604084],[-73.99947406820606,40.696704134461974],[-73.99887117097656,40.69715757679324],[-73.99837760685773,40.69806329564351],[-73.99802102725111,40.69876173657377],[-73.9974989831,40.699638869321234],[-73.99669768997464,40.70087697691705],[-73.99513826840686,40.70297411472284],[-73.99504592748325,40.70313183979956],[-73.99480038274869,40.70329195814199],[-73.99488239968474,40.703788025837426],[-73.99476934191567,40.703952894953545],[-73.99212703535068,40.704689642033514],[-73.99094755350794,40.704032442139194],[-73.99009111393444,40.70494346328906],[-73.98343806287949,40.70564409484786],[-73.98245898641551,40.70554241497239],[-73.98232944150563,40.705552033663906],[-73.97927983185282,40.70578948147171],[-73.97802067326656,40.70429096645614],[-73.97596096344837,40.70471550644053],[-73.97692749188352,40.70279782040038],[-73.97600587845446,40.70194613378177],[-73.97318676670898,40.70166980367368],[-73.97283512788735,40.70272874074396],[-73.96982556559531,40.700245070367984],[-73.96898517428966,40.70174708878653],[-73.97145657354827,40.70350871592456],[-73.97101963118513,40.703815613686345],[-73.97347629598468,40.70568628339133],[-73.97254880057818,40.706204490003756],[-73.970180755728,40.70492927056685],[-73.96929693837713,40.70508833122967],[-73.96929296348496,40.70709333109554],[-73.96994196698674,40.70930205335396],[-73.96850672619524,40.71310547188943],[-73.96884828603679,40.713227636528764],[-73.96659690332694,40.71796798088764],[-73.96656241897496,40.71801586680623],[-73.96587893532671,40.7187550776864],[-73.96585847175177,40.718773228346464],[-73.96513713562288,40.720343594754176],[-73.96439765915919,40.720296735531775],[-73.9643509064015,40.72040403237191],[-73.96408769147868,40.72075552952225],[-73.96399793724463,40.720938438072736],[-73.96296566336959,40.72203447712268],[-73.96207271943857,40.72388030090551],[-73.96200744799015,40.723991901607775],[-73.96116366368418,40.72526460583092],[-73.9583307822691,40.724411700766154],[-73.95842611843923,40.72540053583213],[-73.96012497133243,40.72531963663691],[-73.96161518835936,40.725865563074045],[-73.9610168813666,40.72870444010174],[-73.96128261942172,40.7300610245075],[-73.96128450722306,40.73015906220399],[-73.96167446772442,40.73148125405532],[-73.96171289414661,40.73156611434746],[-73.96226340423296,40.7329155516235],[-73.96230391870556,40.7331136609822],[-73.9620903444991,40.734507997873614],[-73.95981583252669,40.73707273787126],[-73.95693002865116,40.738887073071524],[-73.95323299037705,40.738992683138186],[-73.95038748197699,40.73828483712567],[-73.94239443542429,40.735425749947524],[-73.94114746701952,40.73415292753756],[-73.93974607754154,40.73106547547206],[-73.9369312479987,40.72910809126555],[-73.93492926391872,40.72854391575297],[-73.9295802069088,40.72761282070866],[-73.92786431997047,40.725826679058294],[-73.92779650104077,40.7249256692162],[-73.92561470516623,40.72006166221244],[-73.92451999415132,40.71961273042421],[-73.92481555677264,40.718486835905985],[-73.92837930101501,40.71757836729007],[-73.92809688744703,40.71712903466929],[-73.92458407107215,40.71795024074147],[-73.92305500014334,40.71634266479336],[-73.92483287559027,40.71528291204133],[-73.92405909736993,40.71411156014749]]]]},"properties":{"boro_code":"3","boro_name":"Brooklyn","shape_area":"1937596652.24","shape_leng":"739911.53321"}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment