-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMedian-Market-Map.html
3615 lines (1925 loc) · 730 KB
/
Median-Market-Map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_41f14f158c85488984c27acd22b152fd {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/marslan390/BeautifyMarker/leaflet-beautify-marker-icon.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/marslan390/BeautifyMarker/leaflet-beautify-marker-icon.min.css"/>
</head>
<body>
<div class="folium-map" id="map_41f14f158c85488984c27acd22b152fd" ></div>
</body>
<script>
var map_41f14f158c85488984c27acd22b152fd = L.map(
"map_41f14f158c85488984c27acd22b152fd",
{
center: [40.75, -74.0],
crs: L.CRS.EPSG3857,
zoom: 11.4,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_f6e3d4bf7b984facbcc7e8b3b49fe1ad = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var tile_layer_1a33c0240e4b4bd8a7a471ca3d1c822c = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca href =\"http://cartodb.com/attributions\"\u003eattributions\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var choropleth_4c6c75a033694d349f08db2d4ef6051d = L.featureGroup(
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
function geo_json_41a593f44cad43149f59fdde9bfbbe68_styler(feature) {
switch(feature.id) {
case 1: case 2: case 3: case 6: case 44: case 55: case 56: case 74: case 78: case 87: case 89: case 90: case 91: case 95: case 98: case 99: case 105: case 109: case 112: case 113: case 114: case 115: case 117: case 118: case 120: case 121: case 122: case 126: case 127: case 132: case 139: case 140: case 147: case 148: case 149: case 150: case 154: case 156: case 171: case 188: case 189: case 190: case 191: case 202: case 203: case 238: case 257: case 258: case 259:
return {"color": "black", "fillColor": "#41b6c4", "fillOpacity": 0.9, "opacity": 0.5, "weight": 1};
case 20: case 84: case 88: case 110: case 158: case 195: case 196: case 197: case 204: case 205: case 206: case 209: case 210: case 211: case 213: case 214: case 215: case 216: case 217: case 218: case 219: case 222: case 223: case 226: case 228: case 230: case 236:
return {"color": "black", "fillColor": "#ffffcc", "fillOpacity": 0.9, "opacity": 0.5, "weight": 1};
case 30: case 34: case 41: case 46: case 48: case 53: case 58: case 59: case 61: case 62: case 63: case 66: case 67: case 68: case 71: case 72: case 75: case 77: case 79: case 81: case 92: case 123: case 133: case 144: case 160: case 187:
return {"color": "black", "fillColor": "#c7e9b4", "fillOpacity": 0.9, "opacity": 0.5, "weight": 1};
case 82: case 137: case 174: case 179: case 194: case 198: case 199: case 200: case 201: case 207: case 208: case 212: case 220: case 221: case 224: case 225: case 227: case 229: case 231: case 232: case 233: case 234: case 235: case 237: case 239: case 240: case 241: case 242: case 243: case 244: case 245: case 246: case 247: case 248: case 249: case 250: case 251: case 252: case 253: case 254: case 255: case 260:
return {"color": "black", "fillColor": "white", "fillOpacity": 0.9, "opacity": 0.5, "weight": 1};
case 129: case 261:
return {"color": "black", "fillColor": "#253494", "fillOpacity": 0.9, "opacity": 0.5, "weight": 1};
case 134: case 136: case 138: case 141: case 145: case 146: case 193:
return {"color": "black", "fillColor": "#2c7fb8", "fillOpacity": 0.9, "opacity": 0.5, "weight": 1};
default:
return {"color": "black", "fillColor": "#7fcdbb", "fillOpacity": 0.9, "opacity": 0.5, "weight": 1};
}
}
function geo_json_41a593f44cad43149f59fdde9bfbbe68_onEachFeature(feature, layer) {
layer.on({
});
};
var geo_json_41a593f44cad43149f59fdde9bfbbe68 = L.geoJson(null, {
onEachFeature: geo_json_41a593f44cad43149f59fdde9bfbbe68_onEachFeature,
style: geo_json_41a593f44cad43149f59fdde9bfbbe68_styler,
});
function geo_json_41a593f44cad43149f59fdde9bfbbe68_add (data) {
geo_json_41a593f44cad43149f59fdde9bfbbe68
.addData(data)
.addTo(choropleth_4c6c75a033694d349f08db2d4ef6051d);
}
geo_json_41a593f44cad43149f59fdde9bfbbe68_add({"features": [{"geometry": {"coordinates": [[[-73.86942457284175, 40.74915687096787], [-73.89507143240856, 40.74646547081214], [-73.89618737867819, 40.74850942518086], [-73.89583954185139, 40.748546875706005], [-73.89525242774396, 40.74830660945023], [-73.89654041085561, 40.750541998143575], [-73.89579868613828, 40.750619721332605], [-73.89652230661433, 40.75438879610902], [-73.87221855882477, 40.756943248067465], [-73.87167992356791, 40.75398717439602], [-73.87207046513889, 40.75386200705204], [-73.86942457284175, 40.74915687096787]]], "type": "Polygon"}, "id": 0, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11372", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 1, "PO_NAME": "Jackson Heights", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 20163283.8744, "Shape_Leng": 20624.6923165, "borough": "Queens", "postalCode": "11372"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.71068374074007, 40.75004039450917], [-73.70869392379947, 40.74875836557175], [-73.70713084684175, 40.749582740537946], [-73.70419967936361, 40.75016955256976], [-73.7021852869823, 40.74474188775384], [-73.70308721830735, 40.74454725735512], [-73.70098278625547, 40.73889569923034], [-73.71371033246908, 40.736174704865455], [-73.71567895968894, 40.73962914915626], [-73.71867075939582, 40.74631499057428], [-73.71966142935703, 40.748945236431474], [-73.72082889049311, 40.751173028173014], [-73.72117809110456, 40.75232189224561], [-73.72250622247415, 40.753358470814895], [-73.72270447144122, 40.75373371438336], [-73.72183610276068, 40.75486513130315], [-73.72109289651769, 40.7562813418113], [-73.71775341502477, 40.75534755942338], [-73.71730957335735, 40.75595782995615], [-73.71534601002345, 40.75550893330126], [-73.71553103019596, 40.75506458072391], [-73.71541781535772, 40.7549984440815], [-73.71509806179287, 40.75181177075926], [-73.71132911125308, 40.74947450816085], [-73.71068374074007, 40.75004039450917]]], "type": "Polygon"}, "id": 1, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11004", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 2, "PO_NAME": "Glen Oaks", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 22606526.9139, "Shape_Leng": 23002.8160385, "borough": "Queens", "postalCode": "11004"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.70098278625547, 40.73889569923034], [-73.70308721830735, 40.74454725735512], [-73.7021852869823, 40.74474188775384], [-73.70419967936361, 40.75016955256976], [-73.70713084684175, 40.749582740537946], [-73.70869392379947, 40.74875836557175], [-73.71068374074007, 40.75004039450917], [-73.70749973637017, 40.752691975668995], [-73.70477547538239, 40.755270233046005], [-73.70093102990265, 40.752817486343396], [-73.69974445953216, 40.74239262246761], [-73.6996045181533, 40.739594699565956], [-73.70098278625547, 40.73889569923034]]], "type": "Polygon"}, "id": 2, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11040", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 3, "PO_NAME": "New Hyde Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 6269333.41234, "Shape_Leng": 15749.1615105, "borough": "Queens", "postalCode": "11040"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.72270447144122, 40.75373371438336], [-73.72250622247415, 40.753358470814895], [-73.72117809110456, 40.75232189224561], [-73.72082889049311, 40.751173028173014], [-73.71966142935703, 40.748945236431474], [-73.71867075939582, 40.74631499057428], [-73.71567895968894, 40.73962914915626], [-73.714741836008, 40.73782936804115], [-73.71147803740357, 40.73250141963972], [-73.7107482581903, 40.73059313121937], [-73.71050499970065, 40.72736866972774], [-73.70905586762616, 40.72664415949807], [-73.71570591094792, 40.725801511420826], [-73.71727651695193, 40.7254628718624], [-73.72620950410881, 40.72309859227402], [-73.72684845040733, 40.72249645408755], [-73.72761998125254, 40.72225436873579], [-73.72796736491678, 40.723155272416086], [-73.72816232599695, 40.72308416455733], [-73.72836413908203, 40.72361437521388], [-73.72990511102304, 40.723272516554005], [-73.73160708050406, 40.72776903839352], [-73.73072681361487, 40.73026709420813], [-73.732819249103, 40.73041874553513], [-73.73291096372743, 40.73095235983029], [-73.73193257090016, 40.73092367158476], [-73.73116645389476, 40.73268134201055], [-73.73544649938972, 40.73346163008545], [-73.73481044382278, 40.73516320022872], [-73.73452836532343, 40.735443057983424], [-73.7337729841358, 40.73889930362767], [-73.7356758191865, 40.738128079721065], [-73.74168681424477, 40.73682340115314], [-73.7391559027536, 40.73977681751699], [-73.73793557936861, 40.74062167762755], [-73.7337734219063, 40.74286441525263], [-73.73124540301161, 40.744881626424565], [-73.7300508313049, 40.74620598219407], [-73.72912929626756, 40.7476056255959], [-73.72827633138401, 40.74991386618404], [-73.72763949821193, 40.75092126949652], [-73.72690383377657, 40.75167704941076], [-73.7242148710979, 40.75333168590093], [-73.72304547223106, 40.75429983888577], [-73.72270447144122, 40.75373371438336]]], "type": "Polygon"}, "id": 3, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11426", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 4, "PO_NAME": "Bellerose", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 49418364.0577, "Shape_Leng": 35932.8106387, "borough": "Queens", "postalCode": "11426"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81088634744755, 40.72717187575918], [-73.81115638093544, 40.7283054434788], [-73.81087857737191, 40.73044076111908], [-73.81039283603155, 40.73832811256814], [-73.81497231430079, 40.73857247354962], [-73.8150962962076, 40.739233762735516], [-73.81320839394928, 40.738986680797105], [-73.81035511920078, 40.738871386398905], [-73.81013261190412, 40.74229508206978], [-73.81430884374046, 40.7429737987062], [-73.81389548566275, 40.74418396197773], [-73.8136736120338, 40.745555884799515], [-73.81416170432934, 40.7461386017966], [-73.80750598164491, 40.75013661137004], [-73.80287800596291, 40.74978342309386], [-73.8028109438988, 40.74908548009404], [-73.79802487205751, 40.7487118822742], [-73.79797926874357, 40.748983076885274], [-73.79644616834038, 40.74985924250121], [-73.79481030715543, 40.74864724248131], [-73.79481559808444, 40.74842181497499], [-73.79230780156934, 40.7483284193629], [-73.79229827925938, 40.74847044303219], [-73.77980638646336, 40.75189503017791], [-73.7755961969901, 40.74318890426944], [-73.77440965013578, 40.74048227369436], [-73.77286130336375, 40.73627593203528], [-73.77952303006592, 40.73428105057787], [-73.78834468361556, 40.73131879024068], [-73.80041315910451, 40.72837218185274], [-73.81088634744755, 40.72717187575918]]], "type": "Polygon"}, "id": 4, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11365", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 5, "PO_NAME": "Fresh Meadows", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 69385865.5943, "Shape_Leng": 38693.5656755, "borough": "Queens", "postalCode": "11365"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88722098467157, 40.72752618766134], [-73.88722820346595, 40.72893322365565], [-73.88751964147262, 40.73007577864434], [-73.88755961452502, 40.73019707395208], [-73.88805974921776, 40.73008724345065], [-73.88852298580434, 40.73453096063918], [-73.88938436378544, 40.73585658165053], [-73.89138531790981, 40.736008503768744], [-73.88869109732114, 40.736552562299146], [-73.89013809417283, 40.73919039584173], [-73.88974163145944, 40.73911504335457], [-73.88966322011572, 40.73966174232974], [-73.89017719133307, 40.740367161130344], [-73.89027618359668, 40.740758286625166], [-73.8903991785681, 40.74074747877867], [-73.89143129977275, 40.746844660419306], [-73.86942457284175, 40.74915687096787], [-73.86855911982133, 40.747722340408345], [-73.86747113661455, 40.743213496737205], [-73.86752276049552, 40.74077114153718], [-73.86648010456265, 40.73821098897686], [-73.86554850561377, 40.738425756112804], [-73.86492970017666, 40.73689485175653], [-73.86582282944016, 40.736629809007816], [-73.86451198956482, 40.73407164841783], [-73.86822096038215, 40.73285975284032], [-73.86786146448776, 40.732697479762386], [-73.86866558079195, 40.73221533231551], [-73.86992762206906, 40.73034311103547], [-73.8715037432334, 40.729566646826726], [-73.8714118417038, 40.72915893939594], [-73.87160566578396, 40.729112059029546], [-73.87421429612802, 40.73006125209317], [-73.8740460157219, 40.73036407154951], [-73.87450966371898, 40.73061869880521], [-73.87695206596906, 40.72983334390367], [-73.87950506985118, 40.72878398756378], [-73.88109300589315, 40.72849258549084], [-73.88520617260853, 40.72810152589841], [-73.88722098467157, 40.72752618766134]]], "type": "Polygon"}, "id": 5, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11373", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 6, "PO_NAME": "Elmhurst", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 42659399.8982, "Shape_Leng": 33755.870988, "borough": "Queens", "postalCode": "11373"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.70098278625547, 40.73889569923034], [-73.6996045181533, 40.739594699565956], [-73.69988457795381, 40.7383741796718], [-73.70085543678636, 40.73587601293539], [-73.70655433754366, 40.727465005527854], [-73.70905586762616, 40.72664415949807], [-73.71047877013949, 40.7273329200212], [-73.7107482581903, 40.73059313121937], [-73.71147803740357, 40.73250141963972], [-73.71371033246908, 40.736174704865455], [-73.70098278625547, 40.73889569923034]]], "type": "Polygon"}, "id": 6, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11001", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 7, "PO_NAME": "Floral Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 9155180.26263, "Shape_Leng": 13594.9245493, "borough": "Queens", "postalCode": "11001"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8562474640478, 40.7367227854824], [-73.85204757285209, 40.737682072495076], [-73.8518276243295, 40.73726308011072], [-73.85133905665742, 40.737401235090374], [-73.85003821245904, 40.73780618589446], [-73.84557652842895, 40.73985379274196], [-73.84499322324764, 40.735759248696155], [-73.84414209694592, 40.73373151627504], [-73.84266375345989, 40.73163143828195], [-73.84047653383794, 40.72965476436148], [-73.83917827504315, 40.7280441124345], [-73.83683096310948, 40.72360293637922], [-73.8349526347774, 40.72103987666236], [-73.83265130466872, 40.71851582785142], [-73.83130160259337, 40.71737570949788], [-73.82982582052485, 40.71674399877134], [-73.82703051189961, 40.715966173441835], [-73.826059565848, 40.71539860277048], [-73.83079050446555, 40.71419918262998], [-73.83110716179297, 40.71436797674794], [-73.83161238302384, 40.71421350097403], [-73.83611475734719, 40.711825159426965], [-73.83590072158415, 40.71164139044931], [-73.83679454887908, 40.71078049260416], [-73.83755319770243, 40.710714920557464], [-73.83977727129911, 40.70988060339857], [-73.84295309927836, 40.708381070038115], [-73.84484515183327, 40.70807421160143], [-73.84899408100613, 40.70788948767476], [-73.85020974498151, 40.70753151846665], [-73.85108303705115, 40.70700735736896], [-73.8528170570701, 40.70737811335201], [-73.85618301210704, 40.70631873300626], [-73.85667371274072, 40.70745383048999], [-73.85829679390149, 40.7196061063076], [-73.85665221822215, 40.719868893587744], [-73.85726816108651, 40.72150392480519], [-73.8539545710824, 40.72675259273689], [-73.853486850262, 40.72718211639958], [-73.85177766186219, 40.727697171091506], [-73.85166931363642, 40.72834581932929], [-73.85401087192687, 40.73265476104367], [-73.85434400063964, 40.73297013875461], [-73.85470034726998, 40.73282936655362], [-73.8564480269758, 40.73625356975941], [-73.8562474640478, 40.7367227854824]]], "type": "Polygon"}, "id": 7, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11375", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 8, "PO_NAME": "Forest Hills", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 55587771.835, "Shape_Leng": 36277.0768394, "borough": "Queens", "postalCode": "11375"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.74168681424477, 40.73682340115314], [-73.7356758191865, 40.738128079721065], [-73.7337729841358, 40.73889930362767], [-73.73452836532343, 40.735443057983424], [-73.73481044382278, 40.73516320022872], [-73.73544649938972, 40.73346163008545], [-73.73116645389476, 40.73268134201055], [-73.73193257090016, 40.73092367158476], [-73.73291684255662, 40.73088319428932], [-73.73277501137521, 40.73033327158266], [-73.73072681361487, 40.73026709420813], [-73.73123513008417, 40.72894738980239], [-73.73306424165612, 40.72935848096001], [-73.73361727223616, 40.7279335870809], [-73.73840173923826, 40.72901154584864], [-73.7385674270549, 40.72861504100692], [-73.7473907917925, 40.72319337579943], [-73.74866938537846, 40.72257644531277], [-73.75186789084994, 40.72046359745059], [-73.75725670910693, 40.71813862613275], [-73.7604863749355, 40.72224327057849], [-73.76162389387558, 40.72304674724613], [-73.76465842000448, 40.72457186267059], [-73.76536242550831, 40.72516174198194], [-73.77010678596534, 40.73177920848852], [-73.74771800971857, 40.73556432453737], [-73.74168681424477, 40.73682340115314]]], "type": "Polygon"}, "id": 8, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11427", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 9, "PO_NAME": "Queens Village", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 39568339.2748, "Shape_Leng": 31231.9685929, "borough": "Queens", "postalCode": "11427"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.86451198956482, 40.73407164841783], [-73.8587236016422, 40.73579746921751], [-73.85881661433109, 40.73595128395281], [-73.8562474640478, 40.7367227854824], [-73.8564480269758, 40.73625356975941], [-73.85470034726998, 40.73282936655362], [-73.85434400063964, 40.73297013875461], [-73.85401087192687, 40.73265476104367], [-73.85167265219735, 40.7283897505072], [-73.85177766186219, 40.727697171091506], [-73.853486850262, 40.72718211639958], [-73.8539545710824, 40.72675259273689], [-73.85726816108651, 40.72150392480519], [-73.85665221822215, 40.719868893587744], [-73.85829679390149, 40.7196061063076], [-73.85727919041909, 40.711460502200886], [-73.86207871371592, 40.712201079226716], [-73.85966108630443, 40.71338939117751], [-73.85968470106486, 40.71413086701583], [-73.85993360045074, 40.71479689848398], [-73.86412296358505, 40.718844827327786], [-73.8692926917403, 40.72443594905886], [-73.87101842164016, 40.72797897402295], [-73.8718154036568, 40.7267938439977], [-73.8732421022406, 40.7279117286639], [-73.8714118417038, 40.72915893939594], [-73.8715037432334, 40.729566646826726], [-73.8698684542429, 40.730395902288244], [-73.86866558079195, 40.73221533231551], [-73.86786146448776, 40.732697479762386], [-73.86822096038215, 40.73285975284032], [-73.86451198956482, 40.73407164841783]]], "type": "Polygon"}, "id": 9, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11374", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 10, "PO_NAME": "Rego Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 25203458.8689, "Shape_Leng": 26323.9943926, "borough": "Queens", "postalCode": "11374"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.77010678596534, 40.73177920848852], [-73.77509739814768, 40.7308738281676], [-73.78138991327356, 40.72914677254683], [-73.7928751206816, 40.725440177600376], [-73.80904031652176, 40.71991162363268], [-73.81062582389238, 40.72441986291471], [-73.81068497965856, 40.726666854377925], [-73.81088634744755, 40.72717187575918], [-73.80041315910451, 40.72837218185274], [-73.78834468361556, 40.73131879024068], [-73.77952303006592, 40.73428105057787], [-73.77286130336375, 40.73627593203528], [-73.77177451678784, 40.734216917409036], [-73.77010678596534, 40.73177920848852]]], "type": "Polygon"}, "id": 10, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11366", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 11, "PO_NAME": "Fresh Meadows", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 20358592.7502, "Shape_Leng": 27282.7368361, "borough": "Queens", "postalCode": "11366"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.77010678596534, 40.73177920848852], [-73.76536242550831, 40.72516174198194], [-73.76442161530252, 40.72443319387421], [-73.76139941962434, 40.72291316579468], [-73.75999685994591, 40.72175939982167], [-73.7538091927717, 40.71357595129091], [-73.75245963864944, 40.710316587834356], [-73.76455802383879, 40.707407671996265], [-73.76734431593259, 40.70663636799724], [-73.76725074978663, 40.70631257445275], [-73.77418061090145, 40.705086888427154], [-73.77582075240134, 40.705373931181384], [-73.77678174653668, 40.7077286930261], [-73.77810855871854, 40.70740321631149], [-73.77838449571763, 40.708050135086175], [-73.77937278708664, 40.707812178923575], [-73.781782727946, 40.713140016000715], [-73.77357134537847, 40.71512011445093], [-73.7768149945872, 40.72185729106325], [-73.77766918901239, 40.72271997219641], [-73.77932600544462, 40.7253977849658], [-73.78116054138326, 40.7292127846884], [-73.77509739814768, 40.7308738281676], [-73.77010678596534, 40.73177920848852]]], "type": "Polygon"}, "id": 11, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11423", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 12, "PO_NAME": "Hollis", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 45095032.1013, "Shape_Leng": 31339.8030169, "borough": "Queens", "postalCode": "11423"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.72774739596115, 40.72258480474807], [-73.72761998125254, 40.72225436873579], [-73.72843673615834, 40.7221225969783], [-73.72847847282661, 40.72076557418165], [-73.73216155240394, 40.720048769707375], [-73.73225273457344, 40.72037478772357], [-73.73331135328947, 40.71949545702178], [-73.73641328878371, 40.71806183406201], [-73.74934540167435, 40.71514537107509], [-73.75403679922151, 40.71387982458948], [-73.75725670910693, 40.71813862613275], [-73.75186789084994, 40.72046359745059], [-73.74866938537846, 40.72257644531277], [-73.7473907917925, 40.72319337579943], [-73.7385674270549, 40.72861504100692], [-73.73840173923826, 40.72901154584864], [-73.73361727223616, 40.7279335870809], [-73.73306424165612, 40.72935848096001], [-73.73123513008417, 40.72894738980239], [-73.73159746166617, 40.72797916508612], [-73.73157640189716, 40.727618345273555], [-73.72990511102304, 40.723272516554005], [-73.72836413908203, 40.72361437521388], [-73.72816232599695, 40.72308416455733], [-73.72796736491678, 40.723155272416086], [-73.72774739596115, 40.72258480474807]]], "type": "Polygon"}, "id": 12, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11428", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 13, "PO_NAME": "Queens Village", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 21985773.4995, "Shape_Leng": 22515.6935821, "borough": "Queens", "postalCode": "11428"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80904031652176, 40.71991162363268], [-73.7928751206816, 40.725440177600376], [-73.78116054138326, 40.7292127846884], [-73.77932600544462, 40.7253977849658], [-73.77766918901239, 40.72271997219641], [-73.7768149945872, 40.72185729106325], [-73.77357134537847, 40.71512011445093], [-73.781782727946, 40.713140016000715], [-73.77968261813585, 40.70859580977126], [-73.78295240383041, 40.70797164647384], [-73.7864535711288, 40.70792415052076], [-73.78888968042826, 40.707421245952624], [-73.79272989814082, 40.706294549963744], [-73.8003947489124, 40.70327349177385], [-73.80444156154402, 40.70213161395166], [-73.8076218706839, 40.70873062063049], [-73.80889717080309, 40.710599322122626], [-73.80904606107171, 40.711200439165694], [-73.81010459837314, 40.71336996123842], [-73.81022118339017, 40.715706242281804], [-73.81043915237844, 40.71640557003522], [-73.81095196310157, 40.71670842075329], [-73.81071528564804, 40.716905211618574], [-73.81180420096081, 40.71767508321719], [-73.81211756400812, 40.71906222230593], [-73.80904031652176, 40.71991162363268]]], "type": "Polygon"}, "id": 13, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11432", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 14, "PO_NAME": "Jamaica", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 60177575.638, "Shape_Leng": 33123.9436723, "borough": "Queens", "postalCode": "11432"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.87190078471538, 40.726857864410285], [-73.8718154036568, 40.7267938439977], [-73.87101842164016, 40.72797897402295], [-73.8692926917403, 40.72443594905886], [-73.86301849023125, 40.71770790747894], [-73.86003789332914, 40.71493225693765], [-73.85968470106486, 40.71413086701583], [-73.85966108630443, 40.71338939117751], [-73.86487186925038, 40.710820659019404], [-73.86956283652766, 40.709462324773924], [-73.87250367865842, 40.70822738849878], [-73.8748868593597, 40.70700284313498], [-73.87622775301763, 40.70686901150781], [-73.87654150134686, 40.70739743758166], [-73.87742739436457, 40.70719863992166], [-73.87777181650725, 40.70688439873375], [-73.88598390240503, 40.70628222094159], [-73.90030953552922, 40.712685783380266], [-73.90059587229088, 40.712697404440746], [-73.90115752128105, 40.71462233690481], [-73.8856407533764, 40.72202158060076], [-73.8870806732453, 40.72385635484619], [-73.88722098467157, 40.72752618766134], [-73.88520617260853, 40.72810152589841], [-73.88109300589315, 40.72849258549084], [-73.87950506985118, 40.72878398756378], [-73.87695206596906, 40.72983334390367], [-73.87450966371898, 40.73061869880521], [-73.8740460157219, 40.73036407154951], [-73.87421429612802, 40.73006125209317], [-73.87160566578396, 40.729112059029546], [-73.8732421022406, 40.7279117286639], [-73.87190078471538, 40.726857864410285]]], "type": "Polygon"}, "id": 14, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11379", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 15, "PO_NAME": "Middle Village", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 57537331.4936, "Shape_Leng": 33527.9439425, "borough": "Queens", "postalCode": "11379"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.72847847282661, 40.72076557418165], [-73.72792678386251, 40.7191867494533], [-73.72582227861042, 40.710285375237675], [-73.72469152521592, 40.7083789111927], [-73.72464340442205, 40.70756221844852], [-73.72465774251077, 40.70580534020244], [-73.72790028819382, 40.70582612096106], [-73.72770742526588, 40.70156518678496], [-73.7410457668114, 40.70198081121858], [-73.74114340468176, 40.70180796881732], [-73.74345486572501, 40.70250646635589], [-73.74386175169798, 40.70281111915242], [-73.74864285047346, 40.701586957960494], [-73.75403679922151, 40.71387982458948], [-73.74934540167435, 40.71514537107509], [-73.73641328878371, 40.71806183406201], [-73.73331135328947, 40.71949545702178], [-73.73225273457344, 40.72037478772357], [-73.73216155240394, 40.720048769707375], [-73.72847847282661, 40.72076557418165]]], "type": "Polygon"}, "id": 15, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11429", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 16, "PO_NAME": "Queens Village", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 39559398.2844, "Shape_Leng": 26527.0760049, "borough": "Queens", "postalCode": "11429"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.826059565848, 40.71539860277048], [-73.8230557789411, 40.716152910103304], [-73.82111716197569, 40.716377742830474], [-73.81930468599842, 40.71713609623505], [-73.81211756400812, 40.71906222230593], [-73.81176680377307, 40.71754471888058], [-73.81071528564804, 40.716905211618574], [-73.81095196310157, 40.71670842075329], [-73.81043915237844, 40.71640557003522], [-73.81022118339017, 40.715706242281804], [-73.81018709635276, 40.71357927916944], [-73.80904606107171, 40.711200439165694], [-73.80889717080309, 40.710599322122626], [-73.8076218706839, 40.70873062063049], [-73.80389619384458, 40.7008993725262], [-73.80276782388765, 40.69910549924365], [-73.80229521756587, 40.69768840411615], [-73.80127985995802, 40.69558088358477], [-73.8008103127034, 40.694059330760254], [-73.79974841094464, 40.69334783427049], [-73.79844668384023, 40.692135478227115], [-73.79715343872049, 40.690406084826485], [-73.79595950279348, 40.68913215240943], [-73.79390841176428, 40.6863047080526], [-73.80584847668682, 40.682909659633836], [-73.80760673833726, 40.686462543295534], [-73.81484065451662, 40.6991091183377], [-73.81720361167378, 40.70402764710221], [-73.81755019461129, 40.70400235314819], [-73.81783466132116, 40.704746671096785], [-73.81942761488884, 40.707106606952436], [-73.82124201452346, 40.7102472879757], [-73.82085118303964, 40.71006420229487], [-73.82347995467133, 40.71238036186086], [-73.826059565848, 40.71539860277048]]], "type": "Polygon"}, "id": 16, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11435", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 17, "PO_NAME": "Jamaica", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 42105899.157, "Shape_Leng": 34403.7903626, "borough": "Queens", "postalCode": "11435"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.826059565848, 40.71539860277048], [-73.82347995467133, 40.71238036186086], [-73.82085118303964, 40.71006420229487], [-73.82124201452346, 40.7102472879757], [-73.81845942904549, 40.70566306966449], [-73.82007914401278, 40.70503093187788], [-73.82063186597746, 40.70584199266165], [-73.82202045126458, 40.7052123461417], [-73.82085937975927, 40.70426785064661], [-73.81972992822898, 40.70385563864692], [-73.8227081044926, 40.703624835946016], [-73.83152109065456, 40.70138964852981], [-73.8322766556474, 40.70086993997675], [-73.83498163141206, 40.70709751380889], [-73.83442827662316, 40.70779461754321], [-73.83392880332181, 40.7079858369295], [-73.83431088361742, 40.70896833719765], [-73.83481229677668, 40.709643375163765], [-73.8365544730811, 40.70868242879245], [-73.83714702640651, 40.707957064585884], [-73.83843024539483, 40.708443377491385], [-73.84160209420453, 40.70898389149643], [-73.84014091697934, 40.70972989761961], [-73.83755319770243, 40.710714920557464], [-73.83679454887908, 40.71078049260416], [-73.83590072158415, 40.71164139044931], [-73.83611475734719, 40.711825159426965], [-73.83161238302384, 40.71421350097403], [-73.83110716179297, 40.71436797674794], [-73.83079050446555, 40.71419918262998], [-73.826059565848, 40.71539860277048]]], "type": "Polygon"}, "id": 17, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11415", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 18, "PO_NAME": "Kew Gardens", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 16802279.5098, "Shape_Leng": 21074.6515709, "borough": "Queens", "postalCode": "11415"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.83714702640651, 40.707957064585884], [-73.8365544730811, 40.70868242879245], [-73.83481229677668, 40.709643375163765], [-73.8344106638521, 40.7091373854273], [-73.83392880332181, 40.7079858369295], [-73.83442827662316, 40.70779461754321], [-73.83498163141206, 40.70709751380889], [-73.8322766556474, 40.70086993997675], [-73.83152109065456, 40.70138964852981], [-73.8227081044926, 40.703624835946016], [-73.81972992822898, 40.70385563864692], [-73.82085937975927, 40.70426785064661], [-73.82202045126458, 40.7052123461417], [-73.82063186597746, 40.70584199266165], [-73.82007914401278, 40.70503093187788], [-73.81845942904549, 40.70566306966449], [-73.81783466132116, 40.704746671096785], [-73.81755019461129, 40.70400235314819], [-73.81720361167378, 40.70402764710221], [-73.81559544900317, 40.70052613371387], [-73.81375879865962, 40.69719873629525], [-73.8208531622528, 40.69534576807945], [-73.82109261575646, 40.69582472708243], [-73.82516713946724, 40.69466686769781], [-73.82784872578938, 40.6941113583469], [-73.84430243497147, 40.689443010406286], [-73.84740728150923, 40.69578913485859], [-73.84919824072988, 40.69826748778543], [-73.84502471807238, 40.69935940153569], [-73.84266041892232, 40.700706577737186], [-73.84156161610936, 40.70109933142779], [-73.83902977514548, 40.70302118352209], [-73.83717788541881, 40.70403409744282], [-73.83696236365265, 40.704212471294035], [-73.83813648748861, 40.70624923375432], [-73.83800894198143, 40.706695412446535], [-73.83714702640651, 40.707957064585884]]], "type": "Polygon"}, "id": 18, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11418", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 19, "PO_NAME": "Richmond Hill", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 32025130.9227, "Shape_Leng": 31854.3775413, "borough": "Queens", "postalCode": "11418"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.77968261813585, 40.70859580977126], [-73.77937278708664, 40.707812178923575], [-73.77838449571763, 40.708050135086175], [-73.77810855871854, 40.70740321631149], [-73.77678174653668, 40.7077286930261], [-73.77582075240134, 40.705373931181384], [-73.77507433873586, 40.70524182572291], [-73.77104358762898, 40.698489976377424], [-73.76929413274206, 40.69665031741423], [-73.77730132936047, 40.69224858683658], [-73.77728100347461, 40.692118404045004], [-73.77952524894295, 40.69154973256938], [-73.78666875870557, 40.68870434572968], [-73.7903846669113, 40.68775362952646], [-73.79390841176428, 40.6863047080526], [-73.79595950279348, 40.68913215240943], [-73.79715343872049, 40.690406084826485], [-73.79844668384023, 40.692135478227115], [-73.79974841094464, 40.69334783427049], [-73.8008103127034, 40.694059330760254], [-73.80127985995802, 40.69558088358477], [-73.80229521756587, 40.69768840411615], [-73.80276782388765, 40.69910549924365], [-73.80389619384458, 40.7008993725262], [-73.80444156154402, 40.70213161395166], [-73.8003947489124, 40.70327349177385], [-73.79272989814082, 40.706294549963744], [-73.78888968042826, 40.707421245952624], [-73.7864535711288, 40.70792415052076], [-73.78295240383041, 40.70797164647384], [-73.77968261813585, 40.70859580977126]]], "type": "Polygon"}, "id": 19, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11433", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 20, "PO_NAME": "Jamaica", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 47739432.5954, "Shape_Leng": 30603.7354116, "borough": "Queens", "postalCode": "11433"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80157425020164, 40.7012141075187], [-73.79887410491474, 40.7021201623279], [-73.79755496632269, 40.700196228626616], [-73.79874442746147, 40.69968363458535], [-73.80157425020164, 40.7012141075187]]], "type": "Polygon"}, "id": 20, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11451", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 21, "PO_NAME": "Jamaica", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 487599.726799, "Shape_Leng": 2961.55419657, "borough": "Queens", "postalCode": "11451"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93822325191614, 40.68389331961758], [-73.9438911382472, 40.68323950227984], [-73.94564165707669, 40.69203346946512], [-73.93413376737952, 40.693354363738536], [-73.93479698827541, 40.69673661671486], [-73.9352226413318, 40.69698656384033], [-73.93226765371799, 40.69731469442813], [-73.93324668417745, 40.69785561272368], [-73.93076911862683, 40.698911046453716], [-73.9305202888139, 40.698772303134724], [-73.92758773780713, 40.70176259998695], [-73.92308168149715, 40.699200696300665], [-73.92163115701487, 40.700675580244926], [-73.92087956801677, 40.700247366780346], [-73.92232800953694, 40.6987721198053], [-73.91848721378724, 40.69658602292844], [-73.91781911962863, 40.69620772862452], [-73.91636718052304, 40.697680904182626], [-73.90885282871758, 40.693404451309675], [-73.91604598744264, 40.68607208871235], [-73.91804606753695, 40.687213268776], [-73.9178493642506, 40.68623318739356], [-73.93822325191614, 40.68389331961758]]], "type": "Polygon"}, "id": 21, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11221", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 22, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 38580480.4348, "Shape_Leng": 30947.5369275, "borough": "Brooklyn", "postalCode": "11221"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84919824072988, 40.69826748778543], [-73.84740728150923, 40.69578913485859], [-73.84430243497147, 40.689443010406286], [-73.86629521074903, 40.68318884315373], [-73.86659847614406, 40.685269574606316], [-73.86747242588382, 40.68844673910506], [-73.86858392816171, 40.69386163086183], [-73.86911282484628, 40.69451576163624], [-73.85744446250214, 40.69691300931691], [-73.8527723809723, 40.697557136314416], [-73.85271294012661, 40.69819790086205], [-73.85303933131634, 40.698947337313456], [-73.85456630499097, 40.70059406815739], [-73.85420700353531, 40.70075574290403], [-73.85232212905822, 40.700457823892386], [-73.8513012262131, 40.700622067055996], [-73.84953641400419, 40.69825155904147], [-73.84919824072988, 40.69826748778543]]], "type": "Polygon"}, "id": 22, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11421", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 23, "PO_NAME": "Woodhaven", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 24314441.7637, "Shape_Leng": 22224.3558679, "borough": "Queens", "postalCode": "11421"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.83754416389462, 40.69136416111784], [-73.82812137692709, 40.69404159237283], [-73.82516713946724, 40.69466686769781], [-73.82109261575646, 40.69582472708243], [-73.8208531622528, 40.69534576807945], [-73.81375879865962, 40.69719873629525], [-73.80795430196733, 40.68707307560681], [-73.81047225781599, 40.68620063780065], [-73.81377910266194, 40.68463372807731], [-73.83174575719396, 40.67953731254707], [-73.83378994064, 40.683693236360114], [-73.83352413123767, 40.68380616668075], [-73.8350807023057, 40.68699557594333], [-73.83524646584192, 40.68732463108827], [-73.83551869361439, 40.68724711425137], [-73.83754416389462, 40.69136416111784]]], "type": "Polygon"}, "id": 23, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11419", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 24, "PO_NAME": "South Richmond Hill", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 31278858.1025, "Shape_Leng": 23068.8355802, "borough": "Queens", "postalCode": "11419"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.76989291145547, 40.696312071285504], [-73.7660509288279, 40.69215934616347], [-73.76631464735652, 40.69219712011101], [-73.76472740953423, 40.68925034571374], [-73.76435358629598, 40.68950705743541], [-73.76413848903412, 40.68908103895247], [-73.7632581084372, 40.687300758381056], [-73.76294870468476, 40.686008483928106], [-73.76066613020862, 40.68261232753338], [-73.75800951818678, 40.67923929798581], [-73.75633959649284, 40.6768029891564], [-73.76248598858109, 40.67419499777036], [-73.76367676113423, 40.674745543055536], [-73.7640471796422, 40.67284662756967], [-73.76225096750468, 40.67194316408541], [-73.76293350728149, 40.67181318328588], [-73.76259800538632, 40.67072248934451], [-73.76364442900365, 40.66716312260688], [-73.76675401262577, 40.66743301704917], [-73.76712953165834, 40.66669585117592], [-73.76353170855188, 40.66628734869849], [-73.76615879418449, 40.66008518402867], [-73.76652749536282, 40.66013566057246], [-73.76696130134769, 40.65847850149409], [-73.76612282266792, 40.65855444161281], [-73.76582365411717, 40.65630382164152], [-73.76735273146858, 40.65616014702816], [-73.7742369857504, 40.659898882253266], [-73.77982016637971, 40.662202348405415], [-73.78533458926533, 40.663855738275196], [-73.78769298397603, 40.66516337001803], [-73.78862852570371, 40.66526549252945], [-73.79014005284405, 40.6651607848353], [-73.78973881494697, 40.66551153084317], [-73.78953657312465, 40.66597641839044], [-73.78806328813032, 40.673236181364075], [-73.78944939025148, 40.674556015244896], [-73.79066256202633, 40.67667038353501], [-73.79186822104919, 40.679746826280315], [-73.79267323529173, 40.682516872416805], [-73.79256938797273, 40.68403029411098], [-73.79274952603632, 40.68474227787887], [-73.79390841176428, 40.6863047080526], [-73.7903846669113, 40.68775362952646], [-73.78666875870557, 40.68870434572968], [-73.77952524894295, 40.69154973256938], [-73.77728100347461, 40.692118404045004], [-73.77730132936047, 40.69224858683658], [-73.76989291145547, 40.696312071285504]]], "type": "Polygon"}, "id": 24, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11434", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 25, "PO_NAME": "Jamaica", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 87379704.1564, "Shape_Leng": 43829.8571706, "borough": "Queens", "postalCode": "11434"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94564165707669, 40.69203346946512], [-73.9438911382472, 40.68323950227984], [-73.93822325191614, 40.68389331961758], [-73.93739763108535, 40.67972992244106], [-73.94120864001327, 40.67993836946285], [-73.94160931928725, 40.67564320442343], [-73.94714602322288, 40.675944381095775], [-73.94773123647958, 40.6697047078836], [-73.9550528799369, 40.67010365000868], [-73.95797316022487, 40.6706572921663], [-73.95516306696332, 40.67852074712599], [-73.95713186042737, 40.688463152023246], [-73.95131871695537, 40.68913231750482], [-73.95175746790927, 40.69132933067435], [-73.94564165707669, 40.69203346946512]]], "type": "Polygon"}, "id": 25, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11216", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 26, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 26478229.2634, "Shape_Leng": 26472.7710701, "borough": "Brooklyn", "postalCode": "11216"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84430243497147, 40.689443010406286], [-73.83754416389462, 40.69136416111784], [-73.83551869361439, 40.68724711425137], [-73.83524646584192, 40.68732463108827], [-73.83426544717621, 40.68532735819576], [-73.84680064291166, 40.6818350215038], [-73.8539238905089, 40.67968616983886], [-73.86330275202471, 40.6791673971059], [-73.86410096028297, 40.68237286610314], [-73.86602666577242, 40.681918071472445], [-73.86629521074903, 40.68318884315373], [-73.84430243497147, 40.689443010406286]]], "type": "Polygon"}, "id": 26, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11416", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 27, "PO_NAME": "Ozone Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 18854849.8011, "Shape_Leng": 21630.6754842, "borough": "Queens", "postalCode": "11416"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93822325191614, 40.68389331961758], [-73.9178493642506, 40.68623318739356], [-73.91804606753695, 40.687213268776], [-73.9034668872538, 40.67889653817026], [-73.90329155804092, 40.67786792438706], [-73.90346256333866, 40.676015806333304], [-73.90240783422718, 40.67587541049135], [-73.90438871964855, 40.675171370389066], [-73.925653595542, 40.66582990624871], [-73.92580501111077, 40.666456157208], [-73.92499590519674, 40.67473589594239], [-73.9277614346639, 40.67488742035348], [-73.92768791018021, 40.675662884318925], [-73.93045708472673, 40.67581876680987], [-73.93020074773672, 40.67804022252579], [-73.92905727071383, 40.67927645406513], [-73.93739763108535, 40.67972992244106], [-73.93822325191614, 40.68389331961758]]], "type": "Polygon"}, "id": 27, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11233", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 28, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 37871693.6822, "Shape_Leng": 30234.1569135, "borough": "Brooklyn", "postalCode": "11233"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80584847668682, 40.682909659633836], [-73.79390841176428, 40.6863047080526], [-73.79274952603632, 40.68474227787887], [-73.79256938797273, 40.68403029411098], [-73.79267323529173, 40.682516872416805], [-73.79186822104919, 40.679746826280315], [-73.79066256202633, 40.67667038353501], [-73.78944939025148, 40.674556015244896], [-73.78806328813032, 40.673236181364075], [-73.78940998274673, 40.66684117788391], [-73.79306203598217, 40.66708722431805], [-73.79737169285058, 40.66694145487523], [-73.79904101362999, 40.66653031762192], [-73.80166295601472, 40.66675904203224], [-73.80139536151023, 40.66798938408746], [-73.80121822627503, 40.6702247271593], [-73.80126524855895, 40.6723031427069], [-73.80146959096764, 40.67346453262842], [-73.80183075187054, 40.674541211315216], [-73.80584847668682, 40.682909659633836]]], "type": "Polygon"}, "id": 28, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11436", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 29, "PO_NAME": "Jamaica", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 22699295.4596, "Shape_Leng": 20579.4168526, "borough": "Queens", "postalCode": "11436"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93739763108535, 40.67972992244106], [-73.92905727071383, 40.67927645406513], [-73.93020074773672, 40.67804022252579], [-73.93045708472673, 40.67581876680987], [-73.92768791018021, 40.675662884318925], [-73.9277614346639, 40.67488742035348], [-73.92499590519674, 40.67473589594239], [-73.92580501111077, 40.666456157208], [-73.925653595542, 40.66582990624871], [-73.93065206871213, 40.66363834202987], [-73.93726377174885, 40.66319183016009], [-73.93715846706962, 40.66375261786932], [-73.94269628450726, 40.66405515298856], [-73.94252842813368, 40.66583793996203], [-73.94806707556559, 40.666138917330244], [-73.94714602322288, 40.675944381095775], [-73.94160931928725, 40.67564320442343], [-73.94120864001327, 40.67993836946285], [-73.93739763108535, 40.67972992244106]]], "type": "Polygon"}, "id": 29, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11213", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 30, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 29631004.4378, "Shape_Leng": 23899.4422903, "borough": "Brooklyn", "postalCode": "11213"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9029413249695, 40.670840109090534], [-73.90222652406146, 40.66833055629683], [-73.9019226438036, 40.66837507399539], [-73.90072246594312, 40.6637786795063], [-73.90091625191538, 40.66373345964472], [-73.89946353296122, 40.6586827358688], [-73.89982259690147, 40.65729128796997], [-73.90044831154252, 40.657252107602595], [-73.90127968809493, 40.65643865647322], [-73.90317307067548, 40.655301535483545], [-73.91088756724415, 40.6541599129303], [-73.92172993981653, 40.65438234063733], [-73.93153753823071, 40.663236530701454], [-73.90347422563424, 40.6755067025594], [-73.90325835602846, 40.6733963820095], [-73.90361711807671, 40.67334411191762], [-73.9029413249695, 40.670840109090534]]], "type": "Polygon"}, "id": 30, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11212", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 31, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 41972104.0712, "Shape_Leng": 26621.8415776, "borough": "Brooklyn", "postalCode": "11212"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95797316022487, 40.6706572921663], [-73.9550528799369, 40.67010365000868], [-73.94773123647958, 40.6697047078836], [-73.94806707556559, 40.666138917330244], [-73.94252842813368, 40.66583793996203], [-73.94284801518143, 40.6628462862167], [-73.94261167347526, 40.660610358981], [-73.94767622887619, 40.66029734846489], [-73.94726366612446, 40.65643745220924], [-73.95986102879979, 40.65563480411632], [-73.9601362489043, 40.65676264245618], [-73.96122919084279, 40.65660018818193], [-73.96151592638081, 40.65501917201667], [-73.96190027949535, 40.65487097940547], [-73.9630795129685, 40.662177942333905], [-73.96290210068032, 40.66260893990329], [-73.96238231429763, 40.66306545621909], [-73.96246890604836, 40.66318762962603], [-73.96095595240475, 40.663285076107506], [-73.96262134431458, 40.67162934117619], [-73.95797316022487, 40.6706572921663]]], "type": "Polygon"}, "id": 31, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11225", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 32, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23698630.1254, "Shape_Leng": 23346.0765361, "borough": "Brooklyn", "postalCode": "11225"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97208109550313, 40.65059692046753], [-73.97139630881345, 40.64825780804898], [-73.96790947799963, 40.64959939325483], [-73.96579195983877, 40.63844085193084], [-73.96492546646446, 40.63885058896998], [-73.96451268712488, 40.63668758541607], [-73.97812994415192, 40.63029503149333], [-73.97890379847321, 40.63435353923025], [-73.99192812110876, 40.642204924430835], [-73.98828876336732, 40.64459558805291], [-73.98180533707773, 40.64712781381599], [-73.98029115035374, 40.64729718402955], [-73.98179567724827, 40.65524611278827], [-73.97951266200195, 40.65747889001511], [-73.97730806733415, 40.65614941060246], [-73.97515737918074, 40.658722816086126], [-73.97448234241904, 40.65833946694913], [-73.97421783050856, 40.65793528217479], [-73.97232900815814, 40.65144490221918], [-73.97266970894334, 40.651245134552916], [-73.97272935887135, 40.65092342084144], [-73.97250808288857, 40.65067626526362], [-73.97208109550313, 40.65059692046753]]], "type": "Polygon"}, "id": 32, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11218", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 33, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 36868798.99, "Shape_Leng": 30622.7657555, "borough": "Brooklyn", "postalCode": "11218"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96190027949535, 40.65487097940547], [-73.96151592638081, 40.65501917201667], [-73.96122919084279, 40.65660018818193], [-73.9601362489043, 40.65676264245618], [-73.95986102879979, 40.65563480411632], [-73.94726366612446, 40.65643745220924], [-73.94537271307922, 40.63878697828872], [-73.95129131136085, 40.63841947128971], [-73.9536000492334, 40.63842236218583], [-73.95374260369759, 40.638566135216195], [-73.96310481704207, 40.634065122565005], [-73.96334864739849, 40.6355180944865], [-73.96421566721372, 40.63510005396147], [-73.96492546646446, 40.63885058896998], [-73.96579195983877, 40.63844085193084], [-73.96790947799963, 40.64959939325483], [-73.97139630881345, 40.64825780804898], [-73.97208109550313, 40.65059692046753], [-73.97172657558002, 40.650761038724966], [-73.97162157042683, 40.651080782115805], [-73.96190027949535, 40.65487097940547]]], "type": "Polygon"}, "id": 33, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11226", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 34, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 39408598.2793, "Shape_Leng": 28635.8075296, "borough": "Brooklyn", "postalCode": "11226"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98905871482322, 40.64411926279492], [-73.99192812110876, 40.642204924430835], [-73.98084988173551, 40.63551567095208], [-73.99728484943167, 40.619711371605604], [-74.0127027038527, 40.62902377484902], [-74.0085370417825, 40.63302818228981], [-74.01074219077246, 40.63435656484039], [-74.01016057415103, 40.63491236043647], [-74.00796078837203, 40.633583922314365], [-73.99392737407472, 40.64706654008273], [-73.98905871482322, 40.64411926279492]]], "type": "Polygon"}, "id": 34, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11219", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 35, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 42002738.4672, "Shape_Leng": 29464.1953052, "borough": "Brooklyn", "postalCode": "11219"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95839960006599, 40.63632695865279], [-73.95374260369759, 40.638566135216195], [-73.9536000492334, 40.63842236218583], [-73.95129131136085, 40.63841947128971], [-73.93873124101145, 40.639200188016986], [-73.9384801990423, 40.63686200243636], [-73.93560658290333, 40.63703792051617], [-73.93535984966374, 40.634767329201296], [-73.93439440236229, 40.634826814623445], [-73.93344820426077, 40.62570402034464], [-73.93541082346937, 40.623955319903295], [-73.93604736973495, 40.62274048204619], [-73.93679641695995, 40.62232803468208], [-73.93957628395194, 40.62139021896527], [-73.94035040986468, 40.620918587477675], [-73.94084243385109, 40.620410496945716], [-73.94159170136001, 40.62017008536208], [-73.94172642637463, 40.62002300145711], [-73.94163043242698, 40.61946207606016], [-73.94395779725122, 40.61681632439447], [-73.94573690879447, 40.61536342732896], [-73.94752003052731, 40.61416131213138], [-73.95026514745597, 40.61392437001534], [-73.94978379491096, 40.61137176824241], [-73.95359888725399, 40.610949883461515], [-73.95839960006599, 40.63632695865279]]], "type": "Polygon"}, "id": 35, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11210", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 36, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 47887022.9918, "Shape_Leng": 29974.8725033, "borough": "Brooklyn", "postalCode": "11210"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96451268712488, 40.63668758541607], [-73.96421566721372, 40.63510005396147], [-73.96334864739849, 40.6355180944865], [-73.96310481704207, 40.634065122565005], [-73.95839960006599, 40.63632695865279], [-73.95359888725399, 40.610949883461515], [-73.97299433943527, 40.60881415956795], [-73.97348373540866, 40.61137108162478], [-73.97451543985203, 40.61125681731789], [-73.97489294774083, 40.613186383257485], [-73.97548096670128, 40.61631194203997], [-73.974443276481, 40.61642166510955], [-73.97535472700088, 40.621259868717], [-73.9758013195567, 40.62359356368572], [-73.97683464430139, 40.62348106203927], [-73.97710955238331, 40.62494830656584], [-73.97624916157079, 40.6259048930869], [-73.9765777562528, 40.62757320953932], [-73.97678761072613, 40.627539402462226], [-73.97986147145416, 40.629450311086416], [-73.96451268712488, 40.63668758541607]]], "type": "Polygon"}, "id": 36, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11230", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 37, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 49926703.3932, "Shape_Leng": 31794.6943738, "borough": "Brooklyn", "postalCode": "11230"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9810838744444, 40.63529018910907], [-73.98084988173551, 40.63551567095208], [-73.97890379847321, 40.63435353923025], [-73.97812994415192, 40.63029503149333], [-73.97986147145416, 40.629450311086416], [-73.97678761072613, 40.627539402462226], [-73.9765777562528, 40.62757320953932], [-73.97624916157079, 40.6259048930869], [-73.97710955238331, 40.62494830656584], [-73.97683464430139, 40.62348106203927], [-73.9758013195567, 40.62359356368572], [-73.97535472700088, 40.621259868717], [-73.974443276481, 40.61642166510955], [-73.97548096670128, 40.61631194203997], [-73.97489294774083, 40.613186383257485], [-73.97451543985203, 40.61125681731789], [-73.97348373540866, 40.61137108162478], [-73.97299433943527, 40.60881415956795], [-73.98842267652775, 40.60711916956801], [-73.98733916867984, 40.60816830796771], [-74.0008240121102, 40.61631365079717], [-73.9810838744444, 40.63529018910907]]], "type": "Polygon"}, "id": 37, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11204", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 38, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 43555184.6142, "Shape_Leng": 30324.5674873, "borough": "Brooklyn", "postalCode": "11204"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88191900140626, 40.90666598855432], [-73.8779026157511, 40.90555223733508], [-73.87887640354874, 40.89974193605286], [-73.87970917572788, 40.896954339034224], [-73.88040217722113, 40.893153470858806], [-73.88020057643489, 40.892138712609864], [-73.87914317736228, 40.89022914677019], [-73.87811697005665, 40.88788004091919], [-73.87801974365854, 40.88708955510772], [-73.8812442181108, 40.88270965825265], [-73.8826554885705, 40.8833788867925], [-73.88423846440429, 40.883190401513204], [-73.88687705568861, 40.884380391834114], [-73.88764926715668, 40.88426749204419], [-73.89441962053094, 40.88562359900235], [-73.89470019189461, 40.88546741107287], [-73.89509161932575, 40.88565557029042], [-73.89984008793193, 40.88653697129754], [-73.89784119090498, 40.890517347053134], [-73.89844681320636, 40.89049417616812], [-73.90069963133344, 40.88898824564839], [-73.9011216844973, 40.888897807460594], [-73.90180900667845, 40.889143990021445], [-73.9028615356187, 40.88916401409911], [-73.9028722549062, 40.89011604283057], [-73.90237089188204, 40.89091039932953], [-73.90236331642073, 40.89107043532525], [-73.90276566768817, 40.89110463950977], [-73.9033485632943, 40.89097905656074], [-73.90443245605947, 40.890156830505646], [-73.90435939928133, 40.889773361179564], [-73.90533515880125, 40.88735463089638], [-73.9073891494681, 40.88781865897652], [-73.90805268255383, 40.889005789510065], [-73.90904034694178, 40.88949472449092], [-73.91532359262956, 40.88993973870673], [-73.91580830749257, 40.88735649674264], [-73.91684541896268, 40.88760518747925], [-73.91676570846225, 40.8870612274494], [-73.91657493180442, 40.88690247809692], [-73.91397894487852, 40.886374149278055], [-73.91587161951227, 40.884859642185674], [-73.9187615073836, 40.8855697054123], [-73.91863117303215, 40.88606109361414], [-73.9186549119368, 40.88838640755155], [-73.91795299427515, 40.89032043768567], [-73.91697388338743, 40.891962556151775], [-73.91648720470647, 40.89316183592988], [-73.91821298861579, 40.892780986737506], [-73.92037598363437, 40.887145995989904], [-73.92064636455856, 40.88723759323028], [-73.91788384197908, 40.89428618027893], [-73.91795072094062, 40.89475701300904], [-73.91761280493, 40.895047606403814], [-73.91703409612492, 40.89639642318376], [-73.91528506064503, 40.90123671569776], [-73.91521966320198, 40.9015940129362], [-73.9154532866043, 40.90179598624511], [-73.91507756983972, 40.90293296715224], [-73.91460724324376, 40.90407476358617], [-73.91407105482517, 40.90441643322257], [-73.91295587076691, 40.90736747187906], [-73.91311582911113, 40.90782340136686], [-73.91261759445405, 40.90829096564267], [-73.91155688059565, 40.91233278997906], [-73.91167328765887, 40.91343618263564], [-73.91051970264132, 40.91516726799925], [-73.90428598503678, 40.91339401338112], [-73.90285399192972, 40.91277899419019], [-73.89663619991175, 40.91147247206298], [-73.8929709882922, 40.91002700231963], [-73.89184465974839, 40.91012767218657], [-73.88615088815102, 40.90797753231201], [-73.88476599261715, 40.907571007754875], [-73.88404965922032, 40.907741266209285], [-73.88275700429669, 40.90733001234079], [-73.88191900140626, 40.90666598855432]]], "type": "Polygon"}, "id": 38, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10471", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 39, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 89651407.0575, "Shape_Leng": 53208.9690252, "borough": "Bronx", "postalCode": "10471"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8779026157511, 40.90555223733508], [-73.87786014114278, 40.905915090821914], [-73.87292207464557, 40.90448195371946], [-73.86788504627617, 40.902984483381445], [-73.86729591506825, 40.902433956836276], [-73.86557699647823, 40.902112010916575], [-73.86509698216756, 40.901778993141924], [-73.8638485924694, 40.90141774274807], [-73.86275323314283, 40.90151020961424], [-73.86156437601507, 40.90106214901159], [-73.86063898457913, 40.901359995594035], [-73.85959499145133, 40.90087599353454], [-73.85946798723705, 40.901445996054555], [-73.85905498431804, 40.901540998862856], [-73.85935899956813, 40.90193499654594], [-73.85884999381948, 40.90234600114282], [-73.85846399714752, 40.902180989388796], [-73.85730799999646, 40.902888011610635], [-73.85719799099932, 40.90387699617176], [-73.85672098456524, 40.90456698996277], [-73.85630899053645, 40.9057370015768], [-73.85555598347891, 40.90636600344795], [-73.85525298762539, 40.90629299007612], [-73.85494299435985, 40.906566991001306], [-73.85432100433385, 40.90775799783078], [-73.85477998766935, 40.907971989690125], [-73.85438900543761, 40.90862300956886], [-73.85330900648437, 40.90975301050101], [-73.85306100254036, 40.90969700838396], [-73.8513360027008, 40.91013799374459], [-73.85177300702804, 40.909211989042355], [-73.85307498934914, 40.90835601035684], [-73.85365339947516, 40.90732063700549], [-73.85258698969649, 40.90687600025327], [-73.85145181472642, 40.90674896568795], [-73.85118765338825, 40.90637751278139], [-73.85046801212803, 40.90743398942128], [-73.84859510946552, 40.906857269713626], [-73.84715401824033, 40.90608500531235], [-73.84483506764988, 40.905272161856566], [-73.84463568041262, 40.90475111227086], [-73.84561958197244, 40.90477625168419], [-73.84543330042611, 40.904278526387586], [-73.8460474655559, 40.90413373328229], [-73.84598515697898, 40.90316319197437], [-73.84657768767559, 40.90315310664533], [-73.8468022465894, 40.901552233570925], [-73.84693698051883, 40.90152005786689], [-73.84739252267863, 40.90205050694447], [-73.84955008944165, 40.90304498367894], [-73.85223212061133, 40.899640104511725], [-73.85300365898323, 40.899991654515794], [-73.85429881688134, 40.89844967885558], [-73.85915052136694, 40.90030485377824], [-73.86150558901251, 40.897131746072546], [-73.86145695281914, 40.8967186567855], [-73.86203947174673, 40.89580460636269], [-73.86219326524319, 40.89493157855286], [-73.86512020292948, 40.89579299457408], [-73.87048672108253, 40.89664023730838], [-73.87459457763055, 40.895750220135675], [-73.88010836736842, 40.895195544265036], [-73.87893077711904, 40.8994759215492], [-73.8779026157511, 40.90555223733508]]], "type": "Polygon"}, "id": 39, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10470", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 40, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 21543461.5815, "Shape_Leng": 32648.9043733, "borough": "Bronx", "postalCode": "10470"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84463568041262, 40.90475111227086], [-73.84443429327986, 40.904226346893886], [-73.8433202894587, 40.90396893997627], [-73.8424025540495, 40.90423427926073], [-73.84138104142525, 40.9042043854363], [-73.84080413468352, 40.90167816644037], [-73.83918724066945, 40.89936671929234], [-73.8392360372204, 40.89873564439279], [-73.8397320194236, 40.897692293326486], [-73.83839410200675, 40.89406218922644], [-73.83582721720538, 40.89326572692697], [-73.83522248317126, 40.893312463188124], [-73.83362478534364, 40.8925876969227], [-73.83267581698645, 40.89261066812278], [-73.83189800737354, 40.892080988519176], [-73.83098406392874, 40.89182089734298], [-73.83008008399423, 40.89176716368319], [-73.828299014341, 40.89106599272302], [-73.82722404220345, 40.89092998026948], [-73.82740200435488, 40.89013188476448], [-73.82813464263, 40.88857883995835], [-73.8275604042681, 40.88827414292555], [-73.82493762950851, 40.88785567444939], [-73.82446400258925, 40.887381043932805], [-73.83050940842944, 40.884899928782254], [-73.83361798758186, 40.88418565542621], [-73.83454872402704, 40.88373957429689], [-73.83675155499988, 40.88205213404745], [-73.8412778396824, 40.880317574253034], [-73.84324113067845, 40.879108941376], [-73.85011188665067, 40.88201978489958], [-73.86538048646106, 40.88688350327779], [-73.86160694550912, 40.89372708008024], [-73.86135926940293, 40.89466234061427], [-73.86219326524319, 40.89493157855286], [-73.86203947174673, 40.89580460636269], [-73.86145695281914, 40.8967186567855], [-73.86150558901251, 40.897131746072546], [-73.85915052136694, 40.90030485377824], [-73.85429881688134, 40.89844967885558], [-73.85300365898323, 40.899991654515794], [-73.85223212061133, 40.899640104511725], [-73.84955008944165, 40.90304498367894], [-73.84739252267863, 40.90205050694447], [-73.84693698051883, 40.90152005786689], [-73.8468022465894, 40.901552233570925], [-73.84657768767559, 40.90315310664533], [-73.84598515697898, 40.90316319197437], [-73.8460474655559, 40.90413373328229], [-73.84543330042611, 40.904278526387586], [-73.84561958197244, 40.90477625168419], [-73.84463568041262, 40.90475111227086]]], "type": "Polygon"}, "id": 40, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10466", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 41, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 55262490.6118, "Shape_Leng": 35358.3031387, "borough": "Bronx", "postalCode": "10466"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88010836736842, 40.895195544265036], [-73.87459457763055, 40.895750220135675], [-73.87048672108253, 40.89664023730838], [-73.8649163147609, 40.895749521170764], [-73.86135926940293, 40.89466234061427], [-73.86170155735076, 40.893478355048245], [-73.86538048646106, 40.88688350327779], [-73.85588385892531, 40.883861742213135], [-73.8610738882918, 40.87447153400961], [-73.86122391437758, 40.87448625291286], [-73.86179102367969, 40.857386272168014], [-73.86761390035623, 40.857236900509726], [-73.86758752005564, 40.85783011494942], [-73.86835254943439, 40.857851127218886], [-73.8688481324744, 40.857238480346176], [-73.87040139692309, 40.856970386198846], [-73.87106095474225, 40.85709542725627], [-73.87163790243835, 40.85752441099808], [-73.8721469760366, 40.85810722770268], [-73.87235156746395, 40.85875611775016], [-73.87179072757048, 40.86159895571251], [-73.87166399022628, 40.86346302138434], [-73.87221022368692, 40.86503533994728], [-73.87264749239209, 40.865756304691395], [-73.87365197424685, 40.866722194888744], [-73.87505410488191, 40.86715016577331], [-73.87585019708796, 40.86834424782269], [-73.8767934402316, 40.86895529458204], [-73.877438392786, 40.86904664989584], [-73.87801038783623, 40.86892157918733], [-73.8795481329151, 40.867718840167576], [-73.8807260317735, 40.869910427930876], [-73.88091055022797, 40.87048744493063], [-73.88093592685034, 40.87167579081454], [-73.88257369915547, 40.8762707958906], [-73.88319913343557, 40.87649772327921], [-73.8842286725965, 40.878722031413325], [-73.88477074590264, 40.878395050263265], [-73.88532324287469, 40.87917787146166], [-73.88565554628217, 40.87888925535523], [-73.88591733196253, 40.88044825589067], [-73.88706489892101, 40.88265367760251], [-73.88707069617672, 40.88439980505267], [-73.88423846440429, 40.883190401513204], [-73.8826554885705, 40.8833788867925], [-73.8812442181108, 40.88270965825265], [-73.87801974365854, 40.88708955510772], [-73.87832402582764, 40.88837104425859], [-73.88034084810282, 40.89250896940818], [-73.88040217722113, 40.893153470858806], [-73.88010836736842, 40.895195544265036]]], "type": "Polygon"}, "id": 41, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10467", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 42, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 69336166.3722, "Shape_Leng": 43944.7506298, "borough": "Bronx", "postalCode": "10467"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92064636455856, 40.88723759323028], [-73.92037598363437, 40.887145995989904], [-73.91821298861579, 40.892780986737506], [-73.91648720470647, 40.89316183592988], [-73.91697388338743, 40.891962556151775], [-73.91795299427515, 40.89032043768567], [-73.9186549119368, 40.88838640755155], [-73.91863117303215, 40.88606109361414], [-73.9187615073836, 40.8855697054123], [-73.91613544519981, 40.88487388087106], [-73.91587161951227, 40.884859642185674], [-73.91397894487852, 40.886374149278055], [-73.91657493180442, 40.88690247809692], [-73.91676570846225, 40.8870612274494], [-73.91684541896268, 40.88760518747925], [-73.91580830749257, 40.88735649674264], [-73.91532359262956, 40.88993973870673], [-73.90904034694178, 40.88949472449092], [-73.90805268255383, 40.889005789510065], [-73.9073891494681, 40.88781865897652], [-73.90533515880125, 40.88735463089638], [-73.90435939928133, 40.889773361179564], [-73.90443245605947, 40.890156830505646], [-73.90327314962003, 40.89101536220325], [-73.90236331642073, 40.89107043532525], [-73.9024003311093, 40.89075570548804], [-73.90289090115853, 40.89004781250599], [-73.9028615356187, 40.88916401409911], [-73.90180900667845, 40.889143990021445], [-73.90109165071237, 40.88889479661806], [-73.90069963133344, 40.88898824564839], [-73.89844681320636, 40.89049417616812], [-73.89790102338462, 40.89054045152469], [-73.89984008793193, 40.88653697129754], [-73.89509161932575, 40.88565557029042], [-73.89470019189461, 40.88546741107287], [-73.89441962053094, 40.88562359900235], [-73.88764926715668, 40.88426749204419], [-73.88707069617672, 40.88439980505267], [-73.88701149869944, 40.88247195835245], [-73.88778604108633, 40.88244308077004], [-73.88844553745973, 40.882167326341325], [-73.88981221106091, 40.88214005953584], [-73.89267332936, 40.881634933025076], [-73.89465441567657, 40.881456433900794], [-73.89546237087832, 40.882479466413905], [-73.89609989573846, 40.88211029307404], [-73.89650041172847, 40.88157858567474], [-73.89671771967649, 40.88009751288044], [-73.89692732043298, 40.879671880434444], [-73.89746613866478, 40.87896135340063], [-73.89824697918247, 40.8783177383359], [-73.89918585621896, 40.87696927942261], [-73.90068047153846, 40.875676608278376], [-73.90122357376892, 40.87501459154513], [-73.90214589519816, 40.872502398609214], [-73.90244639302142, 40.87098991834898], [-73.90277822038182, 40.87040604581835], [-73.9037405265156, 40.86957085924914], [-73.90387482159606, 40.869714286737924], [-73.9068991151962, 40.86808205255953], [-73.90744399890664, 40.86740097984248], [-73.907928240612, 40.86608096145771], [-73.90848813330992, 40.86534546636185], [-73.9084225460055, 40.866877673041465], [-73.9079905362557, 40.86824634608157], [-73.90571388527059, 40.87313792796742], [-73.90717936618954, 40.873488695539336], [-73.90743898627501, 40.87640598602871], [-73.90818601270183, 40.877392993373974], [-73.90928099401809, 40.87803598809148], [-73.90963499168187, 40.878810008880556], [-73.91160499530926, 40.879205994002675], [-73.91239901180568, 40.878104993406986], [-73.91508700270737, 40.87649599206443], [-73.915441048975, 40.875590963592956], [-73.91660258519843, 40.8758051596411], [-73.91768971559016, 40.875662470794175], [-73.91875462868826, 40.87592914670294], [-73.92001682559365, 40.87657334231178], [-73.9221207745322, 40.87857900287278], [-73.92299304019275, 40.878903196348745], [-73.92497197270656, 40.87892297331508], [-73.92365178878391, 40.88060531086608], [-73.92064636455856, 40.88723759323028]]], "type": "Polygon"}, "id": 42, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10463", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 43, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 36703381.5083, "Shape_Leng": 47484.9922985, "borough": "Bronx", "postalCode": "10463"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82722404220345, 40.89092998026948], [-73.82511480884179, 40.890628433007116], [-73.8236640014872, 40.88972598646341], [-73.82317401466165, 40.89011399245659], [-73.82303500736839, 40.89095699810329], [-73.81617200786067, 40.88928600117648], [-73.81538709262482, 40.889394532283156], [-73.81524906595314, 40.88798305946022], [-73.81536559417835, 40.886650406239866], [-73.81989745013462, 40.885584827190684], [-73.8200671493623, 40.88597483018567], [-73.8199685546689, 40.88632492565251], [-73.8205539850546, 40.88702396104837], [-73.82081076511139, 40.88695470095152], [-73.82219063517336, 40.887296107054354], [-73.8236229123749, 40.88788150704001], [-73.82397160146957, 40.887672799379466], [-73.82356374206941, 40.88724262253339], [-73.82208076332425, 40.886982892261784], [-73.8215451901919, 40.88667176284496], [-73.82072138226769, 40.8856141664009], [-73.82044392025895, 40.88418626631334], [-73.8207746046468, 40.882164195497474], [-73.82126297219459, 40.88054325047356], [-73.82150209649117, 40.88020737718365], [-73.82145823714964, 40.87989573304142], [-73.82171618234716, 40.87922339462525], [-73.8218596005463, 40.879173664167915], [-73.82171839555929, 40.878553762977425], [-73.82179009070997, 40.87840016924557], [-73.82210296345664, 40.878343236768735], [-73.82357097568973, 40.87470598197745], [-73.82368620478437, 40.872436892435154], [-73.82357695198678, 40.87008616531238], [-73.82289019508877, 40.86940835697249], [-73.82264808097295, 40.869409352958264], [-73.82105450473144, 40.86839662878662], [-73.82037980020847, 40.86777893528323], [-73.82003969812004, 40.86662594458045], [-73.81988306498141, 40.86533311283141], [-73.82008749207029, 40.863217008825494], [-73.8187128251414, 40.86238330181206], [-73.81936857248517, 40.861718576947865], [-73.8194214589223, 40.86143741904547], [-73.82045293527851, 40.861027887643104], [-73.82024421464601, 40.86076747179036], [-73.82045705684583, 40.86032365267415], [-73.81991660832516, 40.859871018259454], [-73.82056053262994, 40.85972912694332], [-73.82100210987944, 40.8600073336909], [-73.82090322976933, 40.85930974556118], [-73.82146289560232, 40.85935466324021], [-73.8213470628075, 40.85955613472614], [-73.82168947354197, 40.86023629903627], [-73.8213832670331, 40.86076094184436], [-73.82280145823857, 40.86010268087366], [-73.82195420995176, 40.86015047946559], [-73.8219239077464, 40.85995223082002], [-73.82210025126392, 40.85999946171401], [-73.82240359850368, 40.85975686105074], [-73.82166361037365, 40.8597324022903], [-73.82161677418284, 40.85953202263968], [-73.82221061191838, 40.859432593816194], [-73.82195996051743, 40.859235393954044], [-73.82046938576185, 40.85904870930439], [-73.82019957226458, 40.85918749982436], [-73.82029993865719, 40.859355049569785], [-73.8200752588309, 40.85940971137024], [-73.81935936774546, 40.85933458669713], [-73.81862798671656, 40.859494067258936], [-73.81857004501421, 40.85990422234025], [-73.8187375921135, 40.86018530142122], [-73.81847494916927, 40.86094784560487], [-73.81804199661174, 40.86104073103825], [-73.81711452179763, 40.86087145976969], [-73.81686746192429, 40.86121485588877], [-73.81641392884228, 40.861180650347094], [-73.81717066739334, 40.86010260694221], [-73.81773697694356, 40.85958494017297], [-73.81881734196539, 40.85879266345927], [-73.82011475797268, 40.858120967822494], [-73.82318523980584, 40.85711020662892], [-73.82655543842569, 40.856653377076306], [-73.82694709281415, 40.85841707500112], [-73.82762976473403, 40.860150300375636], [-73.82910818577328, 40.861557679062436], [-73.82962292408214, 40.862260985762774], [-73.83324190886295, 40.86846457676472], [-73.83358258058475, 40.870176694290585], [-73.83457615857907, 40.87271392397288], [-73.8352571594773, 40.8751609714878], [-73.8362376164404, 40.876666607891764], [-73.83874272605091, 40.88126599131793], [-73.83673450006562, 40.882061146320886], [-73.83495328097911, 40.88346388834291], [-73.83361798758186, 40.88418565542621], [-73.83050940842944, 40.884899928782254], [-73.82446400258925, 40.887381043932805], [-73.82493762950851, 40.88785567444939], [-73.8275604042681, 40.88827414292555], [-73.82813464263, 40.88857883995835], [-73.82740200435488, 40.89013188476448], [-73.82722404220345, 40.89092998026948]]], "type": "Polygon"}, "id": 43, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10475", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 44, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 38633296.936, "Shape_Leng": 45027.6551188, "borough": "Bronx", "postalCode": "10475"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81538709262482, 40.889394532283156], [-73.81364681795007, 40.88882005240079], [-73.8091739835117, 40.887779992382086], [-73.80539599380171, 40.88645999255788], [-73.80494899672742, 40.88673000128719], [-73.8049090158645, 40.88621701214119], [-73.80394198581826, 40.88641699196635], [-73.79877834945808, 40.88450789413326], [-73.79716400304194, 40.884456990427466], [-73.7964084551202, 40.88483536376369], [-73.79440353230922, 40.88319683668171], [-73.79301155164535, 40.883301064745325], [-73.79328105763243, 40.882703862680344], [-73.79351673194832, 40.882705547033524], [-73.79373918946594, 40.88242101749688], [-73.79392940563373, 40.88175782745167], [-73.79457788006744, 40.881220309992244], [-73.79473997312667, 40.88074848271894], [-73.7950393269607, 40.88063134960138], [-73.79566842292418, 40.88096923903739], [-73.79566264336758, 40.88052003238242], [-73.7952814950934, 40.88020127351156], [-73.79515347884005, 40.87967359734733], [-73.79593054408713, 40.87755971865994], [-73.79654315321292, 40.87677792979816], [-73.79707721715053, 40.876585121607896], [-73.79717582944527, 40.875706744591895], [-73.79793483336697, 40.874611535813884], [-73.79859230911768, 40.87440859446826], [-73.79887739583215, 40.8745748439875], [-73.79960978133394, 40.874041944604], [-73.79975523591862, 40.873481702251794], [-73.80046980341976, 40.872542303970334], [-73.80077945283175, 40.871507565747265], [-73.80178932866363, 40.87107325390994], [-73.80214350643584, 40.87072770051104], [-73.80209545247195, 40.87037530742514], [-73.80264799636421, 40.870109963305566], [-73.80272838969638, 40.86972683027806], [-73.80259839919964, 40.869351599464636], [-73.80279843144898, 40.86888355833765], [-73.80308148626997, 40.86877732723947], [-73.8033933736663, 40.868947125241455], [-73.80361652096674, 40.86880318894622], [-73.8039623369274, 40.869005237495216], [-73.80406436692654, 40.868761187742116], [-73.80449660782885, 40.86870134485088], [-73.80519741039524, 40.86911250645457], [-73.80538639370683, 40.86874432195227], [-73.80594532897057, 40.86895515058211], [-73.80604839384746, 40.869109822876375], [-73.8056800085018, 40.86931631780123], [-73.8057201906323, 40.86952267799711], [-73.8064403272388, 40.87009119014232], [-73.80743655206633, 40.870092884797565], [-73.80767398329125, 40.86990938526275], [-73.80709919221472, 40.87004903655351], [-73.80674123489997, 40.86978925568036], [-73.80668154654053, 40.86912792982919], [-73.80645700511317, 40.868883439370315], [-73.80657685678774, 40.86874876570716], [-73.80627046289842, 40.86846571278441], [-73.80487364267702, 40.86828325202505], [-73.80461382575933, 40.86732337334901], [-73.80432971969059, 40.866941625756546], [-73.8038373021143, 40.867414250857976], [-73.80292412413668, 40.86706109804661], [-73.80299388082068, 40.86599435105685], [-73.8024042796393, 40.86559020097429], [-73.80188081683549, 40.86588781810196], [-73.80174965320055, 40.86645571825733], [-73.80071687199846, 40.86816257182905], [-73.8000280610539, 40.868910519417334], [-73.799099342911, 40.870529268481896], [-73.79814882344489, 40.87173953153786], [-73.79755110447762, 40.87230748915159], [-73.79612985194771, 40.87276365367557], [-73.79526473455107, 40.87284355702973], [-73.79453434623473, 40.873261731678404], [-73.7939019559761, 40.874467119696995], [-73.79384599229931, 40.87531502215415], [-73.79345943380864, 40.876249669086384], [-73.79363767584888, 40.87671323779042], [-73.79308481105578, 40.877005958851555], [-73.7942776864778, 40.87745937458175], [-73.79444802630844, 40.877662484596975], [-73.79372831567417, 40.87868788115367], [-73.79314971370468, 40.87876320348183], [-73.79305337197475, 40.87907880813825], [-73.79282238486404, 40.87908591370331], [-73.79282137960739, 40.87944316219622], [-73.79226691709344, 40.87938293493096], [-73.79168266219081, 40.87981730090174], [-73.79100885537247, 40.87996588813987], [-73.79052913120425, 40.88034321048762], [-73.79073655252526, 40.88075891405898], [-73.78997980767994, 40.881057781514954], [-73.78941415088943, 40.88107994379658], [-73.78930734396887, 40.880846257392314], [-73.78947151722912, 40.88057392662992], [-73.7891962549869, 40.88012680665491], [-73.78951849819254, 40.8798182324468], [-73.79003895430598, 40.87975786342322], [-73.79014737127035, 40.879504643052165], [-73.78964258355448, 40.87897976162165], [-73.78852774547845, 40.87881161450159], [-73.7861340322978, 40.878990246981424], [-73.7852779156906, 40.87856128039615], [-73.78489925963736, 40.878541637074576], [-73.78500865724031, 40.878102497326246], [-73.78475796379776, 40.87809876396751], [-73.78490345023322, 40.878285592402015], [-73.78457526415218, 40.87847126280304], [-73.78435513044495, 40.878265026722026], [-73.78461878598202, 40.87811892472011], [-73.78422704776081, 40.87810847668811], [-73.78438897044374, 40.87793267950538], [-73.78423369495859, 40.877776573031134], [-73.78434591691561, 40.877426312086], [-73.78476359643962, 40.876883613661505], [-73.78529387911409, 40.87740277311628], [-73.7855551002887, 40.877403917960336], [-73.7852431746896, 40.87729253443887], [-73.78502887009026, 40.87687279974541], [-73.78512033950959, 40.87701215343903], [-73.7852080489228, 40.87687154220233], [-73.78488734447858, 40.87664331988018], [-73.78495220994543, 40.87611223801829], [-73.78517638907383, 40.87603816428815], [-73.78519023999513, 40.875791688972974], [-73.78552013920772, 40.87572052808769], [-73.78539888234569, 40.875511843670125], [-73.78595874265686, 40.875422335507395], [-73.78600155956083, 40.8751519526457], [-73.78648386113464, 40.87453100606025], [-73.78615542914503, 40.87432775696265], [-73.78655091029361, 40.874393044388114], [-73.78671548835028, 40.874268231830925], [-73.78669361747953, 40.87405850949674], [-73.78714915362913, 40.8738651634284], [-73.78720421797287, 40.87269182305054], [-73.78679597002339, 40.872551775309674], [-73.78724747027135, 40.87257687231419], [-73.78754918481775, 40.87200757329814], [-73.78798327573308, 40.871662730857025], [-73.78841088211118, 40.87159283977084], [-73.78841159124711, 40.87068813223843], [-73.78782588241229, 40.870676654328484], [-73.7871597769753, 40.87097556131446], [-73.78629162832739, 40.872239043880484], [-73.786691090458, 40.87252465591883], [-73.78627295855148, 40.87236674842611], [-73.78572194372842, 40.87252384826809], [-73.7856910122232, 40.87195670853438], [-73.78546044133367, 40.871584482717154], [-73.78594076492608, 40.87147053689935], [-73.78599942720795, 40.87114064998132], [-73.78586601917291, 40.87092313202932], [-73.78528364489814, 40.87089718281937], [-73.78512369697765, 40.87123991724597], [-73.78537845167982, 40.87146735108081], [-73.785011482108, 40.87161449798492], [-73.78487559880678, 40.872129782095406], [-73.78456073061729, 40.87258896009534], [-73.78442738409571, 40.872553907103004], [-73.7840077687796, 40.87357771973455], [-73.78354810500426, 40.873715054077024], [-73.78337845662756, 40.873279508796344], [-73.78400709360434, 40.873128576230094], [-73.78426070748566, 40.872850545962905], [-73.78389089663673, 40.87242228386547], [-73.7831576794007, 40.87199108791493], [-73.78326859590194, 40.87119717219051], [-73.78349999233147, 40.87097866115731], [-73.7832749352817, 40.87084959453925], [-73.7834436402064, 40.87056229349398], [-73.78408727686907, 40.87040537783496], [-73.78435042913647, 40.86994780625217], [-73.78493645223483, 40.869826953605674], [-73.78561600874961, 40.8684056372194], [-73.78530282406392, 40.86923477940422], [-73.78555310589448, 40.86949041971972], [-73.78653947776363, 40.86988954439847], [-73.7885413787837, 40.869840888278766], [-73.78996846183978, 40.869298836101834], [-73.79120407254919, 40.8683891230796], [-73.79201239216448, 40.867389095986326], [-73.79301831526908, 40.86572613268937], [-73.79326321686115, 40.865810312959546], [-73.79357839033466, 40.865502782991854], [-73.79366241008739, 40.86486278627888], [-73.79348979863623, 40.86346975954261], [-73.79305642807583, 40.86235468799432], [-73.79244439831018, 40.861787684176306], [-73.79181596587547, 40.861855335192914], [-73.79160776541924, 40.86219133824963], [-73.79192890107255, 40.86138350440666], [-73.79187739276811, 40.86118411812303], [-73.79280623749071, 40.861094143134736], [-73.79362630151209, 40.86070067758851], [-73.79486547931683, 40.85876523443638], [-73.79510501825771, 40.85769593762161], [-73.79471106045237, 40.857073230778205], [-73.79430052567665, 40.856752083408075], [-73.79435527405796, 40.85652428781279], [-73.79499830968717, 40.85668533817527], [-73.7968547849294, 40.85626403770499], [-73.7976431226345, 40.855532749478996], [-73.79798565035381, 40.8548305228803], [-73.7982774196505, 40.85480841302128], [-73.79856851857971, 40.85508630059111], [-73.79881875042832, 40.854727606993656], [-73.79918847467069, 40.85367026236053], [-73.7987471528308, 40.853027875480805], [-73.7982057197829, 40.852967108993276], [-73.79794483217573, 40.8523938645529], [-73.79796474511909, 40.85206747225444], [-73.79776267652606, 40.85193915262759], [-73.79805308400206, 40.851870831220964], [-73.79799796435364, 40.851591755435685], [-73.79817652739422, 40.851482457156045], [-73.79837060433358, 40.85076156395756], [-73.79963310975806, 40.84982487172783], [-73.79993291800288, 40.84879900705984], [-73.80043829101623, 40.84810632716163], [-73.80069583425721, 40.848159959210186], [-73.80141734492297, 40.84897321518406], [-73.80156359640728, 40.849870614699455], [-73.80216170180127, 40.851056664947784], [-73.80284792324, 40.85156719952945], [-73.80376030255076, 40.85267191836288], [-73.80431792690516, 40.8534040293205], [-73.80474658458773, 40.85438327125629], [-73.80470759297332, 40.85505598802149], [-73.80397635454325, 40.855259970263745], [-73.8036208818453, 40.8556341833685], [-73.80386818754891, 40.85639074352237], [-73.80424347807973, 40.85645831094863], [-73.80402656217048, 40.856524954670775], [-73.80402161358052, 40.856793213900474], [-73.80440363804883, 40.858553452880535], [-73.80426202563181, 40.858838894878446], [-73.80465479643344, 40.85978865258522], [-73.80466755505729, 40.861094577976814], [-73.80498281095517, 40.86168261572824], [-73.80541910750698, 40.861653654112466], [-73.8056263115497, 40.861809409378985], [-73.80599227050936, 40.861256006571075], [-73.80597512093023, 40.860801865848806], [-73.80567741335811, 40.86035540505928], [-73.80569411069389, 40.85985005078881], [-73.80627028267587, 40.85971606199573], [-73.80647371778963, 40.85945087882573], [-73.80688335931842, 40.859819659468435], [-73.80741790212379, 40.85995331432493], [-73.80792725761613, 40.85950905455147], [-73.80789945993043, 40.85935755536326], [-73.80751274321378, 40.85957311184296], [-73.80763120361071, 40.85917562857207], [-73.80740617444481, 40.858785176039945], [-73.80751942791342, 40.85844979651001], [-73.8078424637089, 40.85841476372856], [-73.80854784202691, 40.859616992451585], [-73.80997070602275, 40.86096120414429], [-73.81060263857786, 40.8619268700232], [-73.81109393149002, 40.86235340637272], [-73.81243842492461, 40.862605450239975], [-73.81279566872333, 40.86297085652642], [-73.8134249893104, 40.863033768459005], [-73.81381947275503, 40.86384085441571], [-73.81475394635859, 40.8624075376554], [-73.81498135304663, 40.862210585886004], [-73.8152017046097, 40.862287679826935], [-73.81504561763812, 40.862969653934144], [-73.81525385977602, 40.86328134693193], [-73.81490118506845, 40.86377169277416], [-73.81519456733186, 40.86449199879569], [-73.81503797186201, 40.86530543994184], [-73.81518913926219, 40.8656240130144], [-73.81645840570604, 40.864241111290966], [-73.81672232745737, 40.864195306784715], [-73.81701986635589, 40.86440300549368], [-73.81570312978285, 40.86582526193337], [-73.81442893599659, 40.86778547254462], [-73.81442812799051, 40.86806863869651], [-73.81510736355521, 40.868054164961094], [-73.81537696759496, 40.86820158735086], [-73.8153070736603, 40.86879991643024], [-73.81563290687987, 40.86915234473173], [-73.81542060747975, 40.869569425051964], [-73.81576197719065, 40.870163951235405], [-73.81563997302155, 40.870244325962524], [-73.81602423155348, 40.87023940931983], [-73.81643244416156, 40.86934405876102], [-73.81688547759404, 40.86921980577368], [-73.81769507924544, 40.86851863474627], [-73.81829080177664, 40.86884190410207], [-73.81797763024781, 40.86897891544008], [-73.81844355558498, 40.869328855195995], [-73.8182575517892, 40.86981633648429], [-73.81871764506377, 40.869453361101606], [-73.8186398714371, 40.86879158184037], [-73.81788808080705, 40.8682872054271], [-73.81723594272607, 40.8682800429318], [-73.81707323500228, 40.86787928193717], [-73.81730290561006, 40.86731293359838], [-73.81768759508876, 40.86790868813253], [-73.81855988860897, 40.86833139722992], [-73.8189280175566, 40.86899866002622], [-73.81948761641588, 40.869104798724486], [-73.8201397444881, 40.86889506081317], [-73.82023653394123, 40.86914713017024], [-73.82055583259282, 40.86926749773911], [-73.82038734140178, 40.86960350215718], [-73.82094084899991, 40.86965333014471], [-73.8211081655848, 40.87030059558703], [-73.8215385301036, 40.86998666035274], [-73.8220914010322, 40.87041606820968], [-73.8219146793306, 40.87108175316663], [-73.82197926433558, 40.871811060710414], [-73.82165063951803, 40.87215255219366], [-73.82124139027763, 40.872276821434504], [-73.82115122641552, 40.87254817045338], [-73.82073029296684, 40.87239149841674], [-73.82121151716227, 40.8726289279665], [-73.82112792844198, 40.87283453156385], [-73.821365615955, 40.87277833546738], [-73.82147824776898, 40.87246051614982], [-73.82186792425696, 40.87258456468647], [-73.82192202982975, 40.87280557618872], [-73.8216505316006, 40.87311847785814], [-73.82118121354266, 40.87307527096774], [-73.82048264958415, 40.87359548625939], [-73.82128096486807, 40.87414418799764], [-73.82154511510707, 40.874116376330264], [-73.82193342306326, 40.87372651210255], [-73.82215815010082, 40.8747508486563], [-73.8207633817895, 40.874188489900504], [-73.82074496564246, 40.874499942473804], [-73.82040917504894, 40.8743990194048], [-73.81998525195121, 40.8734525988339], [-73.81932678410855, 40.87340388346204], [-73.81892801979022, 40.873704383161595], [-73.81925372049496, 40.87384258224034], [-73.81971167911198, 40.87364775004452], [-73.81996944882958, 40.87381244592597], [-73.81983530141841, 40.87403632524965], [-73.8192056377269, 40.87409880881996], [-73.81920090747796, 40.87446805532019], [-73.81989191629148, 40.87421183532445], [-73.82032534873318, 40.874844023460504], [-73.8213216424435, 40.874783461755335], [-73.82161683348471, 40.87511988747258], [-73.82135368900038, 40.8753021879425], [-73.82089583465515, 40.87512688235646], [-73.82039852122311, 40.87531146983053], [-73.81978712945302, 40.87634756448091], [-73.82000892836454, 40.87653648749649], [-73.82003359417459, 40.87682219538902], [-73.8206729532715, 40.87722716362098], [-73.82077435626832, 40.87721831445], [-73.82050722159741, 40.87674598709048], [-73.82040462401979, 40.87598468074894], [-73.82057211344507, 40.87597837941141], [-73.82120177602941, 40.87669625244085], [-73.82097820765502, 40.87705995474463], [-73.82105069278856, 40.87754913094005], [-73.82073538465396, 40.877910194281], [-73.82023001095581, 40.87814393695198], [-73.82056533397778, 40.87853052634903], [-73.82053649748126, 40.879187169370354], [-73.82041480851636, 40.87923163262181], [-73.8201706131598, 40.87893831973947], [-73.82000198558202, 40.879060756584764], [-73.8203876891402, 40.87953482283617], [-73.82003258302505, 40.87978262806132], [-73.82033779901931, 40.879929605016436], [-73.82017630921996, 40.88011868487316], [-73.82030247435756, 40.88043095474809], [-73.8201728145098, 40.88086419670202], [-73.82006165687784, 40.8810383238268], [-73.81914050295237, 40.88133439552776], [-73.8198545162374, 40.881656988410974], [-73.81974078247845, 40.88192189842965], [-73.8192576834462, 40.88209772868325], [-73.81980767496067, 40.88216396232372], [-73.81962377735846, 40.88250800201376], [-73.81982686951557, 40.88273836428542], [-73.81933485344211, 40.883533206255976], [-73.81972037367497, 40.88454911480106], [-73.81928295611075, 40.88476774820505], [-73.81925550132047, 40.88505934444982], [-73.81884146983569, 40.88524837772974], [-73.8183722513277, 40.88524835800626], [-73.81797477261914, 40.885052226907575], [-73.81791194782949, 40.88466239300454], [-73.81829893616639, 40.88406072043014], [-73.81775829841058, 40.88466732380709], [-73.81785917229205, 40.88511356497851], [-73.81807391251706, 40.88527305588936], [-73.81893890726177, 40.885340041803595], [-73.81952169439379, 40.88509733835185], [-73.81989026881828, 40.88558675743661], [-73.81536559417835, 40.886650406239866], [-73.81524906595314, 40.88798305946022], [-73.81538709262482, 40.889394532283156]]], "type": "Polygon"}, "id": 44, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10464", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 45, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 76257484.8965, "Shape_Leng": 95375.5460772, "borough": "Bronx", "postalCode": "10464"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.85588385892531, 40.883861742213135], [-73.85011188665067, 40.88201978489958], [-73.84324113067845, 40.879108941376], [-73.8412778396824, 40.880317574253034], [-73.83874272605091, 40.88126599131793], [-73.8362376164404, 40.876666607891764], [-73.8352571594773, 40.8751609714878], [-73.83457615857907, 40.87271392397288], [-73.83358258058475, 40.870176694290585], [-73.83324190886295, 40.86846457676472], [-73.82962292408214, 40.862260985762774], [-73.82910818577328, 40.861557679062436], [-73.82762976473403, 40.860150300375636], [-73.82694709281415, 40.85841707500112], [-73.82655543842569, 40.856653377076306], [-73.83242787237616, 40.85606385717291], [-73.84390190641878, 40.85778583002551], [-73.84716176779602, 40.858082687762206], [-73.84965832415467, 40.85810874143762], [-73.85614534643452, 40.857558550700126], [-73.86179102367969, 40.857386272168014], [-73.86122391437758, 40.87448625291286], [-73.8610738882918, 40.87447153400961], [-73.85588385892531, 40.883861742213135]]], "type": "Polygon"}, "id": 45, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10469", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 46, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 68040887.07, "Shape_Leng": 34900.7255644, "borough": "Bronx", "postalCode": "10469"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88701149869944, 40.88247195835245], [-73.88591733196253, 40.88044825589067], [-73.88565554628217, 40.87888925535523], [-73.88532324287469, 40.87917787146166], [-73.88480469510318, 40.8784556590747], [-73.8873767014225, 40.872722983008046], [-73.8882377690268, 40.871783301860255], [-73.89097593617022, 40.870158935708865], [-73.89188021553949, 40.86934418642266], [-73.8971320230222, 40.862454088768764], [-73.89994955967967, 40.857419976900566], [-73.90369134614956, 40.85870896310556], [-73.90390816017985, 40.858367612912396], [-73.90679734639433, 40.859373612459045], [-73.90725786070145, 40.85935345596542], [-73.9091549498034, 40.86030035347019], [-73.91010178096785, 40.86010444416867], [-73.91101446870736, 40.86060128684601], [-73.91228728019128, 40.860176538396864], [-73.91359559301507, 40.859436925229], [-73.91541840050924, 40.85873245783024], [-73.91571072314784, 40.85845527108797], [-73.91585607412311, 40.858012914730494], [-73.91690231111573, 40.8583158912441], [-73.9162284150571, 40.85920377850998], [-73.91547306015973, 40.85987022277327], [-73.91585195268966, 40.860153926421276], [-73.91344040776588, 40.8621321892283], [-73.91423862195072, 40.86249212409186], [-73.91338914286547, 40.863357439532244], [-73.91278931765677, 40.863028231416365], [-73.9125876348698, 40.863159107306494], [-73.91232234763821, 40.86364370102663], [-73.91260960491988, 40.86383280932408], [-73.91263436599775, 40.86407886353139], [-73.9103616260321, 40.86670566145314], [-73.90951813816768, 40.868749875730636], [-73.90944328676972, 40.868982248573055], [-73.90957722406574, 40.869063717300534], [-73.90936197517219, 40.86912633953536], [-73.90899347678894, 40.87112291347983], [-73.90868911260583, 40.87136054886142], [-73.90872894383804, 40.87168294183117], [-73.90818599065518, 40.87254799686559], [-73.90724699056179, 40.8729739937821], [-73.90717318956264, 40.87348751543367], [-73.90571388527059, 40.87313792796742], [-73.9079905362557, 40.86824634608157], [-73.9084225460055, 40.866877673041465], [-73.90848813330992, 40.86534546636185], [-73.907928240612, 40.86608096145771], [-73.90744399890664, 40.86740097984248], [-73.9068991151962, 40.86808205255953], [-73.90387482159606, 40.869714286737924], [-73.9037405265156, 40.86957085924914], [-73.90277822038182, 40.87040604581835], [-73.90244639302142, 40.87098991834898], [-73.90214589519816, 40.872502398609214], [-73.90122357376892, 40.87501459154513], [-73.90068047153846, 40.875676608278376], [-73.89918585621896, 40.87696927942261], [-73.89824697918247, 40.8783177383359], [-73.89746613866478, 40.87896135340063], [-73.89692732043298, 40.879671880434444], [-73.89671771967649, 40.88009751288044], [-73.89650041172847, 40.88157858567474], [-73.89609989573846, 40.88211029307404], [-73.89546237087832, 40.882479466413905], [-73.89465441567657, 40.881456433900794], [-73.89267332936, 40.881634933025076], [-73.88981221106091, 40.88214005953584], [-73.88844553745973, 40.882167326341325], [-73.88778604108633, 40.88244308077004], [-73.88701149869944, 40.88247195835245]]], "type": "Polygon"}, "id": 46, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10468", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 47, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 34447604.6725, "Shape_Leng": 37082.7211777, "borough": "Bronx", "postalCode": "10468"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.915441048975, 40.875590963592956], [-73.91508700270737, 40.87649599206443], [-73.91239901180568, 40.878104993406986], [-73.91160499530926, 40.879205994002675], [-73.90963499168187, 40.878810008880556], [-73.90928099401809, 40.87803598809148], [-73.90818601270183, 40.877392993373974], [-73.90743898627501, 40.87640598602871], [-73.90717318956264, 40.87348751543367], [-73.90724699056179, 40.8729739937821], [-73.90818599065518, 40.87254799686559], [-73.90872894383804, 40.87168294183117], [-73.90953181249003, 40.8730216829837], [-73.9108186075269, 40.87409594608034], [-73.91167243161209, 40.87448912197563], [-73.915441048975, 40.875590963592956]]], "type": "Polygon"}, "id": 47, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10463", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 48, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 3119701.91325, "Shape_Leng": 7791.51712739, "borough": "Manhattan", "postalCode": "10463"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88480469510318, 40.8784556590747], [-73.8842286725965, 40.878722031413325], [-73.88319913343557, 40.87649772327921], [-73.88257369915547, 40.8762707958906], [-73.88093592685034, 40.87167579081454], [-73.88091055022797, 40.87048744493063], [-73.8807260317735, 40.869910427930876], [-73.8795481329151, 40.867718840167576], [-73.87838616935186, 40.86872239493859], [-73.8778164557441, 40.86899192195736], [-73.87705188611442, 40.86901450908087], [-73.87629976608227, 40.86873128111833], [-73.87576522034493, 40.86824518624644], [-73.87509567843956, 40.867185585626295], [-73.87442492287272, 40.86692320856744], [-73.8753690262683, 40.86590815887558], [-73.87393680047813, 40.86332785997143], [-73.8747842346832, 40.862018984052426], [-73.87560270238218, 40.86128585596814], [-73.87586352930786, 40.86064387439574], [-73.8765897820082, 40.85994239392294], [-73.87664310400471, 40.85968653860114], [-73.87634397065331, 40.8590077037487], [-73.87699944505209, 40.85760277627778], [-73.87719563922414, 40.85647801841294], [-73.87687461928316, 40.85539409847148], [-73.8781933802445, 40.85560350293245], [-73.88079071397841, 40.857062242296585], [-73.88068425400864, 40.856782577385765], [-73.8816676021557, 40.85334821972076], [-73.8827328427844, 40.8536506903849], [-73.88382008921438, 40.85149931812837], [-73.8896352157018, 40.8531776360245], [-73.88963202953525, 40.85365692516964], [-73.89038953537019, 40.8546890823024], [-73.89090202763225, 40.85411691120095], [-73.89239103234122, 40.8549271835139], [-73.89541738629748, 40.85619783787808], [-73.89558075750972, 40.85624529497108], [-73.8957336177223, 40.856012665211], [-73.89994955967967, 40.857419976900566], [-73.8971320230222, 40.862454088768764], [-73.89188021553949, 40.86934418642266], [-73.89097593617022, 40.870158935708865], [-73.8882377690268, 40.871783301860255], [-73.88754526170068, 40.872474582762415], [-73.88480469510318, 40.8784556590747]]], "type": "Polygon"}, "id": 48, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10458", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 49, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 35968812.9034, "Shape_Leng": 29391.2816276, "borough": "Bronx", "postalCode": "10458"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92062094847111, 40.873001790648004], [-73.92004301142987, 40.873280856420614], [-73.91992567417194, 40.87369184797123], [-73.92061337709801, 40.87420741677352], [-73.92117050413519, 40.87511564196837], [-73.92086316245471, 40.875473023508995], [-73.91884517214379, 40.87463432394893], [-73.91920517688847, 40.874161611357565], [-73.91927190176753, 40.87367459026981], [-73.91885909301133, 40.87327094952586], [-73.91849675425777, 40.87316630507445], [-73.91862125902811, 40.873402528900286], [-73.9182029713611, 40.873787964538884], [-73.91641162702295, 40.874508864373766], [-73.91527247053203, 40.874502977395764], [-73.9118534356237, 40.87349336173671], [-73.91118833683441, 40.87298048828956], [-73.91050845587476, 40.871970069633754], [-73.91042098768318, 40.87138566655357], [-73.91072530554307, 40.870960647464166], [-73.9108519258719, 40.86964124094502], [-73.9109569098991, 40.869398680730434], [-73.9113512351059, 40.869526456664666], [-73.91147145738755, 40.869433902145836], [-73.91105118136547, 40.86914826078882], [-73.91110306748172, 40.86895974285592], [-73.91132856688294, 40.86879113407673], [-73.91185599855892, 40.86764209787695], [-73.9127153530512, 40.866611060408864], [-73.91254931956774, 40.86650556661796], [-73.91391874503513, 40.86475741235393], [-73.9159079965429, 40.86428512166971], [-73.9158838879725, 40.864138106334444], [-73.91517582431223, 40.8639260439953], [-73.91548575386129, 40.86313187179303], [-73.91630303023358, 40.86233680530704], [-73.91718702447028, 40.861821138123354], [-73.91839082176477, 40.860106737364084], [-73.91937975185142, 40.8605271899311], [-73.91984623747398, 40.85989780558094], [-73.92162345373781, 40.86077473455689], [-73.92294998965674, 40.85886899435125], [-73.92730037382063, 40.865535388200826], [-73.92945000107098, 40.86577616450916], [-73.93099662801906, 40.86680998270089], [-73.9320552751589, 40.866632924574624], [-73.93297790852994, 40.86510795403932], [-73.93378898818895, 40.863071872995604], [-73.93453048454519, 40.86319804411761], [-73.93127671033326, 40.86884361367126], [-73.93213126627553, 40.869450652750444], [-73.93219516353292, 40.87013036845043], [-73.93185222958729, 40.871299611232345], [-73.92910621438615, 40.87568655736666], [-73.92807282464723, 40.87657620949427], [-73.92743514917515, 40.87678289005562], [-73.9264740098166, 40.87761017023252], [-73.92628034139898, 40.87752718832025], [-73.92635781180044, 40.877161914458846], [-73.92589415239756, 40.877040520082815], [-73.92487225896787, 40.877455381290964], [-73.92380491986391, 40.87721734721977], [-73.92301212607488, 40.87721959727549], [-73.92240581506144, 40.876730212881775], [-73.92238988945184, 40.875766598254174], [-73.92266538608786, 40.875199460481575], [-73.92255872392862, 40.874292899131746], [-73.92214233437066, 40.87368500014021], [-73.92167573929648, 40.873323454425325], [-73.92129125810403, 40.87331317850017], [-73.92115396355324, 40.87306736132022], [-73.92062094847111, 40.873001790648004]]], "type": "Polygon"}, "id": 49, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10034", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 50, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 24503892.12, "Shape_Leng": 28233.7535201, "borough": "Manhattan", "postalCode": "10034"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93213126627553, 40.869450652750444], [-73.93127671033326, 40.86884361367126], [-73.93453048454519, 40.86319804411761], [-73.93378898818895, 40.863071872995604], [-73.93484111974497, 40.861457552123454], [-73.93524365776949, 40.86012437965909], [-73.93567259775875, 40.85962974162257], [-73.93655167726502, 40.85909503631643], [-73.937688907185, 40.85765175547473], [-73.93657612012709, 40.85735053108442], [-73.93795332222744, 40.855569573191495], [-73.93778769142585, 40.85537404141855], [-73.93355655605933, 40.85414224518565], [-73.92815115747896, 40.851863350802304], [-73.92769565158058, 40.852487812004014], [-73.92706993465309, 40.852180831357444], [-73.9270363205077, 40.851616779926935], [-73.92759675459841, 40.850513638834265], [-73.92887662242559, 40.84939404108911], [-73.92972702545423, 40.848177924419836], [-73.93062108080143, 40.84848099946699], [-73.9308842989222, 40.848118956988955], [-73.92848076688256, 40.84698296784975], [-73.92982993605106, 40.845045046703326], [-73.93149099341204, 40.845738235003054], [-73.93150252659382, 40.845296027019955], [-73.93240550181383, 40.844838179179284], [-73.93294766814695, 40.84420971481019], [-73.93328518693878, 40.84411381171962], [-73.93371553818378, 40.84424639804946], [-73.93467106288998, 40.84295727251731], [-73.94260999216223, 40.84623030132907], [-73.9420539434263, 40.84831675486505], [-73.9413764439321, 40.84886059703847], [-73.9415250644368, 40.84928192353945], [-73.94261461299337, 40.84963960129212], [-73.9425813459346, 40.84973530162672], [-73.94688156239715, 40.8505756143882], [-73.94652226898951, 40.85097125952732], [-73.94625670323292, 40.8509383257984], [-73.9461309196999, 40.85117950795217], [-73.94563524825244, 40.85125275374769], [-73.94465859315926, 40.851939419386305], [-73.94433312245029, 40.851847017338486], [-73.94346457759225, 40.85230711173937], [-73.94201510404143, 40.85370952809815], [-73.94028078276583, 40.8566499011432], [-73.93901057396258, 40.85815000531262], [-73.93836114276391, 40.85931066891446], [-73.93752975865353, 40.860103714963984], [-73.93757708419854, 40.860234765519], [-73.93653401311734, 40.861838425108346], [-73.93406287907484, 40.864986425036584], [-73.93245148791947, 40.867524411011495], [-73.93209614681545, 40.86848635612702], [-73.9322806376585, 40.86853411212009], [-73.93231397584677, 40.86892258821232], [-73.93256485663345, 40.86901675604818], [-73.93213126627553, 40.869450652750444]]], "type": "Polygon"}, "id": 50, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10033", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 51, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 16156054.1726, "Shape_Leng": 29415.6071226, "borough": "Manhattan", "postalCode": "10033"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84218235210301, 40.83537416906358], [-73.83915346515785, 40.83567506534224], [-73.83891131312596, 40.834133981323696], [-73.83907694734474, 40.83337985469469], [-73.8393011696255, 40.83308296861269], [-73.84199083008247, 40.830604445413876], [-73.84245536117602, 40.829340510502924], [-73.84212819124282, 40.828053889462005], [-73.84389898470754, 40.827939424605916], [-73.8458008756281, 40.82832317251553], [-73.84699865453219, 40.82799984626042], [-73.84717761298778, 40.82874788185447], [-73.8487791472634, 40.82952951841749], [-73.86037736800591, 40.83292603904782], [-73.8603242158381, 40.833115862161144], [-73.86286863112504, 40.83387147488716], [-73.86315636924591, 40.83553084387707], [-73.86411500978093, 40.835437106567845], [-73.8645159147844, 40.83777028304971], [-73.86355551154783, 40.83786563799565], [-73.86393746628337, 40.84004459426834], [-73.86446480703118, 40.84108857816955], [-73.86358013263468, 40.84127797984137], [-73.86503349401865, 40.84221530200233], [-73.86591122196933, 40.843197329118176], [-73.86748674299177, 40.84418327240509], [-73.86781793939878, 40.84486885236313], [-73.86870050041261, 40.8445288362309], [-73.87099517001133, 40.8431121519742], [-73.87246824509988, 40.84133705988081], [-73.87193481667076, 40.84369841457665], [-73.87459174982463, 40.84152066664689], [-73.87817174271726, 40.8426244583894], [-73.87737475081154, 40.843928963086796], [-73.87538933474555, 40.848127347999515], [-73.8750657290775, 40.85006286825573], [-73.87528412338385, 40.85106466384805], [-73.87414424857587, 40.85286245734043], [-73.87439023308094, 40.853258837509784], [-73.87469430629093, 40.85342657686511], [-73.87478748736937, 40.853856843078056], [-73.87541812597864, 40.85368529681752], [-73.87732278477327, 40.8545919927919], [-73.87685852421453, 40.85533778345113], [-73.87719336162937, 40.856418538521865], [-73.87710402813659, 40.857226181560506], [-73.87634397065331, 40.8590077037487], [-73.87664310400471, 40.85968653860114], [-73.8765897820082, 40.85994239392294], [-73.87588040869909, 40.8606220826656], [-73.87561464393389, 40.86126998958761], [-73.8747842346832, 40.862018984052426], [-73.8739393418077, 40.86328997190862], [-73.87529565187701, 40.86561797951408], [-73.87536822149583, 40.865926806255004], [-73.87514700407597, 40.8662668280685], [-73.87442492287272, 40.86692320856744], [-73.87365197424685, 40.866722194888744], [-73.87290626124744, 40.86607938058514], [-73.87221022368692, 40.86503533994728], [-73.8716739637143, 40.863525440971586], [-73.87167572210159, 40.86287603885649], [-73.8723454738274, 40.85865588452986], [-73.8721469760366, 40.85810722770268], [-73.87163790243835, 40.85752441099808], [-73.87106095474225, 40.85709542725627], [-73.87024075003352, 40.85697128441891], [-73.8688481324744, 40.857238480346176], [-73.86835254943439, 40.857851127218886], [-73.86758752005564, 40.85783011494942], [-73.86761390035623, 40.857236900509726], [-73.86179102367969, 40.857386272168014], [-73.86191994971891, 40.85678361940088], [-73.86097060044283, 40.85680693573844], [-73.86098611981345, 40.85647590575082], [-73.85970813163591, 40.853883820645045], [-73.85208575711836, 40.84412258767649], [-73.85192755636285, 40.84332602208097], [-73.85429908731561, 40.84267082414982], [-73.85381158064114, 40.84242463267732], [-73.85333525154442, 40.84247017562113], [-73.85309459303127, 40.841046979532464], [-73.85290064868009, 40.84107151666127], [-73.8458153111719, 40.83620705331049], [-73.8454272197241, 40.83493650587198], [-73.84218235210301, 40.83537416906358]]], "type": "Polygon"}, "id": 51, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10462", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 52, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 53022514.1123, "Shape_Leng": 49496.0723446, "borough": "Bronx", "postalCode": "10462"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93378898818895, 40.863071872995604], [-73.93297790852994, 40.86510795403932], [-73.9320552751589, 40.866632924574624], [-73.93099662801906, 40.86680998270089], [-73.92945000107098, 40.86577616450916], [-73.92730037382063, 40.865535388200826], [-73.92294998965674, 40.85886899435125], [-73.92162345373781, 40.86077473455689], [-73.91984623747398, 40.85989780558094], [-73.91937975185142, 40.8605271899311], [-73.91839082176477, 40.860106737364084], [-73.91950514221432, 40.85878396382665], [-73.92066249474068, 40.85928344548454], [-73.92132876041438, 40.86026678799297], [-73.9214964232706, 40.86022039546542], [-73.92186243442794, 40.859173416687995], [-73.9212433090473, 40.858868484919014], [-73.92105324714443, 40.8583505791828], [-73.92075890922362, 40.85814033973597], [-73.920796368483, 40.857981272150546], [-73.92154965565973, 40.85729403154336], [-73.92158383846437, 40.85706111219182], [-73.92190904536191, 40.85692356756324], [-73.9219617174374, 40.856686844318084], [-73.92224044603769, 40.85659276011493], [-73.92237520262559, 40.856021197538695], [-73.92227051827581, 40.85564294690223], [-73.92431691650654, 40.85301285300702], [-73.92848076688256, 40.84698296784975], [-73.9308842989222, 40.848118956988955], [-73.93062108080143, 40.84848099946699], [-73.92972702545423, 40.848177924419836], [-73.92887662242559, 40.84939404108911], [-73.92747679283157, 40.850694399361906], [-73.92704554676762, 40.85155528937995], [-73.92710269380954, 40.8522151211724], [-73.92769565158058, 40.852487812004014], [-73.92815115747896, 40.851863350802304], [-73.93355655605933, 40.85414224518565], [-73.93778769142585, 40.85537404141855], [-73.93795332222744, 40.855569573191495], [-73.93657612012709, 40.85735053108442], [-73.937688907185, 40.85765175547473], [-73.93655167726502, 40.85909503631643], [-73.93533889486473, 40.85997844017621], [-73.93484111974497, 40.861457552123454], [-73.93378898818895, 40.863071872995604]]], "type": "Polygon"}, "id": 52, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10040", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 53, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 16340742.7954, "Shape_Leng": 24554.7844034, "borough": "Manhattan", "postalCode": "10040"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89994955967967, 40.857419976900566], [-73.90133666713967, 40.85526534587517], [-73.90676702608086, 40.84854072306443], [-73.90838958308555, 40.84712964014781], [-73.910542738779, 40.845634714728284], [-73.91132052387474, 40.84478293213822], [-73.91226538833638, 40.84471730004147], [-73.91481777696751, 40.845779561467616], [-73.9143876446413, 40.84645383364176], [-73.91526645813974, 40.846812745319944], [-73.91944201781013, 40.84606418758272], [-73.92059936320499, 40.84628549185735], [-73.9210435737383, 40.84652005091085], [-73.92212005611987, 40.84566710938351], [-73.922446782922, 40.84521562164023], [-73.92425286952357, 40.845529882577544], [-73.92473433075106, 40.844812706708666], [-73.92511527239955, 40.844841394006714], [-73.92521236339977, 40.84519946771317], [-73.92560837052363, 40.84549232899062], [-73.92552373636825, 40.845650921379786], [-73.92731890479833, 40.84645628559003], [-73.92636295049391, 40.847809338269606], [-73.92483207946185, 40.84954000822136], [-73.92383215660638, 40.851390167650074], [-73.92249128540813, 40.853263084238925], [-73.92174863303343, 40.85421485710408], [-73.92154923175667, 40.854107086846525], [-73.92136772282997, 40.85428892466824], [-73.92150997655544, 40.854515079085225], [-73.92107795128247, 40.85505812188297], [-73.92080928151115, 40.85537788410969], [-73.92033991783713, 40.85518452087381], [-73.92052883345289, 40.85567385561041], [-73.9197011963239, 40.85667377495148], [-73.91789719477039, 40.85861041833516], [-73.91721536962349, 40.858922743578496], [-73.91640456361304, 40.86008131186204], [-73.91589829244968, 40.86040986969462], [-73.91538284900778, 40.86122137495771], [-73.91423862195072, 40.86249212409186], [-73.91344040776588, 40.8621321892283], [-73.91585195268966, 40.860153926421276], [-73.91547306015973, 40.85987022277327], [-73.9162284150571, 40.85920377850998], [-73.91690231111573, 40.8583158912441], [-73.91585607412311, 40.858012914730494], [-73.91571072314784, 40.85845527108797], [-73.91541840050924, 40.85873245783024], [-73.91359559301507, 40.859436925229], [-73.91228728019128, 40.860176538396864], [-73.91101446870736, 40.86060128684601], [-73.91010178096785, 40.86010444416867], [-73.9091549498034, 40.86030035347019], [-73.90725786070145, 40.85935345596542], [-73.90679734639433, 40.859373612459045], [-73.90390816017985, 40.858367612912396], [-73.90369134614956, 40.85870896310556], [-73.89994955967967, 40.857419976900566]]], "type": "Polygon"}, "id": 53, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10453", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 54, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 25748509.2714, "Shape_Leng": 26398.7814832, "borough": "Bronx", "postalCode": "10453"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.83915346515785, 40.83567506534224], [-73.83869424319074, 40.83568710206635], [-73.83864323543972, 40.83515110354462], [-73.83639063714972, 40.83583762495431], [-73.83531149570906, 40.83388553724342], [-73.83223926383569, 40.835267843871016], [-73.82992122581928, 40.83475704561792], [-73.82907160235987, 40.83425151822835], [-73.82818975932426, 40.83295111734966], [-73.82601252137991, 40.834020799681774], [-73.82622006461409, 40.83435535145345], [-73.82556221283076, 40.83508260461996], [-73.82539922721936, 40.83557978823571], [-73.82583156312563, 40.836949148385955], [-73.82598380391683, 40.84064110680368], [-73.82624958155571, 40.84255029521073], [-73.82624131145322, 40.842993616042584], [-73.82579214690983, 40.842878188525326], [-73.82588862715855, 40.84519384114851], [-73.82615083727275, 40.846226186685314], [-73.82719528350046, 40.84838362117628], [-73.82740109939706, 40.849492088426835], [-73.82726173485476, 40.850824637078446], [-73.82637299798377, 40.85375696168076], [-73.82655543842569, 40.856653377076306], [-73.82318523980584, 40.85711020662892], [-73.82011475797268, 40.858120967822494], [-73.81881734196539, 40.85879266345927], [-73.81773697694356, 40.85958494017297], [-73.81717066739334, 40.86010260694221], [-73.81641392884228, 40.861180650347094], [-73.81589979091419, 40.86101528063796], [-73.81566568238311, 40.86112883979202], [-73.81548221758437, 40.8609569199768], [-73.8152313887125, 40.861128391862685], [-73.8148180821571, 40.861135003423676], [-73.8148422928074, 40.86089208054644], [-73.81381780988944, 40.860548029737544], [-73.81271856647491, 40.858833033642256], [-73.81228635950683, 40.85419265057696], [-73.81639556521102, 40.85409039569962], [-73.81685235602289, 40.85352004258892], [-73.81720264913174, 40.85180254714651], [-73.81691867977523, 40.851684811174366], [-73.81712140844003, 40.851389065807844], [-73.81691156092803, 40.85097213406238], [-73.81569440992018, 40.85081799269419], [-73.81624208477385, 40.85021820204877], [-73.81547991219877, 40.84926407310055], [-73.81507960355192, 40.84918817782779], [-73.81530687547242, 40.84887878105137], [-73.81529409701476, 40.8486211004782], [-73.81589784867349, 40.84803099760124], [-73.815871062755, 40.84777905606206], [-73.815610132038, 40.84767691046206], [-73.81608507276785, 40.84751913848025], [-73.81609210481562, 40.846445567978364], [-73.8156384210769, 40.84629339955565], [-73.81510560408003, 40.846556232180475], [-73.81475819976843, 40.84614101702259], [-73.81447818171968, 40.84623071729322], [-73.81461241127928, 40.84591010408418], [-73.81510417841447, 40.84561265235143], [-73.8150196204099, 40.84550231698279], [-73.81417508993056, 40.84599456827018], [-73.81385016588719, 40.845869881519434], [-73.81296134510679, 40.84638051706479], [-73.81289419283452, 40.846289558191565], [-73.81403456935524, 40.84559166504919], [-73.81375415933847, 40.84532080227149], [-73.8126285203423, 40.844973078676], [-73.81363724100078, 40.84503736019969], [-73.81418770073134, 40.84479246004838], [-73.8139259373122, 40.8445242571262], [-73.81345766831772, 40.84445635091619], [-73.81329031512101, 40.84377505046427], [-73.81410241441793, 40.84348822902805], [-73.81437852586187, 40.84309012461747], [-73.81516126345485, 40.84351423949053], [-73.81544813839402, 40.84388612046357], [-73.81581371823555, 40.84398307572691], [-73.81558701416391, 40.8441578272895], [-73.81567242179257, 40.84437679208601], [-73.81603445422303, 40.84438205351525], [-73.81589925139777, 40.84429783427276], [-73.81597138882493, 40.8440577505609], [-73.81629324016049, 40.84391457167386], [-73.81704165622854, 40.844075493619336], [-73.81709447892834, 40.844261920329956], [-73.81747367449232, 40.844362038235985], [-73.81827147843173, 40.84435752843582], [-73.81818885690545, 40.84411219448312], [-73.81763266295513, 40.84426237173524], [-73.81718739632147, 40.84391570950563], [-73.81662595077971, 40.843952439184186], [-73.81617461796753, 40.84303161605438], [-73.81567951207403, 40.84249619589085], [-73.81537561883776, 40.84238551271884], [-73.81557902413601, 40.841781488067156], [-73.81522403404506, 40.84122969903366], [-73.81498057788266, 40.84008904239507], [-73.81470273594375, 40.839762606286804], [-73.81478987420579, 40.839073644890966], [-73.81599267132377, 40.83856243534329], [-73.81647790644655, 40.83769593493271], [-73.81612061730632, 40.836236915864546], [-73.81587834519348, 40.835925148705904], [-73.81549111182206, 40.83596735025016], [-73.81607855603878, 40.83570274671006], [-73.81601461441136, 40.835501404605715], [-73.81556135069414, 40.835506123247214], [-73.81608553451547, 40.83533180575556], [-73.81605064713791, 40.83451759818327], [-73.81568121829729, 40.834494683271515], [-73.81600388042877, 40.83438650590796], [-73.81603080553573, 40.83407996325687], [-73.81593556434025, 40.83366914632679], [-73.81569996893568, 40.83346697878807], [-73.81574548569367, 40.83292518419321], [-73.81546603980468, 40.832247784759346], [-73.81523011871958, 40.83221602022342], [-73.81533696003588, 40.832145090850624], [-73.81503247619749, 40.83168024119183], [-73.81487821778839, 40.831024153030825], [-73.8141858051456, 40.830237379543526], [-73.81370435352528, 40.829934966106286], [-73.81387290544272, 40.82974158282207], [-73.81356346039479, 40.829620178669195], [-73.81359478305774, 40.82936757509451], [-73.81336840501453, 40.82938597441562], [-73.81350341378318, 40.82922252211142], [-73.81341311322024, 40.82904781741674], [-73.81292248734184, 40.828967562710154], [-73.81318358719237, 40.828801578636295], [-73.81284114395251, 40.8286521018932], [-73.81275522055311, 40.82824817503596], [-73.81032807195606, 40.82828087772208], [-73.80981479171265, 40.82807056863168], [-73.80993157486753, 40.82785273999562], [-73.81049228762988, 40.82805731562395], [-73.81205907736044, 40.82802564640111], [-73.81259931279965, 40.82787280890973], [-73.8127616778696, 40.827729186709455], [-73.81266057207489, 40.82754687714226], [-73.8138552770763, 40.826801802510175], [-73.81369795872203, 40.82633901972728], [-73.81403514907201, 40.82592631763725], [-73.81385162984675, 40.82538799232942], [-73.81306886279565, 40.82500807318891], [-73.81405283066292, 40.824324324146716], [-73.8138565802758, 40.824067968120794], [-73.81328107740461, 40.8240371636778], [-73.81320228075789, 40.82422728240618], [-73.81281091010236, 40.82430871101275], [-73.81274173927869, 40.82477832618809], [-73.81226384748071, 40.824388462137975], [-73.81175936048655, 40.82434174764735], [-73.81167193514068, 40.82468724381751], [-73.81120529572054, 40.824595528711185], [-73.81121511194902, 40.82479746967215], [-73.81103489157742, 40.824708316983546], [-73.81086641161545, 40.82515781502031], [-73.81041148489567, 40.824990670431426], [-73.81029416637503, 40.82517697234524], [-73.80996505874121, 40.82515813054877], [-73.80949721256567, 40.82559855830083], [-73.80931075395983, 40.82557825277147], [-73.80909787900771, 40.82594836704666], [-73.8078473024978, 40.825771855515455], [-73.80765593736722, 40.82590572592819], [-73.8072049783003, 40.825609502501656], [-73.80697886583782, 40.8253983267605], [-73.80673584763404, 40.82465749090377], [-73.80657742832942, 40.82460528097643], [-73.80679170351259, 40.82440092823116], [-73.80652187642295, 40.82420044734387], [-73.80674742632795, 40.82413443275516], [-73.80679990775766, 40.82394205819285], [-73.80646665597514, 40.82378825984627], [-73.8067531087326, 40.823683160476236], [-73.80670171576823, 40.82342168950963], [-73.80659961840517, 40.82329566112386], [-73.80621818854414, 40.82332613477006], [-73.80649574724352, 40.823090828890294], [-73.80631815763749, 40.822845252193], [-73.8059540154591, 40.8229103943575], [-73.806212183771, 40.822784579588976], [-73.80622724096217, 40.82257486358654], [-73.8058354658794, 40.8221927976942], [-73.80595249480136, 40.822056255850406], [-73.80572205364695, 40.822097319558296], [-73.80587313539729, 40.82189978768805], [-73.80563219140515, 40.82156735010149], [-73.80592224453363, 40.82134386943354], [-73.80579380313696, 40.82119109526543], [-73.80593303022002, 40.82113374910932], [-73.80588019602564, 40.8209544538088], [-73.80386964589547, 40.821057684064364], [-73.80573097211914, 40.82075833870427], [-73.80562418720542, 40.8201102339342], [-73.80586872342671, 40.820032289023096], [-73.80527381042687, 40.81937823355511], [-73.80534422778732, 40.819039144538806], [-73.80428238669391, 40.81834965152535], [-73.80267407367876, 40.81823859474829], [-73.80252162521407, 40.8185260088947], [-73.80207891836726, 40.81855675918451], [-73.8018845207796, 40.818358970264796], [-73.80081280291255, 40.81809121465008], [-73.80022175090143, 40.81752170442025], [-73.7980845699587, 40.8168347099596], [-73.79794803526643, 40.816622824667185], [-73.7975903229523, 40.81650755020948], [-73.79736727444434, 40.81600783702127], [-73.79762068663118, 40.81550465266266], [-73.79816144202876, 40.81565809741482], [-73.79887563646422, 40.81533716931304], [-73.80008027089268, 40.814250869497414], [-73.80010264042109, 40.814020323689284], [-73.80098934683033, 40.813711346494934], [-73.8014617228646, 40.812939630431735], [-73.80309160999812, 40.812439700981614], [-73.80367472416161, 40.81260658634088], [-73.80325841145246, 40.81318194066428], [-73.80322191164916, 40.81358941563202], [-73.80435350183575, 40.814617650432005], [-73.80509031771932, 40.81562558083722], [-73.80596078135693, 40.81604235471693], [-73.8066065148765, 40.816664868567905], [-73.80704617476901, 40.8165340449752], [-73.8065845426523, 40.81561280932591], [-73.80573272347016, 40.815245285619696], [-73.805309609761, 40.81474898399304], [-73.8050533010175, 40.81290746999334], [-73.80438493226531, 40.81223333065578], [-73.80372131432887, 40.812023356215434], [-73.80278363462804, 40.81067376457983], [-73.80232376604185, 40.810333947785644], [-73.80196282618712, 40.8102805752621], [-73.80135575285796, 40.810668623401135], [-73.80118533995481, 40.81055222819633], [-73.80126691916288, 40.81035557178335], [-73.80075324108006, 40.80992925204093], [-73.79993852475384, 40.80967900324557], [-73.79842117017165, 40.809559902095586], [-73.79230679010496, 40.8068163389169], [-73.79134196613087, 40.8068253018195], [-73.79114243338135, 40.80711050188767], [-73.79149267700843, 40.80743386181651], [-73.79094575330679, 40.80731476527076], [-73.79084254758665, 40.80656842316592], [-73.79040794812946, 40.80619926778433], [-73.79016535192108, 40.805744732688375], [-73.79031520733383, 40.80491689024792], [-73.79076243631188, 40.80446589715564], [-73.79138284924598, 40.804215912331344], [-73.79225580480099, 40.80415964870286], [-73.79340830500111, 40.80432489605794], [-73.79342845239167, 40.804074034555214], [-73.79395529965417, 40.8040661669224], [-73.79392566445605, 40.80479464809184], [-73.7944818533985, 40.80499195920229], [-73.79454121904712, 40.80535364134714], [-73.79530513261682, 40.80594852038046], [-73.79631895542946, 40.80637373870608], [-73.7970292000194, 40.80634559543071], [-73.7984069064365, 40.806887085812185], [-73.80042035046667, 40.80823292632263], [-73.80198462601442, 40.809011531647776], [-73.80294067483085, 40.809084834276305], [-73.80371136175798, 40.80852606043901], [-73.80392672372489, 40.80852799108507], [-73.80404258193852, 40.80876977966147], [-73.80492633977889, 40.80938777249603], [-73.80705319939106, 40.81062348674849], [-73.80820807865985, 40.81186002134058], [-73.80982773792604, 40.81288914946673], [-73.81039007959969, 40.812987651064404], [-73.81072959807503, 40.81275622407123], [-73.81135201985526, 40.813020024308535], [-73.81186267968074, 40.81293601908614], [-73.81333563611496, 40.81337389201061], [-73.81361404706642, 40.813157481486655], [-73.81362273468962, 40.813398344869654], [-73.81387778182159, 40.81354079712604], [-73.81563759895951, 40.81349992875815], [-73.81587901544381, 40.81376674523373], [-73.81641563496554, 40.81385825868772], [-73.81980330184992, 40.81317926065443], [-73.82013396803724, 40.81285617360033], [-73.8206301569085, 40.813016662754464], [-73.82240219796358, 40.81263868485687], [-73.82330840945548, 40.81238048041086], [-73.82348711842681, 40.81219071819909], [-73.82413999275975, 40.81214386606972], [-73.82457884732106, 40.81190964120945], [-73.82467079259051, 40.81170120923213], [-73.82507409990419, 40.811822123149675], [-73.82618708444326, 40.81126739514412], [-73.82802730463979, 40.81148432590775], [-73.82923514810254, 40.811257376420656], [-73.83030307738986, 40.810772834027816], [-73.83110224012651, 40.81015551129341], [-73.8317926894291, 40.809338838437384], [-73.83211348112651, 40.808488824744266], [-73.83216284769317, 40.80747724377902], [-73.83200227048519, 40.80703840346496], [-73.83157441828911, 40.806616709956984], [-73.83142821723317, 40.805195357811655], [-73.83165681282429, 40.80490147235556], [-73.83208111513923, 40.80478040119624], [-73.834394831968, 40.80502745321113], [-73.83571311447443, 40.805527727463314], [-73.83724663091505, 40.80588142000904], [-73.83801295294204, 40.806892284684395], [-73.83824339384849, 40.8079854221827], [-73.84070213882981, 40.81158641502528], [-73.84047660208216, 40.81226328198364], [-73.84046761965125, 40.813117071210364], [-73.83972491120863, 40.81397080261996], [-73.83960403980956, 40.81444739361837], [-73.83972945433092, 40.815594946282715], [-73.8395934616664, 40.81598845956296], [-73.84018986140426, 40.81718856771436], [-73.83999174315367, 40.81805708001484], [-73.83904525840917, 40.81897851197595], [-73.83874531001793, 40.81959126350766], [-73.8390669191511, 40.81986717330707], [-73.83891007698749, 40.82209231986876], [-73.8391402746675, 40.822268468757066], [-73.8392194187287, 40.82275461450152], [-73.8396181095313, 40.82295578070826], [-73.83947216326614, 40.82329057162662], [-73.84053175410645, 40.82487965519758], [-73.84114833810172, 40.82608918649397], [-73.8412929819311, 40.8267100404478], [-73.8421157716478, 40.828027553647594], [-73.84245536117602, 40.829340510502924], [-73.84173028619081, 40.83095425956259], [-73.83907694734474, 40.83337985469469], [-73.83891131312596, 40.834133981323696], [-73.83915346515785, 40.83567506534224]]], "type": "Polygon"}, "id": 54, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10465", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 55, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 108423743.439, "Shape_Leng": 96349.4735833, "borough": "Bronx", "postalCode": "10465"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.77200435481511, 40.85711639255333], [-73.77204491393451, 40.85894145777075], [-73.77238757022208, 40.85969632528365], [-73.77228641733628, 40.85983407493792], [-73.77136102502341, 40.86002105302514], [-73.77084630430326, 40.8599781760458], [-73.76951048265398, 40.859276437047825], [-73.76844070070561, 40.85831134148608], [-73.76837368403693, 40.857541589321045], [-73.76520707478966, 40.85522938465328], [-73.765442091798, 40.85494814583127], [-73.76608068164437, 40.85496223301847], [-73.76763568489011, 40.85449775877286], [-73.76807624017853, 40.85421385408712], [-73.76855250728279, 40.85337907266943], [-73.7690657508558, 40.85338446590149], [-73.76944184694919, 40.852890236237386], [-73.769337749737, 40.85206439183909], [-73.76866990519946, 40.85072119156128], [-73.76972182793952, 40.84767482461659], [-73.7694171137279, 40.8470433154753], [-73.76788683771254, 40.845436317298194], [-73.76784739795501, 40.84520010998115], [-73.7686354206174, 40.84516214168113], [-73.76895468549864, 40.844936329477996], [-73.76967775596309, 40.845507597381655], [-73.76985487324694, 40.84534339344811], [-73.76971025145244, 40.845537519089284], [-73.7706103921834, 40.84666341091633], [-73.77149838984643, 40.8474394848653], [-73.77147604585832, 40.84775714068322], [-73.77118163802848, 40.8482013386004], [-73.77087058087209, 40.84977316809854], [-73.77196209573299, 40.851549705168324], [-73.77246837541145, 40.85168456513187], [-73.77244671135846, 40.85236494047131], [-73.771782865486, 40.85249130842406], [-73.77166870382979, 40.85276772248897], [-73.77179823478932, 40.85304793885575], [-73.77221852401232, 40.85303674786296], [-73.7722065671645, 40.85352020589774], [-73.77237827695647, 40.853824302202774], [-73.77177194601134, 40.85464124727934], [-73.77156270143169, 40.855446158390635], [-73.77185079060135, 40.85605152623409], [-73.7716823331088, 40.85693691139163], [-73.77199230746548, 40.85757264973778], [-73.77196114858948, 40.8570235914387], [-73.77200435481511, 40.85711639255333]]], "type": "Polygon"}, "id": 55, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10464", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 56, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 4512530.57672, "Shape_Leng": 14922.29258, "borough": "Bronx", "postalCode": "10464"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79234936771036, 40.85607454194248], [-73.79203560020522, 40.855991168315406], [-73.79167203117886, 40.85688545224561], [-73.79187096649765, 40.85698824418914], [-73.79161217041661, 40.85736896206388], [-73.791295197479, 40.85723392567666], [-73.79104650757377, 40.85736524919142], [-73.79077544058079, 40.857748989318345], [-73.79027643904395, 40.857950533059196], [-73.78998599150988, 40.85850547921311], [-73.78899170339481, 40.85847141478528], [-73.78872695212014, 40.8570560053218], [-73.788905228518, 40.85660477302386], [-73.78835974451906, 40.855635165198585], [-73.78840947861316, 40.85518530866016], [-73.7885538280831, 40.855146083972045], [-73.78829279121564, 40.8548193969686], [-73.78850226821942, 40.85443390257598], [-73.78832479016585, 40.85410124719815], [-73.78727980674995, 40.854195252912874], [-73.7871305022, 40.854052609466976], [-73.78798195121502, 40.85374147194215], [-73.78800087782157, 40.85350782229324], [-73.7873023792889, 40.85277743194794], [-73.7867813572312, 40.85254964654496], [-73.78588285883852, 40.85178091908893], [-73.7854619092331, 40.85166365180528], [-73.78550183616915, 40.85154504362585], [-73.784354176139, 40.85179023013617], [-73.78395729012601, 40.851487157449974], [-73.78356450801478, 40.85156876329159], [-73.7834462800515, 40.85140059384787], [-73.78452729593756, 40.851014408676896], [-73.78447337201594, 40.85074490347313], [-73.78401701363339, 40.85058116674995], [-73.78428427171812, 40.85023952939064], [-73.7842061047259, 40.85004727172385], [-73.78349483658306, 40.849176173000714], [-73.78316274864434, 40.84921417056659], [-73.78303604373922, 40.849063330016115], [-73.7824258034326, 40.84932764916935], [-73.78149440743893, 40.848699545179514], [-73.78149252098095, 40.84858033862133], [-73.78268071906048, 40.84815138938902], [-73.7825011889785, 40.847907258284565], [-73.78153237621497, 40.8479753329656], [-73.7814207744951, 40.84751411232283], [-73.78222415402124, 40.84687420838537], [-73.78214019872486, 40.846578246261984], [-73.78250171893364, 40.84641743550175], [-73.7823609011003, 40.845998079507545], [-73.7826061101007, 40.84595061934428], [-73.78252742477005, 40.845696501690405], [-73.78316668239947, 40.8454900401302], [-73.7832485621282, 40.84506435255078], [-73.78300840601602, 40.84470502936566], [-73.7833865767703, 40.84443530790587], [-73.78331826143932, 40.84432015753032], [-73.7830655097584, 40.844373217810734], [-73.78298429999002, 40.84417253644874], [-73.78362740673036, 40.84403912953736], [-73.7834164208183, 40.84384016714057], [-73.78351271108916, 40.843649151113716], [-73.78303013857183, 40.84260570113027], [-73.78220054787198, 40.841645107954825], [-73.78188552385059, 40.84172691344556], [-73.78180662913981, 40.84126424167556], [-73.78141959462165, 40.84072166430178], [-73.78157115199376, 40.84039863644664], [-73.7813652093169, 40.83981817013822], [-73.78120384226874, 40.83975237556998], [-73.7813339246887, 40.83969363796181], [-73.78127828278095, 40.83940305853178], [-73.78113595392466, 40.83938426263724], [-73.78136432490952, 40.839240872113834], [-73.78150212568191, 40.83858121991169], [-73.78203665152468, 40.83801267548336], [-73.78191304636002, 40.837629196885665], [-73.78233846479633, 40.83734594972511], [-73.78272299749614, 40.837496728082186], [-73.7829127713726, 40.83731766332427], [-73.7826908935485, 40.83682618766874], [-73.78277964752824, 40.83635099715327], [-73.78304577221883, 40.836339887958495], [-73.78337208914051, 40.83692100909374], [-73.78426837348275, 40.83677477619339], [-73.78464612780151, 40.83726725314377], [-73.78516210464822, 40.837462761338614], [-73.7852723407034, 40.83776104350482], [-73.78557169182868, 40.83792652991879], [-73.78544342917647, 40.838353754243386], [-73.78582240986593, 40.83939152214316], [-73.78650847593113, 40.83973544449173], [-73.7873326240874, 40.83971177113298], [-73.78762376291859, 40.84048593256999], [-73.7873804506771, 40.84065744118698], [-73.787860917367, 40.841078639453286], [-73.78760919000116, 40.841188746269786], [-73.78786137845599, 40.8414962613783], [-73.78826053625576, 40.841536984919735], [-73.78799228851807, 40.84173327838875], [-73.78804632770407, 40.84186532642014], [-73.78897151110104, 40.84316576776557], [-73.78960043031434, 40.843119885591626], [-73.78980076685534, 40.84358664617686], [-73.78932577238918, 40.84367633071737], [-73.78947773283501, 40.84431488907379], [-73.79143799219418, 40.84685295514055], [-73.79133547376615, 40.84693147928128], [-73.7915304033451, 40.847529740369936], [-73.79125419548974, 40.847596184546184], [-73.7913377398622, 40.848294289215104], [-73.79101756609467, 40.84880095995888], [-73.79013384308176, 40.84910110859115], [-73.7897087565692, 40.8487972361399], [-73.78956271723362, 40.84885790178148], [-73.78974667855755, 40.849206815910854], [-73.78963510372452, 40.84933114096716], [-73.78976398058994, 40.849736934252], [-73.78959898734348, 40.84976731868575], [-73.78982871103713, 40.84986448835451], [-73.7899159711151, 40.85013851552169], [-73.78975266875558, 40.85025083292144], [-73.79000590606026, 40.85027620274863], [-73.79005777052653, 40.850445838595434], [-73.78985740226933, 40.850634021047156], [-73.7901219175497, 40.85117437042717], [-73.7895008796217, 40.85128407800993], [-73.78972474678554, 40.85169699899825], [-73.7901760494769, 40.851671388522284], [-73.79015864894487, 40.852275328071464], [-73.79113451089215, 40.85204264820931], [-73.79143984478954, 40.85276851779656], [-73.79040652609778, 40.85302382431983], [-73.79047991937324, 40.853202638112116], [-73.79076765434174, 40.853122438262865], [-73.7908483810107, 40.853326270025455], [-73.79111045968601, 40.85326671795297], [-73.79126252824365, 40.85385567923454], [-73.79108694173753, 40.85397525042309], [-73.79161458442614, 40.853921144926915], [-73.7918324917917, 40.85408086896103], [-73.79180353965201, 40.854276514678986], [-73.79109114353659, 40.85452540737497], [-73.79206779383115, 40.85568395731888], [-73.79251187861638, 40.85579064765509], [-73.79234936771036, 40.85607454194248]]], "type": "Polygon"}, "id": 56, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10464", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 57, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 11587953.8276, "Shape_Leng": 26773.6344401, "borough": "Bronx", "postalCode": "10464"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84218235210301, 40.83537416906358], [-73.8454272197241, 40.83493650587198], [-73.8458153111719, 40.83620705331049], [-73.85290064868009, 40.84107151666127], [-73.85309459303127, 40.841046979532464], [-73.85333525154442, 40.84247017562113], [-73.85381158064114, 40.84242463267732], [-73.85429908731561, 40.84267082414982], [-73.85192755636285, 40.84332602208097], [-73.85208575711836, 40.84412258767649], [-73.85970813163591, 40.853883820645045], [-73.86098611981345, 40.85647590575082], [-73.86097060044283, 40.85680693573844], [-73.86191994971891, 40.85678361940088], [-73.86179102367969, 40.857386272168014], [-73.85614534643452, 40.857558550700126], [-73.84965832415467, 40.85810874143762], [-73.84716176779602, 40.858082687762206], [-73.84390190641878, 40.85778583002551], [-73.83242787237616, 40.85606385717291], [-73.82655543842569, 40.856653377076306], [-73.82637299798377, 40.85375696168076], [-73.82726173485476, 40.850824637078446], [-73.82740109939706, 40.849492088426835], [-73.82719528350046, 40.84838362117628], [-73.82615083727275, 40.846226186685314], [-73.82588862715855, 40.84519384114851], [-73.82579214690983, 40.842878188525326], [-73.82624131145322, 40.842993616042584], [-73.82624958155571, 40.84255029521073], [-73.82598380391683, 40.84064110680368], [-73.82583156312563, 40.836949148385955], [-73.82539922721936, 40.83557978823571], [-73.82556221283076, 40.83508260461996], [-73.82622006461409, 40.83435535145345], [-73.82601252137991, 40.834020799681774], [-73.82818975932426, 40.83295111734966], [-73.82884644206304, 40.83399963799653], [-73.82946225597493, 40.83456936011647], [-73.83200463718632, 40.83523772926482], [-73.83223926383569, 40.835267843871016], [-73.83531149570906, 40.83388553724342], [-73.83639063714972, 40.83583762495431], [-73.83864323543972, 40.83515110354462], [-73.83869424319074, 40.83568710206635], [-73.84218235210301, 40.83537416906358]]], "type": "Polygon"}, "id": 57, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10461", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 58, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 62824057.5538, "Shape_Leng": 35943.3505557, "borough": "Bronx", "postalCode": "10461"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89994955967967, 40.857419976900566], [-73.8957336177223, 40.856012665211], [-73.89558075750972, 40.85624529497108], [-73.89541738629748, 40.85619783787808], [-73.89239103234122, 40.8549271835139], [-73.89090202763225, 40.85411691120095], [-73.89038953537019, 40.8546890823024], [-73.88963202953525, 40.85365692516964], [-73.8896352157018, 40.8531776360245], [-73.88382008921438, 40.85149931812837], [-73.88487765514179, 40.849211624727495], [-73.89041215569411, 40.84274966986534], [-73.89216815101075, 40.84104966833458], [-73.88941989816922, 40.83942748930311], [-73.88853907917327, 40.839074277245444], [-73.88841799160812, 40.83851652916721], [-73.88872709595096, 40.837994311511785], [-73.89075932089223, 40.83681888308092], [-73.89385804932188, 40.836402724134366], [-73.89448930312977, 40.836053213607904], [-73.89513914629471, 40.835429533032105], [-73.89568799348555, 40.83623747354246], [-73.89603976342188, 40.836459872891105], [-73.89724960068844, 40.836574459872566], [-73.89819991154158, 40.83641267778845], [-73.8988953041404, 40.83653701199864], [-73.89956172662355, 40.837421721168155], [-73.89996791820123, 40.8376547906892], [-73.9005661055861, 40.83659253112087], [-73.90597940139904, 40.83850521536677], [-73.9053835743797, 40.83976900624047], [-73.90560739685763, 40.83984364155386], [-73.90677415530106, 40.83825366003363], [-73.90798076079534, 40.83717811624066], [-73.9090924362983, 40.83697346362007], [-73.90945871055806, 40.83705723204548], [-73.90891034814139, 40.83837650764227], [-73.91072456408988, 40.83899776672884], [-73.91139056208888, 40.83786560751648], [-73.91270830046946, 40.83836011456288], [-73.91207880804134, 40.839453247489764], [-73.91313620916213, 40.83981410928697], [-73.91136385908399, 40.84472210292758], [-73.910542738779, 40.845634714728284], [-73.90838958308555, 40.84712964014781], [-73.90676702608086, 40.84854072306443], [-73.90133666713967, 40.85526534587517], [-73.89994955967967, 40.857419976900566]]], "type": "Polygon"}, "id": 58, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10457", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 59, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 37640607.3796, "Shape_Leng": 29927.2751336, "borough": "Bronx", "postalCode": "10457"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.87687461928316, 40.85539409847148], [-73.87732113594383, 40.854576099158585], [-73.87541812597864, 40.85368529681752], [-73.87478748736937, 40.853856843078056], [-73.87469430629093, 40.85342657686511], [-73.87439023308094, 40.853258837509784], [-73.87414424857587, 40.85286245734043], [-73.87528412338385, 40.85106466384805], [-73.8750657290775, 40.85006286825573], [-73.87538933474555, 40.848127347999515], [-73.87737475081154, 40.843928963086796], [-73.87817174271726, 40.8426244583894], [-73.87459174982463, 40.84152066664689], [-73.87193481667076, 40.84369841457665], [-73.87246824509988, 40.84133705988081], [-73.87099517001133, 40.8431121519742], [-73.86870050041261, 40.8445288362309], [-73.86781793939878, 40.84486885236313], [-73.86748674299177, 40.84418327240509], [-73.86591122196933, 40.843197329118176], [-73.86503349401865, 40.84221530200233], [-73.86358013263468, 40.84127797984137], [-73.86446480703118, 40.84108857816955], [-73.86393746628337, 40.84004459426834], [-73.86355551154783, 40.83786563799565], [-73.8645159147844, 40.83777028304971], [-73.86411500978093, 40.835437106567845], [-73.86315636924591, 40.83553084387707], [-73.86283694474895, 40.833688049541], [-73.86680620277706, 40.83483704751475], [-73.86652947039447, 40.83496002157638], [-73.86970079926397, 40.83581889939956], [-73.87183795131229, 40.836169636955795], [-73.87747194769558, 40.83656423602639], [-73.88030161211002, 40.837302928583334], [-73.88137082696232, 40.835165221643635], [-73.88222191532053, 40.83546297172717], [-73.88312499337512, 40.83450514259947], [-73.88364178617395, 40.833635565521455], [-73.88472947085283, 40.83233386920893], [-73.8856326545163, 40.83064192008958], [-73.89162677257228, 40.83273280074007], [-73.89173687010934, 40.8326635795345], [-73.89299709373722, 40.835643018834176], [-73.89362217032325, 40.83539646352994], [-73.89477113846525, 40.8343111995086], [-73.89630199034309, 40.833543242971515], [-73.89696587999109, 40.83434217523766], [-73.89558731976392, 40.83500743657553], [-73.89433189303442, 40.83616154756642], [-73.89337675083834, 40.83654003783603], [-73.89075932089223, 40.83681888308092], [-73.88872709595096, 40.837994311511785], [-73.88841799160812, 40.83851652916721], [-73.88853907917327, 40.839074277245444], [-73.88941989816922, 40.83942748930311], [-73.89216815101075, 40.84104966833458], [-73.89041215569411, 40.84274966986534], [-73.88473295355968, 40.84939861699393], [-73.8827328427844, 40.8536506903849], [-73.8816676021557, 40.85334821972076], [-73.88068425400864, 40.856782577385765], [-73.88079071397841, 40.857062242296585], [-73.8781933802445, 40.85560350293245], [-73.87687461928316, 40.85539409847148]]], "type": "Polygon"}, "id": 59, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10460", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 60, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 35155666.6459, "Shape_Leng": 41386.4048976, "borough": "Bronx", "postalCode": "10460"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94691631035546, 40.85053396462935], [-73.9425813459346, 40.84973530162672], [-73.94261461299337, 40.84963960129212], [-73.9415250644368, 40.84928192353945], [-73.9413764439321, 40.84886059703847], [-73.9420539434263, 40.84831675486505], [-73.94260999216223, 40.84623030132907], [-73.93485106064718, 40.84301477264741], [-73.93467106288998, 40.84295727251731], [-73.93371553818378, 40.84424639804946], [-73.93299195446892, 40.84418408460361], [-73.93240550181383, 40.844838179179284], [-73.9315279064619, 40.8452705293293], [-73.93149099341204, 40.845738235003054], [-73.92982993605106, 40.845045046703326], [-73.93088993208328, 40.8424779202543], [-73.93439575536135, 40.83610394068545], [-73.93440160458212, 40.836469017808476], [-73.93506980371573, 40.83567357256877], [-73.93855748620817, 40.83291832007009], [-73.9399124624082, 40.83092734327202], [-73.9400877390704, 40.83034967785467], [-73.94107858204309, 40.82908318828013], [-73.94971383646286, 40.83269649150552], [-73.94852105078529, 40.83634866699097], [-73.94917082807663, 40.83668014333772], [-73.95035333237948, 40.83270690183203], [-73.95119152647304, 40.830482220167625], [-73.95218696274918, 40.82892668637683], [-73.9534708521888, 40.827525921315825], [-73.9545418790166, 40.82786149839284], [-73.9511691024042, 40.83265118172919], [-73.95091399534284, 40.83330463429175], [-73.95015909125742, 40.834384172504045], [-73.94954196093035, 40.836609539186945], [-73.94916704996425, 40.83668873778727], [-73.94954429666501, 40.83688311385108], [-73.94882846127585, 40.8389157386598], [-73.94738278950409, 40.84194047114247], [-73.94613038088204, 40.843950834255715], [-73.94623482148211, 40.84539193331183], [-73.94655744115931, 40.84598305846326], [-73.94635643102687, 40.84622629353009], [-73.94682911293692, 40.8470636911263], [-73.94664694075595, 40.848136792028676], [-73.9466763281312, 40.84896569956346], [-73.94705147325554, 40.85023681853292], [-73.94691631035546, 40.85053396462935]]], "type": "Polygon"}, "id": 60, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10032", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 61, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23159566.0919, "Shape_Leng": 31657.9250475, "borough": "Manhattan", "postalCode": "10032"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92809812060851, 40.8453184972172], [-73.92731890479833, 40.84645628559003], [-73.92552373636825, 40.845650921379786], [-73.92560837052363, 40.84549232899062], [-73.92521236339977, 40.84519946771317], [-73.92511527239955, 40.844841394006714], [-73.92473433075106, 40.844812706708666], [-73.92425286952357, 40.845529882577544], [-73.922446782922, 40.84521562164023], [-73.92212005611987, 40.84566710938351], [-73.9210435737383, 40.84652005091085], [-73.92059936320499, 40.84628549185735], [-73.91944201781013, 40.84606418758272], [-73.91526645813974, 40.846812745319944], [-73.9143876446413, 40.84645383364176], [-73.91481777696751, 40.845779561467616], [-73.91226538833638, 40.84471730004147], [-73.91132052387474, 40.84478293213822], [-73.9128910088513, 40.840372130480866], [-73.91387854541227, 40.8385655847127], [-73.9190290311349, 40.833090305012284], [-73.9198563779372, 40.831948617025944], [-73.92117100376741, 40.82962775432217], [-73.92241309948928, 40.830052563277604], [-73.92404682541348, 40.8272439479143], [-73.92713355145005, 40.82821103296855], [-73.92990283464644, 40.82995643775951], [-73.93103678392244, 40.829639709525765], [-73.92968227038422, 40.82871379487919], [-73.93096438607371, 40.82835233359979], [-73.93311365908062, 40.82815279425892], [-73.93323926934785, 40.83029390138358], [-73.93339933657043, 40.83039106188832], [-73.93361585971276, 40.83265781133958], [-73.93307723736721, 40.83544857344403], [-73.93253197252466, 40.836731323877075], [-73.93052223627198, 40.83998269800756], [-73.930454336369, 40.840512766790354], [-73.92969250307178, 40.841845547450625], [-73.92960225974842, 40.84235556957594], [-73.92917859777519, 40.842839822355664], [-73.92919977430641, 40.84318178228686], [-73.92865162181239, 40.844601282345], [-73.92823315220744, 40.8449781527298], [-73.92809812060851, 40.8453184972172]]], "type": "Polygon"}, "id": 61, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10452", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 62, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 27550385.8534, "Shape_Leng": 24379.3715249, "borough": "Bronx", "postalCode": "10452"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91313620916213, 40.83981410928697], [-73.91207880804134, 40.839453247489764], [-73.91270830046946, 40.83836011456288], [-73.91139056208888, 40.83786560751648], [-73.91072456408988, 40.83899776672884], [-73.90891034814139, 40.83837650764227], [-73.90945871055806, 40.83705723204548], [-73.90930617085675, 40.83695840993266], [-73.90798076079534, 40.83717811624066], [-73.90677415530106, 40.83825366003363], [-73.90560739685763, 40.83984364155386], [-73.9053835743797, 40.83976900624047], [-73.90597940139904, 40.83850521536677], [-73.9005661055861, 40.83659253112087], [-73.89996791820123, 40.8376547906892], [-73.89956172662355, 40.837421721168155], [-73.8988953041404, 40.83653701199864], [-73.89819991154158, 40.83641267778845], [-73.89724960068844, 40.836574459872566], [-73.89603976342188, 40.836459872891105], [-73.89568799348555, 40.83623747354246], [-73.89513914629471, 40.835429533032105], [-73.89566235293624, 40.83495746849519], [-73.89696587999109, 40.83434217523766], [-73.89630199034309, 40.833543242971515], [-73.89669215632844, 40.83196617088248], [-73.89884262200559, 40.831750922781055], [-73.8986266161061, 40.830505361776595], [-73.9034371417602, 40.818967659600276], [-73.90337473066617, 40.818783819487955], [-73.90531286970605, 40.8179242793546], [-73.91061208471453, 40.819223793095176], [-73.90953288060507, 40.822309273905525], [-73.90963704963323, 40.82261805744466], [-73.90870858035929, 40.824066660415184], [-73.9113064353643, 40.82484260023421], [-73.91136758264065, 40.82501254832759], [-73.91179361330045, 40.82642818162548], [-73.91169430267045, 40.82775873382422], [-73.91030770499657, 40.82877250411782], [-73.91127397045084, 40.829101492957385], [-73.91194860236519, 40.827835474895366], [-73.91211594116584, 40.827885972661136], [-73.91461050893973, 40.826294535013176], [-73.92020143339224, 40.82809982586024], [-73.91964222728834, 40.829113606925], [-73.92117100376741, 40.82962775432217], [-73.9198563779372, 40.831948617025944], [-73.9190290311349, 40.833090305012284], [-73.91456826593198, 40.83773002144198], [-73.91313620916213, 40.83981410928697]]], "type": "Polygon"}, "id": 62, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10456", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 63, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 29933452.4366, "Shape_Leng": 30925.0447978, "borough": "Bronx", "postalCode": "10456"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88011102455741, 40.837234420019854], [-73.87747194769558, 40.83656423602639], [-73.87144739786964, 40.836123077161815], [-73.86767387830876, 40.83530014341919], [-73.86652947039447, 40.83496002157638], [-73.86680620277706, 40.83483704751475], [-73.8630319674145, 40.83371028311841], [-73.86283694474895, 40.833688049541], [-73.86286863112504, 40.83387147488716], [-73.8603242158381, 40.833115862161144], [-73.86037736800591, 40.83292603904782], [-73.8487791472634, 40.82952951841749], [-73.84717761298778, 40.82874788185447], [-73.84699865453219, 40.82799984626042], [-73.85970333043633, 40.82627736719667], [-73.85952908285559, 40.82589093752696], [-73.869603354989, 40.824683654599134], [-73.86984338421631, 40.82492549477131], [-73.87200390404604, 40.82465025492206], [-73.87359452769965, 40.82443281423652], [-73.87342314884913, 40.82407446184542], [-73.88405863981497, 40.82266634785382], [-73.8842465275955, 40.8230461049424], [-73.88413712478415, 40.82321048697728], [-73.8843987010609, 40.824987075959214], [-73.88432704043842, 40.825927893881456], [-73.8833045767707, 40.82915684445737], [-73.88348025052572, 40.82961072511225], [-73.88392704748625, 40.829927669257316], [-73.88399951150336, 40.83017939465165], [-73.88337892205485, 40.83202715350027], [-73.88251852571881, 40.83214759586708], [-73.88139058261531, 40.833539384876616], [-73.88096391740902, 40.83567383676969], [-73.88011102455741, 40.837234420019854]]], "type": "Polygon"}, "id": 63, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10472", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 64, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 30963245.188, "Shape_Leng": 27006.0424107, "borough": "Bronx", "postalCode": "10472"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9400877390704, 40.83034967785467], [-73.93967968247685, 40.82970254686012], [-73.93972862463075, 40.82930186115972], [-73.94384274852182, 40.823647824134895], [-73.94475648732869, 40.82403157957557], [-73.94486897851922, 40.82386640413126], [-73.94800732455235, 40.81711652474162], [-73.95087990584247, 40.81839445721214], [-73.95170372594359, 40.81794207332058], [-73.95227185224422, 40.817220667105836], [-73.9588738926919, 40.82000554269312], [-73.95820656423024, 40.82085070937795], [-73.95746185705265, 40.82111957376044], [-73.95615427393327, 40.82225797562543], [-73.95574306955656, 40.82287558489654], [-73.95727774852912, 40.82320648900828], [-73.95814312643297, 40.82302073871083], [-73.9595464836919, 40.8236568716786], [-73.95726081743564, 40.82711172049232], [-73.95693710601441, 40.82698756674208], [-73.9563051984452, 40.827936505964715], [-73.95503913113517, 40.82741345292111], [-73.95469736123226, 40.82791840153549], [-73.9534708521888, 40.827525921315825], [-73.95218696274918, 40.82892668637683], [-73.95146373921256, 40.829950335296914], [-73.95085728630414, 40.83121636507139], [-73.94917082807663, 40.83668014333772], [-73.94852105078529, 40.83634866699097], [-73.94971383646286, 40.83269649150552], [-73.94107858204309, 40.82908318828013], [-73.9400877390704, 40.83034967785467]]], "type": "Polygon"}, "id": 64, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10031", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 65, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 16902152.3658, "Shape_Leng": 23227.6651254, "borough": "Manhattan", "postalCode": "10031"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93439575536135, 40.83610394068545], [-73.93491790572467, 40.83519342810474], [-73.93514291963257, 40.832750484738476], [-73.93442124221117, 40.827040143954164], [-73.93396483800849, 40.81972427828244], [-73.93382728310257, 40.81969831735175], [-73.93382316715753, 40.819499686157954], [-73.94384274852182, 40.823647824134895], [-73.93972862463075, 40.82930186115972], [-73.93967968247685, 40.82970254686012], [-73.9400877390704, 40.83034967785467], [-73.93997525986644, 40.830787705622726], [-73.93939208403268, 40.83152064201187], [-73.9388531954772, 40.83255914208199], [-73.93814090955608, 40.83330373505747], [-73.93489763514887, 40.83582227676596], [-73.93440160458212, 40.836469017808476], [-73.93439575536135, 40.83610394068545]]], "type": "Polygon"}, "id": 65, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10039", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 66, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 8419027.88454, "Shape_Leng": 15005.37823, "borough": "Manhattan", "postalCode": "10039"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89630199034309, 40.833543242971515], [-73.89477113846525, 40.8343111995086], [-73.89362217032325, 40.83539646352994], [-73.89299709373722, 40.835643018834176], [-73.89173687010934, 40.8326635795345], [-73.89162677257228, 40.83273280074007], [-73.8856326545163, 40.83064192008958], [-73.88472947085283, 40.83233386920893], [-73.88364178617395, 40.833635565521455], [-73.88322832095454, 40.834377190587404], [-73.88222191532053, 40.83546297172717], [-73.88132708821787, 40.83514991956336], [-73.88162555004448, 40.83353630525916], [-73.88262704401626, 40.83249991525157], [-73.88358646288829, 40.83249579628606], [-73.8843455146679, 40.83032018794443], [-73.88440213777253, 40.8300181455801], [-73.8839396771619, 40.82974810153983], [-73.88371213231648, 40.82924743898369], [-73.88395185902749, 40.82813273256352], [-73.88462273540785, 40.82769833655117], [-73.88462513652495, 40.82682428786925], [-73.88482263355122, 40.82624375718811], [-73.88504402246431, 40.82360732044528], [-73.88443220251824, 40.8226208263391], [-73.88741357789279, 40.822156564826145], [-73.89038753655056, 40.820013836270995], [-73.89288509046425, 40.81761583187083], [-73.89332276170828, 40.817877895118976], [-73.89542858297601, 40.815844692940054], [-73.90166320790993, 40.81953184533151], [-73.90160120929121, 40.819694882330374], [-73.90337473066617, 40.818783819487955], [-73.9034371417602, 40.818967659600276], [-73.8986266161061, 40.830505361776595], [-73.89884262200559, 40.831750922781055], [-73.89669215632844, 40.83196617088248], [-73.89630199034309, 40.833543242971515]]], "type": "Polygon"}, "id": 66, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10459", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 67, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 22551940.5373, "Shape_Leng": 24993.6303403, "borough": "Bronx", "postalCode": "10459"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93293579565668, 40.827724561262286], [-73.93311365908062, 40.82815279425892], [-73.93096438607371, 40.82835233359979], [-73.92968227038422, 40.82871379487919], [-73.93103678392244, 40.829639709525765], [-73.92990283464644, 40.82995643775951], [-73.92713355145005, 40.82821103296855], [-73.92404682541348, 40.8272439479143], [-73.92241309948928, 40.830052563277604], [-73.91964222728834, 40.829113606925], [-73.92020143339224, 40.82809982586024], [-73.91461050893973, 40.826294535013176], [-73.91211594116584, 40.827885972661136], [-73.91194860236519, 40.827835474895366], [-73.91127397045084, 40.829101492957385], [-73.91030770499657, 40.82877250411782], [-73.91169430267045, 40.82775873382422], [-73.91179361330045, 40.82642818162548], [-73.9113064353643, 40.82484260023421], [-73.90870858035929, 40.824066660415184], [-73.90963704963323, 40.82261805744466], [-73.90953288060507, 40.822309273905525], [-73.91061208471453, 40.819223793095176], [-73.91304674876675, 40.82015421282985], [-73.91741656261301, 40.82127727741208], [-73.92034893087636, 40.8146288822998], [-73.92644365596114, 40.81150660841546], [-73.9272232244666, 40.811038428234276], [-73.9271913789268, 40.81086241571954], [-73.92813462089917, 40.80962158371083], [-73.92880616854771, 40.80989911693504], [-73.93062294842971, 40.80850914493453], [-73.9317564471804, 40.80793457778949], [-73.93245010764808, 40.80887302360745], [-73.93256668529217, 40.80962507530394], [-73.93223343502545, 40.80992942473122], [-73.93274485292682, 40.810036308949485], [-73.93287327440493, 40.81034453059341], [-73.93258294021298, 40.81091176220656], [-73.93263501410694, 40.811703078970815], [-73.93250314608784, 40.811775500017504], [-73.9323569873176, 40.813248886012865], [-73.93229986510782, 40.81342484841902], [-73.93210320951746, 40.81331025973406], [-73.93201235552432, 40.81341822267112], [-73.93244171534809, 40.81374331691181], [-73.93233196033289, 40.81463107632666], [-73.93166012536861, 40.81473183293259], [-73.93169986420865, 40.814942471089225], [-73.93227402446446, 40.81496011103421], [-73.93235410493742, 40.815400219336766], [-73.93223730702354, 40.81738879494064], [-73.93206018568213, 40.81804376075479], [-73.93223542711458, 40.81809771448805], [-73.93237788540343, 40.81930174241836], [-73.93217759907007, 40.81999231646315], [-73.93231498273117, 40.821250630232186], [-73.93166395217517, 40.821471074960826], [-73.93174285606761, 40.82158965852502], [-73.93231867291973, 40.82157334686326], [-73.93233990892412, 40.82213533832113], [-73.93164254329328, 40.82226132337151], [-73.9315944661707, 40.8224239469831], [-73.93162922031186, 40.82254896186447], [-73.93233364105305, 40.822544053647185], [-73.93242816708616, 40.822667618425776], [-73.93235969692475, 40.823426002184725], [-73.93251459507913, 40.824079004741286], [-73.93182599481176, 40.82415040163667], [-73.93186279133784, 40.824560456077606], [-73.9325878144022, 40.82452671018362], [-73.93263422881698, 40.825148443208434], [-73.93192603207754, 40.8251858769536], [-73.93194587207792, 40.82550073528859], [-73.93246459074531, 40.82547671605434], [-73.93245820648485, 40.82691382404195], [-73.93266781537824, 40.8269297251003], [-73.93252819947382, 40.82769454502442], [-73.93293579565668, 40.827724561262286]]], "type": "Polygon"}, "id": 67, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10451", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 68, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 28944106.5181, "Shape_Leng": 32573.9144378, "borough": "Bronx", "postalCode": "10451"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84699865453219, 40.82799984626042], [-73.8458008756281, 40.82832317251553], [-73.8442893873832, 40.8279741127383], [-73.84265366205182, 40.82798730181284], [-73.8417632787377, 40.825757426234254], [-73.840424921095, 40.823347281820354], [-73.84043734690513, 40.82306239788804], [-73.83977702970114, 40.821553641687444], [-73.84005537758823, 40.82038164686612], [-73.83994437710398, 40.820025282957076], [-73.84017944934078, 40.8195686676276], [-73.8412958969194, 40.81889673724937], [-73.84195003724084, 40.81876487353923], [-73.84218858987094, 40.8183559347788], [-73.84213713925153, 40.81796139220079], [-73.84305894073148, 40.8165595205352], [-73.84319175448331, 40.81601945722169], [-73.84374284531788, 40.81531011833668], [-73.8451932846275, 40.81187329046162], [-73.84580355515142, 40.81157399991834], [-73.84618920470862, 40.810670803130485], [-73.8469161787383, 40.81051782949974], [-73.84723110112513, 40.81060138579893], [-73.84824297033717, 40.81249241089417], [-73.84871443095956, 40.812896120718115], [-73.85042985954605, 40.813556159580806], [-73.85079637201623, 40.814018077800384], [-73.85113023400226, 40.814009231528665], [-73.85168737192237, 40.81428620625738], [-73.85244628106909, 40.814270491950815], [-73.8525483990588, 40.814504089399406], [-73.85290562062474, 40.814503474998205], [-73.85281885480485, 40.81433486572181], [-73.85263899603036, 40.81434470985961], [-73.85264497820293, 40.813976320012735], [-73.8529412585095, 40.81382562887872], [-73.85286223020466, 40.81368727632683], [-73.85352814137299, 40.813589944679556], [-73.85534576223249, 40.81440113733508], [-73.85535321092054, 40.81419855887133], [-73.85472668126278, 40.813846198573835], [-73.85365641017967, 40.81353065755357], [-73.85243234444069, 40.813745244006206], [-73.85106029245244, 40.813526317330954], [-73.84964796826146, 40.81274701265444], [-73.84905976803299, 40.812158626371236], [-73.84903492145625, 40.8118523378111], [-73.84940383729652, 40.81129135836563], [-73.84917562365752, 40.8108987567972], [-73.84974634543329, 40.810072158667445], [-73.85001436362627, 40.80934521056633], [-73.84998095337569, 40.80862193117092], [-73.8494483265708, 40.80791323458103], [-73.84853395222241, 40.80748086695152], [-73.84829913436681, 40.807046123035455], [-73.84830163937876, 40.806358847064196], [-73.84766552251985, 40.80612426736828], [-73.84746245021203, 40.805837695785], [-73.84765529385751, 40.805148776727265], [-73.84863581565511, 40.80471815800544], [-73.84879915505559, 40.80492587362822], [-73.84899882350636, 40.8047714150641], [-73.84920325193701, 40.804970894823875], [-73.84975540644302, 40.80506543073361], [-73.85000011199877, 40.804993617565266], [-73.85016840010631, 40.80452816635649], [-73.85058613347387, 40.804468076983106], [-73.85546309074, 40.80447484415139], [-73.85655690668705, 40.80481271361498], [-73.856493691922, 40.80493150990147], [-73.85563185538945, 40.804688293059705], [-73.85563331424942, 40.80513195307044], [-73.85620434440746, 40.80535603299078], [-73.85709188502325, 40.8052744653797], [-73.85673213360705, 40.80491256550171], [-73.85786271888522, 40.80529141934422], [-73.8589511261993, 40.80590971631442], [-73.85934943067264, 40.8065651776138], [-73.85939171479865, 40.80764991842528], [-73.85920521690183, 40.80763012026134], [-73.85909989008275, 40.806858394263266], [-73.8585985977751, 40.80690268389265], [-73.85847434916695, 40.807236345627175], [-73.8585834442906, 40.807506478002466], [-73.85843281807857, 40.80825025136096], [-73.85863842534455, 40.80855975216531], [-73.858937244683, 40.81022688055705], [-73.85910121144761, 40.80992019374651], [-73.8600854358951, 40.80958343425942], [-73.8595404674983, 40.80901980034406], [-73.85932634055477, 40.80899568774785], [-73.85941842215276, 40.80884039374568], [-73.8592670459396, 40.8080120425357], [-73.85938607846917, 40.80792303926288], [-73.85961318432858, 40.80877969790586], [-73.86000832561697, 40.80926723039932], [-73.86063314835995, 40.809633969095195], [-73.8637215744577, 40.81019489525216], [-73.86770205685306, 40.810602897459354], [-73.86824225231727, 40.81113678775607], [-73.86976914320138, 40.8134234787325], [-73.87073326629935, 40.81448833566079], [-73.87175778651574, 40.814934839056534], [-73.87769548552527, 40.81650830786671], [-73.87893232059879, 40.8171416949635], [-73.88128342275706, 40.81884383566802], [-73.88247469228595, 40.819790804979974], [-73.88274663032047, 40.82061608929264], [-73.88367824641475, 40.822368685589836], [-73.88407803567355, 40.822636880591304], [-73.87342314884913, 40.82407446184542], [-73.87359452769965, 40.82443281423652], [-73.87200390404604, 40.82465025492206], [-73.86984338421631, 40.82492549477131], [-73.869603354989, 40.824683654599134], [-73.85952908285559, 40.82589093752696], [-73.85970333043633, 40.82627736719667], [-73.84699865453219, 40.82799984626042]]], "type": "Polygon"}, "id": 68, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10473", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 69, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 59522354.5398, "Shape_Leng": 46333.3466971, "borough": "Bronx", "postalCode": "10473"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93623227973836, 40.82043594900477], [-73.94180335488039, 40.81281509007056], [-73.94867681672001, 40.815692310572906], [-73.94475648732869, 40.82403157957557], [-73.93623227973836, 40.82043594900477]]], "type": "Polygon"}, "id": 69, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10030", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 70, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 7757661.45487, "Shape_Leng": 11274.1138302, "borough": "Manhattan", "postalCode": "10030"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96568887491037, 40.809026213085566], [-73.96442407769575, 40.81075515833336], [-73.9634767146014, 40.81037321316466], [-73.96305843786453, 40.81094722012595], [-73.96401951743952, 40.81133069121485], [-73.96374596077916, 40.81186442047553], [-73.96197563381331, 40.81389455285185], [-73.96056136920501, 40.815882203355564], [-73.96050599080101, 40.816421274981174], [-73.96080354828415, 40.817146553811455], [-73.96067221902307, 40.81750429175458], [-73.96199929512878, 40.818130631467476], [-73.95999619034812, 40.82038517703892], [-73.95982083225715, 40.82030054866017], [-73.95881888777046, 40.82151095286332], [-73.95894488058231, 40.82156053948571], [-73.95865934118942, 40.82190896187452], [-73.95851699517196, 40.82183908538706], [-73.95793904646612, 40.82277437701529], [-73.95822838350293, 40.82288788614587], [-73.95814312643297, 40.82302073871083], [-73.95727774852912, 40.82320648900828], [-73.95574306955656, 40.82287558489654], [-73.95615427393327, 40.82225797562543], [-73.95746185705265, 40.82111957376044], [-73.95820656423024, 40.82085070937795], [-73.9588738926919, 40.82000554269312], [-73.95227185224422, 40.817220667105836], [-73.95170372594359, 40.81794207332058], [-73.95087990584247, 40.81839445721214], [-73.94800732455235, 40.81711652474162], [-73.94867681672001, 40.815692310572906], [-73.94180335488039, 40.81281509007056], [-73.94317184200837, 40.810941947892104], [-73.93994875480017, 40.80958144661189], [-73.94275366131305, 40.805744036840075], [-73.9411669041814, 40.805063177834185], [-73.94299315982731, 40.80256157048077], [-73.95634493435124, 40.80817337871826], [-73.9549665695574, 40.81006458045247], [-73.95780889444416, 40.811264800761464], [-73.95827207859104, 40.810628889285645], [-73.95729537567624, 40.81015445288457], [-73.95715403660243, 40.809587131824394], [-73.95794861587581, 40.808053415239435], [-73.9593567476704, 40.80612090623688], [-73.96105362531289, 40.80682096756859], [-73.9620082796616, 40.80550928432515], [-73.96484783057795, 40.80670634773313], [-73.96390317193045, 40.80800388441653], [-73.96590008432324, 40.80880536649463], [-73.96568887491037, 40.809026213085566]]], "type": "Polygon"}, "id": 70, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10027", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 71, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 24695278.5688, "Shape_Leng": 31598.1599675, "borough": "Manhattan", "postalCode": "10027"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89542858297601, 40.815844692940054], [-73.89332276170828, 40.817877895118976], [-73.89288509046425, 40.81761583187083], [-73.89038753655056, 40.820013836270995], [-73.88741357789279, 40.822156564826145], [-73.88443220251824, 40.8226208263391], [-73.88296037866218, 40.81950458521283], [-73.88241499772117, 40.8188961569232], [-73.87958657694844, 40.816734212454186], [-73.87932872404156, 40.81638091719767], [-73.87651935614224, 40.81525746417747], [-73.87411055211314, 40.81460822971646], [-73.87253211360485, 40.81392525518226], [-73.87154596541015, 40.81318075264341], [-73.87096288898238, 40.812139109286676], [-73.87049719031235, 40.81206873457017], [-73.8704616550793, 40.81109821393471], [-73.86811164482357, 40.80675174639319], [-73.86864916227998, 40.80562759864728], [-73.8717312814333, 40.80156434268755], [-73.87353307829943, 40.80085660088666], [-73.87466096254042, 40.800977173334125], [-73.87473433190779, 40.80125965886834], [-73.87498881028164, 40.80119249758594], [-73.8752035471166, 40.801381511960194], [-73.87798124686952, 40.80167515257975], [-73.87813687822938, 40.80250907190739], [-73.8783563001296, 40.80267125402008], [-73.8800814742579, 40.80274994172928], [-73.8836651988945, 40.80215926990779], [-73.88399433940113, 40.80190102132326], [-73.88504873916614, 40.80213025338864], [-73.88523945705694, 40.80240529390417], [-73.885780843045, 40.80264761483167], [-73.88621602286528, 40.8032367341418], [-73.88727515157652, 40.80391717716541], [-73.88788283754296, 40.80497460022669], [-73.88873362058436, 40.80481395151244], [-73.8893698767707, 40.80528284143175], [-73.88929684789372, 40.8058643523555], [-73.88979138929326, 40.80588766194835], [-73.89000358850255, 40.80570196379022], [-73.89149747272961, 40.80592739124269], [-73.89171257908615, 40.80639292003608], [-73.89495204406977, 40.8062169333469], [-73.89502915582854, 40.80686363471676], [-73.89582369867051, 40.8067978229892], [-73.89628735248264, 40.80671438928924], [-73.89618994785411, 40.80618632202301], [-73.89720612684283, 40.80601146511484], [-73.89733575337449, 40.80651315130009], [-73.89825284717563, 40.8064035992222], [-73.89824609627256, 40.80585818900078], [-73.89801821801794, 40.805729945693784], [-73.89839735592003, 40.80546179850118], [-73.90147799924728, 40.806776001304115], [-73.90156701477514, 40.80772301294962], [-73.89985898713485, 40.810239990301305], [-73.89725562257286, 40.81267857183607], [-73.8963583781087, 40.812309626276196], [-73.89529171263543, 40.81355858873168], [-73.89642303306304, 40.81420115315295], [-73.89498559710309, 40.81558051388226], [-73.89542858297601, 40.815844692940054]]], "type": "Polygon"}, "id": 71, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10474", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 72, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 40614090.1894, "Shape_Leng": 30197.0033377, "borough": "Bronx", "postalCode": "10474"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90337473066617, 40.818783819487955], [-73.90160120929121, 40.819694882330374], [-73.90166320790993, 40.81953184533151], [-73.89498559710309, 40.81558051388226], [-73.89642303306304, 40.81420115315295], [-73.89529171263543, 40.81355858873168], [-73.8963583781087, 40.812309626276196], [-73.89725562257286, 40.81267857183607], [-73.89985898713485, 40.810239990301305], [-73.90156701477514, 40.80772301294962], [-73.90147799924728, 40.806776001304115], [-73.8984500615656, 40.8053943174222], [-73.9009478826327, 40.80485448931791], [-73.90208490812404, 40.80478179265004], [-73.90224022390369, 40.804933241620624], [-73.90307457067233, 40.8098806265592], [-73.90496022777906, 40.80853161187961], [-73.91036523392276, 40.80964525942633], [-73.90959635484278, 40.8117767810278], [-73.91022111681971, 40.811912711318385], [-73.91094778798086, 40.81362093836451], [-73.91295449382221, 40.81426935769501], [-73.91447425155131, 40.81165126686078], [-73.91798334769986, 40.812812880591345], [-73.9212111620155, 40.81417382212535], [-73.92034893087636, 40.8146288822998], [-73.91741656261301, 40.82127727741208], [-73.91304674876675, 40.82015421282985], [-73.91042954253814, 40.81916144961969], [-73.90531286970605, 40.8179242793546], [-73.90337473066617, 40.818783819487955]]], "type": "Polygon"}, "id": 72, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10455", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 73, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 19846918.841, "Shape_Leng": 26037.9379591, "borough": "Bronx", "postalCode": "10455"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93382316715753, 40.819499686157954], [-73.93381203921719, 40.81563948472332], [-73.93392531668036, 40.815563353227475], [-73.93396871587535, 40.81453910570468], [-73.93385530360429, 40.814242266491334], [-73.9343389762541, 40.80961458994445], [-73.93409543307838, 40.808617474408344], [-73.9332564597127, 40.807238209110274], [-73.9337948616089, 40.80701033866798], [-73.93435249340358, 40.807548725142304], [-73.9351052781961, 40.80753987351334], [-73.94317184200837, 40.810941947892104], [-73.93623227973836, 40.82043594900477], [-73.93382316715753, 40.819499686157954]]], "type": "Polygon"}, "id": 73, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10037", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 74, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 7188980.95327, "Shape_Leng": 12511.8967445, "borough": "Manhattan", "postalCode": "10037"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96590008432324, 40.80880536649463], [-73.96689075082833, 40.80776451834099], [-73.96880711754392, 40.80442856683398], [-73.97134705168688, 40.800874529489015], [-73.97277743106588, 40.79972671810915], [-73.9738635800676, 40.798436239674814], [-73.97414359285979, 40.79776386384747], [-73.9741145153181, 40.796864758011104], [-73.97425532410232, 40.79658855857136], [-73.97572323866528, 40.795607654729636], [-73.9760258411193, 40.795216788568155], [-73.97626246137298, 40.79473546090477], [-73.97636767715618, 40.79368357423228], [-73.97709165633408, 40.792723582813835], [-73.96700976022309, 40.78847680965741], [-73.97357116577913, 40.77947788180905], [-73.97642746465422, 40.780654270730345], [-73.97690313877095, 40.77999737613274], [-73.97974787055291, 40.78119536260816], [-73.97928494580403, 40.78183902023342], [-73.98081059690513, 40.7824731961474], [-73.98106345484025, 40.78175075015363], [-73.98445219960307, 40.78319175363302], [-73.98265479533252, 40.784970606976074], [-73.9841922514499, 40.785616802690505], [-73.98470913747732, 40.785595702546885], [-73.98473705705575, 40.78504251482436], [-73.98516250169958, 40.7839982850751], [-73.9865652634212, 40.782064038410304], [-73.98768599278554, 40.78216290002316], [-73.98039128153972, 40.79280165603109], [-73.97208360515059, 40.804477453840406], [-73.96860102560335, 40.80902218301242], [-73.96411270880478, 40.815820174639875], [-73.96199929512878, 40.818130631467476], [-73.96067221902307, 40.81750429175458], [-73.96080172434088, 40.81711999754174], [-73.96049221119767, 40.816304561362045], [-73.96062298848261, 40.81574151726333], [-73.96197563381331, 40.81389455285185], [-73.96374596077916, 40.81186442047553], [-73.96590008432324, 40.80880536649463]]], "type": "Polygon"}, "id": 74, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10024", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 75, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 22877335.4506, "Shape_Leng": 40063.6709738, "borough": "Manhattan", "postalCode": "10024"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9317564471804, 40.80793457778949], [-73.93062294842971, 40.80850914493453], [-73.92880616854771, 40.80989911693504], [-73.92813462089917, 40.80962158371083], [-73.9271913789268, 40.81086241571954], [-73.9272232244666, 40.811038428234276], [-73.9212111620155, 40.81417382212535], [-73.91798334769986, 40.812812880591345], [-73.91447425155131, 40.81165126686078], [-73.91295449382221, 40.81426935769501], [-73.91094778798086, 40.81362093836451], [-73.91022111681971, 40.811912711318385], [-73.90959635484278, 40.8117767810278], [-73.91036523392276, 40.80964525942633], [-73.90496022777906, 40.80853161187961], [-73.90307457067233, 40.8098806265592], [-73.9021932110385, 40.80479898416427], [-73.90244072561018, 40.80442149217203], [-73.90320806421353, 40.80388782244981], [-73.903764151553, 40.80375209292379], [-73.90453556811724, 40.80316418426033], [-73.90757450496938, 40.799952036310245], [-73.90817625899794, 40.79938949059361], [-73.90843916774139, 40.79951966254794], [-73.90861465357715, 40.799343561399105], [-73.90823816920582, 40.79910013547807], [-73.9082908456194, 40.7989569583098], [-73.9109078907201, 40.79701708716078], [-73.91166880982979, 40.7966327513219], [-73.91395232494618, 40.796808934296735], [-73.92018708247443, 40.79946749008783], [-73.92077134923866, 40.80015322464397], [-73.92143101250711, 40.80138605823438], [-73.92299084796095, 40.80243364854197], [-73.92430416597533, 40.80253404247705], [-73.92670482229853, 40.802376644961896], [-73.92740226964288, 40.80262243809558], [-73.92767849866226, 40.802571697506494], [-73.9272807607111, 40.80321752835037], [-73.92741546598086, 40.80327366030461], [-73.92729308414934, 40.80347674836135], [-73.92753473836694, 40.80385787371083], [-73.92771987517568, 40.80401912701634], [-73.92827115459858, 40.80398206102566], [-73.92850364961397, 40.804195579564094], [-73.92871941299306, 40.80411795600238], [-73.93053961350294, 40.80649585955843], [-73.93050142983161, 40.80671776259958], [-73.9317564471804, 40.80793457778949]]], "type": "Polygon"}, "id": 75, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10454", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 76, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 31063613.3255, "Shape_Leng": 25984.0268411, "borough": "Bronx", "postalCode": "10454"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94459750483605, 40.80322817350717], [-73.94922045816276, 40.79690988348276], [-73.96107794068298, 40.80180037261132], [-73.9598267956781, 40.80543487768492], [-73.95794861587581, 40.808053415239435], [-73.95715403660243, 40.809587131824394], [-73.95729537567624, 40.81015445288457], [-73.95827207859104, 40.810628889285645], [-73.95780889444416, 40.811264800761464], [-73.9549665695574, 40.81006458045247], [-73.95634493435124, 40.80817337871826], [-73.94459750483605, 40.80322817350717]]], "type": "Polygon"}, "id": 76, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10026", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 77, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 11092681.4885, "Shape_Leng": 15644.9251484, "borough": "Manhattan", "postalCode": "10026"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9332564597127, 40.807238209110274], [-73.9312930659983, 40.805146038621224], [-73.93030145791633, 40.80379604589759], [-73.92994789997809, 40.80321327900868], [-73.93002494995127, 40.803070983927626], [-73.92919790389367, 40.80113478755312], [-73.92903517334402, 40.8010788052027], [-73.92889711213249, 40.79983848752264], [-73.928962069822, 40.798300574221344], [-73.92903193431519, 40.796764310546685], [-73.929270224409, 40.79585608846016], [-73.93018374377134, 40.794591928089446], [-73.93091566910087, 40.79419631649108], [-73.94646132906085, 40.80066532888591], [-73.94459750483605, 40.80322817350717], [-73.94299315982731, 40.80256157048077], [-73.9411669041814, 40.805063177834185], [-73.94275366131305, 40.805744036840075], [-73.93994875480017, 40.80958144661189], [-73.9351052781961, 40.80753987351334], [-73.93435249340358, 40.807548725142304], [-73.9337948616089, 40.80701033866798], [-73.9332564597127, 40.807238209110274]]], "type": "Polygon"}, "id": 77, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10035", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 78, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 15445657.3339, "Shape_Leng": 17087.4012693, "borough": "Manhattan", "postalCode": "10035"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9593567476704, 40.80612090623688], [-73.9598267956781, 40.80543487768492], [-73.96107794068298, 40.80180037261132], [-73.95819500754443, 40.800552514089894], [-73.96700976022309, 40.78847680965741], [-73.97709165633408, 40.792723582813835], [-73.97636767715618, 40.79368357423228], [-73.97626246137298, 40.79473546090477], [-73.9760258411193, 40.795216788568155], [-73.97572323866528, 40.795607654729636], [-73.97425532410232, 40.79658855857136], [-73.9741145153181, 40.796864758011104], [-73.97414359285979, 40.79776386384747], [-73.9738635800676, 40.798436239674814], [-73.97277743106588, 40.79972671810915], [-73.97134705168688, 40.800874529489015], [-73.96880711754392, 40.80442856683398], [-73.96689075082833, 40.80776451834099], [-73.96590008432324, 40.80880536649463], [-73.96390317193045, 40.80800388441653], [-73.96484783057795, 40.80670634773313], [-73.9620082796616, 40.80550928432515], [-73.96105362531289, 40.80682096756859], [-73.9593567476704, 40.80612090623688]]], "type": "Polygon"}, "id": 78, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10025", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 79, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 19631043.8226, "Shape_Leng": 20734.09171, "borough": "Manhattan", "postalCode": "10025"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92741771609565, 40.798394278053514], [-73.92693526754948, 40.799768858762], [-73.92650375459118, 40.80037617124448], [-73.92667694798551, 40.800451916287635], [-73.92564540242063, 40.80189638133609], [-73.92433301882606, 40.8019996898999], [-73.92250810187481, 40.80184384024346], [-73.92166650498385, 40.80129888177275], [-73.92026358663743, 40.7993722458601], [-73.91669459170515, 40.79792418376787], [-73.91542119845967, 40.79718242595153], [-73.91381830559503, 40.794625428232656], [-73.91375470583124, 40.79413085285669], [-73.91392265886036, 40.79362992373643], [-73.91516018401094, 40.7920153747147], [-73.91712569244753, 40.79046189288415], [-73.91852754471681, 40.789743103938314], [-73.91849332490209, 40.78942572427054], [-73.92187529698664, 40.785708211751604], [-73.92198801917498, 40.78575365807848], [-73.92303606980373, 40.78336035920633], [-73.92449301084734, 40.78231052552127], [-73.92562740433024, 40.78218670126719], [-73.92722506756668, 40.781110543419594], [-73.92805488616057, 40.78092337011328], [-73.92865808254518, 40.78107855134067], [-73.93067798996272, 40.78226830630852], [-73.93500339705342, 40.78298260081633], [-73.93592072567726, 40.78386964319037], [-73.93605665586573, 40.7844773961037], [-73.93572405603301, 40.78567111849522], [-73.93270761904884, 40.78916311623652], [-73.93245343412167, 40.789683890223664], [-73.93224177245085, 40.789687306750686], [-73.93084001853671, 40.79099702879297], [-73.92971309436652, 40.791364882383576], [-73.92801648630584, 40.790804843122444], [-73.92592370902285, 40.79078743592553], [-73.92616289873172, 40.791730017444664], [-73.92657112222145, 40.79189358583359], [-73.92556212011884, 40.79184279602], [-73.92673262366478, 40.79193843178515], [-73.92635749289137, 40.791624384443494], [-73.92647058217271, 40.79105105741547], [-73.92781810579011, 40.79093335288486], [-73.9278626495917, 40.79111815812212], [-73.92713679099435, 40.791921855841174], [-73.92780141031166, 40.79199750010167], [-73.9282612050337, 40.792368257643574], [-73.92831956453831, 40.793106230696985], [-73.9273548267825, 40.79444361983551], [-73.92704553078093, 40.79516290614614], [-73.92690338736556, 40.79614978130593], [-73.92698340352021, 40.79687641573407], [-73.92743868266828, 40.79777700588128], [-73.92741771609565, 40.798394278053514]]], "type": "Polygon"}, "id": 79, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10035", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 80, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23494871.4627, "Shape_Leng": 25009.7552646, "borough": "Manhattan", "postalCode": "10035"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.82481668656844, 40.797145521272796], [-73.82423171869792, 40.79735570106643], [-73.82387201422239, 40.797796395850696], [-73.8240349383772, 40.79819416376245], [-73.82368203155981, 40.79822126447183], [-73.82312840452379, 40.79868847522205], [-73.82230001859705, 40.79893864629968], [-73.82161788602225, 40.799992009264784], [-73.82008086304906, 40.80080244511303], [-73.81941366438673, 40.80056464209553], [-73.81811517671666, 40.79923228306001], [-73.81795297674468, 40.799295786999465], [-73.81710326834185, 40.79892876006742], [-73.81696702887649, 40.79906588016774], [-73.81367907296345, 40.797545804233216], [-73.81368271559059, 40.797056781928646], [-73.81282431488059, 40.79718686354767], [-73.81253970948178, 40.798059199576116], [-73.81224183996564, 40.79812585075664], [-73.81177837160652, 40.7980250770884], [-73.81160938146995, 40.79737243175343], [-73.80637383558607, 40.79639527617066], [-73.80586819419011, 40.79647155365663], [-73.80491401906747, 40.79606586134155], [-73.80367584383, 40.79639244229284], [-73.80334995375176, 40.796713048074366], [-73.80297167472321, 40.79668514659725], [-73.80302021607562, 40.79618445862554], [-73.80291509545945, 40.79614310167934], [-73.8011492564256, 40.79628323425957], [-73.80101126134778, 40.79652239186885], [-73.80086306412616, 40.79633255774962], [-73.8006218473286, 40.7964267790203], [-73.79974956255596, 40.7961709119946], [-73.79960547770315, 40.7963322440719], [-73.79817107018674, 40.79562711646624], [-73.79723240836418, 40.79544755591125], [-73.79725114905608, 40.795342492162646], [-73.79648271385214, 40.79511431310497], [-73.79470671392004, 40.79485698238547], [-73.79440742558998, 40.794266513593904], [-73.79460906474306, 40.79391332410189], [-73.79470736446291, 40.79267449681244], [-73.79493729006003, 40.792469161061064], [-73.79491191658072, 40.79154979354162], [-73.7937583718311, 40.78907332481419], [-73.79397597948295, 40.78912781894593], [-73.79444644725557, 40.78890490375402], [-73.79490889082899, 40.78836736353861], [-73.79497453174193, 40.78807227913931], [-73.79470489599534, 40.786983728102406], [-73.79503811734077, 40.785861470717386], [-73.79411565530143, 40.786097458566566], [-73.79338010325964, 40.78236791380774], [-73.79245244639375, 40.78247803722822], [-73.7920966021957, 40.78068307077725], [-73.79132644687246, 40.7807703946427], [-73.79105664506696, 40.77903153757877], [-73.79368167269105, 40.77873429304566], [-73.79318728616376, 40.776205110757296], [-73.79117063995666, 40.7765850744022], [-73.79034971035036, 40.774573117728835], [-73.79271257982995, 40.773787554941784], [-73.7927580840795, 40.774023006371635], [-73.81405363393792, 40.77570389833769], [-73.81873215461866, 40.77654675288536], [-73.82167154455216, 40.776853496319156], [-73.8258241108771, 40.776659787371905], [-73.82850225050593, 40.77674699653494], [-73.82569678331977, 40.78169055233962], [-73.82664726668301, 40.781668445990306], [-73.82701308938157, 40.78464471873243], [-73.83059491992799, 40.78468062241727], [-73.83126396714391, 40.788131864033176], [-73.83077939295887, 40.78835071228172], [-73.83095516635674, 40.78921940036385], [-73.83118580943383, 40.78943592832603], [-73.83189837415787, 40.789363351968106], [-73.83214820299433, 40.79005448327341], [-73.831743305307, 40.79100612529983], [-73.83134154911654, 40.79139271526822], [-73.83065971465972, 40.791650235233405], [-73.82997421624006, 40.791563455914776], [-73.82914478900557, 40.79188172389431], [-73.82831328316387, 40.79241621044094], [-73.82789820445001, 40.79295582502722], [-73.82778457393677, 40.79342080504118], [-73.8280137144407, 40.79493242681453], [-73.82841279413317, 40.79561339015376], [-73.82877495069934, 40.79591035578723], [-73.82880615194338, 40.796178590373984], [-73.82913126882323, 40.7962936381772], [-73.82945991130325, 40.79682339186081], [-73.82905863514073, 40.79656212933503], [-73.82743330398782, 40.796784419493235], [-73.82697090710529, 40.79712830044616], [-73.82717364990556, 40.79762221709359], [-73.8267154395747, 40.79779807063511], [-73.82614856077555, 40.7974159997293], [-73.82552009759503, 40.79743805164324], [-73.82481668656844, 40.797145521272796]]], "type": "Polygon"}, "id": 80, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11357", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 81, "PO_NAME": "Whitestone", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 77359110.6086, "Shape_Leng": 44132.6748581, "borough": "Queens", "postalCode": "11357"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94646132906085, 40.80066532888591], [-73.93091566910087, 40.79419631649108], [-73.9333037696486, 40.79287694754548], [-73.93582854012827, 40.79109740692854], [-73.93706994781985, 40.78938600981628], [-73.9381126583477, 40.7871875499842], [-73.93982714391372, 40.78526000729506], [-73.94245453709718, 40.78390621954082], [-73.94319247232569, 40.78339302416044], [-73.94359174329144, 40.78283206813168], [-73.95577163845807, 40.787905470847036], [-73.94646132906085, 40.80066532888591]]], "type": "Polygon"}, "id": 81, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10029", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 82, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 22963435.6768, "Shape_Leng": 19646.7893818, "borough": "Manhattan", "postalCode": "10029"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94922045816276, 40.79690988348276], [-73.97301486574793, 40.764278906417395], [-73.98136284209183, 40.76783455003186], [-73.9813139998747, 40.768160340727896], [-73.98164276308029, 40.76843818452373], [-73.95819500754443, 40.800552514089894], [-73.94922045816276, 40.79690988348276]]], "type": "Polygon"}, "id": 82, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/00083", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 83, "PO_NAME": "Central Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 38300990.4037, "Shape_Leng": 32710.7728002, "borough": "Manhattan", "postalCode": "00083"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.85464575618116, 40.78943265736589], [-73.85446598801578, 40.79026502730812], [-73.85265829619357, 40.791106438542705], [-73.85285878590427, 40.79153380531254], [-73.8537785455787, 40.79242128999633], [-73.85363079453369, 40.79309820120518], [-73.85373350837246, 40.793935392618], [-73.85276627108138, 40.7943892654697], [-73.85263097963977, 40.794944872905255], [-73.8524265109605, 40.794609781547386], [-73.85159076474149, 40.79408655103184], [-73.84898342163527, 40.79339363243048], [-73.84885848521718, 40.7935911170254], [-73.84907814633686, 40.79414540140726], [-73.84878369773153, 40.794542123955104], [-73.84884566490834, 40.79522918411822], [-73.84792365013381, 40.795753532612096], [-73.84624527764757, 40.79616197323303], [-73.8455916618596, 40.7960118405451], [-73.84561606432109, 40.795845735273645], [-73.84528519626343, 40.79544340786253], [-73.84459914557357, 40.794911571021814], [-73.84373232059951, 40.79488237548142], [-73.84333760842559, 40.79502140927456], [-73.84330632142694, 40.79550095391643], [-73.84289545491372, 40.79518280134556], [-73.84289254092629, 40.79539279697453], [-73.84208804934431, 40.79563707611415], [-73.84148924708842, 40.79543657524543], [-73.84135034293033, 40.795739924208114], [-73.84148779870614, 40.79601450504875], [-73.8405998203391, 40.796806823720146], [-73.83901534401778, 40.79704750123742], [-73.83839708091064, 40.79674916184713], [-73.83736225266848, 40.7942635455106], [-73.83708406871176, 40.793903483319646], [-73.83712603659812, 40.79369557358752], [-73.8366328868044, 40.79251639628322], [-73.83650814562594, 40.79173718175022], [-73.83742329197821, 40.791392859111404], [-73.83764565193259, 40.79103556881454], [-73.83718068244892, 40.789439898552814], [-73.83724431341497, 40.78910223345142], [-73.83711662441827, 40.78956927594338], [-73.83637809431166, 40.789460199290836], [-73.83565807730831, 40.7895726894635], [-73.83533150360283, 40.7892127644451], [-73.83414952979423, 40.78907337742219], [-73.83390128756942, 40.78858381121532], [-73.8334566419637, 40.78845822483245], [-73.8321610018669, 40.788750101793994], [-73.83158829699755, 40.78926737220084], [-73.83172382753932, 40.789326648519754], [-73.83108617510146, 40.789396326836346], [-73.83077939295887, 40.78835071228172], [-73.83126396714391, 40.788131864033176], [-73.83059491992799, 40.78468062241727], [-73.82701308938157, 40.78464471873243], [-73.82664726668301, 40.781668445990306], [-73.82569678331977, 40.78169055233962], [-73.82999272655668, 40.774385868626226], [-73.83164098472872, 40.772830571694264], [-73.83350673828704, 40.77161913949929], [-73.83575300203123, 40.77727029311377], [-73.83644472013009, 40.77862675585554], [-73.83886154742316, 40.778616522652435], [-73.83894666587881, 40.77688845238963], [-73.8391374648918, 40.77662304953122], [-73.8399807321466, 40.776507162638936], [-73.84612290255036, 40.77666547318237], [-73.84625067812513, 40.77668412658117], [-73.84622255851272, 40.776905735460566], [-73.84800998267166, 40.776963802189734], [-73.84904433699408, 40.77672195290833], [-73.84896007890174, 40.77799311324308], [-73.849478435564, 40.778296088745265], [-73.8494556664974, 40.7786522513627], [-73.84979758754993, 40.77874443093535], [-73.84979223694592, 40.77909299083271], [-73.84957076445679, 40.779195214341016], [-73.84957754096939, 40.779397432124206], [-73.84980330405239, 40.779510885656], [-73.8498461332753, 40.77977090147678], [-73.84957193609512, 40.77987217017178], [-73.84948746839456, 40.780080521889516], [-73.84961739815564, 40.78054602567427], [-73.84981503302794, 40.78064173045052], [-73.84985467461297, 40.78157233773681], [-73.84918708587747, 40.78164183401543], [-73.8495477370524, 40.781841098685234], [-73.84926764510264, 40.7822779602028], [-73.8502733018079, 40.78245801292404], [-73.85314992439521, 40.78232395102981], [-73.85331933738912, 40.78203462447707], [-73.85522449539404, 40.78196176602356], [-73.85539300866068, 40.78209905665876], [-73.85545061929285, 40.78314309627808], [-73.85571213265298, 40.783170960473555], [-73.85582618440128, 40.783368545643434], [-73.85626838953635, 40.78338697209215], [-73.85645205882741, 40.78332300598207], [-73.85643993360009, 40.78315753880983], [-73.85670377138692, 40.78314926377365], [-73.856864190403, 40.78338158391767], [-73.85734051993687, 40.783371293778615], [-73.85755883052067, 40.78365537974985], [-73.85806873261328, 40.783711906664514], [-73.85816854644642, 40.78404783507894], [-73.85784533727757, 40.78450877601959], [-73.85852594672669, 40.78521652509301], [-73.85899155976735, 40.78520419153207], [-73.85908213877535, 40.7855220049709], [-73.85894034261186, 40.785567668873654], [-73.85913527609453, 40.785699221258646], [-73.85898579425871, 40.786004957102016], [-73.85858452800241, 40.78615316536725], [-73.85869681364917, 40.78649321028067], [-73.8584295260881, 40.786802832419504], [-73.85802109116196, 40.78706305237739], [-73.85701118097822, 40.78664737648303], [-73.85670910379119, 40.786697187190555], [-73.85619203953934, 40.78716061067068], [-73.85617436133356, 40.78748707467651], [-73.85595868223129, 40.787675201171666], [-73.8534518403246, 40.7878261275465], [-73.85284229777614, 40.788211391622916], [-73.8528420078258, 40.78834257369596], [-73.85463110116575, 40.7884179991876], [-73.85480083048553, 40.78860764725402], [-73.85464575618116, 40.78943265736589]]], "type": "Polygon"}, "id": 83, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11356", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 84, "PO_NAME": "College Point", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 43321159.2727, "Shape_Leng": 39905.9895523, "borough": "Queens", "postalCode": "11356"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.78177608464604, 40.79484590011937], [-73.78323289244526, 40.79489793446264], [-73.78178708880114, 40.7949670196531], [-73.78156268904273, 40.795645749189056], [-73.779803048162, 40.796205544757214], [-73.77936245993689, 40.796685410295886], [-73.77748973653658, 40.79663740030119], [-73.7762182326559, 40.79612310027804], [-73.77437223941843, 40.79432098400393], [-73.77364576049231, 40.79265682477067], [-73.77246457590803, 40.791434325105826], [-73.77219866982959, 40.790146022199245], [-73.7708257047282, 40.7886468684309], [-73.77075558179341, 40.78826721251279], [-73.77180703798273, 40.78753801792375], [-73.77379997583485, 40.78692586148729], [-73.77516633876469, 40.78748086015419], [-73.77616264439136, 40.78854136420723], [-73.77634410639874, 40.7884990074027], [-73.77516894914727, 40.78730709500695], [-73.78177789173529, 40.790376976365934], [-73.78155362966038, 40.79086424070297], [-73.78174708271757, 40.79113342362089], [-73.78124256706911, 40.791475638114], [-73.78097106787183, 40.791914642770784], [-73.78069622691916, 40.793569526553036], [-73.78097287638653, 40.79440599207909], [-73.78177608464604, 40.79484590011937]]], "type": "Polygon"}, "id": 84, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11359", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 85, "PO_NAME": "Bayside", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 6567982.08563, "Shape_Leng": 12841.6128954, "borough": "Queens", "postalCode": "11359"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.78663963052189, 40.79032165698661], [-73.78389213033783, 40.79062713242368], [-73.7825307948731, 40.791276804511504], [-73.78434692810629, 40.791718136997865], [-73.78223880243357, 40.79134738394752], [-73.78174708271757, 40.79113342362089], [-73.78155362966038, 40.79086424070297], [-73.78177789173529, 40.790376976365934], [-73.77516894914727, 40.78730709500695], [-73.77185006984132, 40.78325298417863], [-73.76971918769867, 40.781199327592084], [-73.7685623394988, 40.779827903811224], [-73.7681652618591, 40.77964131342223], [-73.76822263541587, 40.779485993534934], [-73.76762185069077, 40.77836282334543], [-73.7674998195764, 40.77770037163145], [-73.76703963010759, 40.77675334137746], [-73.7664171956833, 40.775953061751], [-73.76791154052991, 40.775538856253505], [-73.76771947648157, 40.77512527487488], [-73.7705710614954, 40.77448840410237], [-73.77026380862502, 40.77369794561284], [-73.77236919157203, 40.77325888336951], [-73.77228532321884, 40.77255412665665], [-73.77348553698275, 40.7723062804713], [-73.77423470821911, 40.7755748929662], [-73.77517458754704, 40.77531794332987], [-73.77481361321956, 40.77367334459813], [-73.77874286058736, 40.77283118259895], [-73.78930864101896, 40.76970816959261], [-73.79163525508721, 40.77423867767925], [-73.79034971035036, 40.774573117728835], [-73.79117063995666, 40.7765850744022], [-73.79318728616376, 40.776205110757296], [-73.79368167269105, 40.77873429304566], [-73.79105664506696, 40.77903153757877], [-73.7911925206389, 40.77996679579869], [-73.79132644687246, 40.7807703946427], [-73.7920966021957, 40.78068307077725], [-73.79245244639375, 40.78247803722822], [-73.79338010325964, 40.78236791380774], [-73.79411565530143, 40.786097458566566], [-73.79503811734077, 40.785861470717386], [-73.7947018223306, 40.78707414578245], [-73.79497453174193, 40.78807227913931], [-73.79476008269586, 40.788627441333766], [-73.79434315212283, 40.788958064389554], [-73.79393526852942, 40.789129318442995], [-73.792587625024, 40.78879614621524], [-73.79026955017171, 40.79032068869544], [-73.78663963052189, 40.79032165698661]]], "type": "Polygon"}, "id": 85, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11360", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 86, "PO_NAME": "Bayside", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 38834824.1716, "Shape_Leng": 31490.8837328, "borough": "Queens", "postalCode": "11360"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89671713692546, 40.78294203958039], [-73.89617857482762, 40.78324148770875], [-73.89477428705594, 40.78225361027565], [-73.89542197891392, 40.7817177886277], [-73.89528419689907, 40.78153862202403], [-73.89410427051769, 40.782473995112525], [-73.89168323116026, 40.780884552718355], [-73.89158378542427, 40.78057961837563], [-73.89243160470846, 40.779863202176735], [-73.89252734232146, 40.77955126282066], [-73.89171514145276, 40.779536634733134], [-73.89122924340464, 40.77892982718401], [-73.89119589582005, 40.77856330545657], [-73.89251064275773, 40.77739288417956], [-73.89187464049115, 40.77666060070362], [-73.89234934988467, 40.77581519713858], [-73.89279471064081, 40.77388744647699], [-73.89301289244057, 40.773841999141375], [-73.89370304502019, 40.774226039828626], [-73.90162630902455, 40.76774915959758], [-73.90400273887188, 40.76815993449083], [-73.90464128651125, 40.76854227398368], [-73.9116731795285, 40.7696446318411], [-73.92264887534152, 40.77742267430764], [-73.92375761329907, 40.776547028669825], [-73.92302570864821, 40.7753843296669], [-73.92398142234843, 40.77461513132962], [-73.9282828551014, 40.77690011062818], [-73.92626241456128, 40.77825596493114], [-73.92484120622538, 40.77866324002804], [-73.92360019550254, 40.77967794842731], [-73.92313513505106, 40.78033539216588], [-73.92175892537604, 40.78103367356455], [-73.92090911713326, 40.78196546255349], [-73.92051632662708, 40.78214414908046], [-73.91916558141186, 40.78336801828103], [-73.91810952705974, 40.783984209218865], [-73.91724607988398, 40.78417572349754], [-73.91694011153605, 40.785078549034694], [-73.91583822657476, 40.78606945043148], [-73.9154739684351, 40.78611471770965], [-73.9153462452001, 40.78625567672192], [-73.91558973887363, 40.78642929100995], [-73.9131364228321, 40.788865721326054], [-73.9124371173528, 40.789059831877836], [-73.91127461445815, 40.7897351318043], [-73.91097026718936, 40.78973500066577], [-73.91090814406431, 40.79004124819159], [-73.90971418914758, 40.790907916664274], [-73.90331753198262, 40.78958964104916], [-73.90212076478325, 40.78951011980882], [-73.90035410735581, 40.789019587818444], [-73.89730676390754, 40.786779541237124], [-73.89681948629898, 40.78667947090863], [-73.89593743191742, 40.78567033200193], [-73.89562976976156, 40.7852051255786], [-73.8987489781926, 40.782781177745825], [-73.90114576883953, 40.78271112931231], [-73.902171329839, 40.78178971640545], [-73.90266831879566, 40.78065067307034], [-73.90265096754736, 40.78030445123875], [-73.90226612361894, 40.7802594686727], [-73.90203150121931, 40.781210485473785], [-73.90129127689912, 40.78185843880803], [-73.90034960402112, 40.78216443129781], [-73.89865437547353, 40.781995443304005], [-73.89671713692546, 40.78294203958039]]], "type": "Polygon"}, "id": 86, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11105", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 87, "PO_NAME": "Astoria", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 48795608.0803, "Shape_Leng": 36787.57425, "borough": "Queens", "postalCode": "11105"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94359174329144, 40.78283206813168], [-73.94387854763119, 40.78127820667923], [-73.94321221275864, 40.77927610095739], [-73.94297133463361, 40.77962176405364], [-73.94271119277107, 40.77952430243633], [-73.94271276783823, 40.779215059941656], [-73.94255069196532, 40.77914809084616], [-73.94289425805796, 40.77861165228666], [-73.94252771555604, 40.777655534513706], [-73.94300629896043, 40.777491824928546], [-73.94427810415844, 40.775607346458166], [-73.94477818193836, 40.77582281365468], [-73.94527480106927, 40.77514818859739], [-73.94712143173693, 40.775929657923015], [-73.94662848480695, 40.77660409264245], [-73.95992093682813, 40.78221296437616], [-73.95577163845807, 40.787905470847036], [-73.94359174329144, 40.78283206813168]]], "type": "Polygon"}, "id": 87, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10128", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 88, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 11011681.5568, "Shape_Leng": 15005.0963232, "borough": "Manhattan", "postalCode": "10128"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88509634340522, 40.778464378189874], [-73.88525027297052, 40.77861292455439], [-73.88505675867148, 40.77872912439612], [-73.884957683433, 40.77989809163281], [-73.88459956335223, 40.78010828190893], [-73.88378471948639, 40.78027061071096], [-73.88276326376062, 40.78021936402642], [-73.88136069710298, 40.78060560582215], [-73.88084352724645, 40.780520949963744], [-73.87921304731877, 40.78076742835572], [-73.87870562612476, 40.780585932155375], [-73.87905115884051, 40.7817305487606], [-73.87930867963256, 40.781853676118736], [-73.87833922541869, 40.78302594034657], [-73.87515754548245, 40.78150946448842], [-73.87484527165489, 40.781684946213744], [-73.87124856462145, 40.78603816658414], [-73.86969325793733, 40.785296177831384], [-73.86987006863271, 40.78508592483502], [-73.86942486116146, 40.78358959948301], [-73.87048029622788, 40.7823061299672], [-73.87148513325384, 40.78211198273248], [-73.87255731884947, 40.780821137535305], [-73.86920445767223, 40.77897538754327], [-73.86503977708887, 40.77706375957368], [-73.86471066543393, 40.77673320134785], [-73.86379730543253, 40.776278069885095], [-73.85538469833895, 40.772375638280764], [-73.8550510580249, 40.77219541176435], [-73.85505987545623, 40.77189771253759], [-73.85647904959252, 40.77030983310253], [-73.85738091400107, 40.77057082323894], [-73.85752974674328, 40.77038633011256], [-73.85820510246914, 40.770323473236104], [-73.85621267189862, 40.76919581906385], [-73.85623303868604, 40.76889230416587], [-73.8570479052775, 40.769139576373746], [-73.85767799729528, 40.76827628344102], [-73.85805262108593, 40.76809067969499], [-73.85877376608747, 40.76735001820008], [-73.85998650256361, 40.766957957012856], [-73.86092883900189, 40.76694197072834], [-73.86110277036967, 40.76727196162895], [-73.86131385711917, 40.766940650928156], [-73.86226565060359, 40.76680318248529], [-73.86398256632174, 40.76724056585999], [-73.86556020096782, 40.76876064678917], [-73.86785924170405, 40.770365622587676], [-73.86817470789389, 40.77010491244036], [-73.87084027130952, 40.77132869627052], [-73.87356715417765, 40.771666977512616], [-73.87551232135269, 40.77151603594751], [-73.8771857066443, 40.771163319519886], [-73.87826967179801, 40.77076783019437], [-73.88226144249427, 40.76863444886461], [-73.88435083557918, 40.7677350115958], [-73.88522838425882, 40.7674159074654], [-73.88538812525111, 40.76763336270306], [-73.8858908796651, 40.76761725102351], [-73.88781936012126, 40.76721021499059], [-73.88827314224882, 40.768669088442046], [-73.88872550665945, 40.76891625896795], [-73.88941440286017, 40.77298367626598], [-73.88964908049606, 40.77365034055387], [-73.88947115107906, 40.77350863967088], [-73.88648511166751, 40.773977991345795], [-73.88391627515385, 40.77413262843418], [-73.88454235833387, 40.77435355215657], [-73.88483366230608, 40.774935184407546], [-73.8847867655315, 40.77531954802538], [-73.8842873782926, 40.775472078267214], [-73.8844200885962, 40.77557886887766], [-73.88509634340522, 40.778464378189874]]], "type": "Polygon"}, "id": 88, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11371", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 89, "PO_NAME": "Flushing", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 30558474.9085, "Shape_Leng": 33739.0625766, "borough": "Queens", "postalCode": "11371"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99306672475984, 40.77433850654827], [-73.98963766661983, 40.77295649332293], [-73.98704451971062, 40.77660488774179], [-73.98823352437793, 40.77716166985338], [-73.98714973757546, 40.77928691853204], [-73.98674581818847, 40.78058402788437], [-73.98821069346344, 40.78122505891703], [-73.98768599278554, 40.78216290002316], [-73.9865652634212, 40.782064038410304], [-73.98516250169958, 40.7839982850751], [-73.98473705705575, 40.78504251482436], [-73.98470913747732, 40.785595702546885], [-73.9841922514499, 40.785616802690505], [-73.98265479533252, 40.784970606976074], [-73.98445219960307, 40.78319175363302], [-73.98106345484025, 40.78175075015363], [-73.98081059690513, 40.7824731961474], [-73.97928494580403, 40.78183902023342], [-73.97974787055291, 40.78119536260816], [-73.97690313877095, 40.77999737613274], [-73.97642746465422, 40.780654270730345], [-73.97357116577913, 40.77947788180905], [-73.98164276308029, 40.76843818452373], [-73.98127942848953, 40.76800974299721], [-73.98163627319613, 40.76764488303195], [-73.98214099885266, 40.76767624947194], [-73.9824539026136, 40.76801208634977], [-73.98242595187051, 40.76827499311975], [-73.9821910490971, 40.76843275229064], [-73.98220500852914, 40.76893917961924], [-73.9843193677394, 40.76984201633277], [-73.98477434066237, 40.769219333323136], [-73.99386535381521, 40.77305739204924], [-73.99379753570523, 40.77342509886936], [-73.99306672475984, 40.77433850654827]]], "type": "Polygon"}, "id": 89, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10023", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 90, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 15212712.6783, "Shape_Leng": 22471.3859889, "borough": "Manhattan", "postalCode": "10023"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.75505529656989, 40.776456965492144], [-73.7548305516997, 40.77687631601557], [-73.75469983252692, 40.77753005813162], [-73.75481413204062, 40.77763238723258], [-73.75448920596214, 40.77786134510709], [-73.75465006417231, 40.77799007822604], [-73.75437898235288, 40.77805651637], [-73.75411487372116, 40.7794280140114], [-73.75304758170729, 40.78077005771182], [-73.75299838937532, 40.781289505180894], [-73.7519289262809, 40.78228635012787], [-73.75066996224012, 40.78263925800115], [-73.75013520364239, 40.782276244338625], [-73.74941672818429, 40.780897233365515], [-73.74851452504377, 40.78085799428305], [-73.7480663716935, 40.78048900037444], [-73.74805718892316, 40.78010998538552], [-73.7483302911638, 40.779694670983325], [-73.7477014525705, 40.7795954730752], [-73.74737590072952, 40.7793552568278], [-73.74835203334136, 40.77895758875017], [-73.74805912543633, 40.77880604286062], [-73.74749470333288, 40.778994276598496], [-73.74718907531235, 40.77883655196687], [-73.74684968262166, 40.77891307478695], [-73.74595034936092, 40.778181209409304], [-73.74542193587894, 40.77729688629837], [-73.74565365972856, 40.777017961941105], [-73.74542479427255, 40.77657988887292], [-73.74545722321889, 40.7760965003077], [-73.7448870774014, 40.775389591846334], [-73.74485992540421, 40.775097600149124], [-73.74465450338657, 40.775072844949555], [-73.74516298584322, 40.77670254264834], [-73.7451131005399, 40.77739517101052], [-73.74466279679922, 40.7777033061311], [-73.74472807350242, 40.777502663104876], [-73.74439251439883, 40.77739993063271], [-73.74440414261136, 40.77809550284281], [-73.74411477586082, 40.77809298849041], [-73.74398287475644, 40.7785763041828], [-73.7430822138372, 40.77874039258547], [-73.73340769413095, 40.77307739438429], [-73.73694986426501, 40.7689056031321], [-73.7405650186993, 40.765981088122764], [-73.74200750162788, 40.76554666428092], [-73.74459299420668, 40.765299054491884], [-73.74749231061165, 40.76435422284655], [-73.75195270966867, 40.76336130787072], [-73.75211887205106, 40.76372862963811], [-73.75369844379188, 40.76499323149049], [-73.75375473960568, 40.76527960066206], [-73.75151557838113, 40.766555029247186], [-73.74959759730096, 40.768136081236726], [-73.74973777385316, 40.768252652993894], [-73.75142065326483, 40.76730389532323], [-73.75304745214993, 40.76915126224216], [-73.75447194585415, 40.768661147572026], [-73.75443171078014, 40.76899221877956], [-73.7540142497708, 40.76945276965905], [-73.75422512482342, 40.76966381042537], [-73.75471999834052, 40.769783291549416], [-73.75551321909221, 40.771539085341544], [-73.75394911478696, 40.77200259113455], [-73.75319598844838, 40.77284877043743], [-73.75420058515665, 40.77534312312188], [-73.75505529656989, 40.776456965492144]]], "type": "Polygon"}, "id": 90, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11363", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 91, "PO_NAME": "Little Neck", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 24242790.0243, "Shape_Leng": 27323.2391659, "borough": "Queens", "postalCode": "11363"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95992093682813, 40.78221296437616], [-73.94662848480695, 40.77660409264245], [-73.94712143173693, 40.775929657923015], [-73.94527480106927, 40.77514818859739], [-73.94477818193836, 40.77582281365468], [-73.94427810415844, 40.775607346458166], [-73.94300629896043, 40.777491824928546], [-73.94252771555604, 40.777655534513706], [-73.94240874833741, 40.77718359829133], [-73.94207149305245, 40.776921443328646], [-73.94197133914595, 40.77637873024383], [-73.94210786408009, 40.77595180035085], [-73.94241889865924, 40.77576210320621], [-73.9427515599061, 40.77494873492299], [-73.94355736955913, 40.77394221891133], [-73.94747457992891, 40.7701410515559], [-73.94769770056337, 40.77023186076828], [-73.94653116921268, 40.771454047737194], [-73.94711811963955, 40.77171281078474], [-73.94758356868442, 40.77107963375616], [-73.94993704268983, 40.77207366801167], [-73.94947623620192, 40.77270784073155], [-73.9540926544297, 40.77465627714582], [-73.9545551965945, 40.774020320961206], [-73.96322991306303, 40.77767706998322], [-73.95992093682813, 40.78221296437616]]], "type": "Polygon"}, "id": 91, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10028", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 92, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 9842046.47962, "Shape_Leng": 18177.3313408, "borough": "Manhattan", "postalCode": "10028"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84282055620947, 40.76615078076203], [-73.84286776760439, 40.76593665679543], [-73.84394747884859, 40.76549490278096], [-73.8449133296795, 40.76552840273365], [-73.84635158103067, 40.76625293934205], [-73.84723066948946, 40.76631317518342], [-73.84785542619669, 40.76688120307586], [-73.84856696642765, 40.76809092619507], [-73.84815252328019, 40.768375532816755], [-73.84824242209405, 40.76856303462238], [-73.84883521519191, 40.76875232287757], [-73.84901286909148, 40.76921531983762], [-73.8485094808501, 40.76976261981238], [-73.84871814730776, 40.77007473604943], [-73.84862191437199, 40.77068806312139], [-73.84949402727534, 40.771328634063146], [-73.84996292574542, 40.7719965049694], [-73.84897618864207, 40.77356168270425], [-73.84916114411192, 40.774474194179824], [-73.84889771381229, 40.775445210988316], [-73.84913631779811, 40.77590140012351], [-73.84904433699408, 40.77672195290833], [-73.84800998267166, 40.776963802189734], [-73.84622255851272, 40.776905735460566], [-73.84625067812513, 40.77668412658117], [-73.84612290255036, 40.77666547318237], [-73.8399807321466, 40.776507162638936], [-73.8391374648918, 40.77662304953122], [-73.83894666587881, 40.77688845238963], [-73.83886154742316, 40.778616522652435], [-73.83644472013009, 40.77862675585554], [-73.83575300203123, 40.77727029311377], [-73.83350673828704, 40.77161913949929], [-73.83196067682414, 40.77259056581203], [-73.83041569824934, 40.77393768228933], [-73.82957963564102, 40.774964955412166], [-73.82850225050593, 40.77674699653494], [-73.8258241108771, 40.776659787371905], [-73.82167154455216, 40.776853496319156], [-73.81873215461866, 40.77654675288536], [-73.81405363393792, 40.77570389833769], [-73.80388708860023, 40.7749008861396], [-73.80427864117219, 40.77206094634598], [-73.80615269889928, 40.772208734684966], [-73.80629119818154, 40.77119431245448], [-73.8053556081381, 40.771094615783525], [-73.80545306346423, 40.77036125925136], [-73.80556455646061, 40.76956040273773], [-73.80649701262476, 40.76963478379839], [-73.80749326524989, 40.762343074118405], [-73.8092627242146, 40.762511529450975], [-73.80935033891468, 40.76288958460748], [-73.81259971189746, 40.76315289034911], [-73.81399557332489, 40.76277156018088], [-73.81392000724597, 40.76259464894709], [-73.82596207220897, 40.759318113784516], [-73.82942801490489, 40.758601247347656], [-73.82962336799017, 40.758514699687495], [-73.8294692879904, 40.75819355457044], [-73.83367810334207, 40.75632058933918], [-73.83379575395263, 40.756703282702965], [-73.83787311963877, 40.75448002027914], [-73.83839907914631, 40.756107638358], [-73.83804101249186, 40.75690110680836], [-73.83820291297165, 40.757376569457016], [-73.8378181662206, 40.75837691076946], [-73.83731231699852, 40.75873048914162], [-73.8369876526642, 40.75935522922929], [-73.83624302092181, 40.76124582598902], [-73.83645405406129, 40.76308189538759], [-73.83738555526315, 40.76460100462129], [-73.83822190743706, 40.76567178180612], [-73.83952678563028, 40.766139568712504], [-73.83973777964532, 40.766650892866465], [-73.83950999912851, 40.766974181370934], [-73.83959071549897, 40.767110844591315], [-73.83994296458607, 40.76715055688382], [-73.83990190863284, 40.766824177454815], [-73.84031169489954, 40.76629481770424], [-73.84268195749101, 40.76583062086683], [-73.84282055620947, 40.76615078076203]]], "type": "Polygon"}, "id": 92, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11354", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 93, "PO_NAME": "Flushing", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 61985147.4503, "Shape_Leng": 44428.747165, "borough": "Queens", "postalCode": "11354"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9282828551014, 40.77690011062818], [-73.92398142234843, 40.77461513132962], [-73.92302570864821, 40.7753843296669], [-73.92375761329907, 40.776547028669825], [-73.92264887534152, 40.77742267430764], [-73.91431026542874, 40.77152309372572], [-73.91582766214444, 40.77027768826958], [-73.91675580733128, 40.770468123015455], [-73.91725836960862, 40.770772052894046], [-73.91811626314102, 40.77002851024616], [-73.91682128146127, 40.76979178214764], [-73.92188014977431, 40.76357440470882], [-73.92999065580524, 40.767390921832124], [-73.93522718173368, 40.769525743764376], [-73.93451011374543, 40.77033810504055], [-73.9342122085702, 40.77112939144285], [-73.93446033805583, 40.771181458578816], [-73.93436551045674, 40.77133084494266], [-73.93482653146948, 40.77157461085373], [-73.93479240551684, 40.77173030028253], [-73.93745897133056, 40.77253192429392], [-73.93781903150776, 40.773809356779516], [-73.9376512908773, 40.77504494079833], [-73.93644195605637, 40.77685690029757], [-73.93507850649249, 40.77793417414777], [-73.93410503402163, 40.77811590310507], [-73.93183570347979, 40.77784875202491], [-73.93108081059955, 40.77744046269213], [-73.9310876640554, 40.77719036119473], [-73.93067383513699, 40.77662139870418], [-73.92993489351963, 40.776196109879045], [-73.92855612794814, 40.77657433261874], [-73.9282828551014, 40.77690011062818]]], "type": "Polygon"}, "id": 93, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11102", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 94, "PO_NAME": "Astoria", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 19116258.4366, "Shape_Leng": 21056.9500245, "borough": "Queens", "postalCode": "11102"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89144363223775, 40.7763583166328], [-73.89144898515181, 40.77653286666632], [-73.89111193555622, 40.77715621189224], [-73.89053748885586, 40.77742102157145], [-73.89046181919109, 40.77772432192412], [-73.89020153210299, 40.77785144224793], [-73.88946114811935, 40.77563712931332], [-73.88981772498164, 40.77414151048624], [-73.89019171058222, 40.773646894932845], [-73.88968690433238, 40.77367635990064], [-73.88941440286017, 40.77298367626598], [-73.88872550665945, 40.76891625896795], [-73.88827314224882, 40.768669088442046], [-73.8875521692272, 40.76634984395331], [-73.88460352498768, 40.76699045951827], [-73.88427107137386, 40.76516702829957], [-73.8833438019187, 40.76526536747636], [-73.88267652911196, 40.761608127156585], [-73.88360707083808, 40.7615110285452], [-73.88324518504056, 40.759525817898314], [-73.88231601504671, 40.75962404422247], [-73.8816481218848, 40.755951617041866], [-73.89652230661433, 40.75438879610902], [-73.8975530041836, 40.76004384553095], [-73.89845325953627, 40.759930957405906], [-73.89628243836852, 40.76306507565924], [-73.89506745024609, 40.76403824242543], [-73.89428885039644, 40.765329875550876], [-73.89360244829341, 40.76574678967189], [-73.89308014704629, 40.76582362887071], [-73.90202516735927, 40.76741680457718], [-73.89370304502019, 40.774226039828626], [-73.89301289244057, 40.773841999141375], [-73.89279471064081, 40.77388744647699], [-73.89234934988467, 40.77581519713858], [-73.89199811360811, 40.77648043216968], [-73.89187464049115, 40.77666060070362], [-73.89144363223775, 40.7763583166328]], [[-73.89144046569658, 40.77625506074953], [-73.89183920484099, 40.77488410779936], [-73.89142281164395, 40.77567939010613], [-73.89144046569658, 40.77625506074953]]], "type": "Polygon"}, "id": 94, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11370", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 95, "PO_NAME": "East Elmhurst", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23600231.4882, "Shape_Leng": 28831.1609615, "borough": "Queens", "postalCode": "11370"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94908345691881, 40.76828439957028], [-73.95232471528539, 40.76453994029583], [-73.95470085007233, 40.76554539429569], [-73.95515920168289, 40.764918030312465], [-73.9684450875844, 40.770512715327335], [-73.96468735882094, 40.77567710275721], [-73.95022258897437, 40.76957692192602], [-73.95008118613985, 40.76950167320678], [-73.9505182523556, 40.768873643424705], [-73.94908345691881, 40.76828439957028]]], "type": "Polygon"}, "id": 95, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10021", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 96, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 10495132.7484, "Shape_Leng": 14364.1317459, "borough": "Manhattan", "postalCode": "10021"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.7664171956833, 40.775953061751], [-73.76574461927756, 40.774605379847195], [-73.76486900038823, 40.77353174569171], [-73.7611386396662, 40.77028321079016], [-73.75967463574023, 40.768779997813645], [-73.75907352282292, 40.76845380980041], [-73.75886152186858, 40.767504412905964], [-73.7586222123787, 40.76726151419477], [-73.75789041525309, 40.76693918026096], [-73.75698117662324, 40.76682551756139], [-73.75641325958817, 40.76651826105749], [-73.75650493486273, 40.76634588793077], [-73.75599207289766, 40.76646424887717], [-73.7549579881372, 40.76610622408562], [-73.75408528147098, 40.765337011627295], [-73.75378361256729, 40.765316732662285], [-73.75369844379188, 40.76499323149049], [-73.75211887205106, 40.76372862963811], [-73.75195270966867, 40.76336130787072], [-73.75848073467961, 40.76199475735488], [-73.75800130925859, 40.76037989336243], [-73.7623950930932, 40.7594970204421], [-73.76176691201809, 40.75727882407477], [-73.76185571091406, 40.75651699747534], [-73.76932641215687, 40.75520786236589], [-73.77248379397595, 40.75437649693181], [-73.77446597696449, 40.75357478564517], [-73.77625752209715, 40.7532048952917], [-73.77617836380527, 40.75289415972534], [-73.77980638646336, 40.75189503017791], [-73.7805316566079, 40.75332889545154], [-73.78227300594638, 40.755590381857736], [-73.78488207251075, 40.76072342062824], [-73.78531792290711, 40.76239233763082], [-73.78595696071746, 40.76309657590047], [-73.78930864101896, 40.76970816959261], [-73.77874286058736, 40.77283118259895], [-73.77481361321956, 40.77367334459813], [-73.77517458754704, 40.77531794332987], [-73.77423470821911, 40.7755748929662], [-73.77348553698275, 40.7723062804713], [-73.77228532321884, 40.77255412665665], [-73.77236919157203, 40.77325888336951], [-73.77026380862502, 40.77369794561284], [-73.7705710614954, 40.77448840410237], [-73.76771947648157, 40.77512527487488], [-73.76791154052991, 40.775538856253505], [-73.7664171956833, 40.775953061751]]], "type": "Polygon"}, "id": 96, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11361", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 97, "PO_NAME": "Bayside", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 50163518.2437, "Shape_Leng": 33141.1074855, "borough": "Queens", "postalCode": "11361"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80388708860023, 40.7749008861396], [-73.7927580840795, 40.774023006371635], [-73.79271257982995, 40.773787554941784], [-73.79163525508721, 40.77423867767925], [-73.78595696071746, 40.76309657590047], [-73.78531792290711, 40.76239233763082], [-73.78516836961438, 40.76143283956606], [-73.7840986597308, 40.75903841507052], [-73.78212461689897, 40.75533933051535], [-73.7805316566079, 40.75332889545154], [-73.77980638646336, 40.75189503017791], [-73.79229827925938, 40.74847044303219], [-73.79230780156934, 40.7483284193629], [-73.79481559808444, 40.74842181497499], [-73.79481030715543, 40.74864724248131], [-73.79644616834038, 40.74985924250121], [-73.79797926874357, 40.748983076885274], [-73.79802487205751, 40.7487118822742], [-73.8028109438988, 40.74908548009404], [-73.80287800596291, 40.74978342309386], [-73.80913470428081, 40.750268699539326], [-73.80649701262476, 40.76963478379839], [-73.80556455646061, 40.76956040273773], [-73.80545306346423, 40.77036125925136], [-73.8053556081381, 40.771094615783525], [-73.80629119818154, 40.77119431245448], [-73.80615269889928, 40.772208734684966], [-73.80427864117219, 40.77206094634598], [-73.80388708860023, 40.7749008861396]]], "type": "Polygon"}, "id": 97, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11358", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 98, "PO_NAME": "Flushing", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 54622541.0856, "Shape_Leng": 31560.3508509, "borough": "Queens", "postalCode": "11358"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.75195270966867, 40.76336130787072], [-73.74749231061165, 40.76435422284655], [-73.74459299420668, 40.765299054491884], [-73.74200750162788, 40.76554666428092], [-73.7405650186993, 40.765981088122764], [-73.73694986426501, 40.7689056031321], [-73.73340769413095, 40.77307739438429], [-73.7123933986705, 40.75992940785682], [-73.714463028051, 40.7599274430847], [-73.7170299312607, 40.75958230166639], [-73.71888793230208, 40.75893583356415], [-73.72042608051761, 40.757951207250144], [-73.72137285387498, 40.75699193428497], [-73.7224171269723, 40.755103796510625], [-73.72306624969382, 40.75427512661749], [-73.7242148710979, 40.75333168590093], [-73.72641523108936, 40.75208712140159], [-73.72763949821193, 40.75092126949652], [-73.72841024781373, 40.749619738557314], [-73.72912929626756, 40.7476056255959], [-73.73045153079383, 40.74572068356014], [-73.73206592857878, 40.7441317466379], [-73.73453711857451, 40.7424032199215], [-73.73493522128315, 40.74286526152491], [-73.73502952544588, 40.74441571975161], [-73.73550537797352, 40.745546116991434], [-73.7360589898297, 40.7463661041925], [-73.73805752430755, 40.74814453249202], [-73.74161404767233, 40.75046874676104], [-73.74302114842736, 40.75188445932597], [-73.74655779230501, 40.756105649007054], [-73.74843167923547, 40.75801742941823], [-73.75057805045478, 40.759363609344874], [-73.7552871765783, 40.761027092267646], [-73.75706953777303, 40.76224497252174], [-73.75195270966867, 40.76336130787072]]], "type": "Polygon"}, "id": 98, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11362", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 99, "PO_NAME": "Little Neck", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 54680551.2195, "Shape_Leng": 34988.0679278, "borough": "Queens", "postalCode": "11362"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96025188116326, 40.75160173916333], [-73.95930177684274, 40.75327932065025], [-73.95844140403103, 40.75392661295977], [-73.95409611755807, 40.75900913760916], [-73.95211797592772, 40.76084864904023], [-73.95162805900804, 40.76169026401909], [-73.95015562275987, 40.76347088102657], [-73.94905150682256, 40.764272972501765], [-73.9459118745636, 40.768212130610735], [-73.94519044551978, 40.768761080731196], [-73.94514864949124, 40.76911287681024], [-73.94468444176418, 40.76981742230175], [-73.94214109368411, 40.772025207991994], [-73.94080670541729, 40.772414956890344], [-73.94028695619137, 40.772931099366026], [-73.94007513458918, 40.77291651110901], [-73.94028188346618, 40.77229910379099], [-73.94022601401105, 40.770830391716096], [-73.9411405666542, 40.76939891966539], [-73.94282981252708, 40.76832153955499], [-73.94943175296811, 40.760548633636134], [-73.95177822494074, 40.75840256326599], [-73.95288366836812, 40.75671503376615], [-73.95519503423917, 40.754774538479445], [-73.95794360963475, 40.7520817436999], [-73.95902169181394, 40.75139031776102], [-73.96121825213025, 40.74948698083267], [-73.96157158279377, 40.74940690738399], [-73.9615424046855, 40.749849352313895], [-73.96120354981727, 40.75020773554125], [-73.96101163761999, 40.75078461142345], [-73.96025188116326, 40.75160173916333]]], "type": "Polygon"}, "id": 99, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10044", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 100, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 6296113.26978, "Shape_Leng": 21449.3706442, "borough": "Manhattan", "postalCode": "10044"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88781936012126, 40.76721021499059], [-73.8858908796651, 40.76761725102351], [-73.88538812525111, 40.76763336270306], [-73.88522838425882, 40.7674159074654], [-73.88435083557918, 40.7677350115958], [-73.88226144249427, 40.76863444886461], [-73.87826967179801, 40.77076783019437], [-73.8771857066443, 40.771163319519886], [-73.87551232135269, 40.77151603594751], [-73.873807538303, 40.77166578131725], [-73.8721642521318, 40.77159228793197], [-73.87089080629708, 40.771342695412926], [-73.86894957917168, 40.7705449732268], [-73.86631088491777, 40.76884255757447], [-73.86364687359277, 40.766519998426126], [-73.85945200194847, 40.761546368244844], [-73.8584551188574, 40.76083052444983], [-73.85525138907131, 40.759147555796076], [-73.85448824898457, 40.75826855774014], [-73.85560413748149, 40.75831080430905], [-73.85856139101914, 40.75791245298117], [-73.86515217390635, 40.75767519374349], [-73.8816481218848, 40.755951617041866], [-73.88231601504671, 40.75962404422247], [-73.88324518504056, 40.759525817898314], [-73.88360707083808, 40.7615110285452], [-73.88267652911196, 40.761608127156585], [-73.8833438019187, 40.76526536747636], [-73.88427107137386, 40.76516702829957], [-73.88460352498768, 40.76699045951827], [-73.8875521692272, 40.76634984395331], [-73.88781936012126, 40.76721021499059]]], "type": "Polygon"}, "id": 100, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11369", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 101, "PO_NAME": "East Elmhurst", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 30060493.2465, "Shape_Leng": 25542.2059303, "borough": "Queens", "postalCode": "11369"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.91431026542874, 40.77152309372572], [-73.9116731795285, 40.7696446318411], [-73.90464128651125, 40.76854227398368], [-73.90400273887188, 40.76815993449083], [-73.90162630902455, 40.76774915959758], [-73.90341708784594, 40.76596274862129], [-73.90980288228722, 40.75802403378785], [-73.91068363250272, 40.758319004278015], [-73.91261086660244, 40.755970967220485], [-73.91216835511808, 40.75576352877939], [-73.91069114846269, 40.75299692776756], [-73.9146850512154, 40.753666774343], [-73.9146702556466, 40.75378922228218], [-73.92245965235857, 40.75742738840943], [-73.9186859628096, 40.762072064499684], [-73.92188014977431, 40.76357440470882], [-73.91682128146127, 40.76979178214764], [-73.91811626314102, 40.77002851024616], [-73.91725836960862, 40.770772052894046], [-73.91675580733128, 40.770468123015455], [-73.91582766214444, 40.77027768826958], [-73.91431026542874, 40.77152309372572]]], "type": "Polygon"}, "id": 101, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11103", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 102, "PO_NAME": "Astoria", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 20222394.6253, "Shape_Leng": 21848.9570436, "borough": "Queens", "postalCode": "11103"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93446033805583, 40.771181458578816], [-73.9342122085702, 40.77112939144285], [-73.9344744896443, 40.770411617203386], [-73.93522718173368, 40.769525743764376], [-73.92999065580524, 40.767390921832124], [-73.9186859628096, 40.762072064499684], [-73.92649152697172, 40.75242457832166], [-73.93771838257163, 40.75862315690884], [-73.94330354486674, 40.760657960148656], [-73.94247179900226, 40.76199393007245], [-73.9445909327227, 40.762812808788354], [-73.94444683452065, 40.763000742212014], [-73.94454571223005, 40.763126104046044], [-73.9436413358205, 40.76434677699938], [-73.94130514048189, 40.766926964964114], [-73.93978863877922, 40.7680130113542], [-73.939353284139, 40.768149724431375], [-73.9389917293304, 40.76798672066201], [-73.93825092302808, 40.76867592550263], [-73.93781584000163, 40.76858348532421], [-73.93794034901445, 40.76875384941874], [-73.93772730534168, 40.76889179879864], [-73.93676209182634, 40.76893489347704], [-73.9366874476695, 40.7692420521125], [-73.936365023567, 40.769502138053774], [-73.93571831193677, 40.76946377870803], [-73.93531155399329, 40.76963166247672], [-73.93480099832287, 40.770315460254764], [-73.93481779945887, 40.77045395099395], [-73.935143359991, 40.7705514683328], [-73.93500360960306, 40.77113950479291], [-73.93446661621205, 40.77106308827249], [-73.93493918068455, 40.771161590197615], [-73.93446033805583, 40.771181458578816]]], "type": "Polygon"}, "id": 102, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11106", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 103, "PO_NAME": "Astoria", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23866112.7254, "Shape_Leng": 22168.7061249, "borough": "Queens", "postalCode": "11106"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8626379895192, 40.7668865175748], [-73.8627202141752, 40.76667066010142], [-73.86215785483239, 40.76619177192259], [-73.85975083535581, 40.76287785339091], [-73.85938812744854, 40.762496605519324], [-73.85892055607277, 40.76240641738173], [-73.85898422546157, 40.76217149040558], [-73.85884371585013, 40.762058783052936], [-73.85747662216197, 40.76130893730921], [-73.85530265929034, 40.76064960191759], [-73.85466366000882, 40.7601711836558], [-73.853599311068, 40.76021550873945], [-73.85258878796482, 40.75989695477098], [-73.8515855252434, 40.75935543777435], [-73.85018918764172, 40.75958313156355], [-73.84917544870133, 40.76030078991132], [-73.84858834612713, 40.76017958070007], [-73.84474506835045, 40.762755653770924], [-73.84306960471163, 40.7635925892598], [-73.84298479806871, 40.764423610640506], [-73.84231147839182, 40.764831685321035], [-73.84052635408429, 40.76538800444274], [-73.83992812312454, 40.7653502306905], [-73.83946758755206, 40.76521860958988], [-73.83831931688394, 40.76444781636086], [-73.83732079353334, 40.76287114616555], [-73.83723726168537, 40.76239791590786], [-73.83743706824045, 40.76204228656406], [-73.8370808233079, 40.76118286899132], [-73.8375906210753, 40.76096513504303], [-73.83746636141998, 40.76086675240635], [-73.83753729834446, 40.7606721675471], [-73.83796611809608, 40.76010057366594], [-73.83829670171556, 40.760231989771896], [-73.83806837149596, 40.75992628849084], [-73.83815263134295, 40.75965511589046], [-73.83836110815513, 40.759564844679886], [-73.8381884374726, 40.75940768905896], [-73.8391892815334, 40.75725485767155], [-73.83948811054896, 40.757032181144616], [-73.83919817678985, 40.75694414669796], [-73.839053951174, 40.75667874338881], [-73.83951049205358, 40.75641602897803], [-73.83974627090615, 40.75592114158775], [-73.84066268745259, 40.75520882787153], [-73.84069236460623, 40.75412199316901], [-73.8408494125252, 40.75391597886005], [-73.84065187179995, 40.753770426076024], [-73.83993447532495, 40.753980475152964], [-73.83971469031437, 40.75431876374835], [-73.8393904220798, 40.75441882396469], [-73.83839907914631, 40.756107638358], [-73.83773505435451, 40.754228119776926], [-73.83488088588507, 40.749999558148396], [-73.83462505960249, 40.74878465845345], [-73.83488732201435, 40.747402804738115], [-73.83716207986215, 40.74452217068513], [-73.83760758563552, 40.74323797966563], [-73.83887663051179, 40.742923437738234], [-73.841226208868, 40.741938289240316], [-73.85003821245904, 40.73780618589446], [-73.8518276243295, 40.73726308011072], [-73.85204757285209, 40.737682072495076], [-73.85539564554608, 40.73697698357846], [-73.85881661433109, 40.73595128395281], [-73.8587236016422, 40.73579746921751], [-73.86451198956482, 40.73407164841783], [-73.86582282944016, 40.736629809007816], [-73.86492970017666, 40.73689485175653], [-73.86554850561377, 40.738425756112804], [-73.86648010456265, 40.73821098897686], [-73.86754632193954, 40.74084806212972], [-73.86747113661455, 40.743213496737205], [-73.86855911982133, 40.747722340408345], [-73.87207046513889, 40.75386200705204], [-73.87167992356791, 40.75398717439602], [-73.87221855882477, 40.756943248067465], [-73.86515217390635, 40.75767519374349], [-73.85856139101914, 40.75791245298117], [-73.85560413748149, 40.75831080430905], [-73.85448824898457, 40.75826855774014], [-73.85525138907131, 40.759147555796076], [-73.8584551188574, 40.76083052444983], [-73.85945200194847, 40.761546368244844], [-73.86364687359277, 40.766519998426126], [-73.86631088491777, 40.76884255757447], [-73.86817470789389, 40.77010491244036], [-73.86785924170405, 40.770365622587676], [-73.86556020096782, 40.76876064678917], [-73.86398256632174, 40.76724056585999], [-73.8626379895192, 40.7668865175748]]], "type": "Polygon"}, "id": 103, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11368", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 104, "PO_NAME": "Corona", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 72489663.2825, "Shape_Leng": 51118.00128, "borough": "Queens", "postalCode": "11368"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90202516735927, 40.76741680457718], [-73.89308014704629, 40.76582362887071], [-73.89360244829341, 40.76574678967189], [-73.89428885039644, 40.765329875550876], [-73.89506745024609, 40.76403824242543], [-73.89628243836852, 40.76306507565924], [-73.89845325953627, 40.759930957405906], [-73.8975530041836, 40.76004384553095], [-73.89579868613828, 40.750619721332605], [-73.89654041085561, 40.750541998143575], [-73.89525242774396, 40.74830660945023], [-73.89583954185139, 40.748546875706005], [-73.89618737867819, 40.74850942518086], [-73.89507143240856, 40.74646547081214], [-73.89143129977275, 40.746844660419306], [-73.8903991785681, 40.74074747877867], [-73.89027618359668, 40.740758286625166], [-73.89017719133307, 40.740367161130344], [-73.88966322011572, 40.73966174232974], [-73.88974163145944, 40.73911504335457], [-73.89013809417283, 40.73919039584173], [-73.88869109732114, 40.736552562299146], [-73.89138531790981, 40.736008503768744], [-73.88938436378544, 40.73585658165053], [-73.88852298580434, 40.73453096063918], [-73.89175016130488, 40.73448482395767], [-73.89213096730522, 40.73368052186259], [-73.89595645067976, 40.733503482537664], [-73.90006743314838, 40.73365784067606], [-73.90002777705463, 40.73433921569978], [-73.90071138218727, 40.73435874933116], [-73.9051046323646, 40.72904239770819], [-73.90573454811134, 40.72851155526633], [-73.90852820104158, 40.72984485449761], [-73.91161658339192, 40.72994144794912], [-73.91742504706922, 40.73148304356194], [-73.91886115253058, 40.73200794885451], [-73.91973893512429, 40.73250754032471], [-73.92277255403289, 40.73479256203203], [-73.92420859750851, 40.7355195121288], [-73.9239715677859, 40.73578380270513], [-73.92303957026537, 40.74043615442116], [-73.92095629325937, 40.74136181320494], [-73.91909861829794, 40.741155159822455], [-73.91873497905945, 40.74296952431663], [-73.91685960681649, 40.74284090088955], [-73.91584692127618, 40.743138517869944], [-73.91466836063661, 40.74903429323742], [-73.9102715272297, 40.748517220171074], [-73.9102012569647, 40.748405589033396], [-73.90945641025888, 40.75088896213469], [-73.91043344582133, 40.752967933095775], [-73.91069114846269, 40.75299692776756], [-73.91190088924792, 40.75533425518106], [-73.91216835511808, 40.75576352877939], [-73.91261086660244, 40.755970967220485], [-73.91068363250272, 40.758319004278015], [-73.90980288228722, 40.75802403378785], [-73.90341708784594, 40.76596274862129], [-73.90202516735927, 40.76741680457718]]], "type": "Polygon"}, "id": 104, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11377", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 105, "PO_NAME": "Woodside", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 71832387.4936, "Shape_Leng": 46886.7190868, "borough": "Queens", "postalCode": "11377"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98134106844775, 40.758645323851304], [-73.97811606058137, 40.7572844526636], [-73.98088709157031, 40.753481009691896], [-73.98411754582567, 40.754842071375435], [-73.98459583212677, 40.754176960006426], [-73.99273700488898, 40.75760450929245], [-73.99395968106315, 40.758252769648045], [-74.00170164222186, 40.76138075542977], [-74.00116297247455, 40.76202186185266], [-73.99925483970868, 40.7635132508102], [-73.99773597314044, 40.765557990235976], [-73.98134106844775, 40.758645323851304]]], "type": "Polygon"}, "id": 105, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10036", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 106, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 11395110.5096, "Shape_Leng": 16418.6066682, "borough": "Manhattan", "postalCode": "10036"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.83787311963877, 40.75448002027914], [-73.83379575395263, 40.756703282702965], [-73.83367810334207, 40.75632058933918], [-73.8294692879904, 40.75819355457044], [-73.82962336799017, 40.758514699687495], [-73.82942801490489, 40.758601247347656], [-73.82596207220897, 40.759318113784516], [-73.81392000724597, 40.76259464894709], [-73.81399557332489, 40.76277156018088], [-73.81259971189746, 40.76315289034911], [-73.80935033891468, 40.76288958460748], [-73.8092627242146, 40.762511529450975], [-73.80749326524989, 40.762343074118405], [-73.80913470428081, 40.750268699539326], [-73.80750598164491, 40.75013661137004], [-73.81416170432934, 40.7461386017966], [-73.8136736120338, 40.745555884799515], [-73.81389548566275, 40.74418396197773], [-73.81430884374046, 40.7429737987062], [-73.81013261190412, 40.74229508206978], [-73.81035511920078, 40.738871386398905], [-73.81374332591969, 40.739027634262555], [-73.81594551519873, 40.73943366736025], [-73.825442037131, 40.742599182232055], [-73.82535537880628, 40.742173552376066], [-73.82753652355832, 40.74259036000092], [-73.83516185028508, 40.7433375035814], [-73.83760758563552, 40.74323797966563], [-73.83716207986215, 40.74452217068513], [-73.83488732201435, 40.747402804738115], [-73.83462505960249, 40.74878465845345], [-73.83472189899692, 40.74957733695883], [-73.83507743193861, 40.75035744838739], [-73.83787311963877, 40.75448002027914]]], "type": "Polygon"}, "id": 106, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11355", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 107, "PO_NAME": "Flushing", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 49383079.0839, "Shape_Leng": 33070.1802389, "borough": "Queens", "postalCode": "11355"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92245965235857, 40.75742738840943], [-73.9146702556466, 40.75378922228218], [-73.9146850512154, 40.753666774343], [-73.91043344582133, 40.752967933095775], [-73.90983513019263, 40.75162030912073], [-73.91236265909113, 40.751265516210154], [-73.91267864221648, 40.75088538413605], [-73.91531035717088, 40.750560534703126], [-73.92523202078246, 40.74861575646367], [-73.92763519649887, 40.736596848215555], [-73.92814551107685, 40.73668650895279], [-73.9299462588782, 40.73753598693547], [-73.93161369707066, 40.73682591573386], [-73.92593009371824, 40.735722799029375], [-73.9247302800047, 40.7353426135735], [-73.92414207292107, 40.73480462781427], [-73.92421699876563, 40.734355202853806], [-73.92701439731486, 40.73029639265229], [-73.92788262445306, 40.729578175168086], [-73.92869605014585, 40.72933871143812], [-73.93061904890696, 40.72933338719704], [-73.93126254869831, 40.72914778022763], [-73.93131508904743, 40.72872946395861], [-73.9346428287151, 40.72913194270296], [-73.93648138414557, 40.729686534149835], [-73.93804478501148, 40.73050998984157], [-73.93911054506975, 40.73137982197845], [-73.93991049508932, 40.73327634641833], [-73.94003201271711, 40.733245064870694], [-73.94016494151502, 40.73348604159717], [-73.94001767490285, 40.733540447534445], [-73.940067089068, 40.733762167588736], [-73.94045033892978, 40.73443255342846], [-73.94086498173641, 40.73507042769979], [-73.94180143545823, 40.73596259320407], [-73.9435948062825, 40.73671780770213], [-73.95192207597285, 40.7394873260313], [-73.95379878075701, 40.7398198798539], [-73.95710462304464, 40.73962581604059], [-73.96008046199408, 40.738477763728014], [-73.9607258083057, 40.73808019180817], [-73.96216415901107, 40.738272257229625], [-73.96213943199704, 40.73844336804795], [-73.96264119167172, 40.73881614840588], [-73.9623051907676, 40.73991484526398], [-73.96162264250285, 40.740019121014114], [-73.96128786680136, 40.740400241439524], [-73.96129912730744, 40.74053458289927], [-73.96190472633297, 40.74085349323559], [-73.96171611092772, 40.741107543919654], [-73.96114201356112, 40.7411567975995], [-73.9611312069767, 40.741754640649766], [-73.96145110509718, 40.741976237793985], [-73.96072975567442, 40.74335657667825], [-73.96040287829697, 40.74353968729661], [-73.959796138805, 40.7435340956692], [-73.95948898218427, 40.74409098034732], [-73.95770188872787, 40.74415905647211], [-73.9562077024403, 40.74387154882653], [-73.95596947148455, 40.74456351099967], [-73.95825624606996, 40.745004222235785], [-73.95930350447165, 40.74540607083203], [-73.9591037462695, 40.745719257518665], [-73.95840885983488, 40.745806492004014], [-73.95914165442987, 40.74599100063975], [-73.95859451752705, 40.74685154090525], [-73.95828696747529, 40.74693919779702], [-73.95850561335455, 40.747035700303684], [-73.95704643923652, 40.74891460405075], [-73.95492674577228, 40.748058872323014], [-73.95316678315137, 40.74770748866545], [-73.95303134336842, 40.74810635603445], [-73.95478497815779, 40.748434011813515], [-73.95631700608944, 40.749076572125574], [-73.95559712963878, 40.749675722393334], [-73.95504895706152, 40.74965779951683], [-73.95447473727025, 40.75055777929959], [-73.95466119234646, 40.75086457509], [-73.95450217993448, 40.75125704203454], [-73.95296230408987, 40.752752774242026], [-73.94838741278349, 40.75824259879555], [-73.94816139125774, 40.758123910698664], [-73.94834349446207, 40.75830871400194], [-73.94481272349707, 40.76274757824327], [-73.9445909327227, 40.762812808788354], [-73.94247179900226, 40.76199393007245], [-73.94330354486674, 40.760657960148656], [-73.93771838257163, 40.75862315690884], [-73.92649152697172, 40.75242457832166], [-73.92245965235857, 40.75742738840943]]], "type": "Polygon"}, "id": 107, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11101", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 108, "PO_NAME": "Long Island City", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 79311462.7741, "Shape_Leng": 55296.6832891, "borough": "Queens", "postalCode": "11101"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.77980638646336, 40.75189503017791], [-73.77617836380527, 40.75289415972534], [-73.77625752209715, 40.7532048952917], [-73.77446597696449, 40.75357478564517], [-73.77248379397595, 40.75437649693181], [-73.76932641215687, 40.75520786236589], [-73.76185571091406, 40.75651699747534], [-73.76176691201809, 40.75727882407477], [-73.7623950930932, 40.7594970204421], [-73.75800130925859, 40.76037989336243], [-73.75848073467961, 40.76199475735488], [-73.75706953777303, 40.76224497252174], [-73.7552871765783, 40.761027092267646], [-73.75057805045478, 40.759363609344874], [-73.74843167923547, 40.75801742941823], [-73.74655779230501, 40.756105649007054], [-73.74302114842736, 40.75188445932597], [-73.74161404767233, 40.75046874676104], [-73.73805752430755, 40.74814453249202], [-73.7360589898297, 40.7463661041925], [-73.73550537797352, 40.745546116991434], [-73.73502952544588, 40.74441571975161], [-73.73493522128315, 40.74286526152491], [-73.73453711857451, 40.7424032199215], [-73.73793557936861, 40.74062167762755], [-73.7391559027536, 40.73977681751699], [-73.74168681424477, 40.73682340115314], [-73.74771800971857, 40.73556432453737], [-73.77010678596534, 40.73177920848852], [-73.77150285763037, 40.73377783431018], [-73.77255091306046, 40.735616946066855], [-73.7755961969901, 40.74318890426944], [-73.77980638646336, 40.75189503017791]]], "type": "Polygon"}, "id": 108, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11364", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 109, "PO_NAME": "Oakland Gardens", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 84259665.0533, "Shape_Leng": 37488.6771909, "borough": "Queens", "postalCode": "11364"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00170164222186, 40.76138075542977], [-73.99395968106315, 40.758252769648045], [-73.99273700488898, 40.75760450929245], [-73.98459583212677, 40.754176960006426], [-73.98411754582567, 40.754842071375435], [-73.98088709157031, 40.753481009691896], [-73.98227489448695, 40.75157732130532], [-73.98067344551319, 40.750905127903316], [-73.98112322321491, 40.750282477439384], [-73.98272387083382, 40.75095896624622], [-73.98407634983731, 40.74910215123606], [-74.00443481918559, 40.75769386681482], [-74.00584854276795, 40.75581452793569], [-74.0063497724842, 40.7560315564691], [-74.00539548827581, 40.757348290354855], [-74.0051059765011, 40.757464854112605], [-74.00500749749396, 40.75790354393311], [-74.0032114988318, 40.76034815519167], [-74.002633874326, 40.76015187964796], [-74.00170164222186, 40.76138075542977]]], "type": "Polygon"}, "id": 109, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10018", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 110, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 10705796.4792, "Shape_Leng": 19509.953857, "borough": "Manhattan", "postalCode": "10018"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97720025859628, 40.75853795896472], [-73.97811606058137, 40.7572844526636], [-73.98134106844775, 40.758645323851304], [-73.97997187582975, 40.76052472469338], [-73.97798851126838, 40.759689583269356], [-73.97844979861895, 40.75906503534943], [-73.97720025859628, 40.75853795896472]]], "type": "Polygon"}, "id": 110, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10020", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 111, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 697297.022409, "Shape_Leng": 3612.20361135, "borough": "Manhattan", "postalCode": "10020"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.71291140817068, 40.75994981774804], [-73.7123933986705, 40.75992940785682], [-73.70477547538239, 40.755270233046005], [-73.70749973637017, 40.752691975668995], [-73.71132911125308, 40.74947450816085], [-73.71509806179287, 40.75181177075926], [-73.71541781535772, 40.7549984440815], [-73.71553103019596, 40.75506458072391], [-73.71534601002345, 40.75550893330126], [-73.71730957335735, 40.75595782995615], [-73.71775341502477, 40.75534755942338], [-73.72109289651769, 40.7562813418113], [-73.72183610276068, 40.75486513130315], [-73.72270447144122, 40.75373371438336], [-73.72300099990129, 40.75422071490896], [-73.72137285387498, 40.75699193428497], [-73.72042608051761, 40.757951207250144], [-73.71923414493834, 40.758754141012005], [-73.71790847549671, 40.75932967697809], [-73.71647783887028, 40.75969510631021], [-73.71291140817068, 40.75994981774804]]], "type": "Polygon"}, "id": 111, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11005", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 112, "PO_NAME": "Floral Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 9075527.40364, "Shape_Leng": 15261.3121561, "borough": "Queens", "postalCode": "11005"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97765482424467, 40.75791144608969], [-73.96529770902252, 40.75264583762442], [-73.96459499710154, 40.75243977267625], [-73.96344402771206, 40.75349010695482], [-73.96320189771842, 40.753367580909085], [-73.96598612327222, 40.75029814416708], [-73.9683733963465, 40.74744181636938], [-73.96823192938736, 40.74737533897918], [-73.96843697818686, 40.747126465671585], [-73.96877844594512, 40.74730154784091], [-73.96866789358177, 40.74746628797227], [-73.97027117732702, 40.74814216291654], [-73.9707803078373, 40.74754349253402], [-73.98182243630839, 40.75219714903956], [-73.97765482424467, 40.75791144608969]]], "type": "Polygon"}, "id": 112, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10017", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 113, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 9794383.24005, "Shape_Leng": 14308.6456258, "borough": "Manhattan", "postalCode": "10017"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00827017711134, 40.752587143684494], [-74.00762507843844, 40.75427918134466], [-74.0063497724842, 40.7560315564691], [-74.00584854276795, 40.75581452793569], [-74.00443481918559, 40.75769386681482], [-73.98407634983731, 40.74910215123606], [-73.98819360327555, 40.7434507585644], [-73.99141858532784, 40.74480270280026], [-73.99231888616656, 40.74356834094626], [-73.99800821278407, 40.74595132403083], [-73.99755164550196, 40.74658092322428], [-73.99776021780829, 40.74666960213552], [-74.00039850665578, 40.747767914957706], [-74.00084826591039, 40.74714679551053], [-74.0084863972116, 40.75035690472316], [-74.00771262087274, 40.75244403348591], [-74.00827017711134, 40.752587143684494]]], "type": "Polygon"}, "id": 113, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10001", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 114, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 17794940.7729, "Shape_Leng": 19254.4421288, "borough": "Manhattan", "postalCode": "10001"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99231888616656, 40.74356834094626], [-73.99416491652708, 40.74103096024326], [-73.99094521451195, 40.7396734013892], [-73.99697434816771, 40.73140885425229], [-73.99556244613166, 40.730715240556655], [-73.99657214974589, 40.72955224852642], [-74.00095441302535, 40.73170612172334], [-73.99918779333343, 40.73413485268567], [-73.99965309527676, 40.73406974469796], [-74.00278934381461, 40.739396052141906], [-74.00252381552642, 40.739752663660255], [-74.00880950909432, 40.74237800349779], [-74.00874808105286, 40.74267437311526], [-74.00963406333656, 40.742951557677706], [-74.00945255138471, 40.74397253492263], [-74.00890222701298, 40.74392047905555], [-74.00872736326855, 40.74492944174398], [-74.00956057606966, 40.74505535196703], [-74.00894640506142, 40.74841406592841], [-74.0100864024424, 40.74853348782033], [-74.00954164044062, 40.75005116701184], [-74.00921370133835, 40.74996684151542], [-74.00827017711134, 40.752587143684494], [-74.00771262087274, 40.75244403348591], [-74.0084863972116, 40.75035690472316], [-74.00084826591039, 40.74714679551053], [-74.00039850665578, 40.747767914957706], [-73.99776021780829, 40.74666960213552], [-73.99755164550196, 40.74658092322428], [-73.99800821278407, 40.74595132403083], [-73.99231888616656, 40.74356834094626]]], "type": "Polygon"}, "id": 114, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10011", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 115, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 18118416.8465, "Shape_Leng": 24714.1214421, "borough": "Manhattan", "postalCode": "10011"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98182243630839, 40.75219714903956], [-73.9707803078373, 40.74754349253402], [-73.97027117732702, 40.74814216291654], [-73.96866789358177, 40.74746628797227], [-73.96877844594512, 40.74730154784091], [-73.96843697818686, 40.747126465671585], [-73.97078815782022, 40.744403781234986], [-73.97094377426424, 40.744468392334674], [-73.97169899854326, 40.74302521023861], [-73.97213815218443, 40.74319577516442], [-73.97244629659694, 40.74292774587928], [-73.97283265146132, 40.741914536777976], [-73.97338707003932, 40.739198668020045], [-73.97378552702807, 40.73835503526489], [-73.9748212777202, 40.73703662791789], [-73.9776027005852, 40.7381718167862], [-73.97714764854395, 40.73879548459696], [-73.98497775243612, 40.742088977856845], [-73.98452913601977, 40.7427081196578], [-73.98774683765608, 40.7440655536138], [-73.98272387083382, 40.75095896624622], [-73.98112322321491, 40.750282477439384], [-73.98067344551319, 40.750905127903316], [-73.98227489448695, 40.75157732130532], [-73.98182243630839, 40.75219714903956]]], "type": "Polygon"}, "id": 115, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10016", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 116, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 15042403.038, "Shape_Leng": 18193.3491803, "borough": "Manhattan", "postalCode": "10016"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.90983513019263, 40.75162030912073], [-73.90943892442775, 40.75072775595179], [-73.9102012569647, 40.748405589033396], [-73.9102715272297, 40.748517220171074], [-73.91466836063661, 40.74903429323742], [-73.91584692127618, 40.743138517869944], [-73.91685960681649, 40.74284090088955], [-73.91873497905945, 40.74296952431663], [-73.91909861829794, 40.741155159822455], [-73.92095629325937, 40.74136181320494], [-73.92303957026537, 40.74043615442116], [-73.9239715677859, 40.73578380270513], [-73.92402158104623, 40.73559569255009], [-73.92420295823294, 40.73564180822858], [-73.92433300041961, 40.735038383979784], [-73.9247302800047, 40.7353426135735], [-73.92593009371824, 40.735722799029375], [-73.93161369707066, 40.73682591573386], [-73.9299462588782, 40.73753598693547], [-73.92814551107685, 40.73668650895279], [-73.92763519649887, 40.736596848215555], [-73.92523202078246, 40.74861575646367], [-73.91531035717088, 40.750560534703126], [-73.91267864221648, 40.75088538413605], [-73.91236265909113, 40.751265516210154], [-73.90983513019263, 40.75162030912073]]], "type": "Polygon"}, "id": 116, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11104", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 117, "PO_NAME": "Sunnyside", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 12084432.1157, "Shape_Leng": 21699.2899385, "borough": "Queens", "postalCode": "11104"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95945885843017, 40.74408973605339], [-73.95937771221256, 40.74429685194343], [-73.95895107926638, 40.74437520776169], [-73.9587732423604, 40.744997916700285], [-73.95849061026371, 40.74511060004904], [-73.95596947148455, 40.74456351099967], [-73.9562077024403, 40.74387154882653], [-73.95770188872787, 40.74415905647211], [-73.95945885843017, 40.74408973605339]]], "type": "Polygon"}, "id": 117, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11109", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 118, "PO_NAME": "Long Island City", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 231863.117494, "Shape_Leng": 2452.95482076, "borough": "Queens", "postalCode": "11109"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98774683765608, 40.7440655536138], [-73.98452913601977, 40.7427081196578], [-73.98497775243612, 40.742088977856845], [-73.97714764854395, 40.73879548459696], [-73.9776027005852, 40.7381718167862], [-73.97487981355269, 40.737038866756066], [-73.97378552702807, 40.73835503526489], [-73.97338707003932, 40.739198668020045], [-73.97283265146132, 40.741914536777976], [-73.97244629659694, 40.74292774587928], [-73.97213815218443, 40.74319577516442], [-73.97169899854326, 40.74302521023861], [-73.97188537590596, 40.74272543570639], [-73.97174963996802, 40.74267293715593], [-73.97196464286472, 40.742340463985386], [-73.9722958031553, 40.74072444635904], [-73.97216767098467, 40.74068821417498], [-73.97229861484297, 40.740038588301175], [-73.9724418579199, 40.74002514297308], [-73.9726637769893, 40.739231307693494], [-73.97249870358637, 40.73579877024189], [-73.9729156661846, 40.73578939842119], [-73.9746977226848, 40.73652838041297], [-73.97477563727595, 40.73621341250501], [-73.97475543046079, 40.73530907850526], [-73.97380924624134, 40.731834896083456], [-73.97334560511622, 40.73105318716372], [-73.97345725954919, 40.73070787427551], [-73.97397762172241, 40.731449329384], [-73.97422757839838, 40.7327558439044], [-73.97532247339407, 40.733031343879375], [-73.98450756332649, 40.73696250930074], [-73.98408212706875, 40.73754553806199], [-73.98730154857888, 40.738903046048186], [-73.98772624018376, 40.73831685815387], [-73.99416491652708, 40.74103096024326], [-73.99141858532784, 40.74480270280026], [-73.98819360327555, 40.7434507585644], [-73.98774683765608, 40.7440655536138]]], "type": "Polygon"}, "id": 118, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10010", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 119, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 9768395.37543, "Shape_Leng": 23512.5934985, "borough": "Manhattan", "postalCode": "10010"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.83760758563552, 40.74323797966563], [-73.83516185028508, 40.7433375035814], [-73.82753652355832, 40.74259036000092], [-73.82535537880628, 40.742173552376066], [-73.825442037131, 40.742599182232055], [-73.8150962962076, 40.739233762735516], [-73.81497231430079, 40.73857247354962], [-73.81039283603155, 40.73832811256814], [-73.81087857737191, 40.73044076111908], [-73.81115869632795, 40.72811578889331], [-73.81069041285096, 40.726715591762485], [-73.81059570340857, 40.72428869532381], [-73.80904031652176, 40.71991162363268], [-73.81930468599842, 40.71713609623505], [-73.82111716197569, 40.716377742830474], [-73.8230557789411, 40.716152910103304], [-73.826059565848, 40.71539860277048], [-73.82703051189961, 40.715966173441835], [-73.83003962060734, 40.716819558666536], [-73.83166470511601, 40.71762787636935], [-73.83369385966778, 40.719568886500255], [-73.83586201007776, 40.72219859100044], [-73.83740033679321, 40.72456735232897], [-73.83917827504315, 40.7280441124345], [-73.84047653383794, 40.72965476436148], [-73.84266375345989, 40.73163143828195], [-73.84328993516154, 40.732438426620675], [-73.84442620021782, 40.73424714942237], [-73.84499322324764, 40.735759248696155], [-73.84557652842895, 40.73985379274196], [-73.83939809605175, 40.74271714369887], [-73.83760758563552, 40.74323797966563]]], "type": "Polygon"}, "id": 119, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11367", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 120, "PO_NAME": "Flushing", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 72810151.5885, "Shape_Leng": 33506.1266045, "borough": "Queens", "postalCode": "11367"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00095441302535, 40.73170612172334], [-74.00213898854658, 40.72979576458265], [-74.00280854961393, 40.728365390425466], [-74.00214891904179, 40.72803537988616], [-74.00312206874118, 40.726877146592734], [-74.00884511504479, 40.72747017195687], [-74.00859270948662, 40.72891530405671], [-74.00934962040236, 40.728987582944114], [-74.00990680621175, 40.72607226876425], [-74.01160379284916, 40.72623919609031], [-74.01139165264287, 40.7282161340609], [-74.01489104433381, 40.728522893703854], [-74.01483072115157, 40.72867424097841], [-74.01436331975002, 40.72861881088543], [-74.0140528033096, 40.730681998939595], [-74.01117465578817, 40.73045339416476], [-74.01039475740829, 40.73913576641184], [-74.01166431224308, 40.739264493920004], [-74.0114584884133, 40.74081129967432], [-74.00966741207785, 40.74073747377694], [-74.0092917723409, 40.74280634214534], [-74.00874808105286, 40.74267437311526], [-74.00880950909432, 40.74237800349779], [-74.00252381552642, 40.739752663660255], [-74.00278934381461, 40.739396052141906], [-73.99965309527676, 40.73406974469796], [-73.99918779333343, 40.73413485268567], [-74.00095441302535, 40.73170612172334]]], "type": "Polygon"}, "id": 120, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10014", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 121, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 14151051.856, "Shape_Leng": 20454.0722425, "borough": "Manhattan", "postalCode": "10014"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97986374196766, 40.73497446573838], [-73.98863957033585, 40.7229322499158], [-73.99260322757122, 40.72413646995786], [-73.99154832687323, 40.72708949158592], [-73.99657214974589, 40.72955224852642], [-73.99556244613166, 40.730715240556655], [-73.99697434816771, 40.73140885425229], [-73.99094521451195, 40.7396734013892], [-73.98772624018376, 40.73831685815387], [-73.98730154857888, 40.738903046048186], [-73.98408212706875, 40.73754553806199], [-73.98450756332649, 40.73696250930074], [-73.97986374196766, 40.73497446573838]]], "type": "Polygon"}, "id": 121, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10003", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 122, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 15538376.2738, "Shape_Leng": 17396.13689, "borough": "Manhattan", "postalCode": "10003"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96165513906905, 40.72586761551694], [-73.96109194072898, 40.72921566001107], [-73.9618981754649, 40.73268431360396], [-73.96221889515473, 40.73264985506778], [-73.96225720673954, 40.73277041506768], [-73.96234674403637, 40.733764327146744], [-73.96208024429413, 40.7345093398852], [-73.9598192072228, 40.73706224418661], [-73.95830224314433, 40.738138385181834], [-73.95691820225612, 40.738888927847015], [-73.95459358409678, 40.73912735184555], [-73.95297916326543, 40.73895235315201], [-73.95063512234523, 40.73836583161606], [-73.94811281195891, 40.737398505095534], [-73.94441350982892, 40.7362692846045], [-73.94238432470524, 40.7354270966621], [-73.94172811038831, 40.734952075367104], [-73.94113735207183, 40.73415428221381], [-73.94098736181031, 40.73379183194057], [-73.94114657472532, 40.73375143197329], [-73.94055859579939, 40.73305983047508], [-73.94067593888438, 40.73302029203308], [-73.93980312677915, 40.73115402789503], [-73.9380932483728, 40.729729879099], [-73.93692112437624, 40.7291094470783], [-73.93491972919426, 40.72854272367291], [-73.9319941089159, 40.72814643173575], [-73.92957009484982, 40.72761417943474], [-73.92786161719363, 40.725855389918905], [-73.92778232946553, 40.724921818172675], [-73.92940867789551, 40.72495082989371], [-73.9291946344389, 40.724646518988855], [-73.93558882934634, 40.722991101001256], [-73.93502422189579, 40.72169860099053], [-73.93650434752637, 40.72124751134715], [-73.93560565562146, 40.719221967088], [-73.93725759493637, 40.71879119087172], [-73.93751908761392, 40.719443722899285], [-73.9404920095606, 40.718678284870705], [-73.94058990557328, 40.71920543998519], [-73.94841638326562, 40.71845554965954], [-73.94853259750327, 40.719167194593545], [-73.95018028443265, 40.71900880736803], [-73.95064593219223, 40.72170571245187], [-73.95272955596211, 40.72044475832801], [-73.95346872217966, 40.71979825384123], [-73.95603779425977, 40.721397767367925], [-73.95497661338467, 40.722375257590485], [-73.95418329512775, 40.72263644720203], [-73.95451201623614, 40.72322522528413], [-73.95757199967211, 40.72509761138729], [-73.95772236011283, 40.72427139001951], [-73.95805126546345, 40.7244230939493], [-73.95793268650395, 40.7249307235854], [-73.95840056212465, 40.72521539865286], [-73.95842722850374, 40.72541337622108], [-73.96009685194524, 40.725304058902815], [-73.96020772903623, 40.72596695303814], [-73.96165513906905, 40.72586761551694]]], "type": "Polygon"}, "id": 122, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11222", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 123, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 42904553.7275, "Shape_Leng": 32221.1089787, "borough": "Brooklyn", "postalCode": "11222"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97441674489379, 40.736424418654764], [-73.97450449496019, 40.735633087183324], [-73.97421859238608, 40.735640568886694], [-73.97327559147712, 40.735131583174194], [-73.97354616044402, 40.73493824536315], [-73.97403246223399, 40.735146860550095], [-73.97380079041261, 40.73424075479527], [-73.9741825110309, 40.73427477395008], [-73.97395288057656, 40.733382091823074], [-73.97365008430604, 40.73317919158349], [-73.97386750031377, 40.733035882931475], [-73.97342032308187, 40.73129433266645], [-73.97197984259645, 40.73002416256748], [-73.97156968004504, 40.72945050470356], [-73.97141863377279, 40.72893415077406], [-73.97156128882759, 40.727705076296495], [-73.97144662795941, 40.727654728387414], [-73.97163519037665, 40.72765444810735], [-73.97167264112232, 40.72743584259512], [-73.9714961156689, 40.72741848314708], [-73.97176935741716, 40.72581105101681], [-73.973476987278, 40.718879038813014], [-73.974869782192, 40.715177229896184], [-73.97669586935731, 40.71155932662336], [-73.9779941940137, 40.71056447085009], [-73.98128866027025, 40.71022341586406], [-73.98123989705152, 40.70982434650689], [-73.98839850933068, 40.709133089371235], [-73.98863423510647, 40.70990897513804], [-73.988946629177, 40.70995360786467], [-73.9971118238817, 40.70878453123958], [-73.99847085128536, 40.70839090339755], [-73.99864747155051, 40.70812991947483], [-73.99922203190233, 40.707869927410805], [-73.9996346132674, 40.708196844723716], [-73.99854508969881, 40.708826303268516], [-73.99608811355304, 40.70919833175014], [-73.99753100769797, 40.714022522064965], [-73.994996603495, 40.71804973934692], [-73.99260322993852, 40.72413646995802], [-73.97888684949882, 40.7199927901085], [-73.97722422258421, 40.71930970938422], [-73.97495552579649, 40.71897253578847], [-73.97449444901332, 40.72224717945813], [-73.97222024875163, 40.72616343081368], [-73.97186502795931, 40.72775682120928], [-73.97208418573008, 40.729350905560366], [-73.9724930091715, 40.72997752648989], [-73.97345725836539, 40.73070787427524], [-73.97334560393176, 40.73105318896443], [-73.97385532725802, 40.73198593170253], [-73.97475543282883, 40.73530907760529], [-73.9746977226848, 40.73652838041297], [-73.97441674489379, 40.736424418654764]]], "type": "Polygon"}, "id": 123, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10002", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 124, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 26280128.5931, "Shape_Leng": 36484.4179654, "borough": "Manhattan", "postalCode": "10002"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92420859750851, 40.7355195121288], [-73.92277255403289, 40.73479256203203], [-73.91973893512429, 40.73250754032471], [-73.91835103029273, 40.7317862216445], [-73.91161658339192, 40.72994144794912], [-73.90852820104158, 40.72984485449761], [-73.90573454811134, 40.72851155526633], [-73.9051046323646, 40.72904239770819], [-73.90071138218727, 40.73435874933116], [-73.90002777705463, 40.73433921569978], [-73.90006743314838, 40.73365784067606], [-73.89595645067976, 40.733503482537664], [-73.89213096730522, 40.73368052186259], [-73.89175016130488, 40.73448482395767], [-73.88852298580434, 40.73453096063918], [-73.88805974921776, 40.73008724345065], [-73.88755961452502, 40.73019707395208], [-73.88722820346595, 40.72893322365565], [-73.88713726485159, 40.72401399778017], [-73.8856407533764, 40.72202158060076], [-73.90115752128105, 40.71462233690481], [-73.90059587229088, 40.712697404440746], [-73.90692183834628, 40.71294840467717], [-73.92370101786403, 40.71399575231889], [-73.92411222490135, 40.71515262836981], [-73.92366895773999, 40.715535585438374], [-73.92266778934764, 40.71587385505645], [-73.92305620215473, 40.716930609536405], [-73.92253676178045, 40.71705104756711], [-73.92279414510176, 40.71753458922658], [-73.92346602475705, 40.71813034810182], [-73.9239386760769, 40.71904277283899], [-73.9238357537233, 40.72014818451537], [-73.92422716191017, 40.72088735985889], [-73.92424364612927, 40.72142951549778], [-73.924912404724, 40.721960159374845], [-73.92514671295626, 40.722352016592474], [-73.9244584645738, 40.72358043863624], [-73.92214330886834, 40.723707570222906], [-73.92073355398462, 40.723309826649114], [-73.92037064341827, 40.723681133725194], [-73.9222861991881, 40.724181303286], [-73.92465327086629, 40.72438766239224], [-73.92655663478125, 40.72566908072155], [-73.9286107075308, 40.72791978961855], [-73.92939257358599, 40.728308572103806], [-73.93131508904743, 40.72872946395861], [-73.93126254869831, 40.72914778022763], [-73.9304311858169, 40.72936543912572], [-73.92845333873967, 40.72937629851237], [-73.92727230656396, 40.72998964713008], [-73.92421699876563, 40.734355202853806], [-73.92412230032137, 40.73475696709576], [-73.92433300041961, 40.735038383979784], [-73.92420859750851, 40.7355195121288]]], "type": "Polygon"}, "id": 124, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11378", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 125, "PO_NAME": "Maspeth", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 66342001.4603, "Shape_Leng": 42329.4034094, "borough": "Queens", "postalCode": "11378"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97345725954919, 40.73070787427551], [-73.97249301153902, 40.729977526490444], [-73.9720841869138, 40.729350905560665], [-73.97186502677638, 40.727756819407965], [-73.97222024875201, 40.72616342991315], [-73.97449444901366, 40.72224717855764], [-73.97495552697968, 40.71897253668923], [-73.97722422258421, 40.71930970938422], [-73.97888685068243, 40.71999279010872], [-73.98863957033585, 40.7229322499158], [-73.97986374196766, 40.73497446573838], [-73.97532247339407, 40.733031343879375], [-73.97422757839838, 40.7327558439044], [-73.97397762172241, 40.731449329384], [-73.97345725954919, 40.73070787427551]]], "type": "Polygon"}, "id": 125, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10009", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 126, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 15903519.5061, "Shape_Leng": 16247.1242638, "borough": "Manhattan", "postalCode": "10009"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99657214974589, 40.72955224852642], [-73.99154832687323, 40.72708949158592], [-73.99439810650215, 40.71945747886536], [-73.99969736594811, 40.7217151528207], [-74.00457474440742, 40.7241731548283], [-74.00373017300889, 40.72625007261896], [-74.00214891904179, 40.72803537988616], [-74.00280854961393, 40.728365390425466], [-74.00213898854658, 40.72979576458265], [-74.00095441302535, 40.73170612172334], [-73.99657214974589, 40.72955224852642]]], "type": "Polygon"}, "id": 126, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10012", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 127, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 9193739.33105, "Shape_Leng": 12422.9886055, "borough": "Manhattan", "postalCode": "10012"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00373017537623, 40.726250071718354], [-74.00457474322378, 40.72417315482835], [-73.99969736594811, 40.7217151528207], [-73.99439810650206, 40.71945747976586], [-73.99510494018048, 40.717834513116195], [-73.99614755396055, 40.71605066204842], [-73.99756144160604, 40.71392811409916], [-73.99794987302673, 40.71367226053373], [-73.99853551056803, 40.71344591985708], [-74.00624900897965, 40.717075738170266], [-74.00793943729164, 40.714926994141074], [-74.01338737921822, 40.71743750905723], [-74.01160379284916, 40.72623919609031], [-74.00990680502794, 40.72607226786386], [-74.00934962040236, 40.728987582944114], [-74.00859270948662, 40.72891530405671], [-74.00884511741211, 40.72747017105617], [-74.00312206874112, 40.72687714569224], [-74.00373017537623, 40.726250071718354]]], "type": "Polygon"}, "id": 127, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10013", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 128, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 15580577.9879, "Shape_Leng": 19248.0155384, "borough": "Manhattan", "postalCode": "10013"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9291946344389, 40.724646518988855], [-73.92940867789551, 40.72495082989371], [-73.92778232946553, 40.724921818172675], [-73.9256204158379, 40.72006301310178], [-73.92482257902324, 40.72026398222462], [-73.92454003977986, 40.719667509345946], [-73.9247775299856, 40.71856597612647], [-73.92459276089694, 40.71795163791568], [-73.9235909188853, 40.71727453380272], [-73.92306650876901, 40.7163569813478], [-73.92359458117248, 40.716026969933246], [-73.9243190124252, 40.71584842153948], [-73.92489123297003, 40.715268543283415], [-73.92435322244046, 40.71430842132997], [-73.92434517703175, 40.71395511055135], [-73.92816524502244, 40.71420826250719], [-73.92851148148394, 40.714995502746774], [-73.94044174535384, 40.71200576972446], [-73.95111564873585, 40.710956644745515], [-73.95028593039295, 40.70545886980735], [-73.95745735716244, 40.700822619256755], [-73.95701992980626, 40.69897393841836], [-73.96283963298129, 40.69803868247499], [-73.96217978275546, 40.700220730250734], [-73.96733862193186, 40.704379655268895], [-73.96839122708904, 40.706853794681585], [-73.96928534847645, 40.70704070372699], [-73.96985022534126, 40.707989656047495], [-73.96993198294554, 40.70930282167226], [-73.96957395799977, 40.71029539508721], [-73.970058243857, 40.710467349459776], [-73.96971221303008, 40.71052278083727], [-73.96978344872517, 40.71080315111127], [-73.96937007058716, 40.71098447859273], [-73.96994656615651, 40.7112599977507], [-73.96927464305182, 40.71116325949593], [-73.9694601963559, 40.71141436138234], [-73.96913353816544, 40.71150911875763], [-73.96881322945958, 40.71226115071283], [-73.96893191003308, 40.71246460996999], [-73.96867419256641, 40.71284767049383], [-73.96847440274865, 40.71284152400014], [-73.96849756280008, 40.71309936003908], [-73.96884044392831, 40.71321510233152], [-73.96737208181966, 40.71647775350372], [-73.96723671036557, 40.71644017819083], [-73.96711766081647, 40.716896795665946], [-73.96725748219734, 40.71698450738405], [-73.9663413813363, 40.71830555532039], [-73.96622714863466, 40.71824405485594], [-73.96587051358836, 40.71877542886806], [-73.96568520449111, 40.71895368015386], [-73.96555112622448, 40.71887470861791], [-73.96517160519299, 40.71927049820948], [-73.965868672269, 40.71974092799856], [-73.96554164621585, 40.719684617160425], [-73.96514186981787, 40.7204533295554], [-73.96514778919514, 40.720339601469334], [-73.96445541217513, 40.72006306837276], [-73.96436748447816, 40.7201605727063], [-73.96447338603295, 40.7202293764639], [-73.96432520894773, 40.7203783956277], [-73.9647420592959, 40.72065161982244], [-73.9643109139618, 40.72053480613715], [-73.9640987548492, 40.72075409623906], [-73.96503027569385, 40.72136067088276], [-73.96490476987798, 40.72147014186857], [-73.96400732068838, 40.720926909721285], [-73.96307397689769, 40.722012616157095], [-73.96268858160937, 40.72269899713983], [-73.96347772879564, 40.723216310080716], [-73.96261281204295, 40.7228532640517], [-73.96245886932648, 40.72302900601168], [-73.96338672941316, 40.72362279632939], [-73.9632173208792, 40.72377183426408], [-73.96239527726186, 40.723256593518535], [-73.96202300328528, 40.72399381109901], [-73.96188716870084, 40.723987120456975], [-73.96194440071675, 40.724218364963136], [-73.96159813442388, 40.72496171943622], [-73.96204250475475, 40.72522449308534], [-73.96194023375449, 40.725332262879185], [-73.96065478047927, 40.72516909708568], [-73.95772236011283, 40.72427139001951], [-73.95757199967211, 40.72509761138729], [-73.95451201623614, 40.72322522528413], [-73.95418329512775, 40.72263644720203], [-73.95497661338467, 40.722375257590485], [-73.95603779425977, 40.721397767367925], [-73.95346872217966, 40.71979825384123], [-73.95272955596211, 40.72044475832801], [-73.95064593219223, 40.72170571245187], [-73.95018028443265, 40.71900880736803], [-73.94853259750327, 40.719167194593545], [-73.94841638326562, 40.71845554965954], [-73.94058990557328, 40.71920543998519], [-73.9404920095606, 40.718678284870705], [-73.93751908761392, 40.719443722899285], [-73.93725759493637, 40.71879119087172], [-73.93560565562146, 40.719221967088], [-73.93650434752637, 40.72124751134715], [-73.93502422189579, 40.72169860099053], [-73.93558882934634, 40.722991101001256], [-73.9291946344389, 40.724646518988855]]], "type": "Polygon"}, "id": 128, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11211", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 129, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 58162525.353, "Shape_Leng": 50606.6325671, "borough": "Brooklyn", "postalCode": "11211"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01361734313505, 40.71630795875016], [-74.01338737921822, 40.71743750905723], [-74.00793943729164, 40.714926994141074], [-74.00624900897965, 40.717075738170266], [-73.99853551056803, 40.71344591985708], [-74.00218358394152, 40.71267667253717], [-74.00349443783057, 40.71196095667498], [-74.00449835462935, 40.71276278512289], [-74.00551633163221, 40.71218046977318], [-74.00861759635661, 40.71136879857202], [-74.00998738339328, 40.70980569640762], [-74.01123100044997, 40.71036688375349], [-74.01015299270881, 40.71206448722059], [-74.01420569583551, 40.71388576523014], [-74.01361734313505, 40.71630795875016]]], "type": "Polygon"}, "id": 129, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10007", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 130, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 5328635.48537, "Shape_Leng": 13425.2417717, "borough": "Manhattan", "postalCode": "10007"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92816524502244, 40.71420826250719], [-73.92409190873964, 40.7139631501864], [-73.92390321296585, 40.71351996168408], [-73.92249238779786, 40.712779844196255], [-73.92105481596465, 40.71069920363987], [-73.92074422405567, 40.71052965899251], [-73.9218981003743, 40.70939405733703], [-73.91180697312771, 40.70343490236357], [-73.91290388971863, 40.70236180476987], [-73.91067841452569, 40.70104586000812], [-73.91180805527122, 40.699938064265375], [-73.90426002202288, 40.69570003869231], [-73.90579599172031, 40.69412717489697], [-73.90213564989881, 40.69204672337485], [-73.90216980569927, 40.69185213792525], [-73.90359695424978, 40.69040915612055], [-73.91636718052304, 40.697680904182626], [-73.91781911962863, 40.69620772862452], [-73.92232800953694, 40.6987721198053], [-73.92087956801677, 40.700247366780346], [-73.92163115701487, 40.700675580244926], [-73.92308168149715, 40.699200696300665], [-73.93117392589384, 40.703765032030745], [-73.93228371932507, 40.7077516287513], [-73.93480281087365, 40.713372514591065], [-73.92851148148394, 40.714995502746774], [-73.92816524502244, 40.71420826250719]]], "type": "Polygon"}, "id": 130, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11237", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 131, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 27373778.4839, "Shape_Leng": 30772.6174254, "borough": "Brooklyn", "postalCode": "11237"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.92409190873964, 40.7139631501864], [-73.90030953552922, 40.712685783380266], [-73.88598390240503, 40.70628222094159], [-73.87777181650725, 40.70688439873375], [-73.87742739436457, 40.70719863992166], [-73.87654150134686, 40.70739743758166], [-73.87622775301763, 40.70686901150781], [-73.8748868593597, 40.70700284313498], [-73.87250367865842, 40.70822738849878], [-73.86956283652766, 40.709462324773924], [-73.86487186925038, 40.710820659019404], [-73.86207871371592, 40.712201079226716], [-73.85727919041909, 40.711460502200886], [-73.85667371274072, 40.70745383048999], [-73.85618301210704, 40.70631873300626], [-73.8528170570701, 40.70737811335201], [-73.85108303705115, 40.70700735736896], [-73.85020974498151, 40.70753151846665], [-73.84935683411905, 40.707818072358876], [-73.84431439648806, 40.70812325100999], [-73.84295309927836, 40.708381070038115], [-73.84160209420453, 40.70898389149643], [-73.83843024539483, 40.708443377491385], [-73.83714702640651, 40.707957064585884], [-73.83800894198143, 40.706695412446535], [-73.83813648748861, 40.70624923375432], [-73.83696236365265, 40.704212471294035], [-73.83902977514548, 40.70302118352209], [-73.84156161610936, 40.70109933142779], [-73.84266041892232, 40.700706577737186], [-73.84526505335812, 40.69926617143871], [-73.84947762655437, 40.69819582953089], [-73.8513012262131, 40.700622067055996], [-73.85232212905822, 40.700457823892386], [-73.85420700353531, 40.70075574290403], [-73.85456630499097, 40.70059406815739], [-73.85303933131634, 40.698947337313456], [-73.85271294012661, 40.69819790086205], [-73.8527723809723, 40.697557136314416], [-73.85744446250214, 40.69691300931691], [-73.86911282484628, 40.69451576163624], [-73.86933366148148, 40.69487010897182], [-73.87437496914276, 40.69398481977425], [-73.87967425772909, 40.69112927354322], [-73.88407465181716, 40.68780821975699], [-73.88784904739725, 40.685906426788215], [-73.88843824436687, 40.685092700308985], [-73.88994141697744, 40.68403417375749], [-73.89038101065086, 40.6845969917326], [-73.89274901345493, 40.68321199847903], [-73.89439360877739, 40.68511990886822], [-73.89570854411691, 40.6836475260256], [-73.89652848528824, 40.68236770291731], [-73.89668301568736, 40.6823719922445], [-73.90118898957714, 40.687598001148075], [-73.90048698549924, 40.68779799653781], [-73.9018860042185, 40.69081099170145], [-73.9014929917251, 40.69142400302761], [-73.90213564989881, 40.69204672337485], [-73.90579599172031, 40.69412717489697], [-73.90426002202288, 40.69570003869231], [-73.91180805527122, 40.699938064265375], [-73.91067841452569, 40.70104586000812], [-73.91290388971863, 40.70236180476987], [-73.91180697312771, 40.70343490236357], [-73.9218981003743, 40.70939405733703], [-73.92074422405567, 40.71052965899251], [-73.92105481596465, 40.71069920363987], [-73.92249238779786, 40.712779844196255], [-73.92390321296585, 40.71351996168408], [-73.92409190873964, 40.7139631501864]]], "type": "Polygon"}, "id": 131, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11385", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 132, "PO_NAME": "Ridgewood", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 125023075.272, "Shape_Leng": 67618.8719677, "borough": "Queens", "postalCode": "11385"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99922642801454, 40.70787485413706], [-73.99978643662196, 40.707721657974844], [-74.000169448193, 40.707319577091816], [-74.00216364801439, 40.70648910087558], [-74.00579655646256, 40.704202752248094], [-74.00596661578348, 40.7043243225291], [-74.00466551829473, 40.70515332690227], [-74.00928620764611, 40.70855632218312], [-74.01054246343901, 40.70915416953688], [-74.00861759635661, 40.71136879857202], [-74.00551633163221, 40.71218046977318], [-74.00449835462935, 40.71276278512289], [-74.00349443783057, 40.71196095667498], [-74.00218358394152, 40.71267667253717], [-73.99890225039073, 40.713303048039336], [-73.99794987302673, 40.71367226053373], [-73.99753100769797, 40.714022522064965], [-73.99608811355304, 40.70919833175014], [-73.99858442064794, 40.708809890143904], [-73.9996346132674, 40.708196844723716], [-73.99922642801454, 40.70787485413706]]], "type": "Polygon"}, "id": 132, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10038", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 133, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 7022760.6429, "Shape_Leng": 12605.2624283, "borough": "Manhattan", "postalCode": "10038"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93480281087365, 40.713372514591065], [-73.93228371932507, 40.7077516287513], [-73.93117392589384, 40.703765032030745], [-73.92758773780713, 40.70176259998695], [-73.9305202888139, 40.698772303134724], [-73.93076911862683, 40.698911046453716], [-73.93324668417745, 40.69785561272368], [-73.93226765371799, 40.69731469442813], [-73.9352226413318, 40.69698656384033], [-73.93479698827541, 40.69673661671486], [-73.93413376737952, 40.693354363738536], [-73.95175746790927, 40.69132933067435], [-73.95336999530059, 40.69940456174351], [-73.95701992980626, 40.69897393841836], [-73.95745735716244, 40.700822619256755], [-73.95028593039295, 40.70545886980735], [-73.95111564873585, 40.710956644745515], [-73.94085971662406, 40.71193207577866], [-73.93480281087365, 40.713372514591065]]], "type": "Polygon"}, "id": 133, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11206", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 134, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 40680014.9528, "Shape_Leng": 28571.3804909, "borough": "Brooklyn", "postalCode": "11206"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01123100044997, 40.71036688375349], [-74.00998738339328, 40.70980569640762], [-74.01325396442309, 40.7058705344128], [-74.01433111256102, 40.706242128344016], [-74.01495064653257, 40.70480894499519], [-74.01565723232109, 40.70495240789771], [-74.01510396620581, 40.70639313983766], [-74.0159049048933, 40.70665765711899], [-74.0144552712755, 40.710391432160634], [-74.01440986254988, 40.7109915779047], [-74.01167375738106, 40.70968742222526], [-74.01123100044997, 40.71036688375349]]], "type": "Polygon"}, "id": 134, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10006", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 135, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 1716640.90186, "Shape_Leng": 6794.87235683, "borough": "Manhattan", "postalCode": "10006"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.75047056218064, 40.70563994798906], [-73.74528309137305, 40.694114906263735], [-73.74707274261486, 40.69152336708046], [-73.74737188000593, 40.6914758581924], [-73.74837665693137, 40.68971905016168], [-73.74972999153276, 40.687833151503476], [-73.75513219308968, 40.68543338050848], [-73.75610572024442, 40.686762480714826], [-73.7607296007412, 40.685098396001734], [-73.76042379152753, 40.68337623280431], [-73.76066613020862, 40.68261232753338], [-73.76294870468476, 40.686008483928106], [-73.7632581084372, 40.687300758381056], [-73.76435358629598, 40.68950705743541], [-73.76472740953423, 40.68925034571374], [-73.76631464735652, 40.69219712011101], [-73.7660509288279, 40.69215934616347], [-73.76989291145547, 40.696312071285504], [-73.76929413274206, 40.69665031741423], [-73.77104358762898, 40.698489976377424], [-73.77507433873586, 40.70524182572291], [-73.77418061090145, 40.705086888427154], [-73.76725074978663, 40.70631257445275], [-73.76734431593259, 40.70663636799724], [-73.76455802383879, 40.707407671996265], [-73.75245963864944, 40.710316587834356], [-73.75047056218064, 40.70563994798906]]], "type": "Polygon"}, "id": 135, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11412", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 136, "PO_NAME": "Saint Albans", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 46687803.7023, "Shape_Leng": 29899.340989, "borough": "Queens", "postalCode": "11412"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00596661578348, 40.7043243225291], [-74.00777386553233, 40.703184297480874], [-74.00797948938948, 40.703188774261655], [-74.00976827243134, 40.70479742739337], [-74.01000178410375, 40.70514476524819], [-74.00986580839988, 40.70579645010789], [-74.01247340592305, 40.7068142656926], [-74.01054246343901, 40.70915416953688], [-74.00928620764611, 40.70855632218312], [-74.00466551829473, 40.70515332690227], [-74.00596661578348, 40.7043243225291]]], "type": "Polygon"}, "id": 136, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10005", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 137, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 2082901.14074, "Shape_Leng": 6384.01227204, "borough": "Manhattan", "postalCode": "10005"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97555763713035, 40.69951930078222], [-73.97537439884755, 40.69957892875924], [-73.97434054258535, 40.701177145178185], [-73.97411957590191, 40.70128837827455], [-73.97289532585684, 40.700270813252246], [-73.97256168132225, 40.70008319264542], [-73.97241175567419, 40.700183395511765], [-73.97373906961975, 40.70151680330219], [-73.97322059525295, 40.701662658627654], [-73.9711246175437, 40.69991689201181], [-73.97077880012812, 40.69998762010843], [-73.97330741073121, 40.70239086692951], [-73.97287057271895, 40.70271647632363], [-73.97250607246073, 40.702438627860296], [-73.97209491121154, 40.70272047106333], [-73.97283043912228, 40.70334554817578], [-73.97266465510525, 40.703492517464255], [-73.97236343286464, 40.70330621340367], [-73.9720041821217, 40.70363871078173], [-73.97231239671292, 40.703839687692415], [-73.97220460445556, 40.70395822578223], [-73.97113068067517, 40.70348462277307], [-73.97098823260403, 40.70362113875385], [-73.97109799421173, 40.70384390433418], [-73.97465579941367, 40.70607692261303], [-73.97438876170975, 40.70633967505857], [-73.9733680829575, 40.70570672969912], [-73.97255019331156, 40.706175772459844], [-73.97460563904535, 40.70769018299396], [-73.9742411801731, 40.70799704035978], [-73.97120860202757, 40.705785852846844], [-73.97111367479569, 40.70585993845532], [-73.97104979890487, 40.70693674762453], [-73.97277265338322, 40.70883967356158], [-73.97231458313126, 40.70907728842406], [-73.97025465446707, 40.70690297743767], [-73.97049900165817, 40.70538814957794], [-73.97017577331938, 40.70536835858861], [-73.97021818580444, 40.704973234112714], [-73.96761748756217, 40.70333997263474], [-73.9675067843746, 40.70344317160179], [-73.9674781164388, 40.703953882423], [-73.96929895739675, 40.7050920600457], [-73.96916329320145, 40.706763310000305], [-73.96926737288196, 40.707039507552714], [-73.96839122708904, 40.706853794681585], [-73.96733862193186, 40.704379655268895], [-73.96217978275546, 40.700220730250734], [-73.96283963298129, 40.69803868247499], [-73.96537276974823, 40.69763182941747], [-73.98054419152493, 40.698246530297766], [-73.98042142349212, 40.70079116684573], [-73.98106575377899, 40.70173012500152], [-73.97928705325127, 40.7047014029335], [-73.97878263541783, 40.705190293326865], [-73.97856346254784, 40.70587961405923], [-73.97833489544897, 40.705840569215496], [-73.97851380862453, 40.70487548496467], [-73.97802645003134, 40.70429306633995], [-73.97721158968596, 40.704212856017264], [-73.97749709500434, 40.70325024088524], [-73.97600294241178, 40.70196138771223], [-73.97456780059332, 40.70160041102542], [-73.97580469569205, 40.69974118064706], [-73.97555763713035, 40.69951930078222]]], "type": "Polygon"}, "id": 137, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11251", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 138, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 10379321.962, "Shape_Leng": 31556.1039597, "borough": "Brooklyn", "postalCode": "11251"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00596661578348, 40.7043243225291], [-74.00579655646256, 40.704202752248094], [-74.00913099932903, 40.70200764584925], [-74.01119160066759, 40.70146699200691], [-74.01113629939026, 40.70133207006609], [-74.0112877173671, 40.701254487919016], [-74.010779533108, 40.70018098223711], [-74.01116951086703, 40.700895902077136], [-74.01135665675511, 40.70085356150123], [-74.01135003215003, 40.70056348742459], [-74.01152433784661, 40.700815719728276], [-74.0117292181687, 40.70077020696683], [-74.01172675430917, 40.70055955494434], [-74.0118653822961, 40.70073882277413], [-74.01207187251241, 40.70069324620041], [-74.01186102428976, 40.700139314534646], [-74.01196772450461, 40.700033110601986], [-74.01245920635638, 40.70068188908997], [-74.01258847960234, 40.70061695531124], [-74.0125806402546, 40.700106616176576], [-74.01291977368739, 40.70051812072401], [-74.01311061953423, 40.70050494086146], [-74.01308089514148, 40.69973614015825], [-74.01329023976517, 40.70049035718041], [-74.01347218895309, 40.700477991808086], [-74.0135285362917, 40.70013873799174], [-74.01368843517231, 40.700120529642675], [-74.01353777133978, 40.70093712096981], [-74.01395112144857, 40.70099049538402], [-74.01408862890077, 40.700543680596454], [-74.01494387594663, 40.70094095157379], [-74.01514260379328, 40.70084297871162], [-74.0168886794238, 40.702410074035555], [-74.01748943608153, 40.70312865125543], [-74.01769005852147, 40.703712028813], [-74.01767929694671, 40.70389194098998], [-74.01725122221299, 40.70386543184481], [-74.01649010560854, 40.70430470851331], [-74.01645381819662, 40.70509355012228], [-74.0159049048933, 40.70665765711899], [-74.01510396620581, 40.70639313983766], [-74.01565723232109, 40.70495240789771], [-74.01495064653257, 40.70480894499519], [-74.01433111256102, 40.706242128344016], [-74.01325396442309, 40.7058705344128], [-74.01247340592305, 40.7068142656926], [-74.00986580839988, 40.70579645010789], [-74.01000178410375, 40.70514476524819], [-74.00976827243134, 40.70479742739337], [-74.00797948938948, 40.703188774261655], [-74.00777386553233, 40.703184297480874], [-74.00596661578348, 40.7043243225291]]], "type": "Polygon"}, "id": 138, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10004", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 139, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 4001782.18505, "Shape_Leng": 13769.8785627, "borough": "Manhattan", "postalCode": "10004"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.72465774251077, 40.70580534020244], [-73.72465233909595, 40.68747879673429], [-73.72555273764695, 40.686897252621435], [-73.72607945832799, 40.68619596759189], [-73.72675146241811, 40.68346168025526], [-73.74714290046887, 40.68966235270927], [-73.74812292931719, 40.690130881438165], [-73.74737188000593, 40.6914758581924], [-73.74707274261486, 40.69152336708046], [-73.74528309137305, 40.694114906263735], [-73.74864285047346, 40.701586957960494], [-73.74386175169798, 40.70281111915242], [-73.74345486572501, 40.70250646635589], [-73.74114340468176, 40.70180796881732], [-73.7410457668114, 40.70198081121858], [-73.72770742526588, 40.70156518678496], [-73.72790028819382, 40.70582612096106], [-73.72465774251077, 40.70580534020244]]], "type": "Polygon"}, "id": 139, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11411", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 140, "PO_NAME": "Cambria Heights", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 35889597.3838, "Shape_Leng": 27774.8715266, "borough": "Queens", "postalCode": "11411"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9980388639462, 40.698766655866166], [-74.00001698853964, 40.699490215203994], [-73.99944751325258, 40.70031829328547], [-73.99747523017251, 40.69964008136054], [-73.99723437023509, 40.70014649681382], [-73.99862929555665, 40.70103037982744], [-73.99623856569687, 40.703354984315396], [-73.99513752366013, 40.70297975566661], [-73.9946710041289, 40.70343956511131], [-73.9949917698859, 40.70365433263891], [-73.99479623360209, 40.7040961464922], [-73.99434133818687, 40.704429314317174], [-73.9934229959201, 40.70463026148899], [-73.99214702295416, 40.70464345054662], [-73.99181729947553, 40.704128591601126], [-73.99109055924164, 40.704014594107434], [-73.99089153264197, 40.7040486106653], [-73.99082932103832, 40.70428232270699], [-73.99056336395373, 40.70438398968029], [-73.99014200566465, 40.70494474252931], [-73.98967130360563, 40.70491462416991], [-73.98898769088301, 40.70456502634232], [-73.98831149047862, 40.70455223723551], [-73.98827813602848, 40.70508191833003], [-73.98684502671483, 40.7052032469713], [-73.98661511487039, 40.70511288745639], [-73.98665190153895, 40.7046932884768], [-73.98645362181465, 40.70468184232368], [-73.98640134134199, 40.70541232389186], [-73.98344285465743, 40.70564483833803], [-73.98342025017308, 40.705471868446025], [-73.98211255771795, 40.705504164915304], [-73.98144007723852, 40.70570561452413], [-73.9811594736819, 40.70567136391077], [-73.98098662133418, 40.70537415499884], [-73.98103526741212, 40.70578970043406], [-73.98226131562608, 40.705718029688825], [-73.98224845811619, 40.705823075066874], [-73.97879941073771, 40.70591726041377], [-73.97892343136256, 40.70548993197363], [-73.97868780495595, 40.7054496393273], [-73.97878263660147, 40.70519029242657], [-73.97928705206822, 40.70470140203278], [-73.98106575377925, 40.70173012410098], [-73.98042142349212, 40.70079116684573], [-73.9805441927081, 40.698246530297965], [-73.97753102007026, 40.698115827753675], [-73.97737485296429, 40.69617708031709], [-73.97834345676677, 40.69622458318609], [-73.97782679681701, 40.693438158008526], [-73.97385472208643, 40.693286581921164], [-73.97312638048724, 40.68962191024579], [-73.97951029855233, 40.689863015342716], [-73.9792854227609, 40.68825406838978], [-73.98092863450255, 40.68890322999039], [-73.98084307193534, 40.68876137951816], [-73.98140044658327, 40.687944459430334], [-73.98357261470014, 40.68878596951061], [-73.9839877688835, 40.68817466496617], [-73.98615533221901, 40.6890179941903], [-73.98999198480914, 40.68331886343492], [-73.99457806303587, 40.685100157736144], [-73.99440801365087, 40.68545251793042], [-74.00348971058011, 40.68841779036678], [-74.00485241518335, 40.68566814798755], [-74.00740657413361, 40.68640109310454], [-74.006987347186, 40.686531397530864], [-74.00586816774906, 40.68621308795191], [-74.0054000230624, 40.68722083781845], [-74.00447308197694, 40.68840571557968], [-74.0038313093327, 40.68894466267339], [-74.00299466659084, 40.69042174175984], [-74.00194993575829, 40.6901411633917], [-74.00181172711468, 40.69036697834027], [-74.00095668556577, 40.690127398083], [-74.0007232791019, 40.69061404701777], [-74.00239104512747, 40.69107564008994], [-74.00096897065674, 40.694061634775466], [-74.0029869400218, 40.69480364148968], [-74.002373503504, 40.69568355837544], [-74.00022462415546, 40.69504476438235], [-73.99943450323168, 40.6963307969363], [-73.9996120010889, 40.69648961025481], [-73.99941956812847, 40.69689503276471], [-73.99899463327966, 40.69681392788517], [-73.99883787406422, 40.697150275907454], [-74.0010002392367, 40.69793450663487], [-74.00043004637367, 40.69875778911829], [-73.9983871865776, 40.69805303051526], [-73.9980388639462, 40.698766655866166]]], "type": "Polygon"}, "id": 140, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11201", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 141, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 41094887.0403, "Shape_Leng": 41924.1901311, "borough": "Brooklyn", "postalCode": "11201"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.04166368343016, 40.69644987183209], [-74.04368404203194, 40.69802300067063], [-74.04271408258741, 40.69879683012149], [-74.04297731651471, 40.69899341302536], [-74.04110913579342, 40.70048739414665], [-74.04080155034923, 40.700263065352004], [-74.03993517284088, 40.70088300169684], [-74.03771344930483, 40.69933789862616], [-74.03809777842106, 40.6990404724302], [-74.03823184372034, 40.69836454214898], [-74.0390027840626, 40.698370543839495], [-74.03934949951622, 40.69810786342911], [-74.04124787622716, 40.69953523838039], [-74.04175540943376, 40.699143212770295], [-74.03991903597958, 40.69770363079131], [-74.04166368343016, 40.69644987183209]]], "type": "Polygon"}, "id": 141, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10004", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 142, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 1202707.70742, "Shape_Leng": 6450.06945369, "borough": "Manhattan", "postalCode": "10004"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95335265508814, 40.69934414565137], [-73.95131871695537, 40.68913231750482], [-73.95713186042737, 40.688463152023246], [-73.95727386225354, 40.68919220020167], [-73.97268745886024, 40.68741521219588], [-73.97385472090329, 40.69328658192089], [-73.97782679800011, 40.69343815800876], [-73.97813232500651, 40.694575625370796], [-73.9780575082538, 40.69481934480471], [-73.97834345676677, 40.69622458318609], [-73.97737485296429, 40.69617708031709], [-73.97753102007026, 40.698115827753675], [-73.96537276974823, 40.69763182941747], [-73.95686101351276, 40.69899905728882], [-73.95335265508814, 40.69934414565137]]], "type": "Polygon"}, "id": 142, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11205", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 143, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23159720.6632, "Shape_Leng": 22054.3730317, "borough": "Brooklyn", "postalCode": "11205"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.86631717855946, 40.68335711099972], [-73.86602666577242, 40.681918071472445], [-73.86410096028297, 40.68237286610314], [-73.86330275202471, 40.6791673971059], [-73.86234580327775, 40.67916479829648], [-73.86038937968384, 40.6712687870068], [-73.8576332259874, 40.67165620921026], [-73.85726743908066, 40.67025530510809], [-73.8570911025524, 40.66842922375768], [-73.85644791923518, 40.66701557682865], [-73.8556847223303, 40.66386765764766], [-73.85614358258553, 40.66380565184222], [-73.85835015133844, 40.661191283020145], [-73.85901802354253, 40.66112722932875], [-73.85902299881785, 40.66056191211103], [-73.85972182235147, 40.66045738338298], [-73.8603165317672, 40.659994697135176], [-73.86085318564818, 40.66009471158211], [-73.86122497595694, 40.659963051192335], [-73.86126458307179, 40.659696863632185], [-73.8608155049672, 40.65942027192822], [-73.8608022075989, 40.659160241257425], [-73.86181536560623, 40.658894419734835], [-73.8634691653014, 40.6580711457512], [-73.86300026996697, 40.65742992292765], [-73.8617332527796, 40.65802818775988], [-73.86162619304672, 40.65785817903078], [-73.86170327041881, 40.656648774435425], [-73.86006031362815, 40.655593034396304], [-73.85936352325464, 40.65496282681242], [-73.85917017981437, 40.65445428103844], [-73.858532372346, 40.653688063195624], [-73.8583140977687, 40.65301855809123], [-73.8577116537713, 40.65273797377175], [-73.8569352521369, 40.65281901725462], [-73.85660477115289, 40.65266746448696], [-73.85655196281407, 40.652230722817784], [-73.85637454982901, 40.652122232968026], [-73.85634543109734, 40.65139709546204], [-73.85600166804072, 40.651319317333105], [-73.85589930012281, 40.65113247198908], [-73.8569663196094, 40.65064151650561], [-73.85724632319452, 40.65084655587971], [-73.85728896140597, 40.65124212197091], [-73.85827460034318, 40.65170994624631], [-73.85841271211518, 40.652170658622026], [-73.85897501760678, 40.652912435612635], [-73.86040087267926, 40.65387857796036], [-73.86136419852069, 40.65512150458912], [-73.862436840387, 40.65530596505754], [-73.8639165138463, 40.6561155997554], [-73.86599116475726, 40.65886225104665], [-73.87581825453837, 40.65465410965302], [-73.87690721483418, 40.65454654627567], [-73.87932520458834, 40.65502949796877], [-73.87973335420283, 40.65556307524163], [-73.87811744363498, 40.65625992302526], [-73.87915041166048, 40.65766027603991], [-73.87670831524994, 40.658713703268894], [-73.88250667697538, 40.66646897873128], [-73.8823950816055, 40.66651699461234], [-73.88527690403397, 40.67778122690806], [-73.88508524657688, 40.67783466314029], [-73.88650460957112, 40.68334858464635], [-73.88824094403893, 40.682532132277], [-73.88994141697744, 40.68403417375749], [-73.88843824436687, 40.685092700308985], [-73.88784904739725, 40.685906426788215], [-73.88407465181716, 40.68780821975699], [-73.87967425772909, 40.69112927354322], [-73.87437496914276, 40.69398481977425], [-73.86933366148148, 40.69487010897182], [-73.86858392816171, 40.69386163086183], [-73.86747242588382, 40.68844673910506], [-73.86659847614406, 40.685269574606316], [-73.86631717855946, 40.68335711099972]]], "type": "Polygon"}, "id": 143, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11208", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 144, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 79294685.4617, "Shape_Leng": 49932.2412248, "borough": "Brooklyn", "postalCode": "11208"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9036808841809, 40.690460874462154], [-73.90211256939581, 40.692001504268234], [-73.9014929917251, 40.69142400302761], [-73.9018860042185, 40.69081099170145], [-73.90048698549924, 40.68779799653781], [-73.90118898957714, 40.687598001148075], [-73.89668301568736, 40.6823719922445], [-73.89652848528824, 40.68236770291731], [-73.89570854411691, 40.6836475260256], [-73.89439360877739, 40.68511990886822], [-73.89274901345493, 40.68321199847903], [-73.89038101065086, 40.6845969917326], [-73.88900505422322, 40.68308845887022], [-73.88824094403893, 40.682532132277], [-73.88650460957112, 40.68334858464635], [-73.88508524657688, 40.67783466314029], [-73.88527690403397, 40.67778122690806], [-73.8823950816055, 40.66651699461234], [-73.88250667697538, 40.66646897873128], [-73.87670831524994, 40.658713703268894], [-73.87915041166048, 40.65766027603991], [-73.87811744363498, 40.65625992302526], [-73.88628186516408, 40.65275579606349], [-73.88480602073611, 40.650765238656355], [-73.88621099186095, 40.650141060764426], [-73.8876754365756, 40.64919411588788], [-73.88999352358951, 40.65113800525259], [-73.89125146783574, 40.650025614512685], [-73.89323807930971, 40.651811271575966], [-73.89520539668301, 40.65448795300862], [-73.89760988892024, 40.65345307702225], [-73.89797764993642, 40.653659238771574], [-73.89848161593164, 40.65584620725898], [-73.89872509045473, 40.65580996714429], [-73.8991827808742, 40.657358504591336], [-73.89982259690147, 40.65729128796997], [-73.89946353296122, 40.6586827358688], [-73.89953138665216, 40.65896986653199], [-73.90091625191538, 40.66373345964472], [-73.90072246594312, 40.6637786795063], [-73.9019226438036, 40.66837507399539], [-73.90222652406146, 40.66833055629683], [-73.90361711807671, 40.67334411191762], [-73.90325835602846, 40.6733963820095], [-73.90347422563424, 40.6755067025594], [-73.90240783422718, 40.67587541049135], [-73.90346256333866, 40.676015806333304], [-73.90329155804092, 40.67786792438706], [-73.9034668872538, 40.67889653817026], [-73.91604598744264, 40.68607208871235], [-73.90885282871758, 40.693404451309675], [-73.9036808841809, 40.690460874462154]]], "type": "Polygon"}, "id": 144, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11207", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 145, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 73742269.4034, "Shape_Leng": 48841.6886408, "borough": "Brooklyn", "postalCode": "11207"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0241846235316, 40.6839187687422], [-74.02529786188104, 40.68405088241906], [-74.0258088983115, 40.684281988489786], [-74.02656427578397, 40.68510310684363], [-74.02661841028632, 40.68586232560275], [-74.0202537131021, 40.69200197125117], [-74.01971455117814, 40.693133020002634], [-74.01690615376754, 40.69335343240424], [-74.01616447255516, 40.69327989682642], [-74.0142751322075, 40.6928829781785], [-74.01343629882133, 40.69212109212339], [-74.01257261727966, 40.692303867783885], [-74.01233661766874, 40.69255991186065], [-74.0118118532425, 40.69247935209722], [-74.01175748922017, 40.692263755949], [-74.01190309539632, 40.69209059574658], [-74.01220114540367, 40.692044921131256], [-74.01245373875457, 40.69221381590387], [-74.01333506005666, 40.69201211390934], [-74.01262512088682, 40.691408755689444], [-74.01252783670736, 40.69114635050226], [-74.01220533766309, 40.6911241199711], [-74.01230599638659, 40.68928066505038], [-74.01321864455286, 40.6881226314983], [-74.01488098365326, 40.68725458657179], [-74.01620501131629, 40.687219192254645], [-74.02283298991013, 40.6842103476289], [-74.0241846235316, 40.6839187687422]]], "type": "Polygon"}, "id": 145, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10004", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 146, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 7679615.51128, "Shape_Leng": 12620.3062568, "borough": "Manhattan", "postalCode": "10004"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.04699098912498, 40.69012472491997], [-74.04723156029421, 40.69040645829071], [-74.04723473144273, 40.69101516524298], [-74.04572363606087, 40.691150214965056], [-74.04383564381253, 40.69019980408121], [-74.0433630513435, 40.68942137406325], [-74.04364882310107, 40.68865934520068], [-74.04445899469971, 40.688462180097545], [-74.04628278163472, 40.68928494730102], [-74.04699098912498, 40.69012472491997]]], "type": "Polygon"}, "id": 146, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10004", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 147, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 670708.02007, "Shape_Leng": 3246.23675494, "borough": "Manhattan", "postalCode": "10004"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.73364576400922, 40.68554189298986], [-73.73222004233142, 40.68512111475009], [-73.7340314100668, 40.68034351908144], [-73.7369739292802, 40.674794457555784], [-73.7419350547607, 40.66684519406759], [-73.74080402985932, 40.666843987677204], [-73.74117771192738, 40.66640344918134], [-73.7385774426369, 40.66637715742976], [-73.73954957111081, 40.6652560377872], [-73.74284635797726, 40.66530899127851], [-73.7505143090943, 40.65377941678946], [-73.74871285877093, 40.652703202552885], [-73.74654917615801, 40.65255349265957], [-73.74645201743321, 40.651514409475716], [-73.74579890325175, 40.65021168493044], [-73.74590083337621, 40.64862824969587], [-73.74487995344751, 40.64706295705402], [-73.74464088120152, 40.6463343501799], [-73.74442997424607, 40.64397823450618], [-73.7430851230043, 40.642015077751815], [-73.74313255731599, 40.641298015014144], [-73.74338552725142, 40.64063932093911], [-73.74742083336446, 40.64467501311001], [-73.74831218970067, 40.645390510173286], [-73.76735273146858, 40.65616014702816], [-73.76582365411717, 40.65630382164152], [-73.76612282266792, 40.65855444161281], [-73.76696130134769, 40.65847850149409], [-73.76652749536282, 40.66013566057246], [-73.76615879418449, 40.66008518402867], [-73.76353170855188, 40.66628734869849], [-73.76712953165834, 40.66669585117592], [-73.76675401262577, 40.66743301704917], [-73.76364442900365, 40.66716312260688], [-73.76259800538632, 40.67072248934451], [-73.76293350728149, 40.67181318328588], [-73.76225096750468, 40.67194316408541], [-73.7640471796422, 40.67284662756967], [-73.76367676113423, 40.674745543055536], [-73.76248598858109, 40.67419499777036], [-73.75633959649284, 40.6768029891564], [-73.75800951818678, 40.67923929798581], [-73.76066613020862, 40.68261232753338], [-73.76042379152753, 40.68337623280431], [-73.7607296007412, 40.685098396001734], [-73.75610572024442, 40.686762480714826], [-73.75513219308968, 40.68543338050848], [-73.74972999153276, 40.687833151503476], [-73.74812292931719, 40.690130881438165], [-73.74714290046887, 40.68966235270927], [-73.73364576400922, 40.68554189298986]]], "type": "Polygon"}, "id": 147, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11413", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 148, "PO_NAME": "Springfield Gardens", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 85392925.3608, "Shape_Leng": 54283.3416367, "borough": "Queens", "postalCode": "11413"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97312638166959, 40.68962191204708], [-73.97268745886024, 40.68741521219588], [-73.97364817218354, 40.68730263517516], [-73.97337441103068, 40.6858843937325], [-73.97227444657481, 40.685442737240315], [-73.97174180986187, 40.68264604091808], [-73.97056593435647, 40.68239711329087], [-73.97244491752706, 40.67716202563518], [-73.9710372120815, 40.67521982687078], [-73.97142972878434, 40.674501378015414], [-73.97143919387159, 40.673704530821375], [-73.9711150353508, 40.673032182042505], [-73.97056656943508, 40.672569749160644], [-73.9885251889362, 40.679545243363215], [-73.9880802895133, 40.680172182161854], [-73.99129653469775, 40.68142490111971], [-73.98615533458484, 40.68901799509115], [-73.98398776888328, 40.688174665866725], [-73.98357261233409, 40.68878596951027], [-73.9814004477665, 40.687944458530026], [-73.9808430731184, 40.688761379518375], [-73.9809286333195, 40.688903229990196], [-73.97928542394416, 40.68825406748951], [-73.97951029855233, 40.689863015342716], [-73.97312638166959, 40.68962191204708]]], "type": "Polygon"}, "id": 148, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11217", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 149, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 21648157.7324, "Shape_Leng": 22010.9653659, "borough": "Brooklyn", "postalCode": "11217"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95702038523416, 40.673293924595704], [-73.95797316022487, 40.6706572921663], [-73.96262134431458, 40.67162934117619], [-73.96095595240475, 40.663285076107506], [-73.96246890604836, 40.66318762962603], [-73.96924603502632, 40.67274060429275], [-73.9696500952962, 40.67251546032256], [-73.96965337599721, 40.672736825834356], [-73.97004217764446, 40.672682873406565], [-73.97001522008324, 40.672489816636336], [-73.97041590733849, 40.672508434960484], [-73.97098346140477, 40.67286955011551], [-73.97131967718326, 40.67335743266632], [-73.97147228341912, 40.6742636913361], [-73.9710372120815, 40.67521982687078], [-73.97244491752706, 40.67716202563518], [-73.97056593435647, 40.68239711329087], [-73.97174180986187, 40.68264604091808], [-73.97227444657481, 40.685442737240315], [-73.97337441103068, 40.6858843937325], [-73.97364817218354, 40.68730263517516], [-73.95727386225354, 40.68919220020167], [-73.95516306696332, 40.67852074712599], [-73.95702038523416, 40.673293924595704]]], "type": "Polygon"}, "id": 149, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11238", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 150, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 29429423.4614, "Shape_Leng": 26935.19478, "borough": "Brooklyn", "postalCode": "11238"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98999198362596, 40.68331886523586], [-73.99129653469775, 40.68142490111971], [-73.9880802895133, 40.680172182161854], [-73.98931928300125, 40.6783457697127], [-73.98941122837437, 40.67736087010204], [-73.99070882510787, 40.67579851982143], [-73.99401827484266, 40.67618256859383], [-73.9947536738627, 40.67598393741035], [-73.9953831243481, 40.675573620505595], [-73.99870614995432, 40.67178004945514], [-74.00022414412406, 40.66874504045377], [-74.00108842620463, 40.66900633812015], [-74.0014246657265, 40.6683514308972], [-74.00222517671317, 40.6685626836596], [-74.00278916402226, 40.667394713382585], [-74.00316866060304, 40.66728972413543], [-74.00468814520329, 40.66782893076074], [-74.00605903566571, 40.668039555870806], [-74.00476260141718, 40.67073252919087], [-74.00532439731845, 40.67091473915054], [-74.00656588554732, 40.66856079692514], [-74.00688010575124, 40.66855606616431], [-74.00758444887241, 40.66710959021241], [-74.00775289980706, 40.66715190322304], [-74.0070852838392, 40.66855381322791], [-74.00983087229109, 40.668510627958526], [-74.01154569583841, 40.66508032028992], [-74.0160203352091, 40.66467457358142], [-74.01588877177618, 40.66540819806545], [-74.01228654347038, 40.66572899143238], [-74.01092308957408, 40.66859314724201], [-74.01040702168822, 40.66883473677419], [-74.01040637310952, 40.66897569183071], [-74.01089587198584, 40.669245583245605], [-74.01087882985527, 40.66973964547783], [-74.01155314727697, 40.669743092647764], [-74.0117166414162, 40.670250585901364], [-74.01161434646957, 40.67030134662076], [-74.01193466179454, 40.67084505402636], [-74.01328490851446, 40.67086873096588], [-74.01343124459392, 40.670942218539544], [-74.01330868918099, 40.67113604079035], [-74.01354487705474, 40.6712377579481], [-74.01391156242475, 40.67113103014364], [-74.01437713675162, 40.6714120930701], [-74.01389112537298, 40.67183558856427], [-74.01432779363866, 40.672186208247], [-74.01300813977643, 40.67334095420779], [-74.01337002208719, 40.67357963746568], [-74.01508755645372, 40.67210360411543], [-74.01639829255062, 40.67290174136643], [-74.01462349503424, 40.67442684077957], [-74.01492582774223, 40.67464671310941], [-74.0181258592347, 40.671925741538416], [-74.01886971960903, 40.672239432583794], [-74.0172357912724, 40.67355984415518], [-74.01821298180779, 40.674528599137446], [-74.01798632430798, 40.67481104528566], [-74.01819748456155, 40.67494232156493], [-74.01783550720803, 40.67524987526842], [-74.01815029142098, 40.675461914401964], [-74.01922884321627, 40.67467622545464], [-74.01840827685508, 40.67555010045679], [-74.01865433411373, 40.67582687728452], [-74.01802091650023, 40.67608379695658], [-74.01804517401135, 40.6765632443245], [-74.01972966658126, 40.6765812203352], [-74.01995789001023, 40.67703027936868], [-74.01914925530635, 40.67716200360053], [-74.01921008859907, 40.67771262214429], [-74.01953180040779, 40.677800665326046], [-74.01838623025421, 40.67789004195588], [-74.01835112240424, 40.67865359835117], [-74.01865242172786, 40.67897396466506], [-74.01955977882959, 40.67899818822158], [-74.01931473181268, 40.67960827231874], [-74.01898308627078, 40.6798984543377], [-74.01781028418023, 40.68061235439015], [-74.01742965319653, 40.68067023379907], [-74.01660670506266, 40.68131971453826], [-74.01276743407523, 40.68360547789029], [-74.01212005287542, 40.68290823489088], [-74.0141219850018, 40.681707279124176], [-74.01359766456449, 40.68120885994714], [-74.01387381533377, 40.68101902829912], [-74.01302661047215, 40.68041872835122], [-74.00966657029969, 40.683280734245855], [-74.01078685380031, 40.684349382618706], [-74.01174908836623, 40.68377174200295], [-74.01212168021732, 40.68411673075993], [-74.00837536849858, 40.68639269962156], [-74.007770593183, 40.68627707737575], [-74.00740657413361, 40.68640109310454], [-74.00485241518341, 40.68566814888806], [-74.00348970821416, 40.68841779216792], [-73.99440801365095, 40.685452517029894], [-73.99457806421879, 40.68510015863671], [-73.98999198362596, 40.68331886523586]]], "type": "Polygon"}, "id": 150, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11231", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 151, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 39379691.3731, "Shape_Leng": 45956.5306211, "borough": "Brooklyn", "postalCode": "11231"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.72476446301077, 40.687429998443754], [-73.72461028942588, 40.68741747890048], [-73.7245168870971, 40.68190360975024], [-73.72432971806893, 40.67946497732247], [-73.72520530572285, 40.6764736953049], [-73.72632517771592, 40.67372904320288], [-73.72644941049799, 40.67242370966521], [-73.7264440160023, 40.666950924312204], [-73.72709410625535, 40.666282402100975], [-73.72814916261846, 40.666309851791034], [-73.72813191341862, 40.665428814099116], [-73.72780179845105, 40.66469510088611], [-73.72775479106214, 40.66398095983294], [-73.72810368207165, 40.66246641254206], [-73.72762141726328, 40.66108277429775], [-73.72680881752524, 40.659792428001296], [-73.72520505727316, 40.65915304627282], [-73.7251285091304, 40.657925990762315], [-73.72411669823249, 40.6559940070584], [-73.72352736949891, 40.65447143654612], [-73.72318312424756, 40.6527970908373], [-73.72352506306555, 40.652273815952114], [-73.7243165732301, 40.65179503357884], [-73.7253503932943, 40.65194948082503], [-73.73090800717104, 40.65023945001528], [-73.73534465398127, 40.64967535442469], [-73.74093463880104, 40.64727560174262], [-73.74185754278412, 40.6426365616285], [-73.74225222918398, 40.64197114695804], [-73.74190677269853, 40.64115010441277], [-73.74260506400992, 40.639861149845984], [-73.74118919924285, 40.63814533650117], [-73.7399512550176, 40.635183288677744], [-73.7414049522925, 40.63489268601546], [-73.7423397763019, 40.634917769553134], [-73.7427311362125, 40.6351024389834], [-73.74251765846022, 40.63572231964053], [-73.74133592092932, 40.63714417915296], [-73.74124410689474, 40.637488600824824], [-73.74142399375624, 40.63776470860413], [-73.7423879669867, 40.63806556030228], [-73.74296100952009, 40.638066842669055], [-73.74434498943552, 40.63733672250085], [-73.74457303586192, 40.637561362166835], [-73.74482028396505, 40.637196760009935], [-73.74530490641745, 40.6371448711209], [-73.74624274029107, 40.636402329436], [-73.74667639290558, 40.63656637747639], [-73.74679776646072, 40.636825120011245], [-73.7464413600702, 40.63725734823629], [-73.74516828572118, 40.638023946732545], [-73.7452900150456, 40.63831934017735], [-73.74563307562607, 40.63813298360009], [-73.74554037502025, 40.63790811704279], [-73.74639035378809, 40.637458758292205], [-73.74691060089256, 40.63690135721581], [-73.7474262938452, 40.63686935368048], [-73.74718344167846, 40.638076203671034], [-73.74597433591359, 40.6387857801932], [-73.74521787207048, 40.639427449725225], [-73.74472029177048, 40.64197431273623], [-73.74338552725142, 40.64063932093911], [-73.74313255731599, 40.641298015014144], [-73.7430851230043, 40.642015077751815], [-73.74442997424607, 40.64397823450618], [-73.74464088120152, 40.6463343501799], [-73.74487995344751, 40.64706295705402], [-73.74590083337621, 40.64862824969587], [-73.74579890325175, 40.65021168493044], [-73.74645201743321, 40.651514409475716], [-73.74654917615801, 40.65255349265957], [-73.74871285877093, 40.652703202552885], [-73.7505143090943, 40.65377941678946], [-73.74284635797726, 40.66530899127851], [-73.73954957111081, 40.6652560377872], [-73.7385774426369, 40.66637715742976], [-73.74117771192738, 40.66640344918134], [-73.74080402985932, 40.666843987677204], [-73.7419350547607, 40.66684519406759], [-73.7369739292802, 40.674794457555784], [-73.73494110433599, 40.678587181135725], [-73.7340314100668, 40.68034351908144], [-73.73222004233142, 40.68512111475009], [-73.72675146241811, 40.68346168025526], [-73.72607945832799, 40.68619596759189], [-73.72555273764695, 40.686897252621435], [-73.72476446301077, 40.687429998443754]]], "type": "Polygon"}, "id": 151, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11422", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 152, "PO_NAME": "Rosedale", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 60091178.9547, "Shape_Leng": 55579.1712169, "borough": "Queens", "postalCode": "11422"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.80795430196733, 40.68707307560681], [-73.8015531026392, 40.67377970829099], [-73.80126524855895, 40.6723031427069], [-73.80128468879211, 40.669167620598444], [-73.8015031971416, 40.66742578920993], [-73.80215607658567, 40.665244978284434], [-73.80614418671836, 40.66491189807937], [-73.80749270970017, 40.66067853399964], [-73.80785781004276, 40.66054792356957], [-73.80960148862846, 40.66087568323545], [-73.81022895895138, 40.660759793199844], [-73.81065876616783, 40.66043895783087], [-73.81106470342944, 40.6609035886506], [-73.81210230353666, 40.661116958693356], [-73.81165939901364, 40.66259912878153], [-73.81116931615611, 40.66317382765104], [-73.81244525305846, 40.662769260842644], [-73.8150589783226, 40.6624757750749], [-73.81748006586147, 40.662899672555945], [-73.82536929139049, 40.663752321751765], [-73.82721679884183, 40.664514035563286], [-73.83224589441933, 40.6652946862773], [-73.83290619669042, 40.666651290820006], [-73.833392636153, 40.66678433818184], [-73.83724938195861, 40.67463427088668], [-73.83632999434923, 40.67492204507347], [-73.83568962505241, 40.67613909699121], [-73.83204196862346, 40.67509785780484], [-73.83108269874806, 40.67815139584785], [-73.83174575719396, 40.67953731254707], [-73.81377910266194, 40.68463372807731], [-73.81047225781599, 40.68620063780065], [-73.80795430196733, 40.68707307560681]]], "type": "Polygon"}, "id": 152, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11420", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 153, "PO_NAME": "South Ozone Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 61879568.3726, "Shape_Leng": 33734.9612334, "borough": "Queens", "postalCode": "11420"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.83426544717621, 40.68532735819576], [-73.83352413123767, 40.68380616668075], [-73.83378994064, 40.683693236360114], [-73.83108269874806, 40.67815139584785], [-73.83204196862346, 40.67509785780484], [-73.83568962505241, 40.67613909699121], [-73.83632999434923, 40.67492204507347], [-73.83724938195861, 40.67463427088668], [-73.833392636153, 40.66678433818184], [-73.83508585585852, 40.66720132660709], [-73.83744310172361, 40.667404362352094], [-73.84071734222192, 40.668257348415686], [-73.84544958883328, 40.66970874113301], [-73.84995355739434, 40.67142613014862], [-73.85686028478584, 40.67349240525216], [-73.85825152788847, 40.674135633868076], [-73.86131863008909, 40.675021283167574], [-73.86234580327775, 40.67916479829648], [-73.8539238905089, 40.67968616983886], [-73.84680064291166, 40.6818350215038], [-73.83426544717621, 40.68532735819576]]], "type": "Polygon"}, "id": 153, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11417", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 154, "PO_NAME": "Ozone Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 31099087.1084, "Shape_Leng": 26925.0068371, "borough": "Queens", "postalCode": "11417"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9885251889362, 40.679545243363215], [-73.97041590733849, 40.672508434960484], [-73.97001522008324, 40.672489816636336], [-73.97004217764446, 40.672682873406565], [-73.96965337599721, 40.672736825834356], [-73.9696500952962, 40.67251546032256], [-73.96924603502632, 40.67274060429275], [-73.96238231429763, 40.66306545621909], [-73.96296107574787, 40.66253025918618], [-73.96307465154551, 40.66208390345366], [-73.96190027949535, 40.65487097940547], [-73.97162157042683, 40.651080782115805], [-73.97179093241225, 40.650706283252894], [-73.97227816596437, 40.6506019443971], [-73.97273315336935, 40.65093703396311], [-73.97265985717655, 40.651257671916746], [-73.97232900815814, 40.65144490221918], [-73.97421783050856, 40.65793528217479], [-73.97453696819495, 40.6583858682717], [-73.97515737918074, 40.658722816086126], [-73.97730806733415, 40.65614941060246], [-73.97951266200195, 40.65747889001511], [-73.98179567724827, 40.65524611278827], [-73.98842872143268, 40.65924987290934], [-73.99022370701532, 40.65760474601137], [-73.99458789511169, 40.6602279499465], [-73.99225493973738, 40.66246876316664], [-73.99668527350062, 40.66514240039241], [-73.99629073358102, 40.66646513810911], [-73.99633369323129, 40.66784711505598], [-73.99870614995432, 40.67178004945514], [-73.99599030207881, 40.67495406563052], [-73.99485390020821, 40.67593525020191], [-73.99413115472882, 40.67617006265493], [-73.99315249590119, 40.676178458102655], [-73.99070882510787, 40.67579851982143], [-73.98941122837437, 40.67736087010204], [-73.98931928300125, 40.6783457697127], [-73.9885251889362, 40.679545243363215]]], "type": "Polygon"}, "id": 154, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11215", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 155, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 61922821.7464, "Shape_Leng": 37186.6294, "borough": "Brooklyn", "postalCode": "11215"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.833392636153, 40.66678433818184], [-73.83290619669042, 40.666651290820006], [-73.83071387241624, 40.6622554367876], [-73.8306623160061, 40.661373467435446], [-73.82923995572037, 40.65826509740684], [-73.8266751569648, 40.64896746120222], [-73.82844895873212, 40.64929177995615], [-73.82916059138104, 40.64982081820368], [-73.82934785541629, 40.65020184295299], [-73.82985988328404, 40.650450052523325], [-73.83013684358198, 40.65108462459258], [-73.83068324784458, 40.65134015561682], [-73.83093679825873, 40.651642940909674], [-73.83130439532245, 40.65265541274893], [-73.8312776870008, 40.65337990945206], [-73.83159803085844, 40.6533969574847], [-73.83139400885416, 40.65350183017776], [-73.8314756326869, 40.653844620624724], [-73.83206069507189, 40.654047522172974], [-73.83217268465343, 40.654921546295036], [-73.83288960664872, 40.65726955486271], [-73.83276565329395, 40.657558976925294], [-73.8321102513054, 40.65612170690346], [-73.83193776631185, 40.65617098983074], [-73.83260035404719, 40.657826605570975], [-73.83238479313368, 40.65794096906363], [-73.83229513573272, 40.657771611166574], [-73.83231675403462, 40.65797138936307], [-73.83188825963519, 40.658077549168716], [-73.83171695382623, 40.657788566369085], [-73.83175731263533, 40.658057727311295], [-73.83110396922424, 40.658232840078085], [-73.83114250481263, 40.65839268372856], [-73.83338211186256, 40.65805279998641], [-73.83245839721901, 40.65470315390395], [-73.83248680761288, 40.65419061192937], [-73.83222529000413, 40.65371434170561], [-73.83123806307121, 40.65009845728862], [-73.83136082810121, 40.650082654949514], [-73.83121793120462, 40.649315257885654], [-73.8314502686804, 40.64821693894233], [-73.83363759484132, 40.648121062168755], [-73.83521937724525, 40.648324954869565], [-73.83547876925988, 40.64862143677511], [-73.83557801368863, 40.649124567316775], [-73.83620914161023, 40.64967784812698], [-73.8360887733297, 40.64979830658138], [-73.83656799533955, 40.65191406455818], [-73.8375025169553, 40.65521910636111], [-73.83882056764875, 40.660890534460904], [-73.8386182513896, 40.66105493751259], [-73.83882154489385, 40.66112916947342], [-73.83888043792217, 40.66139815382159], [-73.8381013091568, 40.66157632416897], [-73.8381338115046, 40.66206937730893], [-73.83851625009224, 40.662389476164826], [-73.83970086284366, 40.662254189511366], [-73.83964832917441, 40.662012691079575], [-73.83999278557049, 40.66189339916399], [-73.83592445997915, 40.64551191541899], [-73.84009994206811, 40.64526667616978], [-73.84065467703117, 40.645043703966884], [-73.84699793586284, 40.64443322099431], [-73.84899934300293, 40.64444009248055], [-73.85024772768698, 40.64480903053246], [-73.85174733442481, 40.64590911895238], [-73.85232689837845, 40.64687313556188], [-73.8523247224505, 40.647272934430276], [-73.85198002030515, 40.64819769535539], [-73.85209643166542, 40.64846394217685], [-73.85198760430134, 40.6487159267636], [-73.85157177437898, 40.64910815037684], [-73.85090557661104, 40.64916818445445], [-73.850782351644, 40.64980640787928], [-73.85058109227471, 40.649861791443264], [-73.85058672910459, 40.65033770585301], [-73.85037664239958, 40.65027420460584], [-73.85042216373044, 40.650476631103004], [-73.84925780455725, 40.65103182781704], [-73.84939796542122, 40.651434984559955], [-73.85004232171295, 40.651463928085796], [-73.85069039271181, 40.65098816360907], [-73.85140928219592, 40.65102433733179], [-73.85249567694521, 40.650464586541446], [-73.85593006264882, 40.65114611466268], [-73.85600166804072, 40.651319317333105], [-73.85634543109734, 40.65139709546204], [-73.85637454982901, 40.652122232968026], [-73.85655196281407, 40.652230722817784], [-73.85663244817917, 40.65269502153554], [-73.8569352521369, 40.65281901725462], [-73.8577116537713, 40.65273797377175], [-73.8583140977687, 40.65301855809123], [-73.858532372346, 40.653688063195624], [-73.85917017981437, 40.65445428103844], [-73.85936352325464, 40.65496282681242], [-73.86006031362815, 40.655593034396304], [-73.86170327041881, 40.656648774435425], [-73.86168644944097, 40.657985908010154], [-73.86300026996697, 40.65742992292765], [-73.8634691653014, 40.6580711457512], [-73.86181536560623, 40.658894419734835], [-73.8608022075989, 40.659160241257425], [-73.8608155049672, 40.65942027192822], [-73.86126458307179, 40.659696863632185], [-73.86122497595694, 40.659963051192335], [-73.86085318564818, 40.66009471158211], [-73.8603165317672, 40.659994697135176], [-73.85972182235147, 40.66045738338298], [-73.85902299881785, 40.66056191211103], [-73.85901802354253, 40.66112722932875], [-73.85835015133844, 40.661191283020145], [-73.85614358258553, 40.66380565184222], [-73.8556847223303, 40.66386765764766], [-73.85644791923518, 40.66701557682865], [-73.8570911025524, 40.66842922375768], [-73.85726743908066, 40.67025530510809], [-73.8576332259874, 40.67165620921026], [-73.86038937968384, 40.6712687870068], [-73.86131863008909, 40.675021283167574], [-73.85825152788847, 40.674135633868076], [-73.85686028478584, 40.67349240525216], [-73.84995355739434, 40.67142613014862], [-73.84544958883328, 40.66970874113301], [-73.84071734222192, 40.668257348415686], [-73.83744310172361, 40.667404362352094], [-73.83508585585852, 40.66720132660709], [-73.833392636153, 40.66678433818184]]], "type": "Polygon"}, "id": 155, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11414", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 156, "PO_NAME": "Howard Beach", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 63974665.2952, "Shape_Leng": 62132.6365951, "borough": "Queens", "postalCode": "11414"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0165795459643, 40.664762271241734], [-74.0172574308153, 40.66509442682334], [-74.0178642034158, 40.6658299350438], [-74.01876523913678, 40.67118507146902], [-74.01912951715936, 40.67161376752117], [-74.0175736048982, 40.67104906392503], [-74.01737841997904, 40.66904332060062], [-74.01724455277318, 40.66895690746085], [-74.01675428521023, 40.66595612024106], [-74.01688031401433, 40.665923845338305], [-74.01683949397585, 40.665432745065615], [-74.01668643298025, 40.66495466543714], [-74.01651617185911, 40.66488088281739], [-74.0165795459643, 40.664762271241734]]], "type": "Polygon"}, "id": 156, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11231", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 157, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 701979.385187, "Shape_Leng": 5642.3686318, "borough": "Brooklyn", "postalCode": "11231"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9984094176705, 40.671310337874985], [-73.99633369323129, 40.66784711505598], [-73.99629073358102, 40.66646513810911], [-73.99668527350062, 40.66514240039241], [-73.99225493973738, 40.66246876316664], [-73.99458789511169, 40.6602279499465], [-73.99022370701532, 40.65760474601137], [-73.98842872143268, 40.65924987290934], [-73.98179567724827, 40.65524611278827], [-73.98029115035374, 40.64729718402955], [-73.98180533707773, 40.64712781381599], [-73.98828876336732, 40.64459558805291], [-73.98905871482322, 40.64411926279492], [-73.99392737407472, 40.64706654008273], [-73.99801021286483, 40.64314701734047], [-74.01343051270996, 40.65245379827109], [-74.01867332816778, 40.6474126708349], [-74.02449181735253, 40.650920606185615], [-74.02388975096643, 40.65148794173413], [-74.0230542054787, 40.65097760982511], [-74.02267953718001, 40.65134938189238], [-74.02153323367178, 40.65067699403556], [-74.02101945203543, 40.65104977543583], [-74.02095696549995, 40.651292563635494], [-74.02406850134435, 40.65328875538129], [-74.02389966055158, 40.653373287920495], [-74.021841691623, 40.65224884482242], [-74.02112946007551, 40.65281921243486], [-74.02354095223643, 40.65439309041529], [-74.02190418000379, 40.653560097720906], [-74.0213300016408, 40.653967056588506], [-74.02121529065951, 40.654244645999356], [-74.02224595760532, 40.65490681490438], [-74.02217181467921, 40.655111222273625], [-74.02094951781672, 40.65443652016611], [-74.02010077392998, 40.654894802478864], [-74.02060136496083, 40.65440685698294], [-74.02044234680538, 40.65424215646355], [-74.01930186659243, 40.65412953042162], [-74.01905721351494, 40.65432530131343], [-74.02123633033344, 40.655927178032194], [-74.01788559014001, 40.654174690678246], [-74.01726668874069, 40.654767192216056], [-74.01722497975265, 40.65518200993198], [-74.0169363722322, 40.655458339508534], [-74.01702467183996, 40.65553985927952], [-74.01593595998278, 40.656567416820295], [-74.01565363538559, 40.6564056146976], [-74.01511593372246, 40.65698654789967], [-74.01438427766962, 40.6565657185433], [-74.01426378566785, 40.6566730094196], [-74.01510871094226, 40.657225161487524], [-74.01444774554489, 40.65760884043765], [-74.01744025069755, 40.65943063009898], [-74.01559787773417, 40.66072656862128], [-74.01399566224102, 40.659808104739355], [-74.01366559652821, 40.66001352432526], [-74.01191250899889, 40.65894757337932], [-74.01150059784996, 40.65934143101491], [-74.01458102443182, 40.661210576488386], [-74.0128322152209, 40.662222233092855], [-74.00847263136704, 40.65962419314787], [-74.00766900536335, 40.660439003533305], [-74.00766279360235, 40.66064480797331], [-74.01028530634446, 40.662321416128606], [-74.0103979075776, 40.66254238818806], [-74.00978102266485, 40.663127381595366], [-74.00869560354167, 40.663333327658506], [-74.0062181172879, 40.66189788620678], [-74.00570524492932, 40.66227567666146], [-74.00445042700727, 40.66153041524306], [-74.00430798891607, 40.66164874851047], [-74.00630493524378, 40.6628293187496], [-74.0059853084793, 40.663127960496496], [-74.00381056376195, 40.66190699451678], [-74.00353293185839, 40.66218189317559], [-74.00592966755087, 40.66363158693231], [-74.005641928554, 40.66390667845368], [-74.00362881739483, 40.66274666695486], [-74.0034140216751, 40.66298171185743], [-74.00457013073999, 40.66369530015835], [-74.00436754013982, 40.66395853158235], [-74.00417271808122, 40.663966306665856], [-74.00519914825608, 40.66457450850814], [-74.00515429517986, 40.66488236452568], [-74.0048529311667, 40.66506018451131], [-74.00112580762064, 40.66289138120632], [-74.00065576903377, 40.66337871807642], [-74.00467148997649, 40.66585296120788], [-74.00386134260323, 40.66614484754246], [-74.00009089636035, 40.663859156959894], [-73.99951991069284, 40.66438921235086], [-74.00290144765475, 40.66647941018137], [-74.00227273648804, 40.66680199087657], [-74.00159870085, 40.66678459975096], [-74.00121470121381, 40.667019172592646], [-74.00144259158252, 40.667164560928335], [-74.00067541111034, 40.66754721782823], [-74.0000973276686, 40.66741739152108], [-73.99932443879631, 40.66812941200763], [-73.99907224580849, 40.66844549933471], [-73.99906286534451, 40.66909244314503], [-73.99865843665806, 40.669494878618096], [-73.99891903628735, 40.6696768152044], [-73.99862836986689, 40.67137463838557], [-73.99852406889998, 40.67149182474954], [-73.9984094176705, 40.671310337874985]]], "type": "Polygon"}, "id": 157, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11232", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 158, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 55879065.1487, "Shape_Leng": 64230.9972726, "borough": "Brooklyn", "postalCode": "11232"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.78940998274673, 40.66684117788391], [-73.78960478662813, 40.665719913414414], [-73.79014005284405, 40.6651607848353], [-73.7883370571954, 40.665260386476355], [-73.78740902633704, 40.66507265956856], [-73.7854997241151, 40.66391988589222], [-73.78043060227537, 40.66242365340392], [-73.7742369857504, 40.659898882253266], [-73.76447513688927, 40.654591409888106], [-73.74862517714584, 40.64558755889283], [-73.74742083336446, 40.64467501311001], [-73.74472029177048, 40.64197431273623], [-73.74516048220211, 40.63972124045161], [-73.74630140669902, 40.640443135575964], [-73.74644645734094, 40.640719376410146], [-73.74644028535162, 40.64147438942118], [-73.74682736297302, 40.64230135421753], [-73.74762554035938, 40.643440788529546], [-73.7488170441986, 40.64448562786438], [-73.74891472940585, 40.6446608026599], [-73.74879003650973, 40.645067040268984], [-73.74902894941111, 40.64512278099458], [-73.74935164140456, 40.6448582027713], [-73.75185869132379, 40.646539131153915], [-73.75404027901622, 40.647608077183286], [-73.7540984829254, 40.64775445080993], [-73.7544981439154, 40.64792625060839], [-73.75474128845393, 40.6478165104636], [-73.75491937188538, 40.647583775759514], [-73.75462961488985, 40.64727217998843], [-73.75120546394614, 40.64516498727408], [-73.74874027062123, 40.64339535235175], [-73.74756554855418, 40.64174837789191], [-73.74743432641718, 40.64133370460577], [-73.74745433423907, 40.63969120592965], [-73.7481249328431, 40.636872491776096], [-73.74835867670808, 40.63661270839919], [-73.74845754085284, 40.63526910269777], [-73.75073471741989, 40.634538748965554], [-73.75136563286108, 40.634098097888554], [-73.75235266114939, 40.633792048384144], [-73.75270792987948, 40.63352452927721], [-73.7535530540984, 40.63335386847267], [-73.75455544470096, 40.632921718397014], [-73.75419803787861, 40.63300978426418], [-73.75437692661103, 40.63288556481605], [-73.75538392080865, 40.6326558791888], [-73.75915118559365, 40.63129254953263], [-73.76008995639398, 40.630871596973606], [-73.76006722668733, 40.63072757575886], [-73.76188067582714, 40.63024027897611], [-73.76298615525145, 40.62968241725735], [-73.76446454452679, 40.62923316508251], [-73.76499640971457, 40.62940491691049], [-73.76466807005275, 40.62917205632346], [-73.76627653160457, 40.62842431118833], [-73.76666324983266, 40.62806797092641], [-73.76778113378313, 40.625912024721785], [-73.7682762771216, 40.625335430073726], [-73.76874032870265, 40.624102088526804], [-73.76845100685654, 40.62294785662185], [-73.76957528445752, 40.62184819736413], [-73.76964256944991, 40.621192215344124], [-73.76996652740816, 40.62092749598188], [-73.77063894752894, 40.61973290287941], [-73.7718455435279, 40.620135935128005], [-73.77192666099391, 40.62040031058062], [-73.77082260187768, 40.622906615500135], [-73.77085202741989, 40.62324370848812], [-73.77104681006229, 40.62322984758898], [-73.77122332921695, 40.62290742445281], [-73.77312248996829, 40.6248349251863], [-73.77598429744188, 40.627098445944654], [-73.77609699899388, 40.62733555969061], [-73.77713842023863, 40.627599457809836], [-73.77936003942597, 40.627278902641855], [-73.78059301935487, 40.62592064905403], [-73.78159901565392, 40.624559513451445], [-73.78186456777652, 40.62393585082225], [-73.78443577640724, 40.62054725009507], [-73.7850882730763, 40.62046191528499], [-73.7892617660986, 40.62299432070843], [-73.78760398891616, 40.62422761020268], [-73.78597325309937, 40.62574893663425], [-73.78530409941307, 40.62666705948594], [-73.7855589355566, 40.62681421669784], [-73.78502893968898, 40.626577284624936], [-73.78441224702246, 40.62706264527728], [-73.78293200100606, 40.629345974044696], [-73.78276827857705, 40.6300383979092], [-73.7829711004616, 40.630284824327866], [-73.78372337363692, 40.6304200225398], [-73.78439249248919, 40.631359660239525], [-73.78539718800313, 40.6319350049117], [-73.78720980748571, 40.632416014242445], [-73.7883759195151, 40.633445167467684], [-73.78941168429272, 40.634051718154964], [-73.78945872619407, 40.634287441113344], [-73.7897206982465, 40.63406077291143], [-73.79079943492908, 40.633881150441], [-73.79069849515646, 40.63421393463666], [-73.79125127712648, 40.63431204277855], [-73.79129362436957, 40.6349314885091], [-73.79225039746119, 40.63589661347784], [-73.79344085276406, 40.63611992532377], [-73.79469909388062, 40.63661325013015], [-73.79714501530628, 40.637960177302055], [-73.79865983780076, 40.63839555894671], [-73.79925762549173, 40.63842268497158], [-73.80188848536953, 40.63981479550565], [-73.804543859898, 40.64089325648242], [-73.80567803631708, 40.641640669239436], [-73.80669598525061, 40.641807876246915], [-73.80884367313672, 40.64291577098357], [-73.81087984281477, 40.64352362626182], [-73.81266227498239, 40.64473938410633], [-73.81345839565024, 40.644627545898175], [-73.81638567891024, 40.64604507193084], [-73.81686715104024, 40.64616207874799], [-73.81721143406034, 40.646063515255264], [-73.81827411513335, 40.646429241740265], [-73.8191852929776, 40.64705378269529], [-73.8196986915384, 40.64784989439912], [-73.82163122821676, 40.649577472112085], [-73.82340264957178, 40.65490841532043], [-73.82337080908852, 40.65624475700834], [-73.82234174619069, 40.65935743011585], [-73.82152535448334, 40.659980023831864], [-73.81869060790613, 40.661091435468705], [-73.81282896294351, 40.66015747747032], [-73.81159885275201, 40.66018889833125], [-73.81128879945435, 40.66037388790098], [-73.81132301862765, 40.66065919588405], [-73.8119660364206, 40.660895268818045], [-73.81865912288414, 40.6621368010745], [-73.822848627299, 40.660539348834355], [-73.8234786210661, 40.66016102534464], [-73.82498855359421, 40.65550498903695], [-73.82354279176494, 40.650450762921885], [-73.82349808952647, 40.64956999361068], [-73.82316198757054, 40.64855878290969], [-73.82348609829359, 40.648474246556496], [-73.82384464340616, 40.64917134269353], [-73.82467076226844, 40.64950864918681], [-73.82457984557938, 40.64975579857067], [-73.82474446775312, 40.65006204421293], [-73.82488878448584, 40.65005081303218], [-73.82497351428387, 40.64965456221424], [-73.82523505833638, 40.649645355906834], [-73.82546507474589, 40.64984166361271], [-73.82559062926751, 40.649552432569685], [-73.82584319330505, 40.64950010970398], [-73.82625006512448, 40.65012254629529], [-73.82629902783472, 40.649591717296914], [-73.82652048591324, 40.649405170379964], [-73.82627442639259, 40.64846049270606], [-73.82646090293768, 40.64833509864458], [-73.82923995572037, 40.65826509740684], [-73.8306623160061, 40.661373467435446], [-73.83071387241624, 40.6622554367876], [-73.83224589441933, 40.6652946862773], [-73.82721679884183, 40.664514035563286], [-73.82536929139049, 40.663752321751765], [-73.81748006586147, 40.662899672555945], [-73.8150589783226, 40.6624757750749], [-73.81244525305846, 40.662769260842644], [-73.81116931615611, 40.66317382765104], [-73.81165939901364, 40.66259912878153], [-73.81210230353666, 40.661116958693356], [-73.81106470342944, 40.6609035886506], [-73.81065876616783, 40.66043895783087], [-73.81022895895138, 40.660759793199844], [-73.80960148862846, 40.66087568323545], [-73.80785781004276, 40.66054792356957], [-73.80754454852928, 40.66063282847231], [-73.80614418671836, 40.66491189807937], [-73.80215607658567, 40.665244978284434], [-73.80166295601472, 40.66675904203224], [-73.79904101362999, 40.66653031762192], [-73.79737169285058, 40.66694145487523], [-73.79306203598217, 40.66708722431805], [-73.78940998274673, 40.66684117788391]]], "type": "Polygon"}, "id": 158, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11430", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 159, "PO_NAME": "Jamaica", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 199913664.291, "Shape_Leng": 103039.277381, "borough": "Queens", "postalCode": "11430"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94269628450726, 40.66405515298856], [-73.93715846706962, 40.66375261786932], [-73.93726377174885, 40.66319183016009], [-73.93065206871213, 40.66363834202987], [-73.93153753823071, 40.663236530701454], [-73.92161530818683, 40.65427928300096], [-73.92141218286403, 40.652514455109504], [-73.92077366832676, 40.65255432782087], [-73.91972836813288, 40.64272500678608], [-73.92356754185855, 40.63984458388953], [-73.92598429096228, 40.63827516902619], [-73.93226213248501, 40.634961719666755], [-73.93535984966374, 40.634767329201296], [-73.93560658290333, 40.63703792051617], [-73.9384801990423, 40.63686200243636], [-73.93873124101145, 40.639200188016986], [-73.94537271307922, 40.63878697828872], [-73.94767622887619, 40.66029734846489], [-73.94261167347526, 40.660610358981], [-73.94284801518143, 40.6628462862167], [-73.94269628450726, 40.66405515298856]]], "type": "Polygon"}, "id": 159, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11203", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 160, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 60644835.4564, "Shape_Leng": 32799.7518021, "borough": "Brooklyn", "postalCode": "11203"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.86623455278927, 40.65875729895004], [-73.86599116475726, 40.65886225104665], [-73.86377919519867, 40.65599492538933], [-73.86235571010994, 40.65527583932101], [-73.86136419852069, 40.65512150458912], [-73.86040087267926, 40.65387857796036], [-73.85897501760678, 40.652912435612635], [-73.85841271211518, 40.652170658622026], [-73.85827460034318, 40.65170994624631], [-73.85727185847291, 40.65122120781597], [-73.85724632319452, 40.65084655587971], [-73.85697337464823, 40.650591328568346], [-73.85748022143912, 40.65013120647923], [-73.85779984355234, 40.6483624447065], [-73.85814255375561, 40.647966109221436], [-73.85847136913654, 40.646963938669124], [-73.85811749414859, 40.645910520292134], [-73.85776103710323, 40.6455894177112], [-73.85734794770359, 40.64473534261567], [-73.857175883111, 40.643807118701595], [-73.85753704494932, 40.64357781717959], [-73.86253594402277, 40.64270960956106], [-73.8633113874878, 40.64229914241515], [-73.86478642853129, 40.64107647247494], [-73.86714098684129, 40.63984742598753], [-73.8677460897644, 40.6401064132331], [-73.86867282335379, 40.64092509029863], [-73.86888678240248, 40.641599347109526], [-73.86932068633021, 40.642072405645955], [-73.86929243755024, 40.64233328820474], [-73.86989701126706, 40.64316751871163], [-73.87001708081726, 40.644071384896556], [-73.87056002440205, 40.644818406031575], [-73.87121758706044, 40.645204378195764], [-73.87256367197129, 40.64557737598396], [-73.87321249300796, 40.645409063921036], [-73.87333482801657, 40.645057553284055], [-73.87325079331266, 40.643967620161746], [-73.87292665262753, 40.64389414750191], [-73.87265301470671, 40.64332580005185], [-73.87219857026284, 40.64291995602325], [-73.87189234999711, 40.64248183598789], [-73.87197620810429, 40.642241499740685], [-73.871745777714, 40.642308909794515], [-73.87078704879954, 40.640991805871245], [-73.87068498520438, 40.64046273233074], [-73.87054636094805, 40.640523238951566], [-73.87011678621084, 40.640231204172785], [-73.86970724106212, 40.639119943695405], [-73.86963011379686, 40.6382800109406], [-73.86963974971897, 40.63806315870999], [-73.87000335917588, 40.638396891408746], [-73.87276495279461, 40.63649599156568], [-73.87348116459212, 40.63632767231947], [-73.87401629878866, 40.63644782819767], [-73.87523654845474, 40.63708356223539], [-73.8756994105564, 40.63764749527356], [-73.87695363727634, 40.638640766563235], [-73.87788577038486, 40.63896440465685], [-73.87829925354715, 40.638748952463075], [-73.87851302250543, 40.63887269196213], [-73.8786757175129, 40.639357583650046], [-73.87925904671799, 40.6400809554008], [-73.87986358259587, 40.640338723761275], [-73.88016322583043, 40.6407409390857], [-73.8802494095721, 40.640995747949184], [-73.87968118946509, 40.64145853231517], [-73.87996966809791, 40.64190040788036], [-73.88027875384311, 40.642120902514996], [-73.88052881442954, 40.64205824330413], [-73.88139331095817, 40.6423477365614], [-73.88224102625246, 40.64345329429187], [-73.88214209215387, 40.64374736007334], [-73.88329565592504, 40.64444194419507], [-73.88403223090062, 40.64435061757195], [-73.88462910423544, 40.643981869193134], [-73.88567257649719, 40.64404627631002], [-73.88744741863998, 40.64591895117947], [-73.8876909618665, 40.64646381844991], [-73.88775349661077, 40.64713083688499], [-73.88753589000306, 40.647411899457325], [-73.8876778831556, 40.64748662727317], [-73.88767960374528, 40.64781368466524], [-73.88863586985612, 40.64802421929774], [-73.88881296185025, 40.64834098590875], [-73.89009129269179, 40.64931687449577], [-73.89034793278077, 40.64936217239829], [-73.89055141092476, 40.649177822103184], [-73.89125146783574, 40.650025614512685], [-73.88999352358951, 40.65113800525259], [-73.8876754365756, 40.64919411588788], [-73.88621099186095, 40.650141060764426], [-73.88480602073611, 40.650765238656355], [-73.88628186516408, 40.65275579606349], [-73.87973335420283, 40.65556307524163], [-73.87932520458834, 40.65502949796877], [-73.87690721483418, 40.65454654627567], [-73.87581825453837, 40.65465410965302], [-73.86623455278927, 40.65875729895004]]], "type": "Polygon"}, "id": 160, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11239", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 161, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 41794660.7681, "Shape_Leng": 36128.8685676, "borough": "Brooklyn", "postalCode": "11239"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89888190600865, 40.656457456519036], [-73.89872509045473, 40.65580996714429], [-73.89848161593164, 40.65584620725898], [-73.89797764993642, 40.653659238771574], [-73.89760988892024, 40.65345307702225], [-73.89520539668301, 40.65448795300862], [-73.89323807930971, 40.651811271575966], [-73.89125146783574, 40.650025614512685], [-73.89058356515872, 40.64921677940316], [-73.890954763533, 40.64939590014144], [-73.89126207121816, 40.6490120308984], [-73.89087542356928, 40.64854241177748], [-73.88934371668401, 40.64702460390546], [-73.8888710819773, 40.64723758007016], [-73.88861348570538, 40.64709279314078], [-73.88851602818183, 40.64736087853022], [-73.88820038212779, 40.647140621365686], [-73.88818950181327, 40.646773632364], [-73.88849763731116, 40.6467569747636], [-73.8884841204495, 40.64695711721831], [-73.888642110765, 40.64678553421231], [-73.8880808351507, 40.64662017555237], [-73.88805317199575, 40.64622579711676], [-73.8882893963094, 40.64604381677747], [-73.88800102938171, 40.646027905102734], [-73.8874097725833, 40.64532936994632], [-73.88805582835136, 40.64511959083216], [-73.8879274992429, 40.64500486762748], [-73.88734402034575, 40.64522382599289], [-73.88691247377325, 40.64447364130024], [-73.8865450386075, 40.64430646457873], [-73.88607208561329, 40.643695450605996], [-73.88495499059621, 40.64326381028618], [-73.88395362135941, 40.64265363995645], [-73.88063556693574, 40.63962985448538], [-73.88052765754934, 40.639136317212454], [-73.8795373482981, 40.63823185586402], [-73.87901166698245, 40.638473541919105], [-73.87869758261704, 40.63837357303767], [-73.87844354509984, 40.63805753488591], [-73.87864755696103, 40.63746899334793], [-73.87763276101239, 40.63645117623368], [-73.8773786028198, 40.63577523467606], [-73.877925162999, 40.63506709270167], [-73.87821419156626, 40.6350455696874], [-73.88007056780539, 40.63377265933887], [-73.88133823520045, 40.63281669837796], [-73.88146239716006, 40.632472262254225], [-73.88308781831795, 40.631619527411495], [-73.88394050796786, 40.630760890696905], [-73.88391650618664, 40.630362167434264], [-73.88346708706733, 40.62991853255596], [-73.88402114203762, 40.62956185727203], [-73.8826627604488, 40.62827452054216], [-73.88374011548889, 40.62760188879899], [-73.88512990744557, 40.62884534480335], [-73.88571985654092, 40.62846131234095], [-73.88729640300966, 40.62821518134131], [-73.89032122510773, 40.62621141296703], [-73.89061884327812, 40.625107086393605], [-73.89187858331155, 40.62403307791154], [-73.89188471413061, 40.62388979191245], [-73.89156013624043, 40.62384189008969], [-73.89229854783159, 40.62345100626219], [-73.89360737027377, 40.62321423441216], [-73.89590678503735, 40.62226645921845], [-73.89637887579003, 40.62230059670539], [-73.89698799336122, 40.62322827442486], [-73.91448416717218, 40.630967917528565], [-73.91619580200945, 40.63207236408318], [-73.91683292661152, 40.632037665903056], [-73.91720979610666, 40.63173068685805], [-73.91823142746848, 40.632307321904264], [-73.91860109140187, 40.632074824176], [-73.92077366832676, 40.65255432782087], [-73.92141218286403, 40.652514455109504], [-73.92172993981653, 40.65438234063733], [-73.91088756724415, 40.6541599129303], [-73.90317307067548, 40.655301535483545], [-73.90127968809493, 40.65643865647322], [-73.90044831154252, 40.657252107602595], [-73.8991827808742, 40.657358504591336], [-73.89888190600865, 40.656457456519036]]], "type": "Polygon"}, "id": 161, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11236", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 162, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 96373991.6197, "Shape_Leng": 44836.9127912, "borough": "Brooklyn", "postalCode": "11236"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.02449181735253, 40.650920606185615], [-74.01867332816778, 40.6474126708349], [-74.01343051270996, 40.65245379827109], [-73.99801021286483, 40.64314701734047], [-74.00796078837203, 40.633583922314365], [-74.01016057415103, 40.63491236043647], [-74.01074219077246, 40.63435656484039], [-74.0085370417825, 40.63302818228981], [-74.0127027038527, 40.62902377484902], [-74.01604821101056, 40.63103290457316], [-74.01634322393336, 40.63028561827755], [-74.01733663569169, 40.63072930460573], [-74.01695587546882, 40.63162136818398], [-74.0259173577818, 40.635710356238434], [-74.03595783326179, 40.63882116276057], [-74.0369320493547, 40.638731005639535], [-74.0357583363421, 40.6406449525918], [-74.03678367065051, 40.64138796668628], [-74.03677129240108, 40.64163956109289], [-74.03407183759946, 40.64431577932135], [-74.03286640474336, 40.643588935586784], [-74.032643464004, 40.64380255878328], [-74.03229706024494, 40.64363850922983], [-74.03038304631006, 40.64541871131225], [-74.02827299826299, 40.64413606516382], [-74.02784632804206, 40.64454670288175], [-74.03151043431025, 40.646760783065616], [-74.03126333223696, 40.64709389263737], [-74.02750199458845, 40.644874478876574], [-74.02694453920691, 40.64541316926249], [-74.03057154090759, 40.64759984905927], [-74.03033416018725, 40.64792787599673], [-74.02660833762599, 40.64573443349917], [-74.02608976057613, 40.646091171839736], [-74.02618687910542, 40.64614372920868], [-74.0251513443093, 40.64714114703593], [-74.02482938788349, 40.64694932024309], [-74.0246226686592, 40.64714946966078], [-74.02495865573889, 40.647354286655194], [-74.02469869351884, 40.6475985866228], [-74.02436681737952, 40.64739857046501], [-74.02415177205235, 40.647598666758306], [-74.02531124837046, 40.648302506144944], [-74.02495708486913, 40.648629093257554], [-74.02553326705336, 40.64973104548572], [-74.02449181735253, 40.650920606185615]]], "type": "Polygon"}, "id": 162, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11220", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 163, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 47453785.7906, "Shape_Leng": 39988.5319912, "borough": "Brooklyn", "postalCode": "11220"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0893059303074, 40.64733249530828], [-74.08763652451574, 40.64833315662182], [-74.08555860280258, 40.648954314607785], [-74.08479125437482, 40.64894540315007], [-74.08274613507236, 40.64839638445215], [-74.08117090174277, 40.64855565420122], [-74.08056480647093, 40.64835621849934], [-74.07981645459273, 40.64842342456129], [-74.07898035456446, 40.64828222061969], [-74.07694703669468, 40.647241225000805], [-74.07668843765978, 40.647242466646595], [-74.07441797573067, 40.64517654217833], [-74.07379531285662, 40.645043602768624], [-74.07266358106253, 40.64441679629765], [-74.07188182609954, 40.64350629973445], [-74.07162840981648, 40.64355793239324], [-74.07147854364892, 40.642818385665564], [-74.07216253775111, 40.642695675269366], [-74.07212007668008, 40.64244633570582], [-74.07327993999169, 40.642242483276576], [-74.07284431759129, 40.64052208853719], [-74.07307029151903, 40.64049942859737], [-74.07308132003446, 40.638590109033046], [-74.07286230791641, 40.6381285537261], [-74.07260632825482, 40.638136323225325], [-74.07257284870613, 40.63787588003634], [-74.07348354299236, 40.637787375886056], [-74.07314732590855, 40.63581154955321], [-74.0733903652727, 40.635791450888675], [-74.07331406992344, 40.63484097712211], [-74.07414195690127, 40.63439338703619], [-74.07412008638157, 40.63294053184023], [-74.07482632844088, 40.631341529602004], [-74.07470739784952, 40.629795593687994], [-74.076662597766, 40.62962255678222], [-74.07675500809731, 40.63019432703853], [-74.0765345470074, 40.6309503171836], [-74.07595855150826, 40.63196938594793], [-74.0790877468846, 40.63288558102559], [-74.07899178824744, 40.63319275478198], [-74.07988515779309, 40.633404896120254], [-74.0787962364903, 40.636974081557746], [-74.0795864528953, 40.63617260742812], [-74.08025897060664, 40.635861757099796], [-74.08045516397493, 40.6354970204262], [-74.08231299695774, 40.633662604483824], [-74.08411695355554, 40.63477563508031], [-74.0852008154867, 40.6337624216999], [-74.08574928574441, 40.63395557885829], [-74.08807764415978, 40.63108073865514], [-74.0868223452907, 40.63031787605686], [-74.08850754073677, 40.62891861490711], [-74.08890514128782, 40.6277728492456], [-74.08851516959358, 40.622965904760136], [-74.088683797567, 40.62099849361718], [-74.08942031481385, 40.62030736136411], [-74.08873083681462, 40.61984409041572], [-74.08868306848913, 40.619599396302014], [-74.08751608158185, 40.61906472020557], [-74.0876119765532, 40.618494187808345], [-74.08678317262586, 40.61843448337442], [-74.08666976061156, 40.618972568107], [-74.08604124312534, 40.61882019752421], [-74.08617116563447, 40.618074251766004], [-74.08659181925894, 40.61712743304503], [-74.08741338415828, 40.61592934404349], [-74.09098193388115, 40.617158356596526], [-74.0927840067148, 40.618258586774004], [-74.09338662155758, 40.61830952306381], [-74.0940714221185, 40.61770370732983], [-74.09430228935642, 40.61665561132307], [-74.09014058143607, 40.61483467938462], [-74.09032120741684, 40.61417934161214], [-74.08866163366454, 40.613693004874214], [-74.08973233798488, 40.6122852891699], [-74.08973222007762, 40.61209471816906], [-74.0901890890249, 40.61194723697509], [-74.09063022706019, 40.611338527248115], [-74.0899323970579, 40.61105117765211], [-74.09083982025606, 40.60968855540557], [-74.09284373139658, 40.61044823918792], [-74.09431002060059, 40.61081423862916], [-74.09591938554844, 40.61099962918222], [-74.09810386457508, 40.610960196798516], [-74.09742188829799, 40.61026128116718], [-74.09711575027713, 40.6092307055523], [-74.09546866622867, 40.6095302005153], [-74.09502723755783, 40.60945540515186], [-74.09494032462285, 40.60930543020453], [-74.096264227976, 40.60887377235493], [-74.0960256322965, 40.60853407619866], [-74.0966868248505, 40.608283302839304], [-74.096709468857, 40.60803532322967], [-74.09630492248752, 40.60751169771207], [-74.09696867469697, 40.606992281274884], [-74.09747399784818, 40.605726779447245], [-74.0970025263412, 40.605788519208986], [-74.09661739406572, 40.606376589286796], [-74.09537877456034, 40.607136445264956], [-74.0948959365706, 40.60667554163508], [-74.0952037870999, 40.60581138813833], [-74.09489089411962, 40.6056159534935], [-74.0945811299739, 40.60571371647596], [-74.09430834087716, 40.60480398443798], [-74.0939476252692, 40.604763470888216], [-74.09389952486175, 40.60450868757819], [-74.09351427271007, 40.604491443300006], [-74.09350520642339, 40.60412667876852], [-74.0948378269474, 40.604270662814855], [-74.09501900910321, 40.60358787572223], [-74.09578179943593, 40.603447828158096], [-74.09655870459103, 40.60352851145478], [-74.09803249838505, 40.6030978946425], [-74.09915700652662, 40.603110577373855], [-74.09923318837792, 40.60385057635441], [-74.09959304279982, 40.60403410045075], [-74.10036246164529, 40.60402606035886], [-74.10055923458754, 40.60380693981721], [-74.100467078696, 40.603269717329646], [-74.10023259475311, 40.603043558607204], [-74.09958025012097, 40.60290263377301], [-74.10011567688501, 40.60231141855471], [-74.10064159179376, 40.60201193345814], [-74.10049267267941, 40.60153197620366], [-74.10191253166754, 40.60107343683074], [-74.10829116898294, 40.601716036600756], [-74.10987034108673, 40.601511132157846], [-74.11338334048796, 40.60057052147872], [-74.11487058849146, 40.60213667486271], [-74.11123976452276, 40.60646658051819], [-74.11096857966352, 40.60728389922895], [-74.11182198284773, 40.61089664344505], [-74.1132123967903, 40.61147288619752], [-74.11422088416863, 40.61167721289254], [-74.1157974213881, 40.61165149336422], [-74.11683551663671, 40.611428609173416], [-74.11694081251957, 40.612155342231134], [-74.11425097551239, 40.61235969668317], [-74.11290834175517, 40.6127009424676], [-74.11314164044288, 40.612894950231656], [-74.11337449309582, 40.613804488279975], [-74.11414569933389, 40.61374154491067], [-74.11465594046234, 40.61804892354041], [-74.11499466877346, 40.61817179993564], [-74.11787549050418, 40.61787751470544], [-74.11912980288486, 40.62018749534049], [-74.11966871775124, 40.621744945351445], [-74.11917363190099, 40.621913487879034], [-74.11851721140754, 40.6224609556668], [-74.11829130774657, 40.623027658377325], [-74.11839718323994, 40.623571518082514], [-74.11823491923228, 40.62381296164879], [-74.11701372428469, 40.62452356578645], [-74.1133100356735, 40.62304210798047], [-74.11153394167853, 40.62160365694007], [-74.11001550952271, 40.620688364429384], [-74.10666475899781, 40.62184142272776], [-74.10434261921053, 40.622989544073235], [-74.10420036596898, 40.6233955873452], [-74.10582980898002, 40.63014877688258], [-74.10572255181957, 40.630772027372146], [-74.10653690559832, 40.6347024079709], [-74.10396669463962, 40.63469999149326], [-74.1048099127497, 40.63897671962874], [-74.10006809759132, 40.64012690939771], [-74.10080860635125, 40.644761143230674], [-74.09734206584422, 40.64469064018668], [-74.09475533721188, 40.64500902581759], [-74.08969223121012, 40.6462967886299], [-74.08977278412735, 40.646713638757376], [-74.08909323224998, 40.64708771930984], [-74.0893059303074, 40.64733249530828]]], "type": "Polygon"}, "id": 163, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10301", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 164, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 105182712.649, "Shape_Leng": 79638.6503533, "borough": "Staten Island", "postalCode": "10301"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.12064635265924, 40.6410441105791], [-74.11961104752305, 40.64146033867966], [-74.11828814998904, 40.64154477185658], [-74.11775602898264, 40.64185631678001], [-74.11756735148128, 40.64162724575664], [-74.11715995870017, 40.64167864713233], [-74.11722122277929, 40.64187097971601], [-74.11539213380146, 40.64244607578934], [-74.11511941239753, 40.642789872824686], [-74.11379666809346, 40.643609534170615], [-74.11358382674304, 40.64357644430006], [-74.11120799606515, 40.64498891489046], [-74.10892201856578, 40.64566829909749], [-74.10470432412956, 40.64559957790815], [-74.10413722623063, 40.64578091155533], [-74.10399283758173, 40.64565821597829], [-74.10242044740785, 40.64558844649394], [-74.1006054298011, 40.645132352837294], [-74.09885932930226, 40.64503677858634], [-74.09839704657504, 40.645396898001046], [-74.09654557956782, 40.645365249802445], [-74.0946933707447, 40.645576860990865], [-74.09347804658576, 40.645857409520616], [-74.08993949771445, 40.6472128125795], [-74.0893059303074, 40.64733249530828], [-74.08909323224998, 40.64708771930984], [-74.08977278412735, 40.646713638757376], [-74.08969223121012, 40.6462967886299], [-74.0950417466836, 40.644948878875375], [-74.09793019011711, 40.644666828242066], [-74.10080860635125, 40.644761143230674], [-74.10006809759132, 40.64012690939771], [-74.1048099127497, 40.63897671962874], [-74.10396669463962, 40.63469999149326], [-74.10653690559832, 40.6347024079709], [-74.10572255181957, 40.630772027372146], [-74.10582980898002, 40.63014877688258], [-74.10420400212168, 40.623169724432195], [-74.10457378143607, 40.62284179810619], [-74.10654449034465, 40.62189207869337], [-74.11001550952271, 40.620688364429384], [-74.11153394167853, 40.62160365694007], [-74.1133100356735, 40.62304210798047], [-74.11701372428469, 40.62452356578645], [-74.11823491923228, 40.62381296164879], [-74.11839718323994, 40.623571518082514], [-74.1183012851788, 40.622989778501356], [-74.1187106671073, 40.62226080977391], [-74.11935503420223, 40.62182178422899], [-74.12007827222492, 40.621667053667444], [-74.12162492258302, 40.6230360866209], [-74.1220445676835, 40.62418444011951], [-74.12469733709862, 40.62368099467707], [-74.12474186313138, 40.62395505145953], [-74.13205806868372, 40.62338651209159], [-74.13199575324303, 40.624304701852225], [-74.13013973129323, 40.62995030226061], [-74.13060150152239, 40.63136512303354], [-74.12988812412326, 40.63300150379714], [-74.12894565990194, 40.63443687070981], [-74.12884362048622, 40.63674702854549], [-74.12865288399516, 40.6372734680526], [-74.12918653141772, 40.6386711184032], [-74.12981761151731, 40.639518608898555], [-74.13101354550832, 40.64031085791635], [-74.13156293448236, 40.64035600048241], [-74.13109741839715, 40.6410364414381], [-74.13012782912895, 40.64079471854815], [-74.12930714238715, 40.64033742849642], [-74.12922977325911, 40.64048438569197], [-74.12888217862742, 40.640401875772774], [-74.12878200929924, 40.640222978234284], [-74.12714602285916, 40.64022720584106], [-74.12678565383104, 40.640477975148], [-74.12546250427383, 40.64015485215263], [-74.12493339613694, 40.64026052873717], [-74.12488188962294, 40.64063770509749], [-74.1247633020388, 40.640310276195706], [-74.12425872909819, 40.64014710089758], [-74.12363401130138, 40.64038572029599], [-74.12277253260037, 40.641363496922196], [-74.1214213941803, 40.64150784210545], [-74.12064635265924, 40.6410441105791]]], "type": "Polygon"}, "id": 164, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10310", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 165, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 53463275.0023, "Shape_Leng": 43885.6232403, "borough": "Staten Island", "postalCode": "10310"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.17843306803051, 40.642543038603115], [-74.17780098574876, 40.64263756275306], [-74.1777207079609, 40.6429534560192], [-74.1772409290384, 40.64314036189427], [-74.17681466745385, 40.64290165624545], [-74.17683258087321, 40.643456825423335], [-74.1759472638264, 40.64347161371407], [-74.1755910050646, 40.64326986452199], [-74.17552991594359, 40.644099668963285], [-74.17571495606113, 40.64461554997864], [-74.17548007211688, 40.644643178171215], [-74.17534447082869, 40.645141254509596], [-74.17492944392086, 40.64523395209943], [-74.17402302735164, 40.645094313983776], [-74.17280206396043, 40.64427240279308], [-74.1727611192989, 40.644015158769584], [-74.17297376409752, 40.64360203089387], [-74.17238195633801, 40.643384376850776], [-74.17251314147164, 40.642883466719155], [-74.17139642840392, 40.64309752865872], [-74.17129811835323, 40.64283787243303], [-74.17174705775585, 40.64241319298691], [-74.17165676884048, 40.6419358360522], [-74.17144150403517, 40.64171086687033], [-74.17028635890112, 40.64177532695132], [-74.17007963936804, 40.64208606284306], [-74.16915295666283, 40.64187287267545], [-74.16906431872603, 40.642130030342784], [-74.16778679845127, 40.641723762345926], [-74.16757607168365, 40.641844810438094], [-74.16565085089816, 40.64121109338279], [-74.16544310232307, 40.642280559992685], [-74.16531025914855, 40.642277745999245], [-74.1653564654087, 40.641997304492335], [-74.16512652971501, 40.64196925410749], [-74.16507661801936, 40.64223652173188], [-74.164961617142, 40.64222578596357], [-74.16519042380592, 40.640642316367554], [-74.16396196269193, 40.63990961303526], [-74.16340072238364, 40.63989995596938], [-74.16322856276356, 40.64094852647744], [-74.16265984363112, 40.64098055156432], [-74.16167924030158, 40.64061767951831], [-74.16228466275572, 40.63876566536213], [-74.16105209178843, 40.63868539239543], [-74.161054444372, 40.63857475839494], [-74.16074215742664, 40.63862178016647], [-74.16017603115415, 40.63838520203198], [-74.16008742200061, 40.63869985370943], [-74.15974387235482, 40.63874196162458], [-74.15947483007096, 40.63799771203463], [-74.15909966034958, 40.63797221660425], [-74.15905577651348, 40.638281175552024], [-74.15780985437475, 40.63795289206102], [-74.15610277324282, 40.63793960984792], [-74.15611488742051, 40.63753075904142], [-74.1556986244278, 40.63751795070489], [-74.15568516844066, 40.637787497315244], [-74.15483787896807, 40.63772386603491], [-74.15466745793061, 40.63899468421114], [-74.1545299704138, 40.63912933380367], [-74.15463370678606, 40.63839632411886], [-74.15439707882884, 40.638150338129776], [-74.15396803698994, 40.638066768807114], [-74.15400568900378, 40.63793167368785], [-74.15403991972094, 40.638061287425245], [-74.15427138574613, 40.6380545384016], [-74.15454443736644, 40.6375332127394], [-74.15425492380814, 40.637189909848374], [-74.1532162332412, 40.63732128413172], [-74.15283244864078, 40.637191005117636], [-74.1526970086424, 40.63764185216285], [-74.15119546106047, 40.63773079953412], [-74.15126280752594, 40.63848706766238], [-74.15061370386813, 40.6385616038361], [-74.1499678247366, 40.63815008727206], [-74.14967890946616, 40.637517685376075], [-74.1494023582388, 40.637405226969264], [-74.14941882153114, 40.638291654099305], [-74.14919418769729, 40.63866834241136], [-74.14881121824334, 40.63872435931349], [-74.14878292483216, 40.63887057282472], [-74.1460217406218, 40.63909456044433], [-74.1460573459619, 40.63922927442034], [-74.1451927951576, 40.63937851560428], [-74.14475240524577, 40.63933869420603], [-74.14384005274948, 40.63889470130579], [-74.1438396553383, 40.63917538753179], [-74.14357309292765, 40.63922679634125], [-74.14336103096655, 40.63970986379233], [-74.14257770031142, 40.63953415662728], [-74.14238795196613, 40.63964122129723], [-74.14229767589491, 40.64030581843898], [-74.14155623872226, 40.64036678648919], [-74.14144986652752, 40.64009623287547], [-74.14112691714185, 40.64044683636871], [-74.14056922099742, 40.640643042076775], [-74.13929746300346, 40.64080584839224], [-74.13905684124698, 40.63975942332323], [-74.14083035823623, 40.63964954661993], [-74.14359998505894, 40.63851414178398], [-74.14490846034563, 40.63531331904561], [-74.14552324356427, 40.63305763249258], [-74.14566585414957, 40.630343850200966], [-74.14545813369205, 40.62705047790978], [-74.14612121096394, 40.62492974638554], [-74.1487680484165, 40.625104771201464], [-74.14929915095475, 40.623074222894644], [-74.15094688646127, 40.621587194006], [-74.15364647315168, 40.61986913318943], [-74.1542906025816, 40.61930000514399], [-74.15543694630182, 40.62007333293142], [-74.16498584051807, 40.621619374381545], [-74.16534535898931, 40.62023156413895], [-74.17198003995595, 40.62304399491053], [-74.17688638201768, 40.62542012123092], [-74.17855171157026, 40.62466109507154], [-74.17954953634974, 40.62568936432704], [-74.1807388295791, 40.6265638976272], [-74.18501070575266, 40.629012029302714], [-74.18606637720637, 40.629335334772854], [-74.18670354430307, 40.63010795435427], [-74.18651424515708, 40.63019582920644], [-74.19591572521412, 40.63518722379468], [-74.19557735501606, 40.635605839789584], [-74.19526689659887, 40.63559701371301], [-74.19460950320308, 40.63626672644448], [-74.19456520063801, 40.63695264637626], [-74.19477402826072, 40.63713120926023], [-74.19465224382475, 40.63736164808956], [-74.19348699757677, 40.63754022038687], [-74.19309088262311, 40.63786016683266], [-74.19323429689688, 40.637961315571154], [-74.18702347708847, 40.642981656028], [-74.18686023272768, 40.642881500780824], [-74.18610376100887, 40.64364185433493], [-74.1860855326279, 40.6439560663177], [-74.1858467319694, 40.64407344625961], [-74.18495404569074, 40.64433349229307], [-74.18418951674107, 40.643733691501005], [-74.18393207127882, 40.64333007077485], [-74.18374113065813, 40.643327073804755], [-74.18358904345274, 40.643397092609035], [-74.1835746714363, 40.643656269943], [-74.18391147486327, 40.64444272964629], [-74.18367212087924, 40.644772986177934], [-74.18287172489853, 40.644897011613665], [-74.18126445372192, 40.644708612663536], [-74.18085285589986, 40.64490220249262], [-74.18077731651132, 40.6447067085147], [-74.18051547176027, 40.644673882535265], [-74.18048998460627, 40.64435991031959], [-74.17983469791909, 40.644302898393754], [-74.17936116416767, 40.64434895028393], [-74.17936196851159, 40.64503079481575], [-74.17915620449185, 40.64512271463451], [-74.17894830659831, 40.642881206375655], [-74.17843306803051, 40.642543038603115]]], "type": "Polygon"}, "id": 165, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10303", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 166, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 81629773.5183, "Shape_Leng": 54576.11136, "borough": "Staten Island", "postalCode": "10303"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.93439440236229, 40.634826814623445], [-73.93226213248501, 40.634961719666755], [-73.92733439860466, 40.637534326621555], [-73.92356754185855, 40.63984458388953], [-73.91972836813288, 40.64272500678608], [-73.91860109140187, 40.632074824176], [-73.91823142746848, 40.632307321904264], [-73.91720979610666, 40.63173068685805], [-73.91754714590941, 40.63142238689125], [-73.91719586265044, 40.63093995742448], [-73.91538586588473, 40.629971603777456], [-73.90267276532138, 40.62421117056914], [-73.90292621331825, 40.62387322585055], [-73.90279714242641, 40.623526889113116], [-73.902352705772, 40.62352922394873], [-73.90198183903269, 40.62293989215762], [-73.9009797679504, 40.62256102631995], [-73.90070363048399, 40.62161131409529], [-73.89891876229375, 40.62185602492686], [-73.896730680306, 40.62169623870197], [-73.89598668305086, 40.620650484552165], [-73.8960964138797, 40.62033258999152], [-73.89578004665997, 40.620281300801636], [-73.89550612082309, 40.619653283572454], [-73.8956057699498, 40.619142281528866], [-73.89642740729471, 40.61800859043267], [-73.89675105766383, 40.61727475500603], [-73.89608127744047, 40.615277004753], [-73.89603318995772, 40.61426631851565], [-73.89589097194258, 40.6140159447402], [-73.89552022585858, 40.613564681134044], [-73.89523448907127, 40.613487437262975], [-73.89443044414, 40.61369279862303], [-73.89276039167706, 40.61372673504289], [-73.89170627567938, 40.613492320737016], [-73.8910724088646, 40.613074164273705], [-73.89100659979499, 40.61225868837988], [-73.89039499752724, 40.612134736219815], [-73.88957275220932, 40.61159752092843], [-73.88959958460393, 40.61106195405744], [-73.8901434488547, 40.61042239129724], [-73.89085779026178, 40.61003068013709], [-73.89153573954023, 40.61001169950888], [-73.89224494858138, 40.6092846096411], [-73.89217894801519, 40.60914375831632], [-73.89247445332468, 40.609063380776114], [-73.89254411584508, 40.6085959092271], [-73.89226093134766, 40.60846511974138], [-73.89254420142206, 40.60754950607975], [-73.89237897051326, 40.607367033543404], [-73.89302034451218, 40.606841037477594], [-73.89574391743317, 40.60580943892829], [-73.89833052575445, 40.60522169603931], [-73.89989444545802, 40.60545444366191], [-73.90020834272923, 40.60569042025793], [-73.90102640941234, 40.60702967836342], [-73.9006785733769, 40.60741460820031], [-73.90055104093483, 40.60787079971115], [-73.90054170612363, 40.60906068840042], [-73.9002946326957, 40.60954702548771], [-73.90027222615545, 40.61000156523044], [-73.90143981683026, 40.61115006597819], [-73.90136288770658, 40.61166792250467], [-73.90164948608846, 40.61184161218465], [-73.9020189721703, 40.611720649066235], [-73.90323502743396, 40.61260284154154], [-73.90705063186844, 40.61606066719994], [-73.90736285136478, 40.61661030026402], [-73.90801669467804, 40.61705885084862], [-73.90781691248878, 40.61728785455154], [-73.90814477950383, 40.61715935057784], [-73.90835018382313, 40.61734196912663], [-73.90859698881715, 40.617243027255036], [-73.90874504893125, 40.6173745840596], [-73.90910309886424, 40.61714366882591], [-73.9089394032684, 40.6169962275079], [-73.90959665857473, 40.61659395843886], [-73.90909392447905, 40.61585628267539], [-73.90785703382139, 40.615204340678545], [-73.9054533044343, 40.613030432578505], [-73.90502440539116, 40.612906885835244], [-73.90426517814359, 40.61236516405117], [-73.90429041778275, 40.61201702446435], [-73.90313028454875, 40.61096754087251], [-73.90225537151616, 40.61040905386817], [-73.90164211708571, 40.605763377398695], [-73.90525824142074, 40.60490345088063], [-73.90535237517801, 40.605364406768125], [-73.90597608897636, 40.60631247795699], [-73.90804249047275, 40.60630903576632], [-73.90864064457635, 40.60668610755937], [-73.90968650481864, 40.606230764718], [-73.90982558367024, 40.606011839003486], [-73.90928476017949, 40.60559800346604], [-73.90936092375398, 40.60551094162913], [-73.90896197847664, 40.605168462971456], [-73.90855735115906, 40.6044451339835], [-73.90844819306649, 40.60447403219577], [-73.90832536368771, 40.604073385531926], [-73.91091601433962, 40.60350392874233], [-73.91356351493879, 40.603967241160134], [-73.91673065923604, 40.60678834902099], [-73.9166003789058, 40.60720527101589], [-73.91684549410319, 40.607667013874284], [-73.91670162758251, 40.607687523548705], [-73.91632311556573, 40.60866664457452], [-73.91678682148353, 40.60876952905514], [-73.91647868908606, 40.60990899970502], [-73.91605833793345, 40.61043264767556], [-73.91618500600966, 40.61054769171179], [-73.91450484661458, 40.611647940900134], [-73.91491317180653, 40.61325578836802], [-73.91477098409523, 40.61336108276648], [-73.91493046401793, 40.61395997833949], [-73.91390518827953, 40.614590737153925], [-73.91423839547473, 40.61492653761079], [-73.9166005721211, 40.613424672428174], [-73.91573181620186, 40.61183085410027], [-73.91806953681146, 40.61023919082962], [-73.91771482248359, 40.60978345352857], [-73.91799268395079, 40.60888184613637], [-73.91949325709186, 40.60793860890725], [-73.91946628282315, 40.607665202350674], [-73.91709263138468, 40.605343392438286], [-73.91435849484907, 40.602983826471146], [-73.91383772713435, 40.60289777233129], [-73.91389199914647, 40.602701751256596], [-73.91329677200764, 40.60228899952868], [-73.91074240812081, 40.60212190896557], [-73.91060516313706, 40.60199160564205], [-73.90990698296169, 40.60207887760871], [-73.90920133528917, 40.6018237589495], [-73.9077457717485, 40.60231177983337], [-73.90541180513398, 40.60271597327627], [-73.90305636451826, 40.60272325713174], [-73.90191385527385, 40.60320272192651], [-73.89948384911634, 40.603501038480296], [-73.89890302290074, 40.60393144437382], [-73.89831643057363, 40.60366279900352], [-73.89593677162397, 40.603425741544854], [-73.89526872502915, 40.60320919119514], [-73.89511522528139, 40.6034003186165], [-73.89491296013617, 40.60333328355424], [-73.89444679455355, 40.60353844207697], [-73.89392309915502, 40.60336008328162], [-73.89327282757787, 40.60351799125211], [-73.89228246124358, 40.6034355474884], [-73.89149088137182, 40.60356140373279], [-73.89073155243678, 40.60407645775369], [-73.88894922915374, 40.604611477103305], [-73.88881146892416, 40.6048754320632], [-73.88746417188942, 40.60539749635863], [-73.88482544285168, 40.60525994987086], [-73.88398472891583, 40.60556085772261], [-73.88269477576257, 40.60422803560386], [-73.882966823974, 40.60378342951196], [-73.88290067839922, 40.60351181940659], [-73.88329360505575, 40.603081449505524], [-73.88252481146786, 40.60157039753441], [-73.882482036887, 40.600877965102015], [-73.88173375807801, 40.599836957390345], [-73.8814144139251, 40.59903746805197], [-73.88125613776327, 40.59761791518901], [-73.88072761528105, 40.596667699343115], [-73.88066225151411, 40.59444670820618], [-73.8796964331722, 40.59138228238252], [-73.87935637013511, 40.5908346765762], [-73.87897546853941, 40.5908954207035], [-73.87890538097075, 40.59072777647], [-73.87931087687151, 40.59064756116568], [-73.87865304498884, 40.58742416100158], [-73.87774058819562, 40.58616705150699], [-73.87682997892084, 40.585244214839236], [-73.87674708614855, 40.58484206249299], [-73.8764687866951, 40.58484515589358], [-73.87928305958059, 40.58036176414037], [-73.87950362614393, 40.5804449160063], [-73.87970877862537, 40.58013071365151], [-73.88191314474975, 40.57954681920128], [-73.88174991903908, 40.57918387127545], [-73.88210099938215, 40.57909269284158], [-73.88276577529838, 40.579146375312305], [-73.88438809755205, 40.578621085303205], [-73.8874744288926, 40.57819275773552], [-73.88769359336247, 40.57801651073649], [-73.88885181347057, 40.578122815719894], [-73.88958292811583, 40.577804673685606], [-73.89214804534345, 40.57775928082874], [-73.89288764261639, 40.577272497949956], [-73.89426838422727, 40.57685086438938], [-73.8957803529592, 40.576628784313414], [-73.8962860649473, 40.57680603481814], [-73.89556543058977, 40.57676733661148], [-73.89610010348548, 40.57788893340618], [-73.89646658372928, 40.57809829767191], [-73.89719954396674, 40.57906878046574], [-73.89819872701462, 40.57996963558673], [-73.89816122970946, 40.58007886840621], [-73.89758268097202, 40.58005174181567], [-73.89719007353895, 40.58092825443473], [-73.8963563822781, 40.58179907801631], [-73.89625213527336, 40.58236924193025], [-73.89663948318953, 40.58344694328209], [-73.89714763176548, 40.583741347535934], [-73.89817990643071, 40.585066537371], [-73.89822934479389, 40.58556104367101], [-73.89805902120106, 40.58585478773171], [-73.8983978792908, 40.58628701164184], [-73.89827891554813, 40.58666782625523], [-73.89914814221302, 40.58775079627713], [-73.90022749855031, 40.58806130807792], [-73.90114672354083, 40.587956544974034], [-73.90212919531456, 40.58731371134056], [-73.9033162800039, 40.58713003419453], [-73.9035251886467, 40.586779493536184], [-73.90375785974443, 40.586900257110166], [-73.90538281108233, 40.58668053527286], [-73.90668961368175, 40.586885417733775], [-73.90756215149841, 40.586807514471055], [-73.91076794216411, 40.585803824996866], [-73.91132822437194, 40.585913769670185], [-73.91173790345862, 40.58626312547718], [-73.91275388094961, 40.58575631571078], [-73.91323621023406, 40.586097530152344], [-73.9152761954496, 40.58632307581844], [-73.91710933555038, 40.58590524785255], [-73.91817023951499, 40.58652612074601], [-73.92956858201858, 40.596820283918326], [-73.92815055364771, 40.59784161473843], [-73.93355116383066, 40.602687300783785], [-73.92986879816111, 40.605071362428546], [-73.9335130981299, 40.60834347121138], [-73.93423157574773, 40.60789773095507], [-73.9360462736013, 40.609514881752226], [-73.9375374840343, 40.608557410742435], [-73.944573663655, 40.61480379461198], [-73.94482770466587, 40.616046228848724], [-73.94395779725122, 40.61681632439447], [-73.94163043242698, 40.61946207606016], [-73.94172642637463, 40.62002300145711], [-73.94159170136001, 40.62017008536208], [-73.94084243385109, 40.620410496945716], [-73.94035040986468, 40.620918587477675], [-73.93957628395194, 40.62139021896527], [-73.93679641695995, 40.62232803468208], [-73.93604736973495, 40.62274048204619], [-73.93541082346937, 40.623955319903295], [-73.93344820426077, 40.62570402034464], [-73.93439440236229, 40.634826814623445]]], "type": "Polygon"}, "id": 166, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11234", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 167, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 206201040.079, "Shape_Leng": 115169.881803, "borough": "Brooklyn", "postalCode": "11234"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.1392574527846, 40.64073574187294], [-74.13901597452498, 40.64089212921173], [-74.13757575336983, 40.641001168075256], [-74.13734190629562, 40.64113650482127], [-74.13737002650039, 40.64129548136632], [-74.13449934612353, 40.641884644648606], [-74.13349719754841, 40.64171691727983], [-74.13307198834036, 40.641485216587895], [-74.13240283974991, 40.64170440545198], [-74.1312558111674, 40.64159684579315], [-74.13146200761571, 40.64131011451318], [-74.13109741839715, 40.6410364414381], [-74.13156293448236, 40.64035600048241], [-74.13101354550832, 40.64031085791635], [-74.12981761151731, 40.639518608898555], [-74.12918653141772, 40.6386711184032], [-74.12868803120729, 40.63741182420197], [-74.12894565990194, 40.63443687070981], [-74.12988812412326, 40.63300150379714], [-74.13060150152239, 40.63136512303354], [-74.13013973129323, 40.62995030226061], [-74.13203723557801, 40.62416114717866], [-74.1320751306545, 40.622702376448814], [-74.13255602901232, 40.622899218115], [-74.13327425275747, 40.622391807615436], [-74.13337022176299, 40.62246685202385], [-74.1340155008153, 40.6221563898274], [-74.13724988909266, 40.62392979313363], [-74.13756129455557, 40.621633421214234], [-74.14161653295555, 40.622165316977764], [-74.14233611854354, 40.616608661478764], [-74.145124192801, 40.61696599386999], [-74.14458465899123, 40.620666544067106], [-74.14680890980814, 40.62071386074598], [-74.14793193119893, 40.62133564511855], [-74.14691336181986, 40.622149554044], [-74.14708040444373, 40.62223340413731], [-74.14629626298431, 40.623522560974216], [-74.14580136381795, 40.62479016193245], [-74.14576716973208, 40.624957478013435], [-74.14612121096394, 40.62492974638554], [-74.14545813369205, 40.62705047790978], [-74.14566585414957, 40.630343850200966], [-74.14552324356427, 40.63305763249258], [-74.14490846034563, 40.63531331904561], [-74.14359998505894, 40.63851414178398], [-74.14083035823623, 40.63964954661993], [-74.13908356374168, 40.63970780743674], [-74.1392574527846, 40.64073574187294]]], "type": "Polygon"}, "id": 167, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10302", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 168, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 29555323.0234, "Shape_Leng": 27432.5693758, "borough": "Staten Island", "postalCode": "10302"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.8320461677147, 40.63516221299073], [-73.83244928026299, 40.63548623839095], [-73.83290395116684, 40.63721031709586], [-73.8331370435213, 40.63728310244891], [-73.83344742912753, 40.63830478576614], [-73.83342720561767, 40.63860207045579], [-73.83318792249402, 40.6388048836643], [-73.83271149863619, 40.63895022532164], [-73.83225543835212, 40.6388280852585], [-73.83126619198013, 40.638059414398754], [-73.8303512878549, 40.63760676972849], [-73.8286671937936, 40.635787055567], [-73.82827856689865, 40.63553815456154], [-73.82742927309695, 40.635343154947364], [-73.82668358632864, 40.63555837899659], [-73.82658286624907, 40.63583132985573], [-73.82580720341144, 40.6356646669182], [-73.8250039126741, 40.635843578360145], [-73.82459842740121, 40.63574124762134], [-73.82439071942795, 40.63588858447532], [-73.82416966272194, 40.63880566145019], [-73.82453114982519, 40.63914104783468], [-73.82429853502111, 40.63974728858436], [-73.823917659353, 40.639730594788524], [-73.82344703909531, 40.63907970195128], [-73.82275261184948, 40.635620737097135], [-73.82225670062651, 40.634488175353795], [-73.82141517115768, 40.63067051242451], [-73.820252149877, 40.62773887870075], [-73.82034817166313, 40.62731825194398], [-73.82013569050665, 40.627159325254716], [-73.81997063083381, 40.62746074436927], [-73.81874347733734, 40.627537567782], [-73.81868276509276, 40.62741220048061], [-73.81827317511171, 40.62758697182047], [-73.81827223635513, 40.62727889016066], [-73.81803133653845, 40.62726762092358], [-73.81814989106729, 40.626964022904126], [-73.81789834284787, 40.62674541392283], [-73.8179352375126, 40.62612763426047], [-73.81770682645298, 40.625618716115305], [-73.81688487730568, 40.625116790850605], [-73.81602789561842, 40.62431375189348], [-73.81632686788423, 40.6243035290277], [-73.81652785071695, 40.62451297007176], [-73.81702145609188, 40.62449407493959], [-73.81666670537926, 40.62431842488244], [-73.8167255385039, 40.623903782362795], [-73.81864356638617, 40.62422564034635], [-73.8186421008282, 40.624766305115166], [-73.81826167079997, 40.624773236328075], [-73.8186587705894, 40.624984944813846], [-73.81884943179936, 40.624389682508124], [-73.81921397520415, 40.624349996702975], [-73.8194725701982, 40.62406115089927], [-73.81909557070132, 40.622879351622444], [-73.81851506246552, 40.622587762541926], [-73.81845417004821, 40.62275161365748], [-73.81821831147928, 40.6222817708391], [-73.81799653958741, 40.62220827143579], [-73.81790284402676, 40.621627955319184], [-73.81623017874034, 40.62103985240268], [-73.8169674416777, 40.621472949707616], [-73.81603764709052, 40.6211595687874], [-73.81664270397395, 40.6215753105909], [-73.81636919641464, 40.62182245552234], [-73.81577866557639, 40.62132165512153], [-73.81592158484447, 40.62168203894631], [-73.81559230341628, 40.62145006618347], [-73.81547574735671, 40.6209800892615], [-73.81562408087092, 40.62043334366053], [-73.81592657556925, 40.6203810397931], [-73.81698502456, 40.62069508401016], [-73.81634426624616, 40.62035930104751], [-73.81552751300505, 40.62029090890014], [-73.81543939682493, 40.62013942836925], [-73.81690740701819, 40.61929987648627], [-73.81727317339461, 40.619259595454224], [-73.81729151963164, 40.61904539301548], [-73.81753408484839, 40.61889997468724], [-73.81758448575543, 40.61850203092291], [-73.81740183238124, 40.618169621010736], [-73.81746663308829, 40.617840897198064], [-73.81723678932676, 40.61762995109267], [-73.81734959783067, 40.61754007362319], [-73.81705873515354, 40.61712921951056], [-73.81673172992, 40.61596991407123], [-73.81651682180137, 40.61577383360054], [-73.81627964036146, 40.614910193737515], [-73.81637008248144, 40.614456182929025], [-73.81597555999902, 40.61429595952292], [-73.81562320197517, 40.614483711344], [-73.81536204856074, 40.6144027025572], [-73.814700311046, 40.614590308995616], [-73.81446156845969, 40.61493987971929], [-73.8141438707954, 40.61467856333129], [-73.81415879831164, 40.61447899555194], [-73.81448121518805, 40.61425970230088], [-73.81489932118822, 40.61429742835472], [-73.81544374500629, 40.61406865327605], [-73.8152105044256, 40.61367753261036], [-73.81459863670987, 40.613300416863275], [-73.81466875382145, 40.61311923932769], [-73.81490179881393, 40.61302801362669], [-73.8155023262266, 40.61325251683678], [-73.8158626380797, 40.61296316308884], [-73.81564157857022, 40.6126956307473], [-73.81542979838605, 40.611653994320896], [-73.81505608863, 40.61094041964456], [-73.81464369100392, 40.61086304247208], [-73.81433216393533, 40.61127204544757], [-73.8142142441882, 40.61114284954625], [-73.8145180191947, 40.610737054646954], [-73.81507140306246, 40.61058880163763], [-73.81530600825553, 40.610247157385906], [-73.8147159184557, 40.60880722976883], [-73.8148549907625, 40.60794659299648], [-73.81522452982736, 40.60703691049128], [-73.81583411978755, 40.60660239924062], [-73.81629583532282, 40.60556307738297], [-73.81664622381186, 40.60549254684831], [-73.81653257438838, 40.60588259394124], [-73.8172494706734, 40.605880634676126], [-73.81789323652629, 40.605489917873705], [-73.81809898862774, 40.60557999889492], [-73.8183297953543, 40.60501205242816], [-73.81855030596053, 40.60489272746738], [-73.81829743496733, 40.604795162351934], [-73.81814105457204, 40.60449496314396], [-73.81833917702679, 40.60398715859743], [-73.81885349700909, 40.6042443071996], [-73.81896449135209, 40.60381824254335], [-73.81838442133586, 40.60329378348629], [-73.8185410717279, 40.6026193583873], [-73.81870220028576, 40.602562355563826], [-73.81875383030732, 40.60196914837407], [-73.81858710939173, 40.601739420092905], [-73.81881036679104, 40.60130645001701], [-73.81869603981153, 40.600998275163775], [-73.81886679211583, 40.60011337330102], [-73.81916750851336, 40.599531536401855], [-73.81902456998996, 40.59912477872836], [-73.81956534614248, 40.59836603951388], [-73.81955813973703, 40.59745663997168], [-73.82034754329092, 40.59667591087384], [-73.82055285894512, 40.59621792684269], [-73.8204803609452, 40.595683689106274], [-73.82077685831352, 40.59553034321536], [-73.82129068624205, 40.59474722779063], [-73.82446924795492, 40.59511677997456], [-73.8260688589574, 40.59475928608957], [-73.82627594998777, 40.59513540172544], [-73.82718613331821, 40.59490341219166], [-73.83227052700906, 40.594609580867285], [-73.83475183525677, 40.59528502188444], [-73.83478581147536, 40.595611043413776], [-73.83442540068619, 40.5964990449256], [-73.83345896207325, 40.596933248162664], [-73.83326111401065, 40.597386101419666], [-73.83305993555302, 40.59726896273904], [-73.83278010863641, 40.59755659575], [-73.83208009424304, 40.59755412067506], [-73.83198352734216, 40.59786545912064], [-73.83116540230206, 40.59784740767436], [-73.83081971859849, 40.59729019795524], [-73.83003077700403, 40.59698661164123], [-73.83033908223307, 40.597256551797315], [-73.83043262813385, 40.59759970763304], [-73.83028750537889, 40.597834520308496], [-73.82996070904434, 40.59779919235189], [-73.82956842091703, 40.59812890728935], [-73.82596997009517, 40.599259868628316], [-73.82561317050859, 40.598632255875806], [-73.82507133442921, 40.59821833852333], [-73.8245902825405, 40.59816331356673], [-73.8242851274036, 40.598304012664194], [-73.8239990605005, 40.59875077613615], [-73.824246988255, 40.599071757484914], [-73.82378976764234, 40.6000467248043], [-73.82195003114079, 40.59977292243013], [-73.82134643299788, 40.599957945731575], [-73.8223340542257, 40.60023344774369], [-73.82443440007712, 40.600331057694376], [-73.82444916842277, 40.60079156862074], [-73.82127899207545, 40.600696525496325], [-73.82308453963573, 40.60084682138174], [-73.82401173304353, 40.60123644284785], [-73.82322839320325, 40.60144927807331], [-73.82102817062342, 40.60132856240897], [-73.82347383409838, 40.60165730084928], [-73.82362476374249, 40.60199736779739], [-73.82356970526904, 40.60226928923594], [-73.82210925714382, 40.60202138222956], [-73.82091540595813, 40.60200528272658], [-73.82158247435753, 40.60221714731398], [-73.82283384257478, 40.602294429108284], [-73.82322817790254, 40.6026462064145], [-73.82248904152617, 40.602853174631626], [-73.82077048570387, 40.602652555146705], [-73.82093093983632, 40.602859543938806], [-73.82293085814554, 40.60301432052878], [-73.82272991867323, 40.60354049121645], [-73.82063811545981, 40.60342586174021], [-73.82279714586696, 40.60374686706813], [-73.82284927193832, 40.603890226161695], [-73.82269021767023, 40.60416997713939], [-73.82248637863471, 40.60420978622131], [-73.82057241602203, 40.60404638400303], [-73.82047095616561, 40.60414542456096], [-73.82279225400157, 40.604368886403115], [-73.82291590532176, 40.60475551782758], [-73.82269506252635, 40.604949656242106], [-73.82038472115238, 40.6047688268901], [-73.82052011986814, 40.60493410981442], [-73.82232911338643, 40.60509109649188], [-73.82255143408753, 40.60539905073194], [-73.82222381242117, 40.60560448609017], [-73.8202966125698, 40.60553898993635], [-73.82290557984766, 40.605841950371314], [-73.82239283467727, 40.60642626715839], [-73.82166596151569, 40.60656139264643], [-73.82117647295036, 40.60695972703428], [-73.82126701634698, 40.60714654189395], [-73.82081901043478, 40.60761777538699], [-73.82089603822068, 40.607762947261534], [-73.82049206415032, 40.60818121173923], [-73.82047811878158, 40.608439665395046], [-73.81991909229043, 40.60894348292636], [-73.81993960991565, 40.60966493782756], [-73.8195998150891, 40.61000660026955], [-73.81929603501717, 40.6108529760515], [-73.81990083818192, 40.61105838907917], [-73.81999060265309, 40.6116557575488], [-73.82050792939062, 40.61194931400586], [-73.82031413092248, 40.61214311806505], [-73.82046395825452, 40.61209139380315], [-73.8205498121678, 40.61228469006727], [-73.8208491039499, 40.61236138620387], [-73.82110530637682, 40.6119373687133], [-73.82100591289787, 40.61165027129987], [-73.8213083556801, 40.6111581314142], [-73.82116945289837, 40.61072778320099], [-73.82069190227685, 40.61052640715268], [-73.82131704131437, 40.61035665857381], [-73.82144431101473, 40.61075521089195], [-73.82144038276941, 40.610242490103694], [-73.8216942231454, 40.61018784868427], [-73.82201328902791, 40.610522723676304], [-73.82242047010742, 40.61043355420186], [-73.8226650377088, 40.61084747903987], [-73.82273767329194, 40.610600412783505], [-73.82256391373886, 40.61033773492828], [-73.82269106141685, 40.61027027753109], [-73.8230139965043, 40.610489763564956], [-73.823059003334, 40.61090897415303], [-73.82390502362212, 40.61159964182295], [-73.82438340838102, 40.61244817830252], [-73.82455303238244, 40.61246287091618], [-73.82464979751789, 40.61296508442244], [-73.82547277758195, 40.61416001237388], [-73.82589528516904, 40.61437935045312], [-73.82632940715943, 40.61389776552049], [-73.82712537412255, 40.6134200691442], [-73.82747528390725, 40.61349276365819], [-73.82784833421942, 40.613715764702626], [-73.82743593942732, 40.61387273151868], [-73.82691410925833, 40.61383197363495], [-73.82722369660385, 40.61390386165164], [-73.82714128443325, 40.614084464563405], [-73.82744569542395, 40.614665908576804], [-73.82796374661291, 40.61469505874519], [-73.82820743836025, 40.61492413975187], [-73.82880661131092, 40.614932226132616], [-73.82901320473246, 40.61530007923226], [-73.8293821444514, 40.61516308611378], [-73.82891666440867, 40.614814059504454], [-73.8291063265065, 40.61462151721545], [-73.82960788911927, 40.61471386025377], [-73.83030606851325, 40.61513520208913], [-73.83111914346887, 40.61521146977485], [-73.83316256911262, 40.61450135604797], [-73.83425556780357, 40.613680924888676], [-73.83448830850443, 40.61409081073318], [-73.8354559180383, 40.61460805075097], [-73.83574958101626, 40.615064397186515], [-73.83668448218361, 40.61511782177996], [-73.83804114700577, 40.61555174168378], [-73.83791391444134, 40.615777603377396], [-73.83814456082514, 40.61584263810547], [-73.83773595109173, 40.61585301689553], [-73.83736203280043, 40.61608861083803], [-73.83782180803969, 40.616559376313624], [-73.83745154882139, 40.61650892838609], [-73.83719708690998, 40.61618931689962], [-73.83687635001552, 40.61642301242239], [-73.83640925054691, 40.61634539359267], [-73.83553414691055, 40.61695298173928], [-73.83500804448093, 40.61777985104327], [-73.83520728870363, 40.61805061320026], [-73.83513014502972, 40.61832442703573], [-73.83536662739648, 40.6185513319374], [-73.8352770387265, 40.61864641941015], [-73.83572410373117, 40.61911651124912], [-73.83561062974721, 40.61926869036201], [-73.83582649404059, 40.619513691411555], [-73.83577909881737, 40.6198122440371], [-73.83602319952755, 40.62052258925501], [-73.83551580139729, 40.62100401555518], [-73.83532821621226, 40.620734262206476], [-73.83502927727187, 40.620658846241284], [-73.83490287531386, 40.62119829176203], [-73.83510834365048, 40.621482331208504], [-73.83489129380472, 40.62160616293109], [-73.83477154036798, 40.62193791423994], [-73.83520585627907, 40.62266271478322], [-73.83515613381368, 40.623288059467335], [-73.83484769311798, 40.623169256711776], [-73.83454830350593, 40.62255868759726], [-73.83402398521345, 40.62242108041116], [-73.83383777602258, 40.622631495709925], [-73.83317793714794, 40.622808533656105], [-73.83334961889902, 40.62298310476571], [-73.83322961393715, 40.623001842602754], [-73.83321990340274, 40.62348633985129], [-73.83387031955378, 40.62346474692266], [-73.83384460652402, 40.623939202764376], [-73.83358677791045, 40.6241349760765], [-73.83320629178631, 40.624321590918655], [-73.83256762492285, 40.62434767910936], [-73.83228876986803, 40.624797039105445], [-73.83175390000198, 40.62450274246721], [-73.8318769497904, 40.62415855937612], [-73.83132077211982, 40.624603976608455], [-73.83110292063232, 40.62451377119537], [-73.83079144536097, 40.624958998476195], [-73.830531160836, 40.624864793342404], [-73.83065438088457, 40.62513587434107], [-73.83156392288559, 40.624929098139084], [-73.83102641676385, 40.62539591245645], [-73.83073459642765, 40.626160463665165], [-73.83107311332648, 40.62656572707079], [-73.83084090228405, 40.62667989145638], [-73.83166742363333, 40.627071429301495], [-73.83217388594491, 40.62681295191611], [-73.83207245878788, 40.62662715771063], [-73.83251763968698, 40.62668006975511], [-73.83236588087038, 40.626918807352304], [-73.8326932516098, 40.62772912311166], [-73.83257718118904, 40.62781605347386], [-73.8322782573658, 40.62763292811843], [-73.83244445874291, 40.627851412708885], [-73.83236381758402, 40.62805742539439], [-73.83191050495026, 40.62813511880665], [-73.83232325417191, 40.628230196098286], [-73.83320717995694, 40.62788969526114], [-73.83309771773219, 40.628310003321346], [-73.83288221314174, 40.62839497414744], [-73.83297628147677, 40.62874709128936], [-73.83282130050019, 40.62899645901405], [-73.83236200346624, 40.62908552449178], [-73.8321752222014, 40.62895461698754], [-73.83230862659964, 40.62932287087634], [-73.83211918316773, 40.630035790085515], [-73.83187507955799, 40.63028079479474], [-73.8319797114121, 40.630562810856375], [-73.83186639143567, 40.631038250909114], [-73.83156923133683, 40.631444895621], [-73.83163419661307, 40.631798161602134], [-73.83115471958983, 40.632651515273906], [-73.83144279251673, 40.63364394091955], [-73.83195789883244, 40.63427461817214], [-73.8320461677147, 40.63516221299073]]], "type": "Polygon"}, "id": 168, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11693", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 169, "PO_NAME": "Far Rockaway", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 46471727.1611, "Shape_Leng": 87508.7065555, "borough": "Queens", "postalCode": "11693"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0369320493547, 40.638731005639535], [-74.03595783326179, 40.63882116276057], [-74.0259173577818, 40.635710356238434], [-74.01695587546882, 40.63162136818398], [-74.01733663569169, 40.63072930460573], [-74.01634322393336, 40.63028561827755], [-74.01970490799248, 40.622184984254204], [-74.02019349186537, 40.62240141696058], [-74.02568206238226, 40.6161400713247], [-74.0257293447189, 40.6160484120423], [-74.02481596153376, 40.61559328518402], [-74.0265670759409, 40.61263422022182], [-74.02636737213506, 40.612476937049934], [-74.02710660282193, 40.61024397477883], [-74.02478376001922, 40.60969964312396], [-74.02469408762947, 40.60995967988187], [-74.02431053831675, 40.609466823413904], [-74.02140473721244, 40.60776309494511], [-74.02247769259512, 40.60667423327914], [-74.02078541386119, 40.605673702001255], [-74.0212984047616, 40.604509047829204], [-74.01864635509236, 40.60365522226062], [-74.01937562406523, 40.60274743938044], [-74.02010528750515, 40.60318016077256], [-74.0211678154996, 40.60345416002545], [-74.02964850103501, 40.604632005845865], [-74.03114754141424, 40.60528462731763], [-74.0329665875438, 40.60647272679394], [-74.03435666121626, 40.60773529056375], [-74.03465410369799, 40.60819847732276], [-74.03543022644688, 40.6086040310385], [-74.03521771677029, 40.608840259029854], [-74.03603889062705, 40.60924082752352], [-74.03680363611444, 40.61097323618582], [-74.03907800743266, 40.61324193773978], [-74.04023266775285, 40.61494424288279], [-74.04139004583679, 40.61991118481365], [-74.04167930623417, 40.6206363181136], [-74.04158400359245, 40.6213092629409], [-74.04190046324824, 40.62426818027508], [-74.0415328050361, 40.62740464114844], [-74.04106777073235, 40.630302427587], [-74.0369320493547, 40.638731005639535]]], "type": "Polygon"}, "id": 169, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11209", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 170, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 57842313.9593, "Shape_Leng": 37123.3108295, "borough": "Brooklyn", "postalCode": "11209"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.08411695355554, 40.63477563508031], [-74.08231299695774, 40.633662604483824], [-74.08045516397493, 40.6354970204262], [-74.08025897060664, 40.635861757099796], [-74.0795864528953, 40.63617260742812], [-74.0787962364903, 40.636974081557746], [-74.07988515779309, 40.633404896120254], [-74.07899178824744, 40.63319275478198], [-74.0790877468846, 40.63288558102559], [-74.07595855150826, 40.63196938594793], [-74.0765345470074, 40.6309503171836], [-74.07674860486955, 40.63022169180696], [-74.07656756515729, 40.62960925459236], [-74.07470739784952, 40.629795593687994], [-74.07482632844088, 40.631341529602004], [-74.07412008638157, 40.63294053184023], [-74.07414195690127, 40.63439338703619], [-74.07331406992344, 40.63484097712211], [-74.0733903652727, 40.635791450888675], [-74.07314732590855, 40.63581154955321], [-74.07283185037487, 40.63366605172496], [-74.07332821142526, 40.632058456552556], [-74.0729847449692, 40.630308988720216], [-74.07277510792908, 40.6302421553494], [-74.07292093804601, 40.62996714416178], [-74.07229222728256, 40.62715171887229], [-74.07271250718091, 40.627068291707126], [-74.07217640857814, 40.624622125929754], [-74.06976163532997, 40.621295177688644], [-74.066199080303, 40.618722493032635], [-74.06557280608021, 40.61927456144635], [-74.06544585899941, 40.61920263805281], [-74.06668207742837, 40.618067513596486], [-74.06642241179627, 40.61787749912807], [-74.0660499137457, 40.618195426535394], [-74.06570212512241, 40.61795840882577], [-74.06544767471497, 40.61810030586831], [-74.06513859643034, 40.617891446208844], [-74.06514762616945, 40.617543831913814], [-74.06419813619591, 40.61690094837577], [-74.06381267312797, 40.61682986965455], [-74.06361238121059, 40.61655013836265], [-74.06395260232838, 40.61634040464862], [-74.06633260868401, 40.61737934317961], [-74.07095381745357, 40.62043161867844], [-74.0718465149808, 40.61860989869058], [-74.07332111337846, 40.61787429652813], [-74.07304252714816, 40.617515611766635], [-74.07439526040513, 40.61690862427275], [-74.07543358555328, 40.61577996203933], [-74.07943905597122, 40.60856790258087], [-74.08145063205805, 40.606310141368766], [-74.08506085548882, 40.601559240272955], [-74.08724759599025, 40.596310525619536], [-74.08751830371813, 40.595995373540596], [-74.08767547111462, 40.59600774759461], [-74.08843376856323, 40.594801943311005], [-74.09121720735949, 40.59223372005393], [-74.09157723116296, 40.592419878970205], [-74.09224973920543, 40.591937153967024], [-74.09719603400322, 40.58830340243604], [-74.09692001632116, 40.58816174724862], [-74.1017885140325, 40.58461811691485], [-74.10200833967431, 40.58480050594142], [-74.10163936883016, 40.58514999947057], [-74.10068622874688, 40.58715642192401], [-74.10019305704691, 40.5877641636715], [-74.10207990507132, 40.58874176408541], [-74.10479979884636, 40.58628475100038], [-74.10924835606319, 40.58267843178866], [-74.11117352313822, 40.58184894721896], [-74.11316883483221, 40.580700338640625], [-74.11564153205694, 40.578470380559295], [-74.11687541028802, 40.57825759233682], [-74.11756895569482, 40.57771363490176], [-74.11783132808223, 40.57782712041558], [-74.11827650483389, 40.57814451765592], [-74.11894389581546, 40.58045534719301], [-74.12325042759959, 40.585117296052005], [-74.11539950758252, 40.59616551365631], [-74.11479154825771, 40.59659509857108], [-74.11132130867034, 40.597551549875334], [-74.11130226262841, 40.59817129577327], [-74.11190979662166, 40.59867205401169], [-74.11338334048796, 40.60057052147872], [-74.10987034108673, 40.601511132157846], [-74.10829116898294, 40.601716036600756], [-74.10191253166754, 40.60107343683074], [-74.10049267267941, 40.60153197620366], [-74.10064159179376, 40.60201193345814], [-74.10011567688501, 40.60231141855471], [-74.09958025012097, 40.60290263377301], [-74.10023259475311, 40.603043558607204], [-74.100467078696, 40.603269717329646], [-74.10055923458754, 40.60380693981721], [-74.10036246164529, 40.60402606035886], [-74.09959304279982, 40.60403410045075], [-74.09923318837792, 40.60385057635441], [-74.09915700652662, 40.603110577373855], [-74.09803249838505, 40.6030978946425], [-74.09655870459103, 40.60352851145478], [-74.09578179943593, 40.603447828158096], [-74.09501900910321, 40.60358787572223], [-74.0948378269474, 40.604270662814855], [-74.09350520642339, 40.60412667876852], [-74.09351427271007, 40.604491443300006], [-74.09389952486175, 40.60450868757819], [-74.0939476252692, 40.604763470888216], [-74.09430834087716, 40.60480398443798], [-74.0945811299739, 40.60571371647596], [-74.09489089411962, 40.6056159534935], [-74.0952037870999, 40.60581138813833], [-74.0948959365706, 40.60667554163508], [-74.09537877456034, 40.607136445264956], [-74.09661739406572, 40.606376589286796], [-74.0970025263412, 40.605788519208986], [-74.09747399784818, 40.605726779447245], [-74.09696867469697, 40.606992281274884], [-74.09630492248752, 40.60751169771207], [-74.096709468857, 40.60803532322967], [-74.0966868248505, 40.608283302839304], [-74.0960256322965, 40.60853407619866], [-74.096264227976, 40.60887377235493], [-74.09494032462285, 40.60930543020453], [-74.09502723755783, 40.60945540515186], [-74.09546866622867, 40.6095302005153], [-74.09711575027713, 40.6092307055523], [-74.09742188829799, 40.61026128116718], [-74.09810386457508, 40.610960196798516], [-74.09591938554844, 40.61099962918222], [-74.09431002060059, 40.61081423862916], [-74.09284373139658, 40.61044823918792], [-74.09083982025606, 40.60968855540557], [-74.0899323970579, 40.61105117765211], [-74.09063022706019, 40.611338527248115], [-74.0901890890249, 40.61194723697509], [-74.08973222007762, 40.61209471816906], [-74.08973233798488, 40.6122852891699], [-74.08866163366454, 40.613693004874214], [-74.09032120741684, 40.61417934161214], [-74.09014058143607, 40.61483467938462], [-74.09430228935642, 40.61665561132307], [-74.0940714221185, 40.61770370732983], [-74.09338662155758, 40.61830952306381], [-74.0927840067148, 40.618258586774004], [-74.09098193388115, 40.617158356596526], [-74.08741338415828, 40.61592934404349], [-74.08659181925894, 40.61712743304503], [-74.08617116563447, 40.618074251766004], [-74.08604124312534, 40.61882019752421], [-74.08666976061156, 40.618972568107], [-74.08678317262586, 40.61843448337442], [-74.0876119765532, 40.618494187808345], [-74.08751608158185, 40.61906472020557], [-74.08868306848913, 40.619599396302014], [-74.08873083681462, 40.61984409041572], [-74.08942031481385, 40.62030736136411], [-74.088683797567, 40.62099849361718], [-74.08851516959358, 40.622965904760136], [-74.08891408374885, 40.62772932199082], [-74.08850754073677, 40.62891861490711], [-74.0868223452907, 40.63031787605686], [-74.08807764415978, 40.63108073865514], [-74.08574928574441, 40.63395557885829], [-74.0852008154867, 40.6337624216999], [-74.08411695355554, 40.63477563508031]]], "type": "Polygon"}, "id": 170, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10304", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 171, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 98226679.797, "Shape_Leng": 85662.2596497, "borough": "Staten Island", "postalCode": "10304"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.11966871775124, 40.621744945351445], [-74.11912980288486, 40.62018749534049], [-74.11787549050418, 40.61787751470544], [-74.11499466877346, 40.61817179993564], [-74.11465594046234, 40.61804892354041], [-74.11414569933389, 40.61374154491067], [-74.11337449309582, 40.613804488279975], [-74.11314164044288, 40.612894950231656], [-74.11290834175517, 40.6127009424676], [-74.11425097551239, 40.61235969668317], [-74.11694081251957, 40.612155342231134], [-74.11683551663671, 40.611428609173416], [-74.1157974213881, 40.61165149336422], [-74.11422088416863, 40.61167721289254], [-74.1132123967903, 40.61147288619752], [-74.11182198284773, 40.61089664344505], [-74.11096857966352, 40.60728389922895], [-74.11123976452276, 40.60646658051819], [-74.11487058849146, 40.60213667486271], [-74.11352056582595, 40.600732683664596], [-74.11190979662166, 40.59867205401169], [-74.11133156629758, 40.598210202407714], [-74.11127635205743, 40.5978438969429], [-74.11132130867034, 40.597551549875334], [-74.11479154825771, 40.59659509857108], [-74.11539950758252, 40.59616551365631], [-74.12325042759959, 40.585117296052005], [-74.12159968189583, 40.58333041697764], [-74.12384003133488, 40.582852160717145], [-74.12537736104863, 40.579612306170795], [-74.12615586268826, 40.58054206900359], [-74.12639458222276, 40.58251235839079], [-74.12709783186818, 40.58251223366985], [-74.12768765111382, 40.58297794161856], [-74.12938537150991, 40.58184796484682], [-74.13040043374606, 40.58275898582699], [-74.13150773279719, 40.582097083446136], [-74.13302393255897, 40.58220471572367], [-74.13363689213634, 40.58189113054343], [-74.13522768289484, 40.581765640640036], [-74.1368304586666, 40.578206009741145], [-74.14331528318299, 40.57661176468076], [-74.14348075260055, 40.57649065899351], [-74.14337392068634, 40.57592916883573], [-74.1455414526164, 40.575665882511885], [-74.14664973202316, 40.57597245465565], [-74.14701639248543, 40.57574897265769], [-74.14795692154094, 40.5756134968221], [-74.14682386166218, 40.57421928972708], [-74.1471128553086, 40.5735063970157], [-74.1470160985324, 40.57323308072798], [-74.14668537219549, 40.57319669271172], [-74.14655159870219, 40.573016892465105], [-74.14725307893416, 40.5714349511277], [-74.14789717745306, 40.5708872936781], [-74.14966960590068, 40.57137178997972], [-74.15168601185985, 40.57076299020408], [-74.16249900296334, 40.56678798945718], [-74.16419300642193, 40.565491991916716], [-74.16499899301166, 40.56153901242022], [-74.16589405231733, 40.560283373488396], [-74.16982656641822, 40.56107801651061], [-74.16978726179794, 40.56597371760547], [-74.1742985296954, 40.56617649797603], [-74.17519517595036, 40.56292493372601], [-74.17645306622114, 40.563187017526644], [-74.1780993411067, 40.56404878009833], [-74.18139493319241, 40.56523798926154], [-74.18273137604338, 40.565493664842464], [-74.18386986524995, 40.56529266223248], [-74.18528912253679, 40.56453590545195], [-74.18938450216073, 40.563625808840825], [-74.19080976614559, 40.562635780273844], [-74.19163585053677, 40.562520148733626], [-74.19258646930356, 40.56264006241996], [-74.19366751495104, 40.56595678021538], [-74.19937851769299, 40.5604086874979], [-74.19957504080847, 40.56058677677623], [-74.20050495815696, 40.559821751727846], [-74.20149428983338, 40.55932265963928], [-74.20451433339328, 40.558971209097], [-74.20639016681588, 40.55827129678442], [-74.21016542772884, 40.55766268505792], [-74.21154341753707, 40.55717948645005], [-74.21184995488771, 40.557276820570145], [-74.21268640780507, 40.55842642006838], [-74.21312139800514, 40.558608214749], [-74.21237272886951, 40.55920232568852], [-74.21220954516632, 40.55973643435347], [-74.2118981991143, 40.55979559125347], [-74.21170335904563, 40.56016052309947], [-74.21157338026468, 40.56125439191276], [-74.21120683174667, 40.56201943746502], [-74.21152553288805, 40.56350335696415], [-74.2111487320569, 40.56406199933733], [-74.2108220444403, 40.5653789306552], [-74.20898918605947, 40.569001178947225], [-74.20890374701324, 40.56966282127067], [-74.20821147110628, 40.570717314200465], [-74.20708998542575, 40.57142845262292], [-74.20767701082637, 40.57360000819885], [-74.20726702633442, 40.57466228264446], [-74.20753239103047, 40.57515525719886], [-74.20700933738199, 40.575809435893845], [-74.20714388693885, 40.57635916580687], [-74.20682878974358, 40.57663579811358], [-74.20676908184173, 40.57691636204337], [-74.20694232503723, 40.57718625225374], [-74.20644516278605, 40.57763814400167], [-74.20609057285549, 40.57879860850214], [-74.20603837669272, 40.580433852033515], [-74.20575599405387, 40.58107215592544], [-74.20553530728458, 40.58111075306791], [-74.20526040831358, 40.581449119307294], [-74.2046115284568, 40.583534493370166], [-74.20456344526687, 40.584042135322996], [-74.20475039445768, 40.58428838797892], [-74.2044670241014, 40.584592588720156], [-74.20455913556694, 40.58519065321036], [-74.20431767567473, 40.58623284998757], [-74.20434601902393, 40.58738448841152], [-74.20464785041202, 40.58815891760229], [-74.20432500605517, 40.5886287335939], [-74.20432656980373, 40.58913981155848], [-74.20446846533072, 40.58919058743506], [-74.20410034504887, 40.589840103033616], [-74.20386090503786, 40.58980356421313], [-74.20359731704625, 40.59021736919266], [-74.20279583747472, 40.5908502403902], [-74.20248487545398, 40.59073170778741], [-74.20209492039243, 40.59092248891015], [-74.20217758381963, 40.59130423652441], [-74.20201300623722, 40.59182875693173], [-74.2010279649508, 40.59285574150511], [-74.20078915448312, 40.59287052241527], [-74.20055798367206, 40.59335537087094], [-74.19973943066846, 40.59394465401805], [-74.1995160180639, 40.594390295970335], [-74.19877171306022, 40.59496376865479], [-74.19795004352324, 40.59647037481049], [-74.19751835264195, 40.596803544555456], [-74.19738556836299, 40.5972097617136], [-74.19752234257503, 40.5973647780831], [-74.1974963164955, 40.59772431590655], [-74.19729947001092, 40.59802004956033], [-74.19745283875515, 40.598588984402866], [-74.19740114062222, 40.59873195766631], [-74.19703749858925, 40.59873057715401], [-74.19722352115376, 40.59891098975636], [-74.19709326795393, 40.5992021159939], [-74.19719041840555, 40.60017580093413], [-74.19684914474104, 40.60141292317044], [-74.19651915025935, 40.6015113623189], [-74.1964316247242, 40.601710298208154], [-74.19705560049127, 40.6016472712375], [-74.19656413230017, 40.60195352751528], [-74.19652120689588, 40.60219885242859], [-74.19616789129061, 40.60208413759628], [-74.19595112808268, 40.60235795429686], [-74.19627317467767, 40.60260585221063], [-74.19600218048642, 40.60298748860972], [-74.19600322255339, 40.60332393890046], [-74.19625215515003, 40.60348345170066], [-74.1959372830874, 40.60354188184163], [-74.1967397720861, 40.60528165005176], [-74.19764086146394, 40.605821277590884], [-74.19782936801757, 40.60627451211193], [-74.19825279647775, 40.60667809257234], [-74.1985428525994, 40.60717851014281], [-74.19866744021121, 40.608238270924446], [-74.19836334586522, 40.60938971417834], [-74.19803062361655, 40.609907199325406], [-74.19746188046796, 40.61038031424878], [-74.19747999516461, 40.61079863487876], [-74.1972571223985, 40.611245211694545], [-74.19694137564082, 40.611500312213785], [-74.19614557715677, 40.61171622808623], [-74.19582827128299, 40.612164295949434], [-74.19555719429616, 40.61380604860888], [-74.19579891333834, 40.61414943979531], [-74.19579268262613, 40.61463988886369], [-74.19614907750655, 40.614851561596325], [-74.1961495790956, 40.61545216916574], [-74.19666888285266, 40.6155712792694], [-74.19733727353658, 40.61619638186813], [-74.19750840691637, 40.616155421233444], [-74.19806035225878, 40.61655732236869], [-74.19898378734021, 40.616865484125256], [-74.20082811943813, 40.61709396516353], [-74.20087523552593, 40.61810034971986], [-74.20055315714225, 40.61799281239652], [-74.20035218530701, 40.618342214554396], [-74.20083961436566, 40.618804086908064], [-74.20068022431292, 40.61916815851352], [-74.20106880861199, 40.62037209270683], [-74.20050625820981, 40.62030004106178], [-74.20043706652292, 40.6205368191067], [-74.20087347566894, 40.62059079024945], [-74.20125818232485, 40.62155445926437], [-74.20143246742762, 40.62161226924839], [-74.20123069238433, 40.62207445206017], [-74.20127574809389, 40.62268835129935], [-74.20154592619099, 40.62269782242735], [-74.20163386749562, 40.62323257952134], [-74.2015849269087, 40.623497955679994], [-74.20134380058063, 40.62355237176035], [-74.20139739937756, 40.623736086224056], [-74.20107613178197, 40.624078032139735], [-74.20106119231613, 40.62589552310239], [-74.20118196190704, 40.62611001885234], [-74.2014168855414, 40.62607010971624], [-74.20096679566292, 40.629359830973115], [-74.20045096613383, 40.62971007271246], [-74.2001381181036, 40.63148224576309], [-74.19946531692831, 40.632233134316195], [-74.19842461946885, 40.63287277262543], [-74.19834325117681, 40.633141316156596], [-74.19795939407835, 40.633266939438805], [-74.19759136992661, 40.63308109968029], [-74.1972871420449, 40.63329151923341], [-74.19727252792998, 40.63378755602143], [-74.19647002447708, 40.63413541106692], [-74.19591572521412, 40.63518722379468], [-74.18651424515708, 40.63019582920644], [-74.18670354430307, 40.63010795435427], [-74.18606637720637, 40.629335334772854], [-74.18501070575266, 40.629012029302714], [-74.1807388295791, 40.6265638976272], [-74.17954953634974, 40.62568936432704], [-74.17855171157026, 40.62466109507154], [-74.17688638201768, 40.62542012123092], [-74.17198003995595, 40.62304399491053], [-74.16534535898931, 40.62023156413895], [-74.16498584051807, 40.621619374381545], [-74.15543694630182, 40.62007333293142], [-74.1542906025816, 40.61930000514399], [-74.15364647315168, 40.61986913318943], [-74.15094688646127, 40.621587194006], [-74.14929915095475, 40.623074222894644], [-74.1487680484165, 40.625104771201464], [-74.14576716973208, 40.624957478013435], [-74.14619717005692, 40.623723439358564], [-74.14708040444373, 40.62223340413731], [-74.14691336181986, 40.622149554044], [-74.14793193119893, 40.62133564511855], [-74.14680890980814, 40.62071386074598], [-74.14458465899123, 40.620666544067106], [-74.145124192801, 40.61696599386999], [-74.14233611854354, 40.616608661478764], [-74.14161653295555, 40.622165316977764], [-74.13756129455557, 40.621633421214234], [-74.13724988909266, 40.62392979313363], [-74.1340155008153, 40.6221563898274], [-74.13337022176299, 40.62246685202385], [-74.13327425275747, 40.622391807615436], [-74.13255602901232, 40.622899218115], [-74.1320751306545, 40.622702376448814], [-74.13205806868372, 40.62338651209159], [-74.12474186313138, 40.62395505145953], [-74.12469733709862, 40.62368099467707], [-74.1220445676835, 40.62418444011951], [-74.12147134231255, 40.62287266844999], [-74.12007827222492, 40.621667053667444], [-74.11966871775124, 40.621744945351445]]], "type": "Polygon"}, "id": 171, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10314", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 172, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 473985727.133, "Shape_Leng": 126071.69007, "borough": "Staten Island", "postalCode": "10314"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.84075859919754, 40.62536401470085], [-73.8430616563774, 40.62793345379111], [-73.84421883652712, 40.629956577474566], [-73.84249764661078, 40.631777590995256], [-73.8362671169534, 40.633592245689705], [-73.83592083639894, 40.633353922737975], [-73.83550635866244, 40.632639842494854], [-73.83954403906105, 40.6267790883856], [-73.84068750537323, 40.62722991260559], [-73.84158719804488, 40.62810319708674], [-73.84181286054024, 40.62801101886501], [-73.84084493455642, 40.62666198276184], [-73.84009978973221, 40.62643633179061], [-73.84075859919754, 40.62536401470085]]], "type": "Polygon"}, "id": 172, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11693", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 173, "PO_NAME": "Far Rockaway", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 3497515.77978, "Shape_Leng": 9479.91727716, "borough": "Brooklyn", "postalCode": "11693"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01634322393336, 40.63028561827755], [-74.01604821101056, 40.63103290457316], [-73.99728484943167, 40.619711371605604], [-74.0008240121102, 40.61631365079717], [-73.99994343446025, 40.61578209700789], [-74.00019136367864, 40.61495040639149], [-74.00144909935918, 40.61571074142207], [-74.01244819426924, 40.605141838994484], [-74.01452089288213, 40.602812680403495], [-74.01726847768064, 40.60349992370838], [-74.01832463814262, 40.60392563230955], [-74.01864635509236, 40.60365522226062], [-74.0212984047616, 40.604509047829204], [-74.02078541386119, 40.605673702001255], [-74.02247769259512, 40.60667423327914], [-74.02140473721244, 40.60776309494511], [-74.02431053831675, 40.609466823413904], [-74.02469408762947, 40.60995967988187], [-74.02478376001922, 40.60969964312396], [-74.02710660282193, 40.61024397477883], [-74.02636737213506, 40.612476937049934], [-74.0265670759409, 40.61263422022182], [-74.02481596153376, 40.61559328518402], [-74.0257293447189, 40.6160484120423], [-74.02568206238226, 40.6161400713247], [-74.02019349186537, 40.62240141696058], [-74.01970490799248, 40.622184984254204], [-74.01634322393336, 40.63028561827755]]], "type": "Polygon"}, "id": 173, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11228", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 174, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 43893024.7311, "Shape_Leng": 29618.4367787, "borough": "Brooklyn", "postalCode": "11228"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.76740258901035, 40.61546070246518], [-73.76965323214249, 40.61563889877444], [-73.77073107265096, 40.61596252531623], [-73.77060167255269, 40.616722631699716], [-73.76917105367488, 40.61905326090487], [-73.76824371372958, 40.62013721138197], [-73.7674415436336, 40.62054212467744], [-73.76711355462255, 40.62051520052953], [-73.7660833842681, 40.61567705189922], [-73.76740258901035, 40.61546070246518]]], "type": "Polygon"}, "id": 174, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11096", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 175, "PO_NAME": "Inwood", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 1512446.30548, "Shape_Leng": 5205.04677988, "borough": "Queens", "postalCode": "11096"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.06361238121059, 40.61655013836265], [-74.06138779375307, 40.61449526912127], [-74.06061626954256, 40.612919801488815], [-74.06047322023255, 40.6120973145093], [-74.0593188923321, 40.61162052980136], [-74.05892163365947, 40.61105606394854], [-74.05903014608234, 40.61080083019722], [-74.05889578838581, 40.6105104530135], [-74.05684051861994, 40.608512025400806], [-74.05632338584148, 40.60720905389503], [-74.05544910940662, 40.60650030814537], [-74.05379258392972, 40.60590234918299], [-74.05360410688556, 40.60529625629921], [-74.05377843434074, 40.60468862508839], [-74.0529727155428, 40.60167673915929], [-74.05332029862986, 40.60055578921944], [-74.05224771870232, 40.59972414149831], [-74.05261563618662, 40.5997008239115], [-74.05261975580378, 40.599532843066726], [-74.05371794868734, 40.598662396014724], [-74.05430167260153, 40.59862054635496], [-74.0553626800746, 40.5978579161294], [-74.05917940360865, 40.59439525983015], [-74.05965672585782, 40.593893540585306], [-74.05963229204279, 40.59369751120648], [-74.06041132311259, 40.59333793067952], [-74.06213528899835, 40.591923387311255], [-74.06479658091786, 40.589138228701465], [-74.06494103588253, 40.58888633107021], [-74.06453824295077, 40.5884326293315], [-74.06531820032394, 40.58815579181486], [-74.06617274276732, 40.5875610365447], [-74.0692835451186, 40.584472464105446], [-74.07019744403739, 40.583780479908086], [-74.07082119882226, 40.58307815217838], [-74.07132172385231, 40.58217597762123], [-74.0709056769899, 40.58175784983253], [-74.07144374954771, 40.58193162473608], [-74.07368671253526, 40.580237924989426], [-74.07544647577612, 40.57845056034542], [-74.07554954084387, 40.57818075492365], [-74.07525604176729, 40.578001536965544], [-74.07532594964363, 40.57789680698078], [-74.07601821697614, 40.57808526212778], [-74.07680809333539, 40.5774715173927], [-74.07674311078331, 40.577366511029915], [-74.07740460372491, 40.5769755151453], [-74.07906933873925, 40.575475659867465], [-74.0786793465814, 40.575081837290945], [-74.07926602945545, 40.57554960598857], [-74.08107710548084, 40.57445420629944], [-74.08592854120067, 40.57025341645811], [-74.08681130519243, 40.56898110298511], [-74.08647752395214, 40.568659390830646], [-74.08728506204224, 40.56907510191662], [-74.08752072375454, 40.569029490202205], [-74.08864645953238, 40.568147898756195], [-74.08922437372593, 40.56702598824254], [-74.08995958160087, 40.567326446069806], [-74.09081922008552, 40.56674454073151], [-74.09268669818681, 40.56806606507483], [-74.09254222368665, 40.568351858847336], [-74.08876626487576, 40.57237450158037], [-74.0858020443614, 40.57413472535253], [-74.09213439184857, 40.577398231982386], [-74.09016208923669, 40.57923618797113], [-74.0967702435816, 40.58256301808784], [-74.09771864041494, 40.58181427766435], [-74.1017885140325, 40.58461811691485], [-74.09692001632116, 40.58816174724862], [-74.09719603400322, 40.58830340243604], [-74.09224973920543, 40.591937153967024], [-74.09157723116296, 40.592419878970205], [-74.09121720735949, 40.59223372005393], [-74.08843376856323, 40.594801943311005], [-74.08767547111462, 40.59600774759461], [-74.08751830371813, 40.595995373540596], [-74.08724759599025, 40.596310525619536], [-74.08506085548882, 40.601559240272955], [-74.08145063205805, 40.606310141368766], [-74.07943905597122, 40.60856790258087], [-74.07543358555328, 40.61577996203933], [-74.07439526040513, 40.61690862427275], [-74.07304252714816, 40.617515611766635], [-74.07332111337846, 40.61787429652813], [-74.0718465149808, 40.61860989869058], [-74.07095381745357, 40.62043161867844], [-74.06633260868401, 40.61737934317961], [-74.06395260232838, 40.61634040464862], [-74.06361238121059, 40.61655013836265]]], "type": "Polygon"}, "id": 175, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10305", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 176, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 111441829.317, "Shape_Leng": 55569.9529353, "borough": "Staten Island", "postalCode": "10305"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94482770466587, 40.616046228848724], [-73.944573663655, 40.61480379461198], [-73.9375374840343, 40.608557410742435], [-73.9360462736013, 40.609514881752226], [-73.93423157574773, 40.60789773095507], [-73.9335130981299, 40.60834347121138], [-73.92986879816111, 40.605071362428546], [-73.93355116383066, 40.602687300783785], [-73.92815055364771, 40.59784161473843], [-73.92956858201858, 40.596820283918326], [-73.9180421402296, 40.58642487090091], [-73.9190537784005, 40.586025439374524], [-73.91967305033117, 40.58614085466704], [-73.92043132820335, 40.58604514509913], [-73.92109522303153, 40.58573025298696], [-73.92250252973291, 40.585969913567624], [-73.92292533580869, 40.58581623720521], [-73.92353508780137, 40.58590954985399], [-73.92467997453055, 40.5856124082806], [-73.9251935310887, 40.58579299443836], [-73.92707369007826, 40.587527179139535], [-73.92773591491739, 40.588649600422485], [-73.928974953907, 40.58927489685507], [-73.92981583399862, 40.589403067249464], [-73.93029761772887, 40.58973507913666], [-73.93054383768633, 40.59026568605605], [-73.93046713064565, 40.59159406918872], [-73.93028686279892, 40.59244240505715], [-73.92978077307372, 40.59307768257879], [-73.92991377174027, 40.593773762794925], [-73.93046798848057, 40.59436769006988], [-73.9324101020797, 40.59488635325017], [-73.93301117561151, 40.594638725495926], [-73.95899773739725, 40.591784097706565], [-73.96019731527052, 40.598524077957215], [-73.96073208615931, 40.605469746402356], [-73.96173196597769, 40.60535798490666], [-73.96190348017427, 40.60748944367323], [-73.96237947052639, 40.609986391075694], [-73.94978379491096, 40.61137176824241], [-73.95026514745597, 40.61392437001534], [-73.94752003052731, 40.61416131213138], [-73.94482770466587, 40.616046228848724]]], "type": "Polygon"}, "id": 176, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11229", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 177, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 60119326.147, "Shape_Leng": 43382.1533931, "borough": "Brooklyn", "postalCode": "11229"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9872548685586, 40.60724420500403], [-73.98254799335999, 40.582376801278826], [-73.98336380825305, 40.58296289402421], [-73.9839427760828, 40.5829148875287], [-73.98558515063503, 40.58139032489229], [-73.98576481168308, 40.581454990498855], [-73.98587146705015, 40.58181537169915], [-73.98693935413499, 40.58117153433967], [-73.98756661880333, 40.580029995326115], [-73.98807373451098, 40.57958061016347], [-73.98953916287981, 40.58042373434516], [-73.98979671824928, 40.58039064073877], [-73.99023604191282, 40.5807773116637], [-73.99169697917611, 40.58102905452607], [-73.9916847092679, 40.58146982946096], [-73.99203556950576, 40.58147957097124], [-73.99200824882618, 40.58177787030094], [-73.99173891588852, 40.58184820377484], [-73.99036806098732, 40.58414384451675], [-73.99027162428685, 40.5846341453883], [-73.99404728888403, 40.58281061476758], [-73.99596530321034, 40.58212166776639], [-74.00037567674043, 40.58315571487648], [-74.00035598059823, 40.584165915195314], [-73.9999190850719, 40.584557067156894], [-73.99823142956313, 40.58536243322456], [-73.99941911670665, 40.58561364640427], [-73.9996579029339, 40.58600309315761], [-73.99950605421789, 40.58631290509649], [-73.99816872982727, 40.586569846924014], [-73.99314898875136, 40.5887422589848], [-73.99433830712263, 40.58844689808008], [-73.99689652763165, 40.58729945698398], [-73.99406954057898, 40.588687720464485], [-73.9942097019152, 40.58886961980099], [-73.99513001657346, 40.58846733121489], [-73.99522016777377, 40.58863102491541], [-73.99490781709446, 40.58879062203969], [-73.99537723723662, 40.58938892609722], [-74.00015986799063, 40.58699589092847], [-74.00011441761104, 40.586537747894205], [-74.00041880254611, 40.58651064503463], [-74.00041573412189, 40.58713594869036], [-73.99763937936079, 40.58846333800267], [-73.9980250949155, 40.5884116606468], [-73.9986607703284, 40.5891992359234], [-73.99925106925195, 40.58894224546812], [-73.99945028109917, 40.58921672607098], [-73.99849207636102, 40.58968440420879], [-73.99878294376622, 40.590305297651256], [-73.99844299138853, 40.59024108444844], [-73.99800959060512, 40.59084730900468], [-73.99714740259155, 40.591300434934034], [-73.99717627659587, 40.59155861109392], [-73.99756962103106, 40.591908417436485], [-73.999264414597, 40.591123935754986], [-73.99990958896791, 40.59115686209682], [-74.00021658639645, 40.591373776314065], [-74.00007222695231, 40.59169830157418], [-73.99897579815286, 40.592402283561434], [-73.9993114301632, 40.59258234562192], [-73.99949086531308, 40.592951740151214], [-73.99859218473287, 40.59355315675367], [-74.00110197906211, 40.592525029520274], [-74.00316842549418, 40.59559250314306], [-74.00528300854363, 40.59733054293515], [-74.00965481467237, 40.60007582459672], [-74.01228104074882, 40.601355940950114], [-74.01395114688108, 40.60186354847844], [-74.01660468028025, 40.60239380766354], [-74.0184128504529, 40.6023764519941], [-74.01937562406523, 40.60274743938044], [-74.01832463814262, 40.60392563230955], [-74.01726847768064, 40.60349992370838], [-74.01452089288213, 40.602812680403495], [-74.01244819426924, 40.605141838994484], [-74.00144909935918, 40.61571074142207], [-74.00019136367864, 40.61495040639149], [-73.99994343446025, 40.61578209700789], [-73.98733916867984, 40.60816830796771], [-73.98842267652775, 40.60711916956801], [-73.9872548685586, 40.60724420500403]]], "type": "Polygon"}, "id": 177, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11214", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 178, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 61096539.3863, "Shape_Leng": 52861.7542475, "borough": "Brooklyn", "postalCode": "11214"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.74690978489082, 40.611725181962406], [-73.74654302449439, 40.61136727423217], [-73.74485059948927, 40.6120380852545], [-73.74213175469626, 40.60761668744551], [-73.74008697042036, 40.60580300397505], [-73.7374856135058, 40.602332294739654], [-73.73698668904836, 40.596229388896695], [-73.73653575784341, 40.59453073515484], [-73.73764681693041, 40.59441409150027], [-73.73820152427014, 40.59454024614051], [-73.73847313518294, 40.59437343146648], [-73.73907280032013, 40.59459627290465], [-73.73929321866135, 40.59445404329611], [-73.73992214371052, 40.59463497852438], [-73.74013578995697, 40.59451158900637], [-73.74062831513555, 40.59472166355487], [-73.74090169240502, 40.59448825769641], [-73.74089520073362, 40.59461159450345], [-73.74134290735117, 40.59480086991304], [-73.74162090806497, 40.59478650875579], [-73.74169766085468, 40.59464175594927], [-73.74222602760337, 40.59490589526594], [-73.74242032149256, 40.594869962270344], [-73.74238741173671, 40.5947292712668], [-73.74334950331257, 40.594795158809404], [-73.74348441956553, 40.59459053261873], [-73.74461963358343, 40.59464732591331], [-73.74661070598641, 40.59429018655354], [-73.74896921029504, 40.593397481298425], [-73.75022537491962, 40.59270825129363], [-73.75157708198756, 40.591407286514546], [-73.75352987725348, 40.59094649399144], [-73.75595462512342, 40.590874210557715], [-73.75785284828082, 40.59135047059774], [-73.75992508156928, 40.59161626226846], [-73.7613431114882, 40.59172664805027], [-73.76291218696524, 40.59161529970886], [-73.76792705148864, 40.590733832648084], [-73.76879558044803, 40.590867265639666], [-73.77088020183653, 40.590553852617354], [-73.77591759110413, 40.59017830556107], [-73.77583288266254, 40.59031988944403], [-73.77666243326564, 40.590066341633836], [-73.7774555892698, 40.590083395678526], [-73.77918494272966, 40.58959311765778], [-73.78043035935826, 40.58959663620234], [-73.78450510688793, 40.58848452375301], [-73.78737985787905, 40.58799367231914], [-73.78839584458285, 40.58765929686018], [-73.78860477479543, 40.58880818336971], [-73.78598237111474, 40.589627544194904], [-73.78624719383373, 40.59208839414978], [-73.78655522071979, 40.59207780470741], [-73.78651437256597, 40.59249044601935], [-73.78429107603733, 40.592446076495754], [-73.78479617448781, 40.597704193699414], [-73.78914764363888, 40.597508839578474], [-73.78916558512677, 40.59788277051028], [-73.7871023072392, 40.59944331373974], [-73.78681970350439, 40.59987037532393], [-73.78597108929587, 40.60031650301245], [-73.78539357596674, 40.60151803559885], [-73.78448233178925, 40.60180011547759], [-73.78362108578425, 40.60241992145663], [-73.78312821371996, 40.603787935964206], [-73.7834813740743, 40.6040478484776], [-73.78394764083532, 40.604824436040715], [-73.78366695421366, 40.60532445022648], [-73.78045671255548, 40.60838358615086], [-73.7788989441713, 40.60950874727226], [-73.7772789735638, 40.6098491300455], [-73.77631375569446, 40.60965053524071], [-73.77535164172218, 40.60973742261902], [-73.77424506620254, 40.608924832957484], [-73.77419123039586, 40.60862703542403], [-73.77481304414263, 40.60840295224071], [-73.7742161957888, 40.60761683731949], [-73.77450343071891, 40.607413858340536], [-73.77458646673021, 40.60651084364295], [-73.77518395413767, 40.6045420187631], [-73.77514357744843, 40.60440213239334], [-73.77468798708128, 40.60432466041804], [-73.77491373316828, 40.6041125275527], [-73.77543614078047, 40.60410505662748], [-73.77589502718696, 40.60344573881933], [-73.77604967239738, 40.602742385384026], [-73.77568918983576, 40.60304222177981], [-73.77562731140821, 40.6028828413517], [-73.77605792310719, 40.60251332951839], [-73.77643195659385, 40.6025052208799], [-73.77649882778582, 40.602162195988825], [-73.77803081768585, 40.60079370506986], [-73.77818085835304, 40.60038555710013], [-73.78010898975656, 40.600727439360334], [-73.7806385775845, 40.600286868161895], [-73.7807948373568, 40.59995988938764], [-73.78184224796192, 40.59923220136935], [-73.78199132750731, 40.59868214903703], [-73.78185064673524, 40.59835966875765], [-73.78135874360073, 40.59796938645365], [-73.78132145769182, 40.59774445525068], [-73.78017230458453, 40.59720531106332], [-73.78006350442192, 40.59685753071269], [-73.77971350266371, 40.597356345729935], [-73.77903536136616, 40.597654859316876], [-73.77887352722817, 40.59796066811072], [-73.77824653407096, 40.59817478366305], [-73.7774217411943, 40.598812413542824], [-73.77719849930455, 40.59957697265573], [-73.77599889845344, 40.60139336207067], [-73.77559845989013, 40.601648067954216], [-73.77497513278156, 40.601748192466715], [-73.77467186967742, 40.60063836202348], [-73.77409468799414, 40.599888869925245], [-73.77422411192595, 40.59900841320878], [-73.77374432469334, 40.598670169728784], [-73.7737167084215, 40.598237687554324], [-73.77319569964831, 40.5980756519357], [-73.7730594563743, 40.59788000946372], [-73.77171187573832, 40.597969987359164], [-73.77110524575583, 40.59829477632632], [-73.7703649812879, 40.59807853677666], [-73.76945835878608, 40.59825614948811], [-73.76817114320566, 40.5978214328823], [-73.76793986042192, 40.59811526145122], [-73.76829167507528, 40.598340362500664], [-73.76970071241644, 40.59864014222156], [-73.77033634511058, 40.59898423710109], [-73.77090026352288, 40.59884299320221], [-73.77115807087687, 40.59939325331721], [-73.77111102490471, 40.60054604009383], [-73.77076175443192, 40.60160574935423], [-73.77081903009561, 40.601871120487196], [-73.77055053655398, 40.60241586895774], [-73.77068755899182, 40.60292116142782], [-73.77016542576993, 40.60309512379591], [-73.77057413475787, 40.604833596164035], [-73.77069457578128, 40.6048879067425], [-73.76991865275743, 40.60510680995293], [-73.77003782340532, 40.60564449882581], [-73.76982499167104, 40.60627936065046], [-73.77001587698864, 40.607197331590605], [-73.76970029110583, 40.60748913337571], [-73.76967128496102, 40.60802771329042], [-73.76915014842255, 40.60845537244805], [-73.76896899537553, 40.60931609459844], [-73.7691512738971, 40.609674763346526], [-73.7697674466097, 40.61006420183559], [-73.77125101769442, 40.610389853353276], [-73.77177275423546, 40.610765306020035], [-73.77221438027179, 40.61149768066294], [-73.77277007197462, 40.61145298708577], [-73.77338368450211, 40.61115296141611], [-73.77295701319797, 40.61015066250553], [-73.77376766723947, 40.61125623620382], [-73.77394228837083, 40.612122807519015], [-73.77416789423035, 40.61182264971205], [-73.7734371225459, 40.61363878452552], [-73.77300713741629, 40.61361030002874], [-73.77057360281427, 40.61430063630309], [-73.77081238076245, 40.61407561600334], [-73.76940996695033, 40.61397219209417], [-73.76837139801103, 40.61422417696902], [-73.76690019902868, 40.61430186653344], [-73.76629554676985, 40.61418006490154], [-73.76600277418656, 40.61389097644338], [-73.76520307919088, 40.61378167995105], [-73.76501579382318, 40.613475204533174], [-73.76515428401308, 40.61308591174071], [-73.7651173650993, 40.612482982975216], [-73.7649773677616, 40.61232629103542], [-73.76505961040903, 40.61203524487685], [-73.76230447833193, 40.611360159376474], [-73.7617241294001, 40.61184725912216], [-73.76023635093793, 40.610820874915646], [-73.76163395425955, 40.60929223507196], [-73.76171233031813, 40.60911887096218], [-73.76155051524626, 40.609031376285614], [-73.75998445701823, 40.610879389400075], [-73.75949261737165, 40.61081778752353], [-73.75967809882246, 40.61022976722589], [-73.75942038274685, 40.61039539922659], [-73.75655061911417, 40.61015522484874], [-73.75585530990902, 40.61031766989081], [-73.75560836035082, 40.61007793506259], [-73.7558084258368, 40.610371098392804], [-73.75533943866924, 40.61018298281736], [-73.75481230685236, 40.61030068202569], [-73.75450840925714, 40.61060231975015], [-73.75465640847348, 40.610678419419195], [-73.75448136538027, 40.61123937519898], [-73.75326169579876, 40.611473887000294], [-73.74905526634217, 40.611810400128256], [-73.7484934549337, 40.6111442552034], [-73.74690978489082, 40.611725181962406]]], "type": "Polygon"}, "id": 178, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11691", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 179, "PO_NAME": "Far Rockaway", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 83927815.1145, "Shape_Leng": 70127.6782783, "borough": "Queens", "postalCode": "11691"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.74905526634217, 40.611810400128256], [-73.74729321822876, 40.612109498831295], [-73.74690978489082, 40.611725181962406], [-73.7484934549337, 40.6111442552034], [-73.74905526634217, 40.611810400128256]]], "type": "Polygon"}, "id": 179, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11096", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 180, "PO_NAME": "Inwood", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 111973.73397, "Shape_Leng": 1455.2137774, "borough": "Queens", "postalCode": "11096"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97299433943527, 40.60881415956795], [-73.96237947052639, 40.609986391075694], [-73.96190348017427, 40.60748944367323], [-73.96173196597769, 40.60535798490666], [-73.96073208615931, 40.605469746402356], [-73.96019731527052, 40.598524077957215], [-73.95899773739725, 40.591784097706565], [-73.96512861367532, 40.591108456552256], [-73.96650032867271, 40.585128811355716], [-73.96906283201024, 40.58400055060088], [-73.9708464164683, 40.58382023147267], [-73.97166604406279, 40.583476742636556], [-73.97465378391911, 40.582896220044724], [-73.97666880064754, 40.58268987403074], [-73.97929928552958, 40.582824220232546], [-73.98273479309185, 40.583368202600894], [-73.9872548685586, 40.60724420500403], [-73.97299433943527, 40.60881415956795]]], "type": "Polygon"}, "id": 180, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11223", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 181, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 58702923.4668, "Shape_Leng": 31423.8673602, "borough": "Brooklyn", "postalCode": "11223"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.83262845663923, 40.608409817401885], [-73.83291673580672, 40.6088741629362], [-73.83349105837993, 40.60916343302316], [-73.83302286587043, 40.60930234029506], [-73.8324328926052, 40.60974837618204], [-73.83145479371221, 40.60919161240856], [-73.8312936808025, 40.60882193732621], [-73.83083320139805, 40.60869388061266], [-73.83082606352932, 40.608529676814705], [-73.83060302281007, 40.60844956195656], [-73.83061462017898, 40.60813893816233], [-73.83028098422099, 40.607726043264556], [-73.8303989184169, 40.60768126052569], [-73.83032118718374, 40.60718971672744], [-73.83000459048772, 40.60666853748512], [-73.83050877125008, 40.60640467590469], [-73.83038676021216, 40.60610174714925], [-73.8305061539174, 40.605930963412746], [-73.83126208081812, 40.605524413243636], [-73.83257245505304, 40.605383103136994], [-73.83271208875581, 40.60522786981279], [-73.83325638943215, 40.60537792793255], [-73.83359209436699, 40.6052122877198], [-73.83378424377415, 40.60548831864515], [-73.83419172245304, 40.60550559481637], [-73.83434089216645, 40.6054604559592], [-73.83438385947254, 40.6051254223149], [-73.8349862180538, 40.605533610768546], [-73.83559097240719, 40.60544548502534], [-73.8355103776346, 40.60645278605778], [-73.83526331844273, 40.60668818470337], [-73.83488541613035, 40.60667384281524], [-73.83435037494056, 40.60702967114507], [-73.83431175847167, 40.60760017709598], [-73.83418176288819, 40.60759271609993], [-73.83385181575974, 40.60820756890836], [-73.83405676594711, 40.60847254585288], [-73.83345358836371, 40.60864385434984], [-73.83315454392401, 40.60828849115157], [-73.83262845663923, 40.608409817401885]]], "type": "Polygon"}, "id": 181, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11693", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 182, "PO_NAME": "Far Rockaway", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 1527599.16438, "Shape_Leng": 6886.54889111, "borough": "Queens", "postalCode": "11693"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.79276725327387, 40.59994748671274], [-73.79219044175588, 40.60002629107604], [-73.78795212750455, 40.60318127755627], [-73.7867069693639, 40.60349531244966], [-73.78616881287344, 40.603074741796036], [-73.78653853716716, 40.602628630165185], [-73.78717101263324, 40.60233616365803], [-73.78784964153039, 40.601003086518205], [-73.78953461440227, 40.59997183188173], [-73.79030061425311, 40.599266114791114], [-73.79110296440484, 40.59678975807835], [-73.79085536603418, 40.59501970367363], [-73.79061601081315, 40.59478156784426], [-73.78986650066243, 40.59471555911893], [-73.78940241571489, 40.594949802493595], [-73.78937617011512, 40.59517655799403], [-73.78918072900427, 40.59518479062193], [-73.78913023401459, 40.595359487232635], [-73.78910695601532, 40.59599173752049], [-73.78926858116627, 40.59645373869674], [-73.78914764363888, 40.597508839578474], [-73.78479617448781, 40.597704193699414], [-73.78429107603733, 40.592446076495754], [-73.78651437256597, 40.59249044601935], [-73.78655522071979, 40.59207780470741], [-73.78624719383373, 40.59208839414978], [-73.78598237111474, 40.589627544194904], [-73.78860477479543, 40.58880818336971], [-73.78839584458285, 40.58765929686018], [-73.78878406237055, 40.58745030026327], [-73.78936255889853, 40.5876317708858], [-73.7915398386649, 40.587292640359074], [-73.79601089974341, 40.586323815081634], [-73.79670174098875, 40.58636728226932], [-73.79846640074729, 40.585843689660706], [-73.79969121432116, 40.585780111989294], [-73.80091510656034, 40.58540707647615], [-73.80140332761906, 40.585402713642225], [-73.80167832304501, 40.58667262921199], [-73.80401624911424, 40.58649531361158], [-73.80459394207934, 40.58989706826697], [-73.80444036840937, 40.589966601320775], [-73.80450272378206, 40.59048965241128], [-73.80532991417789, 40.59051979704219], [-73.80523222761947, 40.59166538511791], [-73.80431979136361, 40.5913130632409], [-73.80416388245253, 40.59184334208836], [-73.80785206148454, 40.59339959373481], [-73.80807122315679, 40.59367742705354], [-73.80781142114051, 40.59390738854855], [-73.807972854506, 40.59416791824513], [-73.80711866325215, 40.59527751568401], [-73.8060707435318, 40.59555867261156], [-73.80490618460315, 40.59508789896245], [-73.80409224015733, 40.59428819702336], [-73.80411765608677, 40.5934850476432], [-73.80377462315158, 40.59288325020122], [-73.80361739084346, 40.59294134733616], [-73.80302129887177, 40.59257573864667], [-73.80243784410182, 40.59264131644294], [-73.8024917581235, 40.59323405824973], [-73.80238345826955, 40.59328090738397], [-73.80259317196145, 40.594367990012124], [-73.80233401344948, 40.59448980520327], [-73.80303180414484, 40.5945433941154], [-73.8033344998962, 40.59486851309362], [-73.80321121687145, 40.594873380100566], [-73.80321495549319, 40.595145290115006], [-73.80368467947049, 40.59519780257251], [-73.80470623050347, 40.59638668893723], [-73.80511540012866, 40.59715138248725], [-73.80467375774818, 40.59767419776174], [-73.80405610327055, 40.59789394594273], [-73.80386660174271, 40.598209987810584], [-73.80371301640714, 40.59820237910496], [-73.80292476797335, 40.598940313083794], [-73.80196349755924, 40.59885134754168], [-73.8009486716993, 40.59915168158784], [-73.79461175954542, 40.59952293704177], [-73.79355445097636, 40.59978218395576], [-73.79331555003931, 40.59997070626372], [-73.79276725327387, 40.59994748671274]]], "type": "Polygon"}, "id": 182, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11692", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 183, "PO_NAME": "Arverne", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23992395.3816, "Shape_Leng": 31672.5770646, "borough": "Queens", "postalCode": "11692"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95899773739725, 40.591784097706565], [-73.93301117561151, 40.594638725495926], [-73.93232887971668, 40.59487538120417], [-73.93046798848057, 40.59436769006988], [-73.92991377174027, 40.593773762794925], [-73.92978077307372, 40.59307768257879], [-73.93028686279892, 40.59244240505715], [-73.93046713064565, 40.59159406918872], [-73.93054383768633, 40.59026568605605], [-73.93029761772887, 40.58973507913666], [-73.92981583399862, 40.589403067249464], [-73.928974953907, 40.58927489685507], [-73.92773591491739, 40.588649600422485], [-73.92707369007826, 40.587527179139535], [-73.9251935310887, 40.58579299443836], [-73.92467997453055, 40.5856124082806], [-73.92353508780137, 40.58590954985399], [-73.92292533580869, 40.58581623720521], [-73.92250252973291, 40.585969913567624], [-73.92109522303153, 40.58573025298696], [-73.92043132820335, 40.58604514509913], [-73.91967305033117, 40.58614085466704], [-73.9190537784005, 40.586025439374524], [-73.91801147773747, 40.58645724987303], [-73.91710933555038, 40.58590524785255], [-73.91534678573439, 40.586321831093585], [-73.91323621023406, 40.586097530152344], [-73.91294393871237, 40.58597452084055], [-73.9125665785585, 40.58549150393883], [-73.91210236790896, 40.583811476092734], [-73.91137425425937, 40.58305585247209], [-73.91092238834597, 40.58217987919478], [-73.91114271745025, 40.58204322144808], [-73.91115900748832, 40.581552259194574], [-73.91321663652171, 40.581091882688106], [-73.91416291465302, 40.581471010990896], [-73.91500148509286, 40.58148997631723], [-73.91675106415073, 40.58194202287699], [-73.91739120390008, 40.581925547867996], [-73.92238881284754, 40.583056515732586], [-73.92526995620099, 40.58319565218067], [-73.92724581260009, 40.583470645414444], [-73.93003033383323, 40.58332077978825], [-73.93060267428915, 40.583124076952814], [-73.93074795187813, 40.58276629816642], [-73.93094473789229, 40.58272765895655], [-73.93169343760977, 40.582814074138234], [-73.93206603321329, 40.583116030926156], [-73.93293483112737, 40.58292448838723], [-73.93420850436725, 40.582941720585936], [-73.93438637163811, 40.58313999701034], [-73.93573374794664, 40.58328882631744], [-73.93636821130782, 40.58314303342024], [-73.93788384567881, 40.58332609014747], [-73.9392994645497, 40.58316237777163], [-73.93976388600446, 40.583320475933384], [-73.94144172161022, 40.58333753834702], [-73.94156943474205, 40.58360744445136], [-73.94255117194334, 40.583513847386726], [-73.94202114792277, 40.583110204971696], [-73.94270371674523, 40.583508297086325], [-73.94304894851457, 40.58349353714264], [-73.94256212579002, 40.583126753660174], [-73.94319558734155, 40.58348951955543], [-73.94354535905136, 40.58347080796538], [-73.94309334565297, 40.583134558085675], [-73.9436915268201, 40.583467833220936], [-73.94406766839589, 40.58347202427837], [-73.94363495376025, 40.58314523602194], [-73.94423478282562, 40.583478802706274], [-73.94461818324531, 40.58349655467228], [-73.94417456745718, 40.583158290520586], [-73.94431756322386, 40.583159457649714], [-73.94479213741604, 40.58350385698947], [-73.94517601466016, 40.58352096434884], [-73.94471256762564, 40.583164561663985], [-73.94484418851707, 40.58316484465264], [-73.94535061155942, 40.58352819678679], [-73.94573016402857, 40.58354489950428], [-73.94526513151597, 40.58318803183029], [-73.94539265258693, 40.58318555483325], [-73.94590001422728, 40.58355184159798], [-73.94628636909947, 40.58356871137709], [-73.94580293910201, 40.583196242907576], [-73.94643390869177, 40.583562274872996], [-73.94678957776837, 40.58355047308006], [-73.9463173369554, 40.58320678819776], [-73.94691854094924, 40.583545921150694], [-73.9472697103748, 40.58353320986559], [-73.94681866590938, 40.583190204058596], [-73.94746934364139, 40.58352794949925], [-73.95349322419891, 40.58298819985188], [-73.953301522678, 40.582002683291925], [-73.94969627052456, 40.58231865278353], [-73.94273827230738, 40.58099448629594], [-73.93280348312184, 40.58114970381773], [-73.93256033567054, 40.58128449678904], [-73.9319108731525, 40.57968441350967], [-73.93108379818403, 40.57618037153282], [-73.93152441429298, 40.575684071339126], [-73.93487148834416, 40.575574002264624], [-73.93494748540347, 40.57527200306743], [-73.9350485065843, 40.57551717492065], [-73.93635854510785, 40.575833396999045], [-73.93656072002176, 40.57581964704613], [-73.93671811502966, 40.57544480224825], [-73.93673338134805, 40.57556887953082], [-73.94243740443315, 40.57537234727793], [-73.9430654432979, 40.575673737120056], [-73.94414973229738, 40.57574640318487], [-73.94451977899845, 40.57562534487334], [-73.94457707496105, 40.57524927926301], [-73.94522715646063, 40.575412413089346], [-73.94576072070717, 40.575305669519246], [-73.94603650019704, 40.5750835679458], [-73.95203645478301, 40.57440759706148], [-73.95249281233765, 40.574218669324125], [-73.95598007464349, 40.574138700628616], [-73.95632985888695, 40.57406375379238], [-73.95634419205591, 40.573806063322465], [-73.95639814156178, 40.57398531161916], [-73.95884712359589, 40.57382411519259], [-73.95941802211712, 40.57513017791427], [-73.96569311252844, 40.57476361245298], [-73.96764677960626, 40.57486007612004], [-73.96879143947035, 40.575210678782305], [-73.96512861367532, 40.591108456552256], [-73.95899773739725, 40.591784097706565]]], "type": "Polygon"}, "id": 183, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11235", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 184, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 69053803.0316, "Shape_Leng": 61354.7268723, "borough": "Brooklyn", "postalCode": "11235"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81335694211904, 40.590955765442885], [-73.81314881884822, 40.5912404965263], [-73.81221064466307, 40.591334602906386], [-73.81156749609016, 40.591691309748434], [-73.8114954456634, 40.59290046341001], [-73.81123735749733, 40.591635930424324], [-73.81088947687194, 40.59173345172709], [-73.81090575395353, 40.59205844649526], [-73.80983034747592, 40.592298677992986], [-73.80957328054473, 40.592596323367005], [-73.809526587883, 40.59298642816607], [-73.80971171457762, 40.59351651822889], [-73.80957209085213, 40.59358267273462], [-73.80687456799568, 40.59226496394611], [-73.80523222761947, 40.59166538511791], [-73.80532991417789, 40.59051979704219], [-73.80450272378206, 40.59048965241128], [-73.80444036840937, 40.589966601320775], [-73.80459394207934, 40.58989706826697], [-73.80401624911424, 40.58649531361158], [-73.80167832304501, 40.58667262921199], [-73.80140332761906, 40.585402713642225], [-73.80330229163495, 40.58488617241137], [-73.80377556607654, 40.58501470773694], [-73.80562312533081, 40.58451119796058], [-73.80651753363671, 40.584464697866544], [-73.80783501908815, 40.584014961139474], [-73.80897687845774, 40.58400619311228], [-73.81058959353031, 40.58348967122687], [-73.81103445419083, 40.583758593826246], [-73.8134976162864, 40.58347886467249], [-73.82155476496418, 40.58123259052053], [-73.8216418445238, 40.581584834899886], [-73.82067149736775, 40.581826932849836], [-73.8209319777285, 40.582284772855964], [-73.81854847601183, 40.582955899850575], [-73.82089149737752, 40.586633704865925], [-73.81936005237709, 40.58734878925292], [-73.81953017666041, 40.58758840539371], [-73.81934847557751, 40.58786696840654], [-73.8188587004492, 40.588261328890276], [-73.81744731420449, 40.58890902947773], [-73.81719354901736, 40.58937095835744], [-73.81643377657747, 40.58944469420463], [-73.81521646830275, 40.59001047283928], [-73.81472145856209, 40.59060081194781], [-73.81403511159901, 40.590631439525076], [-73.81335694211904, 40.590955765442885]]], "type": "Polygon"}, "id": 184, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11693", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 185, "PO_NAME": "Far Rockaway", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 12270916.531, "Shape_Leng": 19051.6443386, "borough": "Queens", "postalCode": "11693"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.1017885140325, 40.58461811691485], [-74.09771864041494, 40.58181427766435], [-74.0967702435816, 40.58256301808784], [-74.09016208923669, 40.57923618797113], [-74.09213439184857, 40.577398231982386], [-74.0858020443614, 40.57413472535253], [-74.08876626487576, 40.57237450158037], [-74.09254222368665, 40.568351858847336], [-74.09268669818681, 40.56806606507483], [-74.09081922008552, 40.56674454073151], [-74.09156605516439, 40.56605764376864], [-74.09347529501775, 40.563728490099265], [-74.09403916423784, 40.56273274885045], [-74.09516370172632, 40.563164006631375], [-74.09559169752359, 40.56286068190453], [-74.09557204186663, 40.56268635104351], [-74.09603510589292, 40.562495035297175], [-74.09677720542267, 40.56147154098238], [-74.09683542816582, 40.56126005110043], [-74.09668317107682, 40.56115533292199], [-74.09711653376921, 40.560975511379425], [-74.09760464420172, 40.56018373329809], [-74.09752832600341, 40.559982469302156], [-74.09773472667841, 40.55999501018165], [-74.09807619749085, 40.5595511775467], [-74.09806041583388, 40.55922938978802], [-74.09776214420945, 40.559049068745786], [-74.09868806538353, 40.55929257342636], [-74.09930015079742, 40.558961866115865], [-74.09991393257343, 40.55903843326233], [-74.10079964259995, 40.5583218346029], [-74.10124355077247, 40.55766084324142], [-74.10184638248955, 40.55621699782274], [-74.10184434503367, 40.55595467626285], [-74.10136280397941, 40.55556615947176], [-74.10249251240742, 40.55605414994753], [-74.10299808191257, 40.5557961911952], [-74.10457346011547, 40.553931178143486], [-74.10496212361944, 40.55320205972505], [-74.10486614760342, 40.553013979637065], [-74.10685066381988, 40.554123389559415], [-74.10733823222002, 40.55400988727162], [-74.10830587875743, 40.55330865894481], [-74.11004324469081, 40.551613212648306], [-74.11265653329183, 40.54777987608286], [-74.11292077297124, 40.547723882915996], [-74.11339372951832, 40.548045707460496], [-74.114737813431, 40.54799662280704], [-74.11532479793107, 40.547480024570504], [-74.11690991503761, 40.54680066412081], [-74.11849051316429, 40.545379821774276], [-74.11870213773953, 40.5455625255573], [-74.11879359623885, 40.54466040857225], [-74.11955132193741, 40.54456683901976], [-74.11970349685775, 40.54469463014379], [-74.12002142720566, 40.544379602604174], [-74.1214620354388, 40.544243336442655], [-74.12193142013247, 40.54398236765832], [-74.12195000281491, 40.543790226650934], [-74.1232208857957, 40.543431745818744], [-74.12390792804088, 40.543014966275635], [-74.12604168973758, 40.540493431570845], [-74.1275038962367, 40.538307981656054], [-74.1312851460374, 40.53373081025421], [-74.13258297649435, 40.53285111526084], [-74.13381266290382, 40.53150490931255], [-74.13497297183697, 40.53050762384171], [-74.13638755806086, 40.52949125589621], [-74.13701278256409, 40.52932750036575], [-74.13794425235434, 40.53023643960216], [-74.13906095595635, 40.53090194570486], [-74.14040821086478, 40.53262279416903], [-74.14088002648943, 40.533679001036546], [-74.14055305814212, 40.53508123669783], [-74.1400251305736, 40.535455267934985], [-74.13780384561666, 40.53522848105896], [-74.13501832345396, 40.53528177085497], [-74.13358250224114, 40.53580598112622], [-74.12802275061874, 40.54073121611732], [-74.12761630008207, 40.54140965716408], [-74.12745841888507, 40.542025373067155], [-74.12768125342212, 40.543437382770676], [-74.12870859369386, 40.54471430532236], [-74.13035728951809, 40.54608270911869], [-74.1326001071365, 40.54674933492491], [-74.13538489589548, 40.546442158270494], [-74.13633519513273, 40.54741062396718], [-74.13843448490987, 40.5486694003686], [-74.13764310293067, 40.54942375279877], [-74.13455868443151, 40.55125509713034], [-74.1331843551388, 40.55234398952171], [-74.13376761325769, 40.55281511763039], [-74.13527551804788, 40.551856026932874], [-74.1365582430588, 40.55290470637731], [-74.13728384036592, 40.552450486146924], [-74.1385013568177, 40.553443525111675], [-74.13924168804384, 40.55300294655735], [-74.14040007143981, 40.553953783437585], [-74.14044705664112, 40.55430911994236], [-74.13978308813849, 40.55590335688771], [-74.14061206070922, 40.55615165224575], [-74.14038970976137, 40.55651915918117], [-74.14059348629245, 40.5567990845666], [-74.14092505927185, 40.55706030919381], [-74.14113660830772, 40.55690635287678], [-74.14136315763768, 40.557087544845224], [-74.14051717300795, 40.55776920397786], [-74.14141960457209, 40.55848959037261], [-74.14282587726991, 40.55780069501407], [-74.14342802070136, 40.55817276187566], [-74.14304696987728, 40.55846107612513], [-74.14354739182946, 40.558896180704785], [-74.1421427906512, 40.559631087057134], [-74.14790863656918, 40.564579889446236], [-74.14830743979223, 40.564311365010994], [-74.15228114627241, 40.56739295506096], [-74.15034586130996, 40.56894178904552], [-74.15089044575711, 40.56936087598157], [-74.15094617248492, 40.57007466966137], [-74.15144475081829, 40.570322533422555], [-74.15168601185985, 40.57076299020408], [-74.14966960590068, 40.57137178997972], [-74.14789717745306, 40.5708872936781], [-74.14727790069608, 40.571399401662696], [-74.14655375820743, 40.57304196845347], [-74.1470160985324, 40.57323308072798], [-74.1471128553086, 40.5735063970157], [-74.14682386166218, 40.57421928972708], [-74.14795692154094, 40.5756134968221], [-74.14701639248543, 40.57574897265769], [-74.14664973202316, 40.57597245465565], [-74.1455414526164, 40.575665882511885], [-74.14337392068634, 40.57592916883573], [-74.14348075260055, 40.57649065899351], [-74.14331528318299, 40.57661176468076], [-74.1368304586666, 40.578206009741145], [-74.13522768289484, 40.581765640640036], [-74.13363689213634, 40.58189113054343], [-74.13302393255897, 40.58220471572367], [-74.13150773279719, 40.582097083446136], [-74.13040043374606, 40.58275898582699], [-74.12938537150991, 40.58184796484682], [-74.12768765111382, 40.58297794161856], [-74.12709783186818, 40.58251223366985], [-74.12639458222276, 40.58251235839079], [-74.12615586268826, 40.58054206900359], [-74.12537736104863, 40.579612306170795], [-74.12384003133488, 40.582852160717145], [-74.12159968189583, 40.58333041697764], [-74.11894389581546, 40.58045534719301], [-74.11827650483389, 40.57814451765592], [-74.11756895569482, 40.57771363490176], [-74.11687541028802, 40.57825759233682], [-74.1155948648953, 40.578497141594674], [-74.11316883483221, 40.580700338640625], [-74.10884623715468, 40.58296030027669], [-74.10479979884636, 40.58628475100038], [-74.10207990507132, 40.58874176408541], [-74.10019305704691, 40.5877641636715], [-74.10068622874688, 40.58715642192401], [-74.10163936883016, 40.58514999947057], [-74.10200833967431, 40.58480050594142], [-74.1017885140325, 40.58461811691485]]], "type": "Polygon"}, "id": 185, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10306", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 186, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 174102872.047, "Shape_Leng": 83568.7847092, "borough": "Staten Island", "postalCode": "10306"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.81934847557751, 40.58786696840654], [-73.81953017666041, 40.58758840539371], [-73.81936005237709, 40.58734878925292], [-73.82089149737752, 40.586633704865925], [-73.81854847601183, 40.582955899850575], [-73.8209319777285, 40.582284772855964], [-73.82067149736775, 40.581826932849836], [-73.8216418445238, 40.581584834899886], [-73.82155476496418, 40.58123259052053], [-73.8272720290048, 40.57941501429462], [-73.83146092579032, 40.5784194485662], [-73.8338692245963, 40.577649908086215], [-73.8377849092927, 40.57592369533709], [-73.84343116106055, 40.57402100510283], [-73.85220202252007, 40.570745112128506], [-73.853948175834, 40.57031520918248], [-73.85713421415899, 40.56912689236323], [-73.86024047842, 40.56791354824561], [-73.86255285940572, 40.566810028599065], [-73.86286891784222, 40.56683058624588], [-73.86268184645141, 40.56650698651649], [-73.86300482671898, 40.56687597013964], [-73.86345859355228, 40.56703426009347], [-73.86495466737347, 40.56663148898346], [-73.86477052425013, 40.56631029600631], [-73.86497625463666, 40.56663147113588], [-73.86553757333401, 40.56657162323935], [-73.86648391486719, 40.566125097206736], [-73.86848240505098, 40.565527673118204], [-73.8682511680389, 40.565069501362544], [-73.86862321951527, 40.565538017412415], [-73.87061720882113, 40.56481469080317], [-73.87027588053634, 40.564174667449244], [-73.87064093718558, 40.564809960949354], [-73.87096937484027, 40.564746465951906], [-73.87263971228079, 40.56408419931726], [-73.87237877271053, 40.563575124968764], [-73.8727492538172, 40.56410957058107], [-73.87321952883211, 40.564063923341784], [-73.87634682238203, 40.56308084755202], [-73.87947716748923, 40.56181080287125], [-73.88270778927392, 40.567547712853646], [-73.8843513370943, 40.56715353341545], [-73.88323081076138, 40.56835882607028], [-73.88269533990152, 40.568357044971066], [-73.88193211802279, 40.56872776501283], [-73.87867467640503, 40.568639955397636], [-73.87759205071508, 40.56886422733492], [-73.87637803904096, 40.56933742687096], [-73.86554316800843, 40.574642138464014], [-73.85306693989375, 40.58125145138433], [-73.85044410367101, 40.58213060428943], [-73.84861051802473, 40.5821879842377], [-73.8457103109207, 40.581676392017215], [-73.83936383323766, 40.58185110215805], [-73.83900070362866, 40.58257070074723], [-73.83864697139563, 40.58272184847589], [-73.83583583850948, 40.582872508027805], [-73.82852471064466, 40.58485422973202], [-73.82813014695057, 40.58597744979941], [-73.82734411150969, 40.586331819401366], [-73.823092916829, 40.58754040071992], [-73.82140912172848, 40.58679841428905], [-73.81934847557751, 40.58786696840654]]], "type": "Polygon"}, "id": 186, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11694", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 187, "PO_NAME": "Rockaway Park", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 48101606.6125, "Shape_Leng": 46740.3833069, "borough": "Queens", "postalCode": "11694"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96650032867271, 40.585128811355716], [-73.96879143947035, 40.575210678782305], [-73.96764677960626, 40.57486007612004], [-73.96569311252844, 40.57476361245298], [-73.95941802211712, 40.57513017791427], [-73.95888332655258, 40.57382418128681], [-73.95900512815413, 40.57382440672285], [-73.9589818369502, 40.57345304727824], [-73.9590455893738, 40.57382890846853], [-73.95998764265002, 40.573865437035764], [-73.96279115624584, 40.573338882611445], [-73.96849683871928, 40.5728692787268], [-73.96938330775913, 40.572611198414414], [-73.96928055889823, 40.57233258467769], [-73.96944410348152, 40.572637264077756], [-73.9710874127555, 40.5724844516522], [-73.97135807292696, 40.572377186822315], [-73.97118736705072, 40.57201269729791], [-73.97136075175503, 40.57234315576299], [-73.97251986573492, 40.57229387581378], [-73.97331563615464, 40.57204099437598], [-73.97324830899005, 40.571675382803534], [-73.97337723953532, 40.572117294815655], [-73.97425655227806, 40.57209014630002], [-73.97548545379192, 40.571777234253105], [-73.97542693187131, 40.57141814382817], [-73.97552399787043, 40.5717729793882], [-73.9761329246099, 40.571784643237635], [-73.97745901579631, 40.57149703586896], [-73.97765903037468, 40.571204408011766], [-73.977862233823, 40.57121898092016], [-73.97768111073046, 40.57125620688401], [-73.97770187106104, 40.571466516755976], [-73.9780483258255, 40.571610181152224], [-73.97912092701539, 40.57167987910381], [-73.97946411375311, 40.571530898727715], [-73.9813159157853, 40.57142084653855], [-73.98159382097593, 40.57125555866899], [-73.98246520908957, 40.5713994250329], [-73.98776486134187, 40.570875470547435], [-73.99273947450288, 40.570001177857044], [-73.99742007580794, 40.57012649455101], [-73.99942687590651, 40.57034033999404], [-74.00091044273017, 40.5702931638258], [-74.00203540838562, 40.57008423485634], [-74.00197443257666, 40.569630718120074], [-74.00208688933212, 40.56959647817821], [-74.00239595849214, 40.571238053144356], [-74.00275271663774, 40.57169060832887], [-74.0046273676965, 40.572431466457466], [-74.00967190761274, 40.57362463570158], [-74.0115711859558, 40.57440030606033], [-74.0122425526514, 40.575270033195025], [-74.01291743713907, 40.577054510299696], [-74.01331846656389, 40.577857158461974], [-74.01351708413164, 40.57793245150399], [-74.01298414446646, 40.57815967829414], [-74.01218602147364, 40.57958823465781], [-74.0115919505837, 40.5800713561204], [-74.00989190759182, 40.58060426234396], [-74.00743818416588, 40.58096251282502], [-74.00581162069466, 40.58187727230928], [-74.00502963141358, 40.58171915200376], [-74.00397328589776, 40.58183416957294], [-73.99886476427345, 40.58150273903509], [-73.99824954654119, 40.58130847480347], [-73.99787110081085, 40.58064972617592], [-73.9974018191112, 40.580503040984475], [-73.99195645158044, 40.579289432671324], [-73.99054409726325, 40.57948681273089], [-73.98954587942825, 40.57918853120687], [-73.9889971283253, 40.578840275221594], [-73.9883169612237, 40.57883625476698], [-73.98740419212578, 40.579093895514845], [-73.98672471365384, 40.579778208273936], [-73.98701449915659, 40.580027744174274], [-73.98641200928373, 40.58081049727178], [-73.98596954497025, 40.581062801508764], [-73.98602410641806, 40.58124865287752], [-73.985764927439, 40.581454959895346], [-73.98558515063503, 40.58139032489229], [-73.9839427760828, 40.5829148875287], [-73.98336380825305, 40.58296289402421], [-73.98254799335999, 40.582376801278826], [-73.98273479309185, 40.583368202600894], [-73.97843672741705, 40.58274153308393], [-73.97540869869673, 40.58279790912583], [-73.97166604406279, 40.583476742636556], [-73.9708464164683, 40.58382023147267], [-73.96906283201024, 40.58400055060088], [-73.96650032867271, 40.585128811355716]]], "type": "Polygon"}, "id": 187, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11224", "BLDGpostalCode": 0, "CTY_FIPS": "047", "OBJECTID": 188, "PO_NAME": "Brooklyn", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 46701983.7555, "Shape_Leng": 41729.9303513, "borough": "Brooklyn", "postalCode": "11224"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.16589405231733, 40.560283373488396], [-74.16499899301166, 40.56153901242022], [-74.16419300642193, 40.565491991916716], [-74.16249900296334, 40.56678798945718], [-74.15168601185985, 40.57076299020408], [-74.15144475081829, 40.570322533422555], [-74.15094617248492, 40.57007466966137], [-74.15089044575711, 40.56936087598157], [-74.15034586130996, 40.56894178904552], [-74.15228114627241, 40.56739295506096], [-74.14830743979223, 40.564311365010994], [-74.14790863656918, 40.564579889446236], [-74.1421427906512, 40.559631087057134], [-74.14354739182946, 40.558896180704785], [-74.14304696987728, 40.55846107612513], [-74.14342802070136, 40.55817276187566], [-74.14282587726991, 40.55780069501407], [-74.14141960457209, 40.55848959037261], [-74.14051717300795, 40.55776920397786], [-74.14136315763768, 40.557087544845224], [-74.14113660830772, 40.55690635287678], [-74.14092505927185, 40.55706030919381], [-74.14059348629245, 40.5567990845666], [-74.14038970976137, 40.55651915918117], [-74.14061206070922, 40.55615165224575], [-74.13978308813849, 40.55590335688771], [-74.14044705664112, 40.55430911994236], [-74.14040007143981, 40.553953783437585], [-74.13924168804384, 40.55300294655735], [-74.1385013568177, 40.553443525111675], [-74.13728384036592, 40.552450486146924], [-74.1365582430588, 40.55290470637731], [-74.13527551804788, 40.551856026932874], [-74.13376761325769, 40.55281511763039], [-74.1331843551388, 40.55234398952171], [-74.13455868443151, 40.55125509713034], [-74.13764310293067, 40.54942375279877], [-74.13843448490987, 40.5486694003686], [-74.13633519513273, 40.54741062396718], [-74.13538489589548, 40.546442158270494], [-74.1363100460757, 40.546138370320065], [-74.13648840402081, 40.54586186304527], [-74.13708860201348, 40.54593361714276], [-74.13752314555799, 40.54555981077602], [-74.13804201921621, 40.54553254967214], [-74.13917424119028, 40.5445766081676], [-74.13928064472536, 40.54465469270196], [-74.1392033158694, 40.54456064258647], [-74.14003780046805, 40.543871252677114], [-74.1402908435104, 40.544048266753755], [-74.1405000343728, 40.54392068533608], [-74.14070182857446, 40.544048041255216], [-74.14081177959358, 40.54396051384009], [-74.14019083186628, 40.54351100064605], [-74.1405673642274, 40.54333774160746], [-74.14087238909909, 40.54295995110424], [-74.14125674271133, 40.54315016032396], [-74.14141074190309, 40.543022427187545], [-74.14107892695752, 40.54279118622025], [-74.14132653960445, 40.542747055726224], [-74.14122821355583, 40.54267806117669], [-74.1416707040955, 40.542308059133006], [-74.14220835877009, 40.54219380009507], [-74.14210602341642, 40.5420368683861], [-74.14235291888076, 40.54127810173871], [-74.14211426605536, 40.54081559432005], [-74.14173669227013, 40.540558256008076], [-74.14190872537648, 40.540457051980475], [-74.14170976768229, 40.54008687622185], [-74.1417743922441, 40.5397428081579], [-74.14200667010797, 40.539620665230736], [-74.14172893504536, 40.53933949964868], [-74.14230352072775, 40.539069983956765], [-74.14232768853753, 40.53894793511367], [-74.14176757165102, 40.53854631792935], [-74.14225454206664, 40.53814261750774], [-74.14207893779417, 40.538003974364365], [-74.14238964194672, 40.5377532740838], [-74.14166305532073, 40.537165820719984], [-74.14188631714214, 40.537292671734704], [-74.14363164157653, 40.53725386092681], [-74.14417342174653, 40.53680992645178], [-74.14434852641833, 40.53610190630772], [-74.14463104239913, 40.53571088885673], [-74.1452075268583, 40.53575484723296], [-74.14585921552639, 40.53529742072913], [-74.14694497889411, 40.53515225960924], [-74.15050951089376, 40.537262830856214], [-74.15070319076652, 40.53710557684204], [-74.15192177325889, 40.53783733617486], [-74.15919043217608, 40.54523033472205], [-74.15898646174055, 40.545449011601384], [-74.15934445056479, 40.54639775218885], [-74.1590002088166, 40.54681102152264], [-74.1596756242018, 40.54779387068588], [-74.16174252340467, 40.54698748008834], [-74.16270203668898, 40.551893511949416], [-74.16344541455126, 40.55343800053675], [-74.16494150242931, 40.56011181265005], [-74.16589405231733, 40.560283373488396]]], "type": "Polygon"}, "id": 188, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10308", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 189, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 62751041.8152, "Shape_Leng": 41507.8474359, "borough": "Staten Island", "postalCode": "10308"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.88323081076138, 40.56835882607028], [-73.8843513370943, 40.56715353341545], [-73.88270778927392, 40.567547712853646], [-73.87947716748923, 40.56181080287125], [-73.88028402375919, 40.56151141933036], [-73.8802967524791, 40.5613749677403], [-73.88044060988835, 40.56147373151252], [-73.88130423265214, 40.56136549426624], [-73.88241586223381, 40.56091091192779], [-73.88237440992523, 40.560760441062776], [-73.88250750383082, 40.560879526911506], [-73.88323279879958, 40.560859735467], [-73.88488436537537, 40.56018238238603], [-73.88485948799105, 40.560042818189814], [-73.88497700610931, 40.560160580702906], [-73.8859317723396, 40.55998490456486], [-73.88690374413102, 40.559591491063756], [-73.88697509885733, 40.55940049122143], [-73.88706563094611, 40.55953961344353], [-73.88785342383817, 40.55952185433955], [-73.88961883300607, 40.558792402005054], [-73.89021653237563, 40.558811557243246], [-73.89077962171427, 40.558624870164195], [-73.89211661129373, 40.5580290001665], [-73.89259675858017, 40.5581214839803], [-73.89345613754365, 40.55794941666612], [-73.89494848153703, 40.55729505415832], [-73.89491816974484, 40.557078810929426], [-73.89518458349463, 40.55738505416131], [-73.89552789779356, 40.55741237645617], [-73.8969952301493, 40.55689180263996], [-73.89709684821989, 40.55665632591968], [-73.89735688315422, 40.55699843357242], [-73.89799514010946, 40.557102152120784], [-73.89911717986136, 40.55680036370016], [-73.8991228385113, 40.556651242394274], [-73.89926738345174, 40.55678023819839], [-73.89983813607189, 40.55671203441948], [-73.8998280061802, 40.55653147273697], [-73.89992840840974, 40.55670184801169], [-73.90045076830773, 40.55664954643486], [-73.90058262539186, 40.556431311809405], [-73.90066522134528, 40.55662146099334], [-73.90156083202072, 40.55681777243589], [-73.90374883990883, 40.5568290689967], [-73.90728705702925, 40.55582748942555], [-73.92458518374355, 40.549262212998016], [-73.9352278008359, 40.54471613717949], [-73.93898498814254, 40.54253908985806], [-73.94055905332793, 40.54184678877184], [-73.94072285038311, 40.54025646946543], [-73.9408676598942, 40.54022377484706], [-73.94053422551767, 40.54380089625772], [-73.940345096603, 40.548454790184834], [-73.94054111756012, 40.5503289111021], [-73.94050185114162, 40.55175237727087], [-73.93955143958402, 40.55412710199017], [-73.93848968437622, 40.55572311172836], [-73.93786033396083, 40.55636006265533], [-73.9357623273735, 40.557070802125054], [-73.93349378470539, 40.557150262849234], [-73.93148402004842, 40.5578271595694], [-73.92864176986868, 40.55955169299061], [-73.9267445563671, 40.56112418015289], [-73.9253548427754, 40.561844620953934], [-73.92496496215996, 40.56178022065968], [-73.9232968127987, 40.56207841300781], [-73.91955994294577, 40.56209567367382], [-73.91716011808624, 40.562825349735476], [-73.91556876674372, 40.56361864830589], [-73.91456851391727, 40.564345583884055], [-73.91225506509593, 40.56511260605155], [-73.91076159088941, 40.5651924550455], [-73.91068320457146, 40.56500116299478], [-73.9100815025889, 40.56494247635548], [-73.91008167980134, 40.56466606734046], [-73.90972322199342, 40.564237685249175], [-73.9088450808769, 40.564046529611915], [-73.9079320117499, 40.56415872279114], [-73.90756872469669, 40.56373611505077], [-73.90778123085973, 40.563673374230675], [-73.9073939065983, 40.56361350092768], [-73.90744800951693, 40.56350287351568], [-73.90642333646764, 40.56305082400732], [-73.90499485278826, 40.56293582486112], [-73.90292925830776, 40.56352236537883], [-73.90202837270937, 40.56307946659339], [-73.90092970013778, 40.56328932471436], [-73.90036594563092, 40.563575066530106], [-73.89971748526494, 40.56355915814161], [-73.89674450168988, 40.56499883866926], [-73.89600039549022, 40.565563240086455], [-73.89542915341761, 40.56628479903039], [-73.89567777381993, 40.567054010109324], [-73.89524240274186, 40.5669636117403], [-73.89277925436454, 40.568659743823744], [-73.89070229180362, 40.568144644365226], [-73.89018229748005, 40.56823080239271], [-73.8888750411347, 40.568001011575404], [-73.88835342478464, 40.56815182740634], [-73.88780441410957, 40.567875961254686], [-73.88682286986028, 40.568285127473104], [-73.88686587686404, 40.56837974034396], [-73.88539727732851, 40.56857910986745], [-73.88434375405572, 40.56865650055056], [-73.88469044164735, 40.56847160195044], [-73.88441833372617, 40.56799079534495], [-73.88369881428956, 40.568163787722504], [-73.88369029736222, 40.56839732594341], [-73.883459389843, 40.56848016900686], [-73.88323081076138, 40.56835882607028]]], "type": "Polygon"}, "id": 189, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11697", "BLDGpostalCode": 0, "CTY_FIPS": "081", "OBJECTID": 190, "PO_NAME": "Breezy Point", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 59789760.6207, "Shape_Leng": 48880.2672234, "borough": "Queens", "postalCode": "11697"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.19937851769299, 40.5604086874979], [-74.19366751495104, 40.56595678021538], [-74.19258646930356, 40.56264006241996], [-74.19163585053677, 40.562520148733626], [-74.19080976614559, 40.562635780273844], [-74.18938450216073, 40.563625808840825], [-74.18528912253679, 40.56453590545195], [-74.18386986524995, 40.56529266223248], [-74.18273137604338, 40.565493664842464], [-74.18139493319241, 40.56523798926154], [-74.1780993411067, 40.56404878009833], [-74.17645306622114, 40.563187017526644], [-74.17519517595036, 40.56292493372601], [-74.1742985296954, 40.56617649797603], [-74.16978726179794, 40.56597371760547], [-74.16982656641822, 40.56107801651061], [-74.16494150242931, 40.56011181265005], [-74.16344541455126, 40.55343800053675], [-74.16270203668898, 40.551893511949416], [-74.16174252340467, 40.54698748008834], [-74.1596756242018, 40.54779387068588], [-74.1590002088166, 40.54681102152264], [-74.15934445056479, 40.54639775218885], [-74.15898646174055, 40.545449011601384], [-74.15919043217608, 40.54523033472205], [-74.15192177325889, 40.53783733617486], [-74.15070319076652, 40.53710557684204], [-74.15050951089376, 40.537262830856214], [-74.14694497889411, 40.53515225960924], [-74.14831042100872, 40.53457208887925], [-74.1492577783341, 40.533878728267474], [-74.15075832126686, 40.53233907406727], [-74.1524534141501, 40.53194355301573], [-74.15398474403457, 40.53068512086133], [-74.15396968943186, 40.53052950170348], [-74.15446118415842, 40.530280193673256], [-74.154443660243, 40.53006665405644], [-74.15489130669857, 40.53012765886844], [-74.15557503059539, 40.52959739878432], [-74.1554860360934, 40.52943294313258], [-74.1556682567208, 40.52952780378409], [-74.15584493424079, 40.52939732773801], [-74.15632941751737, 40.528853856091565], [-74.15608820271956, 40.52859834303906], [-74.15639070650823, 40.528768867111026], [-74.1570366363863, 40.5288021397285], [-74.15781788541862, 40.52846621106165], [-74.1581173458102, 40.528205697300315], [-74.15794029889933, 40.52805577234145], [-74.15819741320469, 40.528156089395765], [-74.15783315777864, 40.527805325782914], [-74.15826347025434, 40.52809985034122], [-74.15945330775743, 40.5272740339153], [-74.16004022601979, 40.52734325136571], [-74.16030426829376, 40.527555757317565], [-74.16158222418831, 40.52701335709765], [-74.16227208337388, 40.52719411537767], [-74.16372015778278, 40.52634971836663], [-74.16473897948045, 40.52596719990522], [-74.16473359678938, 40.52575072390308], [-74.16505454317989, 40.52540971858576], [-74.16500329965287, 40.52518789543268], [-74.165648076325, 40.525393748262765], [-74.1659650599263, 40.52530819576417], [-74.16854371473717, 40.52369496046083], [-74.16844333315989, 40.523510889107506], [-74.16860999586454, 40.523241509360915], [-74.16882716609028, 40.52328940003444], [-74.16951086303038, 40.522848458371364], [-74.17025329190976, 40.52269908196062], [-74.17119086666885, 40.523179946562934], [-74.17228092136594, 40.52300885582239], [-74.17534083764612, 40.52115076863828], [-74.1776083029794, 40.51928609813365], [-74.17804617980663, 40.51948218023905], [-74.17840355731937, 40.519391586713525], [-74.17870132451475, 40.519614626151956], [-74.17913302996246, 40.51963614771416], [-74.17924446680288, 40.51947500935111], [-74.17950102644642, 40.51984547745009], [-74.18050058819566, 40.5204910950302], [-74.18145495677898, 40.52046334166241], [-74.181753877513, 40.52029179498184], [-74.18153139009661, 40.51986397998085], [-74.18208046603462, 40.52024236508269], [-74.18284070958579, 40.51989922251749], [-74.1828241876091, 40.51972434601328], [-74.18304190530512, 40.51979591359476], [-74.18377403300344, 40.51954632704018], [-74.1838535512872, 40.51935836795514], [-74.18369608343737, 40.51904152257196], [-74.18426424112678, 40.519319721426044], [-74.18494564577834, 40.519042093326156], [-74.1858199886875, 40.51843893317439], [-74.18565037934201, 40.51808752971951], [-74.1859897685495, 40.518326335013505], [-74.18757496566255, 40.51699400485188], [-74.1931753879519, 40.52601940297527], [-74.19564579062273, 40.529236626453866], [-74.19453975268551, 40.530619754280565], [-74.19608390351888, 40.529911759209995], [-74.19748248900154, 40.532421596499645], [-74.19570416415374, 40.53360833409108], [-74.19300900986146, 40.53432606663232], [-74.19356025250704, 40.53540619111299], [-74.19551210877908, 40.53481794215634], [-74.19593121747538, 40.53489040292921], [-74.19616558709531, 40.53516843479629], [-74.19858134246259, 40.53448048618562], [-74.20306394542322, 40.54426096644573], [-74.20040353943001, 40.54493512072442], [-74.20151451278456, 40.54755849672902], [-74.2010706136896, 40.5478096651042], [-74.19983036878983, 40.5480916837961], [-74.20333049680293, 40.555839384607474], [-74.20334307062244, 40.55613334521739], [-74.20194948646756, 40.5558641373013], [-74.20070042188503, 40.55607126821036], [-74.19769481486209, 40.55888706902444], [-74.19937851769299, 40.5604086874979]]], "type": "Polygon"}, "id": 190, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10312", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 191, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 169087432.912, "Shape_Leng": 65791.9288692, "borough": "Staten Island", "postalCode": "10312"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.21312139800514, 40.558608214749], [-74.212641393522, 40.55838240004244], [-74.21184995488771, 40.557276820570145], [-74.21147123790287, 40.55718754852934], [-74.21016542772884, 40.55766268505792], [-74.20639016681588, 40.55827129678442], [-74.20451433339328, 40.558971209097], [-74.20149428983338, 40.55932265963928], [-74.20050495815696, 40.559821751727846], [-74.19957504080847, 40.56058677677623], [-74.19769481486209, 40.55888706902444], [-74.20070042188503, 40.55607126821036], [-74.20194948646756, 40.5558641373013], [-74.20334307062244, 40.55613334521739], [-74.20333049680293, 40.555839384607474], [-74.19983036878983, 40.5480916837961], [-74.2010706136896, 40.5478096651042], [-74.20151451278456, 40.54755849672902], [-74.20040353943001, 40.54493512072442], [-74.20306394542322, 40.54426096644573], [-74.19858134246259, 40.53448048618562], [-74.19616558709531, 40.53516843479629], [-74.19593121747538, 40.53489040292921], [-74.19551210877908, 40.53481794215634], [-74.19356025250704, 40.53540619111299], [-74.19300900986146, 40.53432606663232], [-74.19570416415374, 40.53360833409108], [-74.19748248900154, 40.532421596499645], [-74.19608390351888, 40.529911759209995], [-74.19453975268551, 40.530619754280565], [-74.19564579062273, 40.529236626453866], [-74.1931753879519, 40.52601940297527], [-74.18757496566255, 40.51699400485188], [-74.1889578267274, 40.515596138132885], [-74.18913184331815, 40.515269231679014], [-74.18880840908496, 40.515063502093206], [-74.18931243408731, 40.51521985592385], [-74.1896406760183, 40.515063913941844], [-74.19112911213176, 40.51330148238315], [-74.19071024233455, 40.513244870256486], [-74.19177827327297, 40.51244551275754], [-74.19348074189021, 40.51051415790794], [-74.19526625001481, 40.509778900220056], [-74.19607052896379, 40.50976202364646], [-74.19669249845685, 40.50994146729235], [-74.19830748913147, 40.51092395679503], [-74.19973686191857, 40.511417072946145], [-74.1999674870479, 40.51163542302644], [-74.19990088120319, 40.511988179921936], [-74.20032388576116, 40.512813196269214], [-74.20400228571219, 40.512235710817386], [-74.20537880835084, 40.51216137632757], [-74.2074107188164, 40.51174347693168], [-74.2088587111377, 40.51119363671284], [-74.2098263969635, 40.51055603506622], [-74.21049808794211, 40.50980787257481], [-74.21081672887733, 40.50872013604758], [-74.21151629879611, 40.508424279490846], [-74.2135313134976, 40.50639749043587], [-74.21394813295912, 40.50643378452378], [-74.21447404555879, 40.506248090240966], [-74.21541805715023, 40.5056446478215], [-74.2172430486721, 40.50361085326185], [-74.21738377277357, 40.50317738391445], [-74.21784041538275, 40.50321010153396], [-74.21813387797593, 40.50299251308854], [-74.21858205060988, 40.50298415886822], [-74.21958677550978, 40.502603589355644], [-74.22117201178624, 40.50249867858674], [-74.22153813587771, 40.50214431164417], [-74.22189367928365, 40.50241684805574], [-74.22270543698949, 40.50234743392677], [-74.2233575924824, 40.50194123837751], [-74.22386650279746, 40.50190662532063], [-74.2250035441684, 40.501368424309895], [-74.22542677797527, 40.50163266994578], [-74.22681775411455, 40.50204010812477], [-74.22814235232524, 40.50202397885105], [-74.23118202003275, 40.51089576320519], [-74.23260169485205, 40.51583919497924], [-74.23282673610318, 40.51637659578472], [-74.23397334079218, 40.51711722730645], [-74.23436470562253, 40.51761926963796], [-74.23511154727106, 40.52091719963957], [-74.2431404255097, 40.52161695214094], [-74.24274582401486, 40.522268199979074], [-74.24297846858019, 40.52387972257073], [-74.24342976359607, 40.52471958472289], [-74.24390357000323, 40.52487077604232], [-74.24402092988039, 40.525051577606575], [-74.24314683136888, 40.526999358519035], [-74.24301569000939, 40.52824006599024], [-74.24275734114383, 40.528466174082006], [-74.24254782689091, 40.528992835204136], [-74.24328603114316, 40.52908587218401], [-74.24402287779321, 40.53018068083049], [-74.24212244482719, 40.530101865671135], [-74.2416264706546, 40.530950685075645], [-74.24181062812193, 40.53256268203449], [-74.24217800953186, 40.53257615315318], [-74.2423299189366, 40.53297059299329], [-74.24232445957641, 40.53333989336987], [-74.24201953156845, 40.533606098655355], [-74.24210074408937, 40.53423889531939], [-74.24292534805507, 40.53535859724673], [-74.24375602570514, 40.53610009969614], [-74.24478501388133, 40.536244379110364], [-74.24405235277298, 40.536414800066524], [-74.24425920385423, 40.53670197712449], [-74.24466199843913, 40.536862162323935], [-74.24493853574559, 40.5366513789062], [-74.24534908200461, 40.53682385811943], [-74.2453717567217, 40.53706029536105], [-74.24490390372678, 40.53729977553008], [-74.24450139373522, 40.53782900180123], [-74.24447128234242, 40.53817246620079], [-74.24527800118393, 40.53915809653399], [-74.24554924611594, 40.540676926247876], [-74.24610464380146, 40.541336347464984], [-74.24632733280758, 40.54192065465133], [-74.2476885537978, 40.54312487579585], [-74.24802316273245, 40.54310651393362], [-74.24619749522091, 40.54565390429868], [-74.24363310350792, 40.54766712900456], [-74.24286237856307, 40.54710785750126], [-74.2416656843725, 40.54714081291094], [-74.23973174749473, 40.548199627567264], [-74.23886282127961, 40.549038270904674], [-74.23843611423213, 40.54915066127659], [-74.23758849930107, 40.5502197222471], [-74.2364583295777, 40.550474098737034], [-74.23640897759346, 40.550635461779244], [-74.23688546712974, 40.55139358756862], [-74.23636665839678, 40.550624707415565], [-74.23617635682562, 40.55145075035439], [-74.23658967486051, 40.55195798733665], [-74.23637038629728, 40.55236033168662], [-74.23489866145347, 40.55300522714962], [-74.23350999455748, 40.552464918381844], [-74.2327029192134, 40.55292433977477], [-74.23209173152178, 40.5537664863031], [-74.23219187273635, 40.55384906142611], [-74.2326174714992, 40.55362748854631], [-74.23241615948749, 40.55427863114923], [-74.2316866430187, 40.55505934746479], [-74.23090815161787, 40.555427971886886], [-74.23045737415529, 40.556045105738505], [-74.23001176402727, 40.555858563849085], [-74.22928520278685, 40.555956820847825], [-74.22889360956042, 40.556282711835195], [-74.22822342869897, 40.55643414572264], [-74.22658586235367, 40.55620860251995], [-74.22622885329658, 40.556309279431034], [-74.2232325361695, 40.55580501727999], [-74.2227062326966, 40.55547386370479], [-74.22191968091252, 40.5554432743097], [-74.2215368360629, 40.555643649879414], [-74.22134683628177, 40.5553588322646], [-74.22086765087369, 40.555940404064124], [-74.220528825998, 40.55586709384688], [-74.22018433411264, 40.5554256798508], [-74.22013491254161, 40.55506724166165], [-74.21991082243716, 40.554991663644316], [-74.21959134904408, 40.55507373587459], [-74.21954787188035, 40.55529231789691], [-74.21925905744865, 40.555387073965676], [-74.21897495198176, 40.55578447002298], [-74.21830813153193, 40.55591633236345], [-74.21794128832995, 40.55577192690738], [-74.21761476681294, 40.55508391536995], [-74.21748193804339, 40.55507289146284], [-74.21653676272459, 40.555397322465666], [-74.21648783530378, 40.55603799135931], [-74.21615469355784, 40.55597555392977], [-74.21574125644112, 40.5562169939879], [-74.21522721005545, 40.55622658373644], [-74.21515488538576, 40.55662288338348], [-74.21474197420096, 40.55703362719898], [-74.21490391305768, 40.55745145678963], [-74.21396577677093, 40.55795129606056], [-74.21382950360224, 40.55862351604015], [-74.21312139800514, 40.558608214749]]], "type": "Polygon"}, "id": 191, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10309", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 192, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 215835793.513, "Shape_Leng": 79038.5334731, "borough": "Staten Island", "postalCode": "10309"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.24966624246994, 40.51555479573201], [-74.24823084750453, 40.516480934888975], [-74.248108163557, 40.51636495313706], [-74.24660970744756, 40.5163681824507], [-74.24669759267934, 40.516568613265804], [-74.24522354480729, 40.51729635191229], [-74.24573922674273, 40.518020267456336], [-74.24552245588026, 40.51813752405471], [-74.24498830195094, 40.51816301127196], [-74.2443330745019, 40.51861820312472], [-74.24374784131295, 40.518337709641884], [-74.24245623689977, 40.51831641629077], [-74.24200873481887, 40.518557213779516], [-74.24200712554736, 40.518834023592255], [-74.24127539532861, 40.51916730288657], [-74.24105351350858, 40.519559945310306], [-74.24082057857358, 40.5195455691708], [-74.2405677447702, 40.519193071932], [-74.23991938599904, 40.52004701019249], [-74.24004700083621, 40.52023953554298], [-74.24059589792593, 40.52031247579554], [-74.24109031629793, 40.52065346129737], [-74.24114224763858, 40.52087324587183], [-74.24167387131537, 40.52082793601333], [-74.24316963455622, 40.52116736458878], [-74.2431404255097, 40.52161695214094], [-74.23511154727106, 40.52091719963957], [-74.23436470562253, 40.51761926963796], [-74.23397334079218, 40.51711722730645], [-74.23282673610318, 40.51637659578472], [-74.23260169485205, 40.51583919497924], [-74.23118202003275, 40.51089576320519], [-74.22814235232524, 40.50202397885105], [-74.22918635865926, 40.50202498824194], [-74.23028329579024, 40.5017277335535], [-74.23161870220197, 40.50164844932101], [-74.23246995169653, 40.501310324962404], [-74.23326430795906, 40.50076063247388], [-74.23379958685877, 40.50072530216354], [-74.23363322009455, 40.50056247435084], [-74.23439129045454, 40.50067900179406], [-74.23537677710422, 40.50049023569247], [-74.23627000538826, 40.49997024235929], [-74.23686416284583, 40.49986705370499], [-74.23763904337883, 40.49900618995883], [-74.23810406528553, 40.49895960317075], [-74.23990163226911, 40.497428915014765], [-74.24174297450533, 40.49746440562117], [-74.24219938307651, 40.49728714125626], [-74.24279171367463, 40.49748455522823], [-74.2443652672174, 40.49718728535636], [-74.24478463408515, 40.49726535836999], [-74.24477268549903, 40.49712095991239], [-74.24521290128311, 40.49678758808996], [-74.24569718704505, 40.496688009461394], [-74.24618296790173, 40.49608748940687], [-74.24707378620852, 40.49584008834934], [-74.2486506666108, 40.49614561461218], [-74.24944653813078, 40.4965054064073], [-74.25018825994697, 40.49713529794414], [-74.25032334943955, 40.497660718602695], [-74.2501174415137, 40.4980520243793], [-74.25042325740394, 40.4984279091617], [-74.2513944452649, 40.49899971807258], [-74.25173798759413, 40.49892583619316], [-74.25274552774714, 40.49942019450435], [-74.25334223516231, 40.50008547967239], [-74.25370244460575, 40.50107453042695], [-74.25442873874383, 40.502128400695874], [-74.25538594544443, 40.50398427647524], [-74.25548584487726, 40.504704383485794], [-74.25538440132785, 40.50660983226545], [-74.25575705177238, 40.50769864206114], [-74.25540829343232, 40.50829926202706], [-74.25429786150562, 40.50888983539035], [-74.25344341520068, 40.50984180842639], [-74.25315937829805, 40.51108741295947], [-74.25315113173244, 40.51225552749916], [-74.25212324503391, 40.51284249425681], [-74.25199243713078, 40.51323139378214], [-74.25223539985096, 40.51366742478872], [-74.25192705844772, 40.51422505618984], [-74.25156139126575, 40.51419217921696], [-74.25139724330234, 40.514439023636086], [-74.25043353876497, 40.514813850922295], [-74.25005467801549, 40.51517737899807], [-74.25018740192428, 40.51532481580941], [-74.24986183944739, 40.51550591515087], [-74.24936474297115, 40.51500837141976], [-74.24922851827763, 40.51508851391053], [-74.24966624246994, 40.51555479573201]]], "type": "Polygon"}, "id": 192, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10307", "BLDGpostalCode": 0, "CTY_FIPS": "085", "OBJECTID": 193, "PO_NAME": "Staten Island", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 46028382.6284, "Shape_Leng": 31375.3132189, "borough": "Staten Island", "postalCode": "10307"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01663881679119, 40.71216828448027], [-74.01567593771313, 40.71180484653575], [-74.01637988966199, 40.71008177415549], [-74.01468310237752, 40.70979656993839], [-74.01641605432789, 40.70521928943269], [-74.01649010620974, 40.70430713899403], [-74.01725122284195, 40.70386786232571], [-74.01767929759129, 40.703894371470874], [-74.01749075160845, 40.704679035849445], [-74.01811203909881, 40.704546326829764], [-74.01891683787066, 40.70474741578866], [-74.01934973563436, 40.70609705384606], [-74.01912588337478, 40.70698689462325], [-74.01858441126402, 40.7068716044067], [-74.01818403852589, 40.70784506067505], [-74.01886227709862, 40.708043046885756], [-74.01787127799766, 40.712362291270615], [-74.01663881679119, 40.71216828448027]]], "type": "Polygon"}, "id": 193, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10280", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 194, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 2234113.99487, "Shape_Leng": 8192.12492629, "borough": "Manhattan", "postalCode": "10280"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01440986373386, 40.710991580606084], [-74.01375386843968, 40.7136905723165], [-74.01015299270881, 40.71206448722059], [-74.01167375738106, 40.70968742222526], [-74.01440986373386, 40.710991580606084]]], "type": "Polygon"}, "id": 194, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10048", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 195, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 972788.42696, "Shape_Leng": 4033.60069883, "borough": "Manhattan", "postalCode": "10048"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00864440546795, 40.71260028995043], [-74.00850646269764, 40.71277832216693], [-74.00791257887487, 40.71251039057219], [-74.00821008740084, 40.712157135433706], [-74.00878234713956, 40.71241951100708], [-74.00864440546795, 40.71260028995043]]], "type": "Polygon"}, "id": 195, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10279", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 196, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 28664.7058134, "Shape_Leng": 680.943500465, "borough": "Manhattan", "postalCode": "10279"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97918497028893, 40.75213934582216], [-73.97949829003076, 40.752269317972626], [-73.97941466567369, 40.75238434266047], [-73.97909770850833, 40.75225985370451], [-73.97887284533638, 40.752465028922096], [-73.9782965958523, 40.75223269037628], [-73.97863471100835, 40.7517698396084], [-73.97920374625551, 40.752002166171444], [-73.97918497028893, 40.75213934582216]]], "type": "Polygon"}, "id": 196, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10165", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 197, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 40779.8152022, "Shape_Leng": 985.263293999, "borough": "Manhattan", "postalCode": "10165"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97703051158105, 40.751299826160974], [-73.97686822513346, 40.75123312023295], [-73.97665035982902, 40.7515342954721], [-73.97626026846702, 40.751372403846524], [-73.97659969950936, 40.75089939255269], [-73.97715301928731, 40.75113354510655], [-73.97703051158105, 40.751299826160974]]], "type": "Polygon"}, "id": 197, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10168", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 198, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 27810.1220594, "Shape_Leng": 742.127233302, "borough": "Manhattan", "postalCode": "10168"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97407496950834, 40.759256424088804], [-73.97389505071835, 40.75950680483407], [-73.97320409979436, 40.75921075832685], [-73.97355482147782, 40.75872921336381], [-73.97402676620007, 40.758931430046204], [-73.97385369005976, 40.75916863249279], [-73.97407496950834, 40.759256424088804]]], "type": "Polygon"}, "id": 198, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10055", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 199, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 37223.5387892, "Shape_Leng": 842.265584049, "borough": "Manhattan", "postalCode": "10055"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97924334576885, 40.762827098303106], [-73.97953039093146, 40.76294795231442], [-73.97924787718924, 40.76333592906233], [-73.97857547525985, 40.76305259739025], [-73.9788593771202, 40.76266545099326], [-73.97924334576885, 40.762827098303106]]], "type": "Polygon"}, "id": 199, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10105", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 200, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 35422.1567546, "Shape_Leng": 769.015785846, "borough": "Manhattan", "postalCode": "10105"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98673208525004, 40.7485710765877], [-73.9865544311199, 40.748809537929944], [-73.98632642149907, 40.74871768107415], [-73.9861598909203, 40.74895749298173], [-73.98481013684541, 40.748395911334406], [-73.9851474087237, 40.74791987569193], [-73.98673208525004, 40.7485710765877]]], "type": "Polygon"}, "id": 200, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10118", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 201, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 91733.7153701, "Shape_Leng": 1392.54638041, "borough": "Manhattan", "postalCode": "10118"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97869516551155, 40.75549581847658], [-73.97847906528733, 40.755407321672436], [-73.97865359901755, 40.75516630688663], [-73.97926940530458, 40.75543169921264], [-73.97913486990927, 40.75561519789782], [-73.97869516551155, 40.75549581847658]]], "type": "Polygon"}, "id": 201, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10176", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 202, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 18289.0897346, "Shape_Leng": 590.377332961, "borough": "Manhattan", "postalCode": "10176"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95132807159276, 40.76931040302372], [-73.95165221591711, 40.769445975230724], [-73.95129916737687, 40.76994711883724], [-73.95097862005936, 40.769814293714006], [-73.95132807159276, 40.76931040302372]]], "type": "Polygon"}, "id": 202, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10162", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 203, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 21034.8869204, "Shape_Leng": 624.792615306, "borough": "Manhattan", "postalCode": "10162"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99309797033558, 40.77272857861628], [-73.98477434066237, 40.769219333323136], [-73.9843193677394, 40.76984201633277], [-73.98220500852914, 40.76893917961924], [-73.9821910490971, 40.76843275229064], [-73.98247619337887, 40.76810255433464], [-73.98214099885266, 40.76767624947194], [-73.98163627319613, 40.76764488303195], [-73.98136284209183, 40.76783455003186], [-73.97301486574793, 40.764278906417395], [-73.97674467174674, 40.759164758846374], [-73.97997187582975, 40.76052472469338], [-73.98134106844775, 40.758645323851304], [-73.99773597314044, 40.765557990235976], [-73.99909766419385, 40.76368004467359], [-74.00116297247455, 40.76202186185266], [-74.002633874326, 40.76015187964796], [-74.0032114988318, 40.76034815519167], [-74.00085463416175, 40.76370011007131], [-73.99985795947288, 40.763368952736485], [-73.99958549403439, 40.76361233224881], [-73.998543307135, 40.765053922768786], [-73.99868466089653, 40.765229416485866], [-73.99837687330535, 40.76538932225254], [-73.99646711884036, 40.76808809291084], [-73.99728252518568, 40.76844158338811], [-73.99586440428153, 40.77053277575308], [-73.99513288994916, 40.771455318102], [-73.99494881610995, 40.77146990463371], [-73.99502272733378, 40.7716066042242], [-73.99434231908013, 40.77252494815915], [-73.99416284969816, 40.77248707575785], [-73.9938383514649, 40.7730462090637], [-73.99309797033558, 40.77272857861628]]], "type": "Polygon"}, "id": 203, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10019", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 204, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 18828383.1169, "Shape_Leng": 24983.4416282, "borough": "Manhattan", "postalCode": "10019"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97844979861895, 40.75906503534943], [-73.97798851126838, 40.759689583269356], [-73.97674467174674, 40.759164758846374], [-73.97720025859628, 40.75853795896472], [-73.97844979861895, 40.75906503534943]]], "type": "Polygon"}, "id": 204, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10111", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 205, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 103066.25326, "Shape_Leng": 1311.83994069, "borough": "Manhattan", "postalCode": "10111"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9763142541711, 40.75250453979326], [-73.97650853257366, 40.75258585921978], [-73.97611495162867, 40.75312412756239], [-73.97524531060542, 40.75275636656649], [-73.97563851609334, 40.7522186503948], [-73.9763142541711, 40.75250453979326]]], "type": "Polygon"}, "id": 205, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10170", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 206, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 61793.1751378, "Shape_Leng": 999.928298243, "borough": "Manhattan", "postalCode": "10170"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97273986776302, 40.757069199110894], [-73.972566337712, 40.757307868304096], [-73.9720984250865, 40.757073516542086], [-73.97227514083735, 40.75683424997621], [-73.97273986776302, 40.757069199110894]]], "type": "Polygon"}, "id": 206, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10112", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 207, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 16700.7379806, "Shape_Leng": 521.003076773, "borough": "Manhattan", "postalCode": "10112"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99209901563053, 40.75177449383287], [-73.99161367306624, 40.75219290741558], [-73.99135645437354, 40.75208454676035], [-73.99161055093616, 40.75156871173728], [-73.99209901563053, 40.75177449383287]]], "type": "Polygon"}, "id": 207, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10122", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 208, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23294.6381032, "Shape_Leng": 705.234391855, "borough": "Manhattan", "postalCode": "10122"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98298753439542, 40.76629769643277], [-73.98280971697743, 40.76654359763378], [-73.98203807396833, 40.766218398033864], [-73.9820673822317, 40.76606275951131], [-73.98229750582438, 40.76616049976952], [-73.98238212714023, 40.766043915499516], [-73.98298753439542, 40.76629769643277]]], "type": "Polygon"}, "id": 208, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10107", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 209, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23030.1758969, "Shape_Leng": 716.959417135, "borough": "Manhattan", "postalCode": "10107"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97724001995533, 40.76055176650466], [-73.97699073059432, 40.76081384486901], [-73.9760388767792, 40.76041179163621], [-73.97639619764085, 40.7599226482283], [-73.9773912894479, 40.760342978271545], [-73.97724001995533, 40.76055176650466]]], "type": "Polygon"}, "id": 209, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10103", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 210, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 62713.2534062, "Shape_Leng": 1038.49399077, "borough": "Manhattan", "postalCode": "10103"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97287721094801, 40.76411103902994], [-73.97164030556942, 40.76360970065963], [-73.97197140195325, 40.763130389237986], [-73.97327171188266, 40.76365872692936], [-73.97287721094801, 40.76411103902994]]], "type": "Polygon"}, "id": 210, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10153", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 211, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 80339.6472271, "Shape_Leng": 1209.55793209, "borough": "Manhattan", "postalCode": "10153"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97573949333555, 40.75165472997982], [-73.97549354126171, 40.75199343917962], [-73.97480093037525, 40.75170256145669], [-73.97515067972074, 40.75121787714875], [-73.975844981336, 40.75150944653377], [-73.97573949333555, 40.75165472997982]]], "type": "Polygon"}, "id": 211, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10174", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 212, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 44203.2255484, "Shape_Leng": 841.826840295, "borough": "Manhattan", "postalCode": "10174"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97727708572259, 40.753512282461145], [-73.97680843998728, 40.75415758135389], [-73.9758598318508, 40.75375671555277], [-73.97657719950988, 40.75289456653808], [-73.97739448074351, 40.75323944336944], [-73.97727708572259, 40.753512282461145]]], "type": "Polygon"}, "id": 212, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10166", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 213, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 110438.62317, "Shape_Leng": 1363.60566379, "borough": "Manhattan", "postalCode": "10166"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97669134694799, 40.75456441507981], [-73.97647462003235, 40.75486157382045], [-73.97538618566801, 40.75440409676417], [-73.97573723443665, 40.753922851070755], [-73.97682471438888, 40.7543815583435], [-73.97669134694799, 40.75456441507981]]], "type": "Polygon"}, "id": 213, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10169", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 214, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 66246.3463652, "Shape_Leng": 1112.84879736, "borough": "Manhattan", "postalCode": "10169"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97467500550945, 40.75429505438924], [-73.97553395062161, 40.75465179514791], [-73.97518487488824, 40.75513105948544], [-73.9738991643843, 40.75460004448769], [-73.97425547006456, 40.754120803634244], [-73.97467500550945, 40.75429505438924]]], "type": "Polygon"}, "id": 214, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10167", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 215, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 80926.1872511, "Shape_Leng": 1209.13569938, "borough": "Manhattan", "postalCode": "10167"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97634917504308, 40.75500179373828], [-73.97600012900097, 40.755475576449975], [-73.9756075654926, 40.75531515001929], [-73.97595302737086, 40.75483587465473], [-73.97634917504308, 40.75500179373828]]], "type": "Polygon"}, "id": 215, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10177", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 216, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 24688.0511035, "Shape_Leng": 645.753044366, "borough": "Manhattan", "postalCode": "10177"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97388429427399, 40.755377015151595], [-73.97346631621922, 40.75520528331888], [-73.97382260348785, 40.75472879038214], [-73.9750938419024, 40.75526798868936], [-73.9747520478412, 40.755733547557874], [-73.97388429427399, 40.755377015151595]]], "type": "Polygon"}, "id": 216, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10172", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 217, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 79589.1001039, "Shape_Leng": 1202.12732775, "borough": "Manhattan", "postalCode": "10172"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97408390360256, 40.75574404225018], [-73.97455175558441, 40.75594187949786], [-73.97427349678244, 40.756322380196586], [-73.97380564296515, 40.75612451481459], [-73.97408390360256, 40.75574404225018]]], "type": "Polygon"}, "id": 217, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10171", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 218, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 23525.085921, "Shape_Leng": 613.861640526, "borough": "Manhattan", "postalCode": "10171"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97235910219908, 40.75743425057543], [-73.97325072423153, 40.75779287106601], [-73.97290890432835, 40.75825843329966], [-73.97161223772584, 40.75774383367291], [-73.97195769011654, 40.75727279205878], [-73.97235910219908, 40.75743425057543]]], "type": "Polygon"}, "id": 218, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10154", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 219, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 79148.8023924, "Shape_Leng": 1201.2224447, "borough": "Manhattan", "postalCode": "10154"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97147099323699, 40.75849008325839], [-73.97183812218917, 40.75801912846451], [-73.97278173814446, 40.75840635628315], [-73.97242901093033, 40.75888561115389], [-73.97147099323699, 40.75849008325839]]], "type": "Polygon"}, "id": 219, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10152", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 220, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 59924.9982704, "Shape_Leng": 1004.59891608, "borough": "Manhattan", "postalCode": "10152"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00821833819428, 40.70654131593431], [-74.00793812205711, 40.706824979552984], [-74.00723427343219, 40.70637424167934], [-74.00748368780096, 40.706124534645234], [-74.00821833819428, 40.70654131593431]]], "type": "Polygon"}, "id": 220, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10270", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 221, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 31255.8004282, "Shape_Leng": 753.005571394, "borough": "Manhattan", "postalCode": "10270"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97826208547069, 40.760051670526394], [-73.97834939420393, 40.759932072929935], [-73.97975790342603, 40.76052619383957], [-73.97940584184306, 40.761008765878984], [-73.97799718345367, 40.76041460465952], [-73.97826208547069, 40.760051670526394]]], "type": "Polygon"}, "id": 221, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10104", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 222, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 89721.8525423, "Shape_Leng": 1294.59643948, "borough": "Manhattan", "postalCode": "10104"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01020640978626, 40.70830422903382], [-74.00993708533804, 40.708128103615756], [-74.01023086262302, 40.70779404316988], [-74.01113018895245, 40.70829063665372], [-74.01079281700771, 40.70868771312985], [-74.01020640978626, 40.70830422903382]]], "type": "Polygon"}, "id": 222, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10271", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 223, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 49236.8772023, "Shape_Leng": 939.597342522, "borough": "Manhattan", "postalCode": "10271"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98161639353624, 40.753945497469154], [-73.98144530963032, 40.75418010574124], [-73.98078196042059, 40.753918949452434], [-73.98096416937614, 40.753670260089216], [-73.98161639353624, 40.753945497469154]]], "type": "Polygon"}, "id": 223, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10110", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 224, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 21249.0635162, "Shape_Leng": 615.250307935, "borough": "Manhattan", "postalCode": "10110"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98000399921173, 40.75441196083333], [-73.9794317390257, 40.754155143984505], [-73.97960838526915, 40.75391940504883], [-73.98018566891693, 40.75416315555922], [-73.98000399921173, 40.75441196083333]]], "type": "Polygon"}, "id": 224, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10175", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 225, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 18685.3945268, "Shape_Leng": 573.87163626, "borough": "Manhattan", "postalCode": "10175"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97358880790966, 40.76321385190538], [-73.97338514379605, 40.76349319548705], [-73.97275481043927, 40.7632359541797], [-73.97292573541033, 40.76300044056191], [-73.97358880790966, 40.76321385190538]]], "type": "Polygon"}, "id": 225, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10151", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 226, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 21380.2683788, "Shape_Leng": 630.44726526, "borough": "Manhattan", "postalCode": "10151"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97928260569901, 40.75403401728477], [-73.97912406529302, 40.75396751334783], [-73.97896796425675, 40.75427715977423], [-73.97851011688466, 40.75408383580447], [-73.97868505985603, 40.753844243800444], [-73.97898525624579, 40.753971279236126], [-73.97872868137532, 40.753784503324006], [-73.97905817411745, 40.7538699046032], [-73.97886070289697, 40.75360370612032], [-73.97942621192631, 40.7538424874971], [-73.97928260569901, 40.75403401728477]]], "type": "Polygon"}, "id": 226, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10173", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 227, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 25689.4205868, "Shape_Leng": 1188.47810172, "borough": "Manhattan", "postalCode": "10173"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97728748153484, 40.750699087517255], [-73.97745834462025, 40.750469041818626], [-73.97834066353512, 40.75083134055528], [-73.97800253925845, 40.7512941896198], [-73.97719583453822, 40.75096505093398], [-73.97728748153484, 40.750699087517255]]], "type": "Polygon"}, "id": 227, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10178", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 228, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 51303.0376357, "Shape_Leng": 943.808411779, "borough": "Manhattan", "postalCode": "10178"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99354429715636, 40.75145260806616], [-73.99319540413491, 40.7519236974734], [-73.9911532547905, 40.751083224751795], [-73.99150214565974, 40.75061488891575], [-73.99354429715636, 40.75145260806616]]], "type": "Polygon"}, "id": 228, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10119", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 229, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 126392.973553, "Shape_Leng": 1679.33368634, "borough": "Manhattan", "postalCode": "10119"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99212790954165, 40.7506639299073], [-73.99132116706885, 40.75032941504814], [-73.99212071186159, 40.74924755958466], [-73.99292745737948, 40.74957933135835], [-73.99212790954165, 40.7506639299073]]], "type": "Polygon"}, "id": 229, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10121", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 230, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 115104.799339, "Shape_Leng": 1413.87037112, "borough": "Manhattan", "postalCode": "10121"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96442407769575, 40.81075515833336], [-73.96401951743952, 40.81133069121485], [-73.96305843786453, 40.81094722012595], [-73.9634767146014, 40.81037321316466], [-73.96442407769575, 40.81075515833336]]], "type": "Polygon"}, "id": 230, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10115", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 231, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 71720.1250888, "Shape_Leng": 1074.60573658, "borough": "Manhattan", "postalCode": "10115"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.99058621353761, 40.751760062090796], [-73.99042983063373, 40.75154549470207], [-73.9906250488805, 40.751277520232996], [-73.99111146703471, 40.75135845123129], [-73.99058621353761, 40.751760062090796]]], "type": "Polygon"}, "id": 231, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10123", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 232, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 16138.5369623, "Shape_Leng": 662.039084632, "borough": "Manhattan", "postalCode": "10123"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9811913910997, 40.76552785648638], [-73.98100953968184, 40.76578257021254], [-73.9806421409314, 40.76562773045328], [-73.98079128080256, 40.765414092842846], [-73.98045645973961, 40.76524288674711], [-73.9806201624539, 40.76500458701041], [-73.98124694242452, 40.76526177562485], [-73.98107242949624, 40.7654945543781], [-73.9811913910997, 40.76552785648638]]], "type": "Polygon"}, "id": 232, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10106", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 233, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 31052.5527962, "Shape_Leng": 863.486068222, "borough": "Manhattan", "postalCode": "10106"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.9754304622918, 40.748942907832735], [-73.97517047110674, 40.74929929041199], [-73.97464067488728, 40.749075588325745], [-73.97498512578609, 40.748603753397084], [-73.97551491939991, 40.748827480929315], [-73.9754304622918, 40.748942907832735]]], "type": "Polygon"}, "id": 233, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10158", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 234, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 35395.7701438, "Shape_Leng": 776.992636762, "borough": "Manhattan", "postalCode": "10158"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01025451603236, 40.70316648379826], [-74.00895614469079, 40.703948974703124], [-74.00809862192483, 40.703212941979274], [-74.00942942206353, 40.70242983666733], [-74.01025451603236, 40.70316648379826]]], "type": "Polygon"}, "id": 234, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10041", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 235, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 162236.646863, "Shape_Leng": 1641.8246091, "borough": "Manhattan", "postalCode": "10041"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98938483171935, 40.750005709191676], [-73.98908447910925, 40.74988069989499], [-73.98890708434146, 40.75012716944268], [-73.98851243778279, 40.749963688926584], [-73.98884050566375, 40.749469109246434], [-73.98955961892331, 40.74976967553237], [-73.98938483171935, 40.750005709191676]]], "type": "Polygon"}, "id": 235, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10120", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 236, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 35179.27222, "Shape_Leng": 854.894397691, "borough": "Manhattan", "postalCode": "10120"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0047581751344, 40.71507066139842], [-74.00531246800327, 40.71531927705355], [-74.0045540210965, 40.71623939687649], [-74.0032187607816, 40.71562073740627], [-74.00356756481796, 40.71438104859513], [-74.0047581751344, 40.71507066139842]]], "type": "Polygon"}, "id": 236, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10278", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 237, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 206705.99517, "Shape_Leng": 1889.28778604, "borough": "Manhattan", "postalCode": "10278"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.96843628425923, 40.761106742964785], [-73.96833107023015, 40.7613296970291], [-73.96733647604968, 40.76080218289946], [-73.96742157816107, 40.760684123825406], [-73.96843628425923, 40.761106742964785]]], "type": "Polygon"}, "id": 237, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10155", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 238, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 24784.6885389, "Shape_Leng": 838.808390777, "borough": "Manhattan", "postalCode": "10155"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.97255352326927, 40.76489775892639], [-73.96267526165872, 40.76071807006688], [-73.96162025700741, 40.7600950712547], [-73.96152145174365, 40.76023108654937], [-73.95851587740417, 40.75893224761831], [-73.95916738863393, 40.758023715096556], [-73.95906020787648, 40.75796853102883], [-73.96076305849375, 40.7557070654357], [-73.96163888900261, 40.75515646277299], [-73.96320189771842, 40.753367580909085], [-73.96344402771206, 40.75349010695482], [-73.96459499710154, 40.75243977267625], [-73.96649172613814, 40.75310026032344], [-73.97765482424467, 40.75791144608969], [-73.97255352326927, 40.76489775892639]]], "type": "Polygon"}, "id": 238, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10022", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 239, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 12728335.6232, "Shape_Leng": 14672.45315, "borough": "Manhattan", "postalCode": "10022"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00708359545185, 40.70387011589419], [-74.00749980482999, 40.70422199686151], [-74.00690522517685, 40.70462934985986], [-74.00648898089602, 40.70427747576827], [-74.00708359545185, 40.70387011589419]]], "type": "Polygon"}, "id": 239, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10043", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 240, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 38262.3648074, "Shape_Leng": 788.626538246, "borough": "Manhattan", "postalCode": "10043"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00871477330257, 40.70748970869894], [-74.00948926782756, 40.70799128081766], [-74.00923754171167, 40.70821548984687], [-74.00846538967392, 40.70771515858236], [-74.00871477330257, 40.70748970869894]]], "type": "Polygon"}, "id": 240, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10081", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 241, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 30240.5054524, "Shape_Leng": 777.935098182, "borough": "Manhattan", "postalCode": "10081"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.983016591649, 40.75485135971865], [-73.98282717283959, 40.75510988472865], [-73.98217103950763, 40.75477838106817], [-73.98250921215165, 40.7543183647062], [-73.98318741431024, 40.75460452023503], [-73.983016591649, 40.75485135971865]]], "type": "Polygon"}, "id": 241, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10096", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 242, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 42106.1146917, "Shape_Leng": 850.992695768, "borough": "Manhattan", "postalCode": "10096"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98521646108104, 40.762652493326485], [-73.98411562245992, 40.76212819023224], [-73.98429281831278, 40.76183109309593], [-73.9844129464112, 40.76172209434405], [-73.98558340184418, 40.76216072036993], [-73.98521646108104, 40.762652493326485]]], "type": "Polygon"}, "id": 242, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10097", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 243, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 65826.1779787, "Shape_Leng": 1169.90999345, "borough": "Manhattan", "postalCode": "10097"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98243015162393, 40.75680045135079], [-73.98212918794107, 40.75721464639348], [-73.98155930769202, 40.756975184320844], [-73.98187385009932, 40.75654230740812], [-73.98243015162393, 40.75680045135079]]], "type": "Polygon"}, "id": 243, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10196", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 244, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 32502.4403307, "Shape_Leng": 721.137291042, "borough": "Manhattan", "postalCode": "10196"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98133175499999, 40.75673275871282], [-73.98128068303036, 40.756888375716635], [-73.9811667265258, 40.75684050430173], [-73.98135428633371, 40.75657946937507], [-73.98133175499999, 40.75673275871282]]], "type": "Polygon"}, "id": 244, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10196", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 245, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 3154.82497349, "Shape_Leng": 289.273986047, "borough": "Manhattan", "postalCode": "10196"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0145096413555, 40.70555241329318], [-74.01425218988345, 40.70616163602801], [-74.01343264104497, 40.70588169625123], [-74.01381156870329, 40.705406726176925], [-74.0145096413555, 40.70555241329318]]], "type": "Polygon"}, "id": 245, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10275", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 246, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 48280.4150043, "Shape_Leng": 885.361027718, "borough": "Manhattan", "postalCode": "10275"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00806000181144, 40.704892795084646], [-74.00830766865943, 40.70509388871131], [-74.00785797613655, 40.7053926559673], [-74.00764825843574, 40.705193152770896], [-74.00806000181144, 40.704892795084646]]], "type": "Polygon"}, "id": 246, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10265", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 247, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 17229.1549665, "Shape_Leng": 528.531814926, "borough": "Manhattan", "postalCode": "10265"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00910380255034, 40.708768202696604], [-74.00886125491242, 40.708918994189645], [-74.00810325868447, 40.70796914590539], [-74.00827583154417, 40.70780851845551], [-74.00926826072333, 40.708633256993295], [-74.00910380255034, 40.708768202696604]]], "type": "Polygon"}, "id": 247, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10045", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 248, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 47808.9854242, "Shape_Leng": 1050.93179817, "borough": "Manhattan", "postalCode": "10045"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98633231041309, 40.73957922332434], [-73.98599291879759, 40.739566665494365], [-73.98617007135441, 40.739325567062394], [-73.98664405925801, 40.73952458109604], [-73.98654067438076, 40.739667020310975], [-73.98633231041309, 40.73957922332434]]], "type": "Polygon"}, "id": 248, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10047", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 249, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 10149.7796831, "Shape_Leng": 544.562515041, "borough": "Manhattan", "postalCode": "10047"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98633231041309, 40.73957922332434], [-73.98599291879759, 40.739566665494365], [-73.98617007135441, 40.739325567062394], [-73.98664405925801, 40.73952458109604], [-73.98654067438076, 40.739667020310975], [-73.98633231041309, 40.73957922332434]]], "type": "Polygon"}, "id": 249, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10047", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 250, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 10149.7796831, "Shape_Leng": 544.562515041, "borough": "Manhattan", "postalCode": "10047"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01287666112424, 40.71051906616817], [-74.01258695320229, 40.71096356334436], [-74.01220569966631, 40.71080311536119], [-74.011944940717, 40.711161933235566], [-74.01147531563282, 40.71096327429481], [-74.01172948426633, 40.710601612532486], [-74.0115409541067, 40.71052223264511], [-74.01180474155383, 40.710159625094725], [-74.01287666112424, 40.71051906616817]]], "type": "Polygon"}, "id": 250, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10080", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 251, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 77111.44771, "Shape_Leng": 1312.78059796, "borough": "Manhattan", "postalCode": "10080"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0119355092785, 40.70719862311504], [-74.01165893937832, 40.70761255343667], [-74.01136579227578, 40.70750114449217], [-74.0118929175282, 40.706650189134], [-74.012254810211, 40.7068073174139], [-74.0119355092785, 40.70719862311504]]], "type": "Polygon"}, "id": 251, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10203", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 252, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 37226.8835853, "Shape_Leng": 909.93965936, "borough": "Manhattan", "postalCode": "10203"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.0103621652894, 40.70876809629968], [-74.01023948069644, 40.70889371056087], [-74.00960679163951, 40.70858061237593], [-74.00985501330285, 40.70832802504313], [-74.0103621652894, 40.70876809629968]]], "type": "Polygon"}, "id": 252, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10259", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 253, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 21064.3129523, "Shape_Leng": 620.157860973, "borough": "Manhattan", "postalCode": "10259"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00908463334824, 40.70626062267263], [-74.00869608422505, 40.70668812541354], [-74.00796563348787, 40.706280381721086], [-74.00822230561477, 40.70577143065655], [-74.00908463334824, 40.70626062267263]]], "type": "Polygon"}, "id": 253, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10260", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 254, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 52514.7350789, "Shape_Leng": 980.356289437, "borough": "Manhattan", "postalCode": "10260"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01476100820057, 40.713086925429714], [-74.01549671917482, 40.71343688510812], [-74.01496849545933, 40.71406812099924], [-74.01431196389815, 40.71375973463209], [-74.01442963241797, 40.71331940812602], [-74.01476100820057, 40.713086925429714]]], "type": "Polygon"}, "id": 254, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10285", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 255, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 67350.3889582, "Shape_Leng": 1067.98354189, "borough": "Manhattan", "postalCode": "10285"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.00936106903438, 40.70641810896439], [-74.00910683224994, 40.70669129947036], [-74.00884319868976, 40.70652625630068], [-74.00908463334824, 40.70626062267263], [-74.00936106903438, 40.70641810896439]]], "type": "Polygon"}, "id": 255, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10286", "BLDGpostalCode": 1, "CTY_FIPS": "061", "OBJECTID": 256, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 11264.4123791, "Shape_Leng": 437.699280281, "borough": "Manhattan", "postalCode": "10286"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.89262280059243, 40.79245664049589], [-73.89274209513097, 40.792866046331355], [-73.89267438615921, 40.79360155468106], [-73.89242288408825, 40.79392220735061], [-73.89254832016852, 40.794046764547396], [-73.89247801614928, 40.794447204758896], [-73.8918206131503, 40.7967754495504], [-73.89066422220682, 40.797746945559155], [-73.89016726222592, 40.797966285196715], [-73.8891801541383, 40.79780571774622], [-73.88840412733906, 40.79825892019744], [-73.88728567686238, 40.79832438162158], [-73.88648570973993, 40.79793484257154], [-73.88375740753413, 40.79570858896952], [-73.8836360209596, 40.7956678728234], [-73.88364828243677, 40.795965527649535], [-73.88320393568758, 40.79554501545187], [-73.88209633976467, 40.795159877418214], [-73.87975745456401, 40.794883701802846], [-73.87801071926002, 40.79437431620046], [-73.87581681145377, 40.79313985122371], [-73.87485267255828, 40.792260746876416], [-73.87226299081749, 40.79106570341556], [-73.8712115395892, 40.79003613630932], [-73.87080280058726, 40.78791102432322], [-73.8713197926044, 40.787390553418845], [-73.87161844980827, 40.78671032853488], [-73.87301860569687, 40.78587511973198], [-73.87422461049213, 40.785758858259435], [-73.87522968621549, 40.78592269400975], [-73.87670530752068, 40.785827905886634], [-73.8784947455996, 40.785338636543756], [-73.88031496036274, 40.785708050534154], [-73.88108703271062, 40.785720470731896], [-73.88331434528072, 40.78634967321856], [-73.88394306390616, 40.78629384749797], [-73.88537442201505, 40.78666914857051], [-73.88815787604368, 40.78695751352068], [-73.88904080994655, 40.787362810200946], [-73.88939229035681, 40.78777327432759], [-73.8901268501149, 40.78963629594076], [-73.89040096552971, 40.78997530481547], [-73.89083604413791, 40.79021685125216], [-73.89160587111738, 40.79016071747601], [-73.89214681399551, 40.79033682359007], [-73.89262280059243, 40.79245664049589]]], "type": "Polygon"}, "id": 256, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/11370", "BLDGpostalCode": 0, "CTY_FIPS": "005", "OBJECTID": 257, "PO_NAME": "Bronx", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 18190205.187, "Shape_Leng": 17837.7211487, "borough": "Bronx", "postalCode": "11370"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.95232471528539, 40.76453994029583], [-73.9544236824416, 40.76218927306042], [-73.95906020787648, 40.75796853102883], [-73.95916738863393, 40.758023715096556], [-73.95851587740417, 40.75893224761831], [-73.96152145174365, 40.76023108654937], [-73.96162025700741, 40.7600950712547], [-73.96267526165872, 40.76071807006688], [-73.97255352326927, 40.76489775892639], [-73.9684450875844, 40.770512715327335], [-73.95515920168289, 40.764918030312465], [-73.95470085007233, 40.76554539429569], [-73.95232471528539, 40.76453994029583]]], "type": "Polygon"}, "id": 257, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10065", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 258, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 11442579.5473, "Shape_Leng": 15541.7433636, "borough": "Manhattan", "postalCode": "10065"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.94908345691881, 40.76828439957028], [-73.9505182523556, 40.768873643424705], [-73.95008118613985, 40.76950167320678], [-73.95022258897437, 40.76957692192602], [-73.96468735882094, 40.77567710275721], [-73.96322991306303, 40.77767706998322], [-73.9545551965945, 40.774020320961206], [-73.9540926544297, 40.77465627714582], [-73.94947623620192, 40.77270784073155], [-73.94993704268983, 40.77207366801167], [-73.94758356868442, 40.77107963375616], [-73.94711811963955, 40.77171281078474], [-73.94653116921268, 40.771454047737194], [-73.94769770056337, 40.77023186076828], [-73.94747457992891, 40.7701410515559], [-73.94908345691881, 40.76828439957028]]], "type": "Polygon"}, "id": 258, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10075", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 259, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 4809654.93064, "Shape_Leng": 13540.7653344, "borough": "Manhattan", "postalCode": "10075"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-73.98821069346344, 40.78122505891703], [-73.98674581818847, 40.78058402788437], [-73.98714973757546, 40.77928691853204], [-73.98823352437793, 40.77716166985338], [-73.98704451971062, 40.77660488774179], [-73.98963766661983, 40.77295649332293], [-73.99306672475984, 40.77433850654827], [-73.99262856264635, 40.77497398481884], [-73.99228860524347, 40.775128700441954], [-73.99238973243683, 40.775546404400004], [-73.99092790884121, 40.777568309282785], [-73.99037528646151, 40.77766175009686], [-73.98885848015084, 40.779736482048776], [-73.98891962455777, 40.78023045920453], [-73.98821069346344, 40.78122505891703]]], "type": "Polygon"}, "id": 259, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10069", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 260, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 2372365.88899, "Shape_Leng": 7780.63213312, "borough": "Manhattan", "postalCode": "10069"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01468310237752, 40.70979656993839], [-74.01637988966199, 40.71008177415549], [-74.01567593771313, 40.71180484653575], [-74.01663881679119, 40.71216828448027], [-74.01662771280506, 40.71279989704232], [-74.01633353370087, 40.713409350676294], [-74.01678106635167, 40.714000559698455], [-74.01619864973256, 40.71476922065405], [-74.01375386894121, 40.7136930027943], [-74.01468310237752, 40.70979656993839]]], "type": "Polygon"}, "id": 260, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10281", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 261, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 958087.21122, "Shape_Leng": 4717.02526596, "borough": "Manhattan", "postalCode": "10281"}, "type": "Feature"}, {"geometry": {"coordinates": [[[-74.01322730659011, 40.71832262621834], [-74.01420569583551, 40.71388576523014], [-74.01619864914188, 40.71476679017664], [-74.01678106573976, 40.71399812922081], [-74.01633353310528, 40.71340692019842], [-74.01763362065076, 40.71360712350674], [-74.0167060877744, 40.7186509789678], [-74.01322730659011, 40.71832262621834]]], "type": "Polygon"}, "id": 261, "properties": {"@id": "http://nyc.pediacities.com/Resource/PostalCode/10282", "BLDGpostalCode": 0, "CTY_FIPS": "061", "OBJECTID": 262, "PO_NAME": "New York", "STATE": "NY", "ST_FIPS": "36", "Shape_Area": 1561954.68329, "Shape_Leng": 6083.86976116, "borough": "Manhattan", "postalCode": "10282"}, "type": "Feature"}], "type": "FeatureCollection"});
var color_map_9a2a43f958374b6aab8e39a6e9bd6505 = {};
color_map_9a2a43f958374b6aab8e39a6e9bd6505.color = d3.scale.threshold()
.domain([0.0, 501.00400801603206, 1002.0080160320641, 1503.0120240480962, 2004.0160320641282, 2505.0200400801605, 3006.0240480961925, 3507.0280561122245, 4008.0320641282565, 4509.0360721442885, 5010.040080160321, 5511.0440881763525, 6012.048096192385, 6513.0521042084165, 7014.056112224449, 7515.060120240481, 8016.064128256513, 8517.068136272545, 9018.072144288577, 9519.07615230461, 10020.080160320642, 10521.084168336673, 11022.088176352705, 11523.092184368737, 12024.09619238477, 12525.100200400802, 13026.104208416833, 13527.108216432865, 14028.112224448898, 14529.11623246493, 15030.120240480963, 15531.124248496993, 16032.128256513026, 16533.132264529057, 17034.13627254509, 17535.14028056112, 18036.144288577154, 18537.148296593186, 19038.15230460922, 19539.15631262525, 20040.160320641284, 20541.164328657316, 21042.168336673345, 21543.172344689377, 22044.17635270541, 22545.180360721442, 23046.184368737475, 23547.188376753507, 24048.19238476954, 24549.196392785572, 25050.200400801605, 25551.204408817634, 26052.208416833666, 26553.2124248497, 27054.21643286573, 27555.220440881763, 28056.224448897796, 28557.22845691383, 29058.23246492986, 29559.236472945893, 30060.240480961926, 30561.244488977954, 31062.248496993987, 31563.25250501002, 32064.256513026052, 32565.260521042084, 33066.26452905811, 33567.268537074146, 34068.27254509018, 34569.27655310621, 35070.28056112224, 35571.284569138275, 36072.28857715431, 36573.29258517034, 37074.29659318637, 37575.300601202405, 38076.30460921844, 38577.30861723447, 39078.3126252505, 39579.316633266535, 40080.32064128257, 40581.3246492986, 41082.32865731463, 41583.332665330665, 42084.33667334669, 42585.34068136272, 43086.344689378755, 43587.34869739479, 44088.35270541082, 44589.35671342685, 45090.360721442885, 45591.36472945892, 46092.36873747495, 46593.37274549098, 47094.376753507015, 47595.38076152305, 48096.38476953908, 48597.38877755511, 49098.392785571144, 49599.39679358718, 50100.40080160321, 50601.40480961924, 51102.40881763527, 51603.4128256513, 52104.41683366733, 52605.420841683364, 53106.4248496994, 53607.42885771543, 54108.43286573146, 54609.436873747494, 55110.44088176353, 55611.44488977956, 56112.44889779559, 56613.452905811624, 57114.45691382766, 57615.46092184369, 58116.46492985972, 58617.468937875754, 59118.47294589179, 59619.47695390782, 60120.48096192385, 60621.48496993988, 61122.48897795591, 61623.49298597194, 62124.496993987974, 62625.501002004006, 63126.50501002004, 63627.50901803607, 64128.513026052104, 64629.517034068136, 65130.52104208417, 65631.5250501002, 66132.52905811623, 66633.53306613227, 67134.53707414829, 67635.54108216433, 68136.54509018036, 68637.5490981964, 69138.55310621242, 69639.55711422846, 70140.56112224449, 70641.56513026053, 71142.56913827655, 71643.57314629259, 72144.57715430862, 72645.58116232466, 73146.58517034068, 73647.58917835672, 74148.59318637275, 74649.59719438877, 75150.60120240481, 75651.60521042084, 76152.60921843688, 76653.6132264529, 77154.61723446894, 77655.62124248497, 78156.625250501, 78657.62925851703, 79158.63326653307, 79659.6372745491, 80160.64128256514, 80661.64529058116, 81162.6492985972, 81663.65330661323, 82164.65731462926, 82665.66132264529, 83166.66533066133, 83667.66933867735, 84168.67334669338, 84669.67735470942, 85170.68136272545, 85671.68537074148, 86172.68937875751, 86673.69338677355, 87174.69739478957, 87675.70140280561, 88176.70541082164, 88677.70941883768, 89178.7134268537, 89679.71743486974, 90180.72144288577, 90681.72545090181, 91182.72945891783, 91683.73346693387, 92184.7374749499, 92685.74148296592, 93186.74549098196, 93687.74949899799, 94188.75350701403, 94689.75751503005, 95190.7615230461, 95691.76553106212, 96192.76953907816, 96693.77354709418, 97194.77755511022, 97695.78156312625, 98196.78557114229, 98697.78957915831, 99198.79358717435, 99699.79759519038, 100200.80160320642, 100701.80561122244, 101202.80961923848, 101703.81362725451, 102204.81763527053, 102705.82164328657, 103206.8256513026, 103707.82965931864, 104208.83366733466, 104709.8376753507, 105210.84168336673, 105711.84569138277, 106212.8496993988, 106713.85370741483, 107214.85771543086, 107715.8617234469, 108216.86573146292, 108717.86973947896, 109218.87374749499, 109719.87775551103, 110220.88176352705, 110721.8857715431, 111222.88977955912, 111723.89378757514, 112224.89779559118, 112725.90180360721, 113226.90581162325, 113727.90981963927, 114228.91382765531, 114729.91783567134, 115230.92184368738, 115731.9258517034, 116232.92985971944, 116733.93386773547, 117234.93787575151, 117735.94188376753, 118236.94589178357, 118737.9498997996, 119238.95390781564, 119739.95791583166, 120240.9619238477, 120741.96593186373, 121242.96993987975, 121743.97394789579, 122244.97795591182, 122745.98196392786, 123246.98597194388, 123747.98997995992, 124248.99398797595, 124749.99799599199, 125251.00200400801, 125752.00601202405, 126253.01002004008, 126754.01402805612, 127255.01803607214, 127756.02204408818, 128257.02605210421, 128758.03006012025, 129259.03406813627, 129760.0380761523, 130261.04208416834, 130762.04609218436, 131263.0501002004, 131764.05410821643, 132265.05811623245, 132766.0621242485, 133267.06613226453, 133768.07014028056, 134269.07414829658, 134770.07815631264, 135271.08216432866, 135772.0861723447, 136273.0901803607, 136774.09418837677, 137275.0981963928, 137776.10220440882, 138277.10621242484, 138778.1102204409, 139279.11422845692, 139780.11823647295, 140281.12224448897, 140782.126252505, 141283.13026052105, 141784.13426853708, 142285.1382765531, 142786.14228456913, 143287.14629258518, 143788.1503006012, 144289.15430861723, 144790.15831663326, 145291.1623246493, 145792.16633266534, 146293.17034068136, 146794.1743486974, 147295.17835671344, 147796.18236472947, 148297.1863727455, 148798.19038076152, 149299.19438877754, 149800.1983967936, 150301.20240480962, 150802.20641282565, 151303.21042084167, 151804.21442885773, 152305.21843687375, 152806.22244488978, 153307.2264529058, 153808.23046092186, 154309.23446893788, 154810.2384769539, 155311.24248496993, 155812.24649298599, 156313.250501002, 156814.25450901804, 157315.25851703406, 157816.2625250501, 158317.26653306614, 158818.27054108217, 159319.2745490982, 159820.27855711422, 160321.28256513027, 160822.2865731463, 161323.29058116232, 161824.29458917835, 162325.2985971944, 162826.30260521043, 163327.30661322645, 163828.31062124248, 164329.31462925853, 164830.31863727455, 165331.32264529058, 165832.3266533066, 166333.33066132266, 166834.33466933868, 167335.3386773547, 167836.34268537074, 168337.34669338676, 168838.35070140281, 169339.35470941884, 169840.35871743486, 170341.3627254509, 170842.36673346694, 171343.37074148297, 171844.374749499, 172345.37875751502, 172846.38276553107, 173347.3867735471, 173848.39078156312, 174349.39478957915, 174850.3987975952, 175351.40280561123, 175852.40681362725, 176353.41082164328, 176854.4148296593, 177355.41883767536, 177856.42284569138, 178357.4268537074, 178858.43086172343, 179359.4348697395, 179860.4388777555, 180361.44288577154, 180862.44689378756, 181363.45090180362, 181864.45490981964, 182365.45891783567, 182866.4629258517, 183367.46693386775, 183868.47094188377, 184369.4749498998, 184870.47895791582, 185371.48296593185, 185872.4869739479, 186373.49098196393, 186874.49498997995, 187375.49899799598, 187876.50300601203, 188377.50701402806, 188878.51102204408, 189379.5150300601, 189880.51903807616, 190381.5230460922, 190882.5270541082, 191383.53106212424, 191884.5350701403, 192385.53907815632, 192886.54308617234, 193387.54709418837, 193888.55110220442, 194389.55511022045, 194890.55911823647, 195391.5631262525, 195892.56713426852, 196393.57114228458, 196894.5751503006, 197395.57915831663, 197896.58316633265, 198397.5871743487, 198898.59118236473, 199399.59519038076, 199900.59919839678, 200401.60320641284, 200902.60721442886, 201403.6112224449, 201904.6152304609, 202405.61923847697, 202906.623246493, 203407.62725450902, 203908.63126252504, 204409.63527054107, 204910.63927855712, 205411.64328657315, 205912.64729458917, 206413.6513026052, 206914.65531062125, 207415.65931863728, 207916.6633266533, 208417.66733466933, 208918.67134268538, 209419.6753507014, 209920.67935871743, 210421.68336673346, 210922.6873747495, 211423.69138276554, 211924.69539078156, 212425.6993987976, 212926.70340681364, 213427.70741482967, 213928.7114228457, 214429.71543086172, 214930.71943887774, 215431.7234468938, 215932.72745490982, 216433.73146292585, 216934.73547094187, 217435.73947895793, 217936.74348697395, 218437.74749498998, 218938.751503006, 219439.75551102206, 219940.75951903808, 220441.7635270541, 220942.76753507013, 221443.7715430862, 221944.7755511022, 222445.77955911824, 222946.78356713426, 223447.7875751503, 223948.79158316634, 224449.79559118237, 224950.7995991984, 225451.80360721442, 225952.80761523047, 226453.8116232465, 226954.81563126252, 227455.81963927855, 227956.8236472946, 228457.82765531063, 228958.83166332665, 229459.83567134268, 229960.83967935873, 230461.84368737476, 230962.84769539078, 231463.8517034068, 231964.85571142283, 232465.8597194389, 232966.8637274549, 233467.86773547094, 233968.87174348696, 234469.87575150302, 234970.87975951904, 235471.88376753507, 235972.8877755511, 236473.89178356715, 236974.89579158317, 237475.8997995992, 237976.90380761522, 238477.90781563128, 238978.9118236473, 239479.91583166333, 239980.91983967935, 240481.9238476954, 240982.92785571143, 241483.93186372746, 241984.93587174348, 242485.9398797595, 242986.94388777556, 243487.94789579159, 243988.9519038076, 244489.95591182364, 244990.9599198397, 245491.96392785572, 245992.96793587174, 246493.97194388777, 246994.97595190382, 247495.97995991984, 247996.98396793587, 248497.9879759519, 248998.99198396795, 249499.99599198397, 250001.0])
.range(['#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#ffffccff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#c7e9b4ff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#7fcdbbff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#41b6c4ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#2c7fb8ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff', '#253494ff']);
color_map_9a2a43f958374b6aab8e39a6e9bd6505.x = d3.scale.linear()
.domain([0.0, 250001.0])
.range([0, 400]);
color_map_9a2a43f958374b6aab8e39a6e9bd6505.legend = L.control({position: 'topright'});
color_map_9a2a43f958374b6aab8e39a6e9bd6505.legend.onAdd = function (map) {var div = L.DomUtil.create('div', 'legend'); return div};
color_map_9a2a43f958374b6aab8e39a6e9bd6505.legend.addTo(map_41f14f158c85488984c27acd22b152fd);
color_map_9a2a43f958374b6aab8e39a6e9bd6505.xAxis = d3.svg.axis()
.scale(color_map_9a2a43f958374b6aab8e39a6e9bd6505.x)
.orient("top")
.tickSize(1)
.tickValues([0, 10276, 41775, 89075, 170050, 215950, 250001]);
color_map_9a2a43f958374b6aab8e39a6e9bd6505.svg = d3.select(".legend.leaflet-control").append("svg")
.attr("id", 'legend')
.attr("width", 450)
.attr("height", 40);
color_map_9a2a43f958374b6aab8e39a6e9bd6505.g = color_map_9a2a43f958374b6aab8e39a6e9bd6505.svg.append("g")
.attr("class", "key")
.attr("transform", "translate(25,16)");
color_map_9a2a43f958374b6aab8e39a6e9bd6505.g.selectAll("rect")
.data(color_map_9a2a43f958374b6aab8e39a6e9bd6505.color.range().map(function(d, i) {
return {
x0: i ? color_map_9a2a43f958374b6aab8e39a6e9bd6505.x(color_map_9a2a43f958374b6aab8e39a6e9bd6505.color.domain()[i - 1]) : color_map_9a2a43f958374b6aab8e39a6e9bd6505.x.range()[0],
x1: i < color_map_9a2a43f958374b6aab8e39a6e9bd6505.color.domain().length ? color_map_9a2a43f958374b6aab8e39a6e9bd6505.x(color_map_9a2a43f958374b6aab8e39a6e9bd6505.color.domain()[i]) : color_map_9a2a43f958374b6aab8e39a6e9bd6505.x.range()[1],
z: d
};
}))
.enter().append("rect")
.attr("height", 10)
.attr("x", function(d) { return d.x0; })
.attr("width", function(d) { return d.x1 - d.x0; })
.style("fill", function(d) { return d.z; });
color_map_9a2a43f958374b6aab8e39a6e9bd6505.g.call(color_map_9a2a43f958374b6aab8e39a6e9bd6505.xAxis).append("text")
.attr("class", "caption")
.attr("y", 21)
.text('Median Income');
var marker_a48e560a63204dc5a6d07f19d4fafa31 = L.marker(
[40.670986, -73.908194],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_8add343adb204f22a5e432e3e605ebf8 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_a48e560a63204dc5a6d07f19d4fafa31.setIcon(beautify_icon_8add343adb204f22a5e432e3e605ebf8);
var popup_c1f7f970ff35491d9af2b29eb434271e = L.popup({"maxWidth": "100%"});
var html_e5b569fd02c1437b825f9d074835cdaa = $(`<div id="html_e5b569fd02c1437b825f9d074835cdaa" style="width: 100.0%; height: 100.0%;">Teens for Food Justice Fresh Food Box & Farmstand at Brownsville Collaborative Middle School</div>`)[0];
popup_c1f7f970ff35491d9af2b29eb434271e.setContent(html_e5b569fd02c1437b825f9d074835cdaa);
marker_a48e560a63204dc5a6d07f19d4fafa31.bindPopup(popup_c1f7f970ff35491d9af2b29eb434271e)
;
var marker_adb1cb7646e9485cb784eb454b4a3b1a = L.marker(
[40.801155, -73.959647],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_dd3fe95a42b049419adcc3f887940af6 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_adb1cb7646e9485cb784eb454b4a3b1a.setIcon(beautify_icon_dd3fe95a42b049419adcc3f887940af6);
var popup_a00bed1f2ce6498db1a94627af9b92a3 = L.popup({"maxWidth": "100%"});
var html_c716c6105fb2481188842efc1f290e8a = $(`<div id="html_c716c6105fb2481188842efc1f290e8a" style="width: 100.0%; height: 100.0%;">Morningside Park's Down to Earth Farmers' Market</div>`)[0];
popup_a00bed1f2ce6498db1a94627af9b92a3.setContent(html_c716c6105fb2481188842efc1f290e8a);
marker_adb1cb7646e9485cb784eb454b4a3b1a.bindPopup(popup_a00bed1f2ce6498db1a94627af9b92a3)
;
var marker_91972505810d4f6693f9192b6bf86f2b = L.marker(
[40.839882, -73.916783],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_10033e28820947c0bfc88223a7364b8d = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_91972505810d4f6693f9192b6bf86f2b.setIcon(beautify_icon_10033e28820947c0bfc88223a7364b8d);
var popup_6cc509bb2d914e09ab8197a0e10cfaf6 = L.popup({"maxWidth": "100%"});
var html_82f185ba178d41a192246b5bbfbb38fa = $(`<div id="html_82f185ba178d41a192246b5bbfbb38fa" style="width: 100.0%; height: 100.0%;">170 Farm Stand</div>`)[0];
popup_6cc509bb2d914e09ab8197a0e10cfaf6.setContent(html_82f185ba178d41a192246b5bbfbb38fa);
marker_91972505810d4f6693f9192b6bf86f2b.bindPopup(popup_6cc509bb2d914e09ab8197a0e10cfaf6)
;
var marker_50c3691f4bd6415d8dff30d4cfef6690 = L.marker(
[40.705799, -74.002572],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_bdeb7954cd004017be821b8601d2d282 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_50c3691f4bd6415d8dff30d4cfef6690.setIcon(beautify_icon_bdeb7954cd004017be821b8601d2d282);
var popup_5f951062927048dcb96291a4abe65432 = L.popup({"maxWidth": "100%"});
var html_15b0a8d7897649929e2e23eeb34a3a92 = $(`<div id="html_15b0a8d7897649929e2e23eeb34a3a92" style="width: 100.0%; height: 100.0%;">Fulton Stall Market</div>`)[0];
popup_5f951062927048dcb96291a4abe65432.setContent(html_15b0a8d7897649929e2e23eeb34a3a92);
marker_50c3691f4bd6415d8dff30d4cfef6690.bindPopup(popup_5f951062927048dcb96291a4abe65432)
;
var marker_7114caaf10b645a29a59fa23eccf526e = L.marker(
[40.749811, -73.861668],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_d39f9e2c94924c6e97038b2cc47b7c15 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_7114caaf10b645a29a59fa23eccf526e.setIcon(beautify_icon_d39f9e2c94924c6e97038b2cc47b7c15);
var popup_efe8c594ae9f4535b6fa9ac138ff7e10 = L.popup({"maxWidth": "100%"});
var html_daa1a7e707034084a932c1d931b9ac1d = $(`<div id="html_daa1a7e707034084a932c1d931b9ac1d" style="width: 100.0%; height: 100.0%;">Corona Greenmarket</div>`)[0];
popup_efe8c594ae9f4535b6fa9ac138ff7e10.setContent(html_daa1a7e707034084a932c1d931b9ac1d);
marker_7114caaf10b645a29a59fa23eccf526e.bindPopup(popup_efe8c594ae9f4535b6fa9ac138ff7e10)
;
var marker_53a91514496d48a1ad2be099bc53513c = L.marker(
[40.88503, -73.843146],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_3373c1812bb94dd0bda8849256e2bd8e = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_53a91514496d48a1ad2be099bc53513c.setIcon(beautify_icon_3373c1812bb94dd0bda8849256e2bd8e);
var popup_777839eafbc84ef5b565bdbcf43474c2 = L.popup({"maxWidth": "100%"});
var html_e4394e5d86144023830e32332a9e68c2 = $(`<div id="html_e4394e5d86144023830e32332a9e68c2" style="width: 100.0%; height: 100.0%;">Eastchester Farmstand</div>`)[0];
popup_777839eafbc84ef5b565bdbcf43474c2.setContent(html_e4394e5d86144023830e32332a9e68c2);
marker_53a91514496d48a1ad2be099bc53513c.bindPopup(popup_777839eafbc84ef5b565bdbcf43474c2)
;
var marker_f5effea4b3164cfcaf30e6ab6d5444da = L.marker(
[40.595612, -73.776551],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_9453dd8688304fd58c9f5186436a4c40 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_f5effea4b3164cfcaf30e6ab6d5444da.setIcon(beautify_icon_9453dd8688304fd58c9f5186436a4c40);
var popup_822854fb29e94f3c9250380da4d7d1fe = L.popup({"maxWidth": "100%"});
var html_1f4e7aee7bbd4560b07df1e1e35dd1ec = $(`<div id="html_1f4e7aee7bbd4560b07df1e1e35dd1ec" style="width: 100.0%; height: 100.0%;">Far Rockaway Farmstand</div>`)[0];
popup_822854fb29e94f3c9250380da4d7d1fe.setContent(html_1f4e7aee7bbd4560b07df1e1e35dd1ec);
marker_f5effea4b3164cfcaf30e6ab6d5444da.bindPopup(popup_822854fb29e94f3c9250380da4d7d1fe)
;
var marker_31bb36502d744e4db2cf3474fe575006 = L.marker(
[40.842924, -73.909558],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_1819457bd9f84e7784d2bb996a4e6cf8 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_31bb36502d744e4db2cf3474fe575006.setIcon(beautify_icon_1819457bd9f84e7784d2bb996a4e6cf8);
var popup_fd88761a6e6748fa811c4abd8983c15e = L.popup({"maxWidth": "100%"});
var html_8e2c26e8791749efacadae80dcbe597d = $(`<div id="html_8e2c26e8791749efacadae80dcbe597d" style="width: 100.0%; height: 100.0%;">Harvest Home Mt. Eden Farmers' Market</div>`)[0];
popup_fd88761a6e6748fa811c4abd8983c15e.setContent(html_8e2c26e8791749efacadae80dcbe597d);
marker_31bb36502d744e4db2cf3474fe575006.bindPopup(popup_fd88761a6e6748fa811c4abd8983c15e)
;
var marker_287316a70df54faba65ee18753eed7dd = L.marker(
[40.719219, -73.952479],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_fc1abf16c3be488d990593832b814d96 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_287316a70df54faba65ee18753eed7dd.setIcon(beautify_icon_fc1abf16c3be488d990593832b814d96);
var popup_a8cf31f7f3e148f09b178b1dcb349629 = L.popup({"maxWidth": "100%"});
var html_bf8e51663dd248d88e452d30ba1b9a23 = $(`<div id="html_bf8e51663dd248d88e452d30ba1b9a23" style="width: 100.0%; height: 100.0%;">McCarren Park Greenmarket</div>`)[0];
popup_a8cf31f7f3e148f09b178b1dcb349629.setContent(html_bf8e51663dd248d88e452d30ba1b9a23);
marker_287316a70df54faba65ee18753eed7dd.bindPopup(popup_a8cf31f7f3e148f09b178b1dcb349629)
;
var marker_086d1d9926774ef785c7894f164ce30e = L.marker(
[40.590649, -73.969298],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_fcbf091c7d8b4b55ae007c6bc8023d7e = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_086d1d9926774ef785c7894f164ce30e.setIcon(beautify_icon_fcbf091c7d8b4b55ae007c6bc8023d7e);
var popup_10b9a2cc14b94db0a433d7f2644c69ca = L.popup({"maxWidth": "100%"});
var html_d598d9055673425aa421035e74ea0b22 = $(`<div id="html_d598d9055673425aa421035e74ea0b22" style="width: 100.0%; height: 100.0%;">Edible Schoolyard NYC's Farm Stand at PS 216</div>`)[0];
popup_10b9a2cc14b94db0a433d7f2644c69ca.setContent(html_d598d9055673425aa421035e74ea0b22);
marker_086d1d9926774ef785c7894f164ce30e.bindPopup(popup_10b9a2cc14b94db0a433d7f2644c69ca)
;
var marker_323e68a2f6db4b0093ad690bc45cdb89 = L.marker(
[40.853237, -73.891742],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_5ef2703fc19b49e4b5742ffe49b900d8 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_323e68a2f6db4b0093ad690bc45cdb89.setIcon(beautify_icon_5ef2703fc19b49e4b5742ffe49b900d8);
var popup_4cfcf25ecac147ff967e38645c15958e = L.popup({"maxWidth": "100%"});
var html_5ddc3eed1090479d82458259ebeb21be = $(`<div id="html_5ddc3eed1090479d82458259ebeb21be" style="width: 100.0%; height: 100.0%;">St. Barnabas Hospital Farm Stand & C.S.A.</div>`)[0];
popup_4cfcf25ecac147ff967e38645c15958e.setContent(html_5ddc3eed1090479d82458259ebeb21be);
marker_323e68a2f6db4b0093ad690bc45cdb89.bindPopup(popup_4cfcf25ecac147ff967e38645c15958e)
;
var marker_9ad3e718db37479bb4c39b7a5522beaa = L.marker(
[40.68106, -73.996528],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_17d1e3786f4a44dda1d82f954e91ed88 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_9ad3e718db37479bb4c39b7a5522beaa.setIcon(beautify_icon_17d1e3786f4a44dda1d82f954e91ed88);
var popup_0c07563388ce4b74a659dc1b83475d51 = L.popup({"maxWidth": "100%"});
var html_2ed1f63636fa4bff8bcaf30f191dc605 = $(`<div id="html_2ed1f63636fa4bff8bcaf30f191dc605" style="width: 100.0%; height: 100.0%;">Carroll Gardens Greenmarket</div>`)[0];
popup_0c07563388ce4b74a659dc1b83475d51.setContent(html_2ed1f63636fa4bff8bcaf30f191dc605);
marker_9ad3e718db37479bb4c39b7a5522beaa.bindPopup(popup_0c07563388ce4b74a659dc1b83475d51)
;
var marker_773b7bc4ed374a01a7014607f758f93d = L.marker(
[40.882178, -73.88691],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_244cc462529e447eae8aeb580d839ca5 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_773b7bc4ed374a01a7014607f758f93d.setIcon(beautify_icon_244cc462529e447eae8aeb580d839ca5);
var popup_18b55a6413fa4381aa09e119d44f0627 = L.popup({"maxWidth": "100%"});
var html_b6c074799a6447778bf9bca2d5a2c280 = $(`<div id="html_b6c074799a6447778bf9bca2d5a2c280" style="width: 100.0%; height: 100.0%;">Teens for Food Justice Fresh Food Box & Farmstand at Dewitt Clinton Educational Campus</div>`)[0];
popup_18b55a6413fa4381aa09e119d44f0627.setContent(html_b6c074799a6447778bf9bca2d5a2c280);
marker_773b7bc4ed374a01a7014607f758f93d.bindPopup(popup_18b55a6413fa4381aa09e119d44f0627)
;
var marker_a9171f170026416385e3ebcb0e846f2b = L.marker(
[40.667554, -73.910207],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_05f85e60bb98495682205d0405779a03 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_a9171f170026416385e3ebcb0e846f2b.setIcon(beautify_icon_05f85e60bb98495682205d0405779a03);
var popup_6a30c4263f794f5285310b44d822d1fa = L.popup({"maxWidth": "100%"});
var html_c426cf16bbd04f119d9fc0247e74c8b4 = $(`<div id="html_c426cf16bbd04f119d9fc0247e74c8b4" style="width: 100.0%; height: 100.0%;">Isabahlia Farm Stand</div>`)[0];
popup_6a30c4263f794f5285310b44d822d1fa.setContent(html_c426cf16bbd04f119d9fc0247e74c8b4);
marker_a9171f170026416385e3ebcb0e846f2b.bindPopup(popup_6a30c4263f794f5285310b44d822d1fa)
;
var marker_e41f3b2c08404dd792f800a7ec2976d4 = L.marker(
[40.846487, -73.894337],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_d1ef57d3ed2f435b9c367c931eb26616 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_e41f3b2c08404dd792f800a7ec2976d4.setIcon(beautify_icon_d1ef57d3ed2f435b9c367c931eb26616);
var popup_24cc3175a78f491dbbb1257e46b4d9f4 = L.popup({"maxWidth": "100%"});
var html_4c7bbb31fd5543f7b7dc07772831cc1c = $(`<div id="html_4c7bbb31fd5543f7b7dc07772831cc1c" style="width: 100.0%; height: 100.0%;">La Familia Verde Farmers' Market</div>`)[0];
popup_24cc3175a78f491dbbb1257e46b4d9f4.setContent(html_4c7bbb31fd5543f7b7dc07772831cc1c);
marker_e41f3b2c08404dd792f800a7ec2976d4.bindPopup(popup_24cc3175a78f491dbbb1257e46b4d9f4)
;
var marker_aa686e687a2d44418dd38f4faf7ffb26 = L.marker(
[40.726054, -73.983534],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_617741d253b84d4eada8eb2eeaed0b63 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_aa686e687a2d44418dd38f4faf7ffb26.setIcon(beautify_icon_617741d253b84d4eada8eb2eeaed0b63);
var popup_5651d675f8fa4f729f4cb94a0bb08b77 = L.popup({"maxWidth": "100%"});
var html_967bdcd649ac47f0b64cccd5fabd9dd1 = $(`<div id="html_967bdcd649ac47f0b64cccd5fabd9dd1" style="width: 100.0%; height: 100.0%;">Tompkins Square Greenmarket</div>`)[0];
popup_5651d675f8fa4f729f4cb94a0bb08b77.setContent(html_967bdcd649ac47f0b64cccd5fabd9dd1);
marker_aa686e687a2d44418dd38f4faf7ffb26.bindPopup(popup_5651d675f8fa4f729f4cb94a0bb08b77)
;
var marker_63cf679fcd384d0b8a8aa859e6fab2df = L.marker(
[40.753435, -73.887822],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_5425cbd5c38346e68b179a6cfc03200f = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_63cf679fcd384d0b8a8aa859e6fab2df.setIcon(beautify_icon_5425cbd5c38346e68b179a6cfc03200f);
var popup_504e3bacf2f64c6487e9add1dface5f4 = L.popup({"maxWidth": "100%"});
var html_3a199b027a964561b968a50b12dbb33d = $(`<div id="html_3a199b027a964561b968a50b12dbb33d" style="width: 100.0%; height: 100.0%;">Jackson Heights Greenmarket</div>`)[0];
popup_504e3bacf2f64c6487e9add1dface5f4.setContent(html_3a199b027a964561b968a50b12dbb33d);
marker_63cf679fcd384d0b8a8aa859e6fab2df.bindPopup(popup_504e3bacf2f64c6487e9add1dface5f4)
;
var marker_339a14acd83b4c5ca2529bc06c4b6152 = L.marker(
[40.88222, -73.880458],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_5e4f68de63f54793b59b037f5177843e = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_339a14acd83b4c5ca2529bc06c4b6152.setIcon(beautify_icon_5e4f68de63f54793b59b037f5177843e);
var popup_6488b6f0f2ad4921a9cdb44a56dfd7e1 = L.popup({"maxWidth": "100%"});
var html_668aea55679d4018888833c342230498 = $(`<div id="html_668aea55679d4018888833c342230498" style="width: 100.0%; height: 100.0%;">Norwood Farmstand</div>`)[0];
popup_6488b6f0f2ad4921a9cdb44a56dfd7e1.setContent(html_668aea55679d4018888833c342230498);
marker_339a14acd83b4c5ca2529bc06c4b6152.bindPopup(popup_6488b6f0f2ad4921a9cdb44a56dfd7e1)
;
var marker_e63ff65aac6345c3bb365c8e0a60ad77 = L.marker(
[40.663812, -73.962866],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_fb7902d5eb4b467f9a1046d42b373f56 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_e63ff65aac6345c3bb365c8e0a60ad77.setIcon(beautify_icon_fb7902d5eb4b467f9a1046d42b373f56);
var popup_256b161c3c0b46df833e13519b771bba = L.popup({"maxWidth": "100%"});
var html_2890a0b857a84b29b3b687d8f66486ac = $(`<div id="html_2890a0b857a84b29b3b687d8f66486ac" style="width: 100.0%; height: 100.0%;">Grand Army Plaza Greenmarket</div>`)[0];
popup_256b161c3c0b46df833e13519b771bba.setContent(html_2890a0b857a84b29b3b687d8f66486ac);
marker_e63ff65aac6345c3bb365c8e0a60ad77.bindPopup(popup_256b161c3c0b46df833e13519b771bba)
;
var marker_f80697e7285c49f7a2a2d9330d9be07a = L.marker(
[40.82394, -73.948552],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_deded88b3495467f937530e15b987baf = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_f80697e7285c49f7a2a2d9330d9be07a.setIcon(beautify_icon_deded88b3495467f937530e15b987baf);
var popup_f0dda4f536c14f9b932a5caa1fb6c7e8 = L.popup({"maxWidth": "100%"});
var html_f1a04dccdc724c819832fec3328833d8 = $(`<div id="html_f1a04dccdc724c819832fec3328833d8" style="width: 100.0%; height: 100.0%;">Hamilton Heights Green Youthmarket</div>`)[0];
popup_f0dda4f536c14f9b932a5caa1fb6c7e8.setContent(html_f1a04dccdc724c819832fec3328833d8);
marker_f80697e7285c49f7a2a2d9330d9be07a.bindPopup(popup_f0dda4f536c14f9b932a5caa1fb6c7e8)
;
var marker_0ce78e1b103847d4994fde774dd2fe5c = L.marker(
[40.725617, -73.944497],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_16aef29599fc40389df42349fcd384b6 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_0ce78e1b103847d4994fde774dd2fe5c.setIcon(beautify_icon_16aef29599fc40389df42349fcd384b6);
var popup_8a9b0894ffea4310a06871c822aaf211 = L.popup({"maxWidth": "100%"});
var html_bf118641ca74470bb27c06c9004e944e = $(`<div id="html_bf118641ca74470bb27c06c9004e944e" style="width: 100.0%; height: 100.0%;">McGolrick Park's Down to Earth Farmers's Market</div>`)[0];
popup_8a9b0894ffea4310a06871c822aaf211.setContent(html_bf118641ca74470bb27c06c9004e944e);
marker_0ce78e1b103847d4994fde774dd2fe5c.bindPopup(popup_8a9b0894ffea4310a06871c822aaf211)
;
var marker_1e416a1a313847dc878a4e27b51f47a1 = L.marker(
[40.845948, -73.937811],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_76bc628de51647bc968fb699c55d9828 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_1e416a1a313847dc878a4e27b51f47a1.setIcon(beautify_icon_76bc628de51647bc968fb699c55d9828);
var popup_5ca50653c56440e4b03ca5ee1ddb1bb4 = L.popup({"maxWidth": "100%"});
var html_6d3348ca20664b78b1e94a1031dfba7a = $(`<div id="html_6d3348ca20664b78b1e94a1031dfba7a" style="width: 100.0%; height: 100.0%;">175th Street Greenmarket</div>`)[0];
popup_5ca50653c56440e4b03ca5ee1ddb1bb4.setContent(html_6d3348ca20664b78b1e94a1031dfba7a);
marker_1e416a1a313847dc878a4e27b51f47a1.bindPopup(popup_5ca50653c56440e4b03ca5ee1ddb1bb4)
;
var marker_0954ec0c252248cea03aad8321987ba5 = L.marker(
[40.647132, -74.004623],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_d826c8dac74e4bcdb0c6eb35f213dc68 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_0954ec0c252248cea03aad8321987ba5.setIcon(beautify_icon_d826c8dac74e4bcdb0c6eb35f213dc68);
var popup_744913f85bf347d3854693ab7cc6aeb4 = L.popup({"maxWidth": "100%"});
var html_01ff27d0925e4f6e9acc86522f9cafaf = $(`<div id="html_01ff27d0925e4f6e9acc86522f9cafaf" style="width: 100.0%; height: 100.0%;">6th Ave Sunset Park Greenmarket</div>`)[0];
popup_744913f85bf347d3854693ab7cc6aeb4.setContent(html_01ff27d0925e4f6e9acc86522f9cafaf);
marker_0954ec0c252248cea03aad8321987ba5.bindPopup(popup_744913f85bf347d3854693ab7cc6aeb4)
;
var marker_2f44f045dd5f4fe1bfe78b0063386ed9 = L.marker(
[40.759065, -73.97845],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_5a76b615719a43e6bdfad057867e22db = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_2f44f045dd5f4fe1bfe78b0063386ed9.setIcon(beautify_icon_5a76b615719a43e6bdfad057867e22db);
var popup_8590d32a962748c083a657fa92a35d48 = L.popup({"maxWidth": "100%"});
var html_fa06b57dff2c4fb5b10df0488ebcd0e6 = $(`<div id="html_fa06b57dff2c4fb5b10df0488ebcd0e6" style="width: 100.0%; height: 100.0%;">Rockefeller Center Greenmarket</div>`)[0];
popup_8590d32a962748c083a657fa92a35d48.setContent(html_fa06b57dff2c4fb5b10df0488ebcd0e6);
marker_2f44f045dd5f4fe1bfe78b0063386ed9.bindPopup(popup_8590d32a962748c083a657fa92a35d48)
;
var marker_088bfaefa2074a608dca6910bf108e2c = L.marker(
[40.756357, -73.825773],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_b8997c4f71b940138fb0abb6e615bc5e = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_088bfaefa2074a608dca6910bf108e2c.setIcon(beautify_icon_b8997c4f71b940138fb0abb6e615bc5e);
var popup_e9457690b3e84bee8f909915aff97c70 = L.popup({"maxWidth": "100%"});
var html_eaf1fe4caa7544a4a09f4475070018bd = $(`<div id="html_eaf1fe4caa7544a4a09f4475070018bd" style="width: 100.0%; height: 100.0%;">Flushing Greenmarket</div>`)[0];
popup_e9457690b3e84bee8f909915aff97c70.setContent(html_eaf1fe4caa7544a4a09f4475070018bd);
marker_088bfaefa2074a608dca6910bf108e2c.bindPopup(popup_e9457690b3e84bee8f909915aff97c70)
;
var marker_948dfd578fb14129b61f85b825db5a90 = L.marker(
[40.806707, -73.964849],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_140ffdeca2934494a7ffde7ea5834d48 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_948dfd578fb14129b61f85b825db5a90.setIcon(beautify_icon_140ffdeca2934494a7ffde7ea5834d48);
var popup_33d2475ebb4a43d9ae0c88cb94ebc8ca = L.popup({"maxWidth": "100%"});
var html_ffeb076e800b46b98b27e9bd070ee24c = $(`<div id="html_ffeb076e800b46b98b27e9bd070ee24c" style="width: 100.0%; height: 100.0%;">Columbia University Greenmarket</div>`)[0];
popup_33d2475ebb4a43d9ae0c88cb94ebc8ca.setContent(html_ffeb076e800b46b98b27e9bd070ee24c);
marker_948dfd578fb14129b61f85b825db5a90.bindPopup(popup_33d2475ebb4a43d9ae0c88cb94ebc8ca)
;
var marker_7865626d9fe34652bf20453f300ffddc = L.marker(
[40.702811, -73.92539],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_958f3f93a0494ed1ad916feb88a7bf6a = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_7865626d9fe34652bf20453f300ffddc.setIcon(beautify_icon_958f3f93a0494ed1ad916feb88a7bf6a);
var popup_8149e073587e49cdb6e6ecf8fbc3254d = L.popup({"maxWidth": "100%"});
var html_cb8009b864704950a62694b268fe54f6 = $(`<div id="html_cb8009b864704950a62694b268fe54f6" style="width: 100.0%; height: 100.0%;">RB Bushwick Farmers' Market at Maria Hernandez Park</div>`)[0];
popup_8149e073587e49cdb6e6ecf8fbc3254d.setContent(html_cb8009b864704950a62694b268fe54f6);
marker_7865626d9fe34652bf20453f300ffddc.bindPopup(popup_8149e073587e49cdb6e6ecf8fbc3254d)
;
var marker_3474270d9369492eb9b02f9dfc0fd2d3 = L.marker(
[40.768504, -73.921724],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_ee9790bae9f74015900c0f0cc788c628 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_3474270d9369492eb9b02f9dfc0fd2d3.setIcon(beautify_icon_ee9790bae9f74015900c0f0cc788c628);
var popup_a50269aac730439094820c939fca299c = L.popup({"maxWidth": "100%"});
var html_a014268bfbb84eb68aa29545fb084dc6 = $(`<div id="html_a014268bfbb84eb68aa29545fb084dc6" style="width: 100.0%; height: 100.0%;">Socrates Sculpture Garden</div>`)[0];
popup_a50269aac730439094820c939fca299c.setContent(html_a014268bfbb84eb68aa29545fb084dc6);
marker_3474270d9369492eb9b02f9dfc0fd2d3.bindPopup(popup_a50269aac730439094820c939fca299c)
;
var marker_b0d35131042c4afa881d9a0ede720c2d = L.marker(
[40.839305, -73.936159],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_71c8de0eb3a74ff383b671b0dd49e3a1 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_b0d35131042c4afa881d9a0ede720c2d.setIcon(beautify_icon_71c8de0eb3a74ff383b671b0dd49e3a1);
var popup_c4548a8756de473ba71b5b46fb199ae5 = L.popup({"maxWidth": "100%"});
var html_aeb3a8c2cee04c71b27d89c3a4d95ce8 = $(`<div id="html_aeb3a8c2cee04c71b27d89c3a4d95ce8" style="width: 100.0%; height: 100.0%;">Go!Healthy Farm Stand at Mirabal Sisters Campus</div>`)[0];
popup_c4548a8756de473ba71b5b46fb199ae5.setContent(html_aeb3a8c2cee04c71b27d89c3a4d95ce8);
marker_b0d35131042c4afa881d9a0ede720c2d.bindPopup(popup_c4548a8756de473ba71b5b46fb199ae5)
;
var marker_f0169acc6829487e83949ccdcece219e = L.marker(
[40.746999, -73.921724],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_55aab0d849b94f1286ff370ec2aa7cf9 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_f0169acc6829487e83949ccdcece219e.setIcon(beautify_icon_55aab0d849b94f1286ff370ec2aa7cf9);
var popup_253dfa5953174cbcaf5950845f7021dd = L.popup({"maxWidth": "100%"});
var html_937c555a78944dad8c4f4d5aa290fa25 = $(`<div id="html_937c555a78944dad8c4f4d5aa290fa25" style="width: 100.0%; height: 100.0%;">Sunnyside Greenmarket</div>`)[0];
popup_253dfa5953174cbcaf5950845f7021dd.setContent(html_937c555a78944dad8c4f4d5aa290fa25);
marker_f0169acc6829487e83949ccdcece219e.bindPopup(popup_253dfa5953174cbcaf5950845f7021dd)
;
var marker_ada05e8300604252b8eff60e127f665c = L.marker(
[40.731082, -73.773997],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_b2a26f5f2f9145b68e6463f443a8a580 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_ada05e8300604252b8eff60e127f665c.setIcon(beautify_icon_b2a26f5f2f9145b68e6463f443a8a580);
var popup_9334977160774319923f61ed74249a61 = L.popup({"maxWidth": "100%"});
var html_f47f17d296654b698cda3e5261739e52 = $(`<div id="html_f47f17d296654b698cda3e5261739e52" style="width: 100.0%; height: 100.0%;">Cunningham Park's Down to Earth Farmers' Market</div>`)[0];
popup_9334977160774319923f61ed74249a61.setContent(html_f47f17d296654b698cda3e5261739e52);
marker_ada05e8300604252b8eff60e127f665c.bindPopup(popup_9334977160774319923f61ed74249a61)
;
var marker_d9405ed6d4ea4e149e4d15e5c3bf8caf = L.marker(
[40.90152, -73.846937],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_32d90ced28db4fa08d8d2dc90a2ab7b7 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_d9405ed6d4ea4e149e4d15e5c3bf8caf.setIcon(beautify_icon_32d90ced28db4fa08d8d2dc90a2ab7b7);
var popup_3869886c888248cb83f8e5085128d717 = L.popup({"maxWidth": "100%"});
var html_97af962555984173b2d0aefdc884253c = $(`<div id="html_97af962555984173b2d0aefdc884253c" style="width: 100.0%; height: 100.0%;">Bissel Gardens Farmers Market</div>`)[0];
popup_3869886c888248cb83f8e5085128d717.setContent(html_97af962555984173b2d0aefdc884253c);
marker_d9405ed6d4ea4e149e4d15e5c3bf8caf.bindPopup(popup_3869886c888248cb83f8e5085128d717)
;
var marker_9034d770bb3f47f6afb2c2c425b3b561 = L.marker(
[40.781274, -73.975995],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_0ac0d38693e54e739fced3f746c2bc7c = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_9034d770bb3f47f6afb2c2c425b3b561.setIcon(beautify_icon_0ac0d38693e54e739fced3f746c2bc7c);
var popup_e24acf02faf343eb8749e6e95e31aa19 = L.popup({"maxWidth": "100%"});
var html_6f1069c463a7442ebfe45a519877147e = $(`<div id="html_6f1069c463a7442ebfe45a519877147e" style="width: 100.0%; height: 100.0%;">79th Street Greenmarket</div>`)[0];
popup_e24acf02faf343eb8749e6e95e31aa19.setContent(html_6f1069c463a7442ebfe45a519877147e);
marker_9034d770bb3f47f6afb2c2c425b3b561.bindPopup(popup_e24acf02faf343eb8749e6e95e31aa19)
;
var marker_6512023a2c3841fa8f0bfc44d0d99b5e = L.marker(
[40.86153, -73.891063],
{}
).addTo(map_41f14f158c85488984c27acd22b152fd);
var beautify_icon_24d8a0c71575444fb677047ede9741b8 = new L.BeautifyIcon.icon(
{"backgroundColor": "transparent", "borderColor": "transparent", "borderWidth": 3, "icon": "star", "innerIconStyle": "color:yellow;font-size:10px;", "isAlphaNumericIcon": false, "spin": false, "textColor": "#000"}
)
marker_6512023a2c3841fa8f0bfc44d0d99b5e.setIcon(beautify_icon_24d8a0c71575444fb677047ede9741b8);