-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfountains.json
19852 lines (19852 loc) · 560 KB
/
fountains.json
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
[
{
"pk": 3972,
"model": "core.place",
"fields": {
"name": "Q356",
"coord": "POINT (-73.7446131747127396 40.7478880218488939)",
"address": "232-09, 67th Avenue, Little Neck, Queens County, NYC, New York, 11364, United States of America",
"active": false
}
},
{
"pk": 3973,
"model": "core.place",
"fields": {
"name": "Q356",
"coord": "POINT (-73.7457883391185760 40.7470366899332532)",
"address": "Public School 213, 231-02, 67th Avenue, Little Neck, Queens County, NYC, New York, 11364, United States of America",
"active": false
}
},
{
"pk": 3974,
"model": "core.place",
"fields": {
"name": "Q356",
"coord": "POINT (-73.7456860064681052 40.7470918564331868)",
"address": "Public School 213, 231-02, 67th Avenue, Little Neck, Queens County, NYC, New York, 11364, United States of America",
"active": false
}
},
{
"pk": 3975,
"model": "core.place",
"fields": {
"name": "Q294",
"coord": "POINT (-73.7934897667902874 40.7311193628971466)",
"address": "69-49 Utopia Parkway, Queens, New York 11365",
"active": false
}
},
{
"pk": 3976,
"model": "core.place",
"fields": {
"name": "Q314",
"coord": "POINT (-73.7961569735581833 40.7344326631675457)",
"address": "67th Avenue, Queens, New York 11365",
"active": false
}
},
{
"pk": 3977,
"model": "core.place",
"fields": {
"name": "M010",
"coord": "POINT (-73.9644381776867164 40.7824553499989477)",
"address": "86th Street Transverse Road, Manhattan, New York 83",
"active": false
}
},
{
"pk": 3978,
"model": "core.place",
"fields": {
"name": "M071",
"coord": "POINT (-73.9819304776420523 40.7871769276327925)",
"address": "Riverside Drive, Manhattan, New York 10024",
"active": false
}
},
{
"pk": 3979,
"model": "core.place",
"fields": {
"name": "M029",
"coord": "POINT (-73.9343937486849256 40.8592319535824160)",
"address": "Jacob K. Javits Playground, Cabrini Boulevard, Washington Heights, New York County, NYC, New York, 10040, United States of America",
"active": false
}
},
{
"pk": 3980,
"model": "core.place",
"fields": {
"name": "M029",
"coord": "POINT (-73.9295190927728072 40.8652526084558829)",
"address": "Anne Loftus Playground, Riverside Drive, Inwood, New York County, NYC, New York, 10034, United States of America",
"active": false
}
},
{
"pk": 3981,
"model": "core.place",
"fields": {
"name": "M029",
"coord": "POINT (-73.9292555929005033 40.8650496089152000)",
"address": "Anne Loftus Playground, Riverside Drive, Inwood, New York County, NYC, New York, 10034, United States of America",
"active": false
}
},
{
"pk": 3982,
"model": "core.place",
"fields": {
"name": "M028",
"coord": "POINT (-73.9460868891207639 40.8389734930609478)",
"address": "Lily Brown Playground, Riverside Drive, Washington Heights, New York, NYC, New York, 10032, United States of America",
"active": false
}
},
{
"pk": 3983,
"model": "core.place",
"fields": {
"name": "X002",
"coord": "POINT (-73.8760877060597210 40.8699954998550226)",
"address": "414 East 204th Street, Bronx, New York 10467",
"active": false
}
},
{
"pk": 3984,
"model": "core.place",
"fields": {
"name": "Q086",
"coord": "POINT (-73.8168953042918048 40.7720104915467871)",
"address": "29-01 149th Street, Queens, New York 11354",
"active": false
}
},
{
"pk": 3985,
"model": "core.place",
"fields": {
"name": "Q086",
"coord": "POINT (-73.8170850677646513 40.7754609760871674)",
"address": "25-03 149th Street, Queens, New York 11354",
"active": false
}
},
{
"pk": 3986,
"model": "core.place",
"fields": {
"name": "Q086",
"coord": "POINT (-73.8167948661996149 40.7759778283010448)",
"address": "149-02 25th Avenue, Queens, New York 11354",
"active": false
}
},
{
"pk": 3987,
"model": "core.place",
"fields": {
"name": "Q086",
"coord": "POINT (-73.8171306035862926 40.7761855344003621)",
"address": "149-02 25th Avenue, Queens, New York 11354",
"active": false
}
},
{
"pk": 3988,
"model": "core.place",
"fields": {
"name": "Q347",
"coord": "POINT (-73.8270066502627742 40.7701135853552756)",
"address": "31st Road, Queens, New York 11354",
"active": false
}
},
{
"pk": 3989,
"model": "core.place",
"fields": {
"name": "Q347",
"coord": "POINT (-73.8276291021304303 40.7705514796851816)",
"address": "31st Road, Queens, New York 11354",
"active": false
}
},
{
"pk": 3990,
"model": "core.place",
"fields": {
"name": "Q419",
"coord": "POINT (-73.8193924322339114 40.7740348634941157)",
"address": "27th Avenue, Queens, New York 11354",
"active": false
}
},
{
"pk": 3991,
"model": "core.place",
"fields": {
"name": "Q390",
"coord": "POINT (-73.8077100867431426 40.7830496079684650)",
"address": "154-16 17th Road, Queens, New York 11357",
"active": false
}
},
{
"pk": 3992,
"model": "core.place",
"fields": {
"name": "Q291",
"coord": "POINT (-73.9176403993362214 40.7099588135020269)",
"address": "Starr Playground, Onderdonk Avenue, Ridgewood, Queens County, NYC, New York, 11385, United States of America",
"active": false
}
},
{
"pk": 3993,
"model": "core.place",
"fields": {
"name": "Q291",
"coord": "POINT (-73.9177767197323305 40.7099323185027160)",
"address": "Starr Playground, Onderdonk Avenue, Ridgewood, Queens County, NYC, New York, 11385, United States of America",
"active": false
}
},
{
"pk": 3994,
"model": "core.place",
"fields": {
"name": "Q002",
"coord": "POINT (-73.9111898703123700 40.7109067886391287)",
"address": "Grover Cleveland Park, Stanhope Street, Ridgewood, Queens County, NYC, New York, 11385; 11237, United States of America",
"active": false
}
},
{
"pk": 3995,
"model": "core.place",
"fields": {
"name": "Q002",
"coord": "POINT (-73.9110400984956755 40.7110773646414970)",
"address": "Grover Cleveland Park, Stanhope Street, Ridgewood, Queens County, NYC, New York, 11385; 11237, United States of America",
"active": false
}
},
{
"pk": 3996,
"model": "core.place",
"fields": {
"name": "B016",
"coord": "POINT (-73.9236220864700186 40.7032114885225340)",
"address": "Skate Park, Walking path in the park, Bushwick, Kings County, NYC, New York, 11237, United States of America",
"active": false
}
},
{
"pk": 3997,
"model": "core.place",
"fields": {
"name": "B016",
"coord": "POINT (-73.9237159760898095 40.7038759309429992)",
"address": "73, Irving Avenue, Bushwick, Kings County, NYC, New York, 11237, United States of America",
"active": false
}
},
{
"pk": 3998,
"model": "core.place",
"fields": {
"name": "B032",
"coord": "POINT (-73.9772064032463845 40.6923920994887141)",
"address": "Evergreen Rehab, 140, Saint Edwards Street, Fort Greene, Kings County, NYC, New York, 11201, United States of America",
"active": false
}
},
{
"pk": 3999,
"model": "core.place",
"fields": {
"name": "X004",
"coord": "POINT (-73.8736912566256052 40.8270749755712288)",
"address": "1121 Morrison Avenue, Bronx, New York 10472",
"active": false
}
},
{
"pk": 4000,
"model": "core.place",
"fields": {
"name": "X172",
"coord": "POINT (-73.8505991938766044 40.8656551556924441)",
"address": "Throop Avenue, Bronx, New York 10469",
"active": false
}
},
{
"pk": 4001,
"model": "core.place",
"fields": {
"name": "M227",
"coord": "POINT (-73.9818198566442788 40.7359565163315409)",
"address": "East 20th Street, Stuyvesant Town, New York County, NYC, New York, 10009, United States of America",
"active": false
}
},
{
"pk": 4002,
"model": "core.place",
"fields": {
"name": "X010",
"coord": "POINT (-73.8904982830247405 40.8373575692547419)",
"address": "1660 Crotona Park East, Bronx, New York 10460",
"active": false
}
},
{
"pk": 4003,
"model": "core.place",
"fields": {
"name": "B364",
"coord": "POINT (-73.9292308003958141 40.6748771849847373)",
"address": "1610 Bergen Street, Brooklyn, New York 11213",
"active": false
}
},
{
"pk": 4004,
"model": "core.place",
"fields": {
"name": "B364",
"coord": "POINT (-73.9291142705301354 40.6747969194033985)",
"address": "Bergen Street, Brooklyn, New York 11213",
"active": false
}
},
{
"pk": 4005,
"model": "core.place",
"fields": {
"name": "B360",
"coord": "POINT (-73.9076104588023242 40.6420298655073893)",
"address": "School Lane, Brooklyn, New York 11236",
"active": false
}
},
{
"pk": 4006,
"model": "core.place",
"fields": {
"name": "B247",
"coord": "POINT (-73.8940521584159740 40.6537390115074331)",
"address": "Public School 260, 875, Williams Avenue, Breukelen Houses, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4007,
"model": "core.place",
"fields": {
"name": "B247",
"coord": "POINT (-73.8936170372918326 40.6538936964299893)",
"address": "Public School 260, 875, Williams Avenue, Breukelen Houses, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4008,
"model": "core.place",
"fields": {
"name": "B247",
"coord": "POINT (-73.8909607900633318 40.6517656711197617)",
"address": "370, Louisiana Avenue, Breukelen Houses, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4009,
"model": "core.place",
"fields": {
"name": "B247",
"coord": "POINT (-73.8909395257978758 40.6515783642778885)",
"address": "376, Louisiana Avenue, Breukelen Houses, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4010,
"model": "core.place",
"fields": {
"name": "B247",
"coord": "POINT (-73.8915064121816840 40.6505077530294940)",
"address": "1045, Williams Avenue, Breukelen Houses, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4011,
"model": "core.place",
"fields": {
"name": "B247",
"coord": "POINT (-73.8910664043867200 40.6504941944964031)",
"address": "11243, Flatlands Avenue, Breukelen Houses, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4012,
"model": "core.place",
"fields": {
"name": "B342",
"coord": "POINT (-73.8993159906230943 40.6464530454229802)",
"address": "Onehundred Percent Playground, East 100th Street, Canarsie, Kings County, NYC, New York, 11236, United States of America",
"active": false
}
},
{
"pk": 4013,
"model": "core.place",
"fields": {
"name": "B342",
"coord": "POINT (-73.8995189738357396 40.6467454052937924)",
"address": "Onehundred Percent Playground, East 100th Street, Canarsie, Kings County, NYC, New York, 11236, United States of America",
"active": false
}
},
{
"pk": 4014,
"model": "core.place",
"fields": {
"name": "B056",
"coord": "POINT (-73.8904930751642581 40.6678510972861105)",
"address": "Doctor Martin Luther King Junior Park, Bradford Street, Cypress Hills, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4015,
"model": "core.place",
"fields": {
"name": "B056",
"coord": "POINT (-73.8902996869432940 40.6673990062525021)",
"address": "Doctor Martin Luther King Junior Park, Bradford Street, Cypress Hills, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4016,
"model": "core.place",
"fields": {
"name": "B261",
"coord": "POINT (-73.8861299535456766 40.6655402807835884)",
"address": "Public School 72 (historical), 665, New Lots Avenue, East New York, Kings County, NYC, New York, 11207, United States of America",
"active": false
}
},
{
"pk": 4017,
"model": "core.place",
"fields": {
"name": "B214",
"coord": "POINT (-73.8853590184911297 40.6589415063347133)",
"address": "Junior High School K166 George Gershwin, Van Siclen Avenue, East New York, Kings County, NYC, New York, 11239, United States of America",
"active": false
}
},
{
"pk": 4018,
"model": "core.place",
"fields": {
"name": "B214",
"coord": "POINT (-73.8863785202814256 40.6591732196969318)",
"address": "Van Siclen Avenue, East New York, Kings County, NYC, New York, 11239, United States of America",
"active": false
}
},
{
"pk": 4019,
"model": "core.place",
"fields": {
"name": "B306",
"coord": "POINT (-73.9384511193431422 40.5911514182992263)",
"address": "Public School 286, Haring Street, Sheepshead Bay, Kings County, NYC, New York, 11235, United States of America",
"active": false
}
},
{
"pk": 4020,
"model": "core.place",
"fields": {
"name": "B308",
"coord": "POINT (-73.9358449814858432 40.5924376699422851)",
"address": "2477, Coyle Street, Gerritsen, Kings County, NYC, New York, 11235, United States of America",
"active": false
}
},
{
"pk": 4021,
"model": "core.place",
"fields": {
"name": "B308",
"coord": "POINT (-73.9369614129773396 40.5921932676952650)",
"address": "3020, Avenue Y, Sheepshead Bay, Kings County, NYC, New York, 11235, United States of America",
"active": false
}
},
{
"pk": 4022,
"model": "core.place",
"fields": {
"name": "B092",
"coord": "POINT (-74.0178742348449248 40.6260126562883030)",
"address": "7558, 7th Avenue, Dyker Heights, Kings County, NYC, New York, 11228, United States of America",
"active": false
}
},
{
"pk": 4023,
"model": "core.place",
"fields": {
"name": "B092",
"coord": "POINT (-74.0171885324748047 40.6256059953477475)",
"address": "7521, Fort Hamilton Parkway, Dyker Heights, Kings County, NYC, New York, 11228, United States of America",
"active": false
}
},
{
"pk": 4024,
"model": "core.place",
"fields": {
"name": "B060",
"coord": "POINT (-74.0171558252204562 40.6277299578487643)",
"address": "McKinley Park, 73rd Street, New Utrecht, Kings County, NYC, New York, 11204, United States of America",
"active": false
}
},
{
"pk": 4025,
"model": "core.place",
"fields": {
"name": "B060",
"coord": "POINT (-74.0168950909591672 40.6265501618480442)",
"address": "73rd Street, New Utrecht, Kings County, NYC, New York, 11204, United States of America",
"active": false
}
},
{
"pk": 4026,
"model": "core.place",
"fields": {
"name": "B060",
"coord": "POINT (-74.0165929364219579 40.6263885270654939)",
"address": "73rd Street, New Utrecht, Kings County, NYC, New York, 11204, United States of America",
"active": false
}
},
{
"pk": 4027,
"model": "core.place",
"fields": {
"name": "B066",
"coord": "POINT (-74.0308453309531558 40.6393206308129109)",
"address": "111, Senator Street, Bay Ridge, Kings County, NYC, New York, 11220, United States of America",
"active": false
}
},
{
"pk": 4028,
"model": "core.place",
"fields": {
"name": "B066",
"coord": "POINT (-74.0308040402775305 40.6392054587554625)",
"address": "111, Senator Street, Bay Ridge, Kings County, NYC, New York, 11220, United States of America",
"active": false
}
},
{
"pk": 4029,
"model": "core.place",
"fields": {
"name": "Q006",
"coord": "POINT (-73.8077253458680644 40.7705810601405858)",
"address": "32nd Avenue, Queens, New York 11361",
"active": false
}
},
{
"pk": 4030,
"model": "core.place",
"fields": {
"name": "Q006",
"coord": "POINT (-73.8059189654122321 40.7704729727335575)",
"address": "29-19 159th Street, Queens, New York 11358",
"active": false
}
},
{
"pk": 4031,
"model": "core.place",
"fields": {
"name": "Q107",
"coord": "POINT (-73.7626782954684046 40.6598676406925676)",
"address": "147th Avenue, Bayswater, New York 11422",
"active": false
}
},
{
"pk": 4032,
"model": "core.place",
"fields": {
"name": "Q107",
"coord": "POINT (-73.7624526292069760 40.6601345848599252)",
"address": "146-02, Springfield Boulevard, Laurelton, Queens County, NYC, New York, 11413, United States of America",
"active": false
}
},
{
"pk": 4033,
"model": "core.place",
"fields": {
"name": "Q107",
"coord": "POINT (-73.7627410727834416 40.6609921391998412)",
"address": "146-02, Springfield Boulevard, Laurelton, Queens County, NYC, New York, 11413, United States of America",
"active": false
}
},
{
"pk": 4034,
"model": "core.place",
"fields": {
"name": "Q406",
"coord": "POINT (-73.7595882357050527 40.6638488832808420)",
"address": "145-50, Springfield Boulevard, Laurelton, Queens County, NYC, New York, 11413, United States of America",
"active": false
}
},
{
"pk": 4035,
"model": "core.place",
"fields": {
"name": "Q163",
"coord": "POINT (-73.8082833921897787 40.5855986035746952)",
"address": "Boardwalk, Arverne View, Arverne, Queens County, NYC, New York, 11692, United States of America",
"active": false
}
},
{
"pk": 4036,
"model": "core.place",
"fields": {
"name": "B329",
"coord": "POINT (-73.9112629468470317 40.6123031230569538)",
"address": "Lindower Park, Mill Avenue, Bergen Beach, Kings County, NYC, New York, 11234, United States of America",
"active": false
}
},
{
"pk": 4037,
"model": "core.place",
"fields": {
"name": "B329",
"coord": "POINT (-73.9108483425105618 40.6121623113259460)",
"address": "Lindower Park, Mill Avenue, Bergen Beach, Kings County, NYC, New York, 11234, United States of America",
"active": false
}
},
{
"pk": 4038,
"model": "core.place",
"fields": {
"name": "B329",
"coord": "POINT (-73.9118016648014304 40.6126898878030076)",
"address": "Lindower Park, Mill Avenue, Bergen Beach, Kings County, NYC, New York, 11234, United States of America",
"active": false
}
},
{
"pk": 4039,
"model": "core.place",
"fields": {
"name": "B329",
"coord": "POINT (-73.9110983348331558 40.6113230724287178)",
"address": "2254, East 60th Place, Bergen Beach, Kings County, NYC, New York, 11234, United States of America",
"active": false
}
},
{
"pk": 4040,
"model": "core.place",
"fields": {
"name": "B329",
"coord": "POINT (-73.9124801373281031 40.6119458047155391)",
"address": "6001, Strickland Avenue, Bergen Beach, Kings County, NYC, New York, 11234, United States of America",
"active": false
}
},
{
"pk": 4041,
"model": "core.place",
"fields": {
"name": "X002",
"coord": "POINT (-73.8712645433121935 40.8606097323564654)",
"address": "Pelham Parkway Greenway, Bronxdale, Bronx, St. Andrews Village, Bronx County, NYC, New York, 10467, United States of America",
"active": false
}
},
{
"pk": 4042,
"model": "core.place",
"fields": {
"name": "M037",
"coord": "POINT (-73.9257710995873794 40.8583972888702363)",
"address": "195, Fort George Avenue, Inwood, New York County, NYC, New York, 10040, United States of America",
"active": false
}
},
{
"pk": 4043,
"model": "core.place",
"fields": {
"name": "M037",
"coord": "POINT (-73.9312537350735539 40.8472588294469006)",
"address": "Quisqueya Playground, Amsterdam Avenue, Washington Heights, New York County, NYC, New York, 10040, United States of America",
"active": false
}
},
{
"pk": 4044,
"model": "core.place",
"fields": {
"name": "B251",
"coord": "POINT (-73.9467275823536312 40.5772176831773734)",
"address": "194, Falmouth Street, Sheepshead Bay, Kings County, NYC, New York, 11235, United States of America",
"active": false
}
},
{
"pk": 4045,
"model": "core.place",
"fields": {
"name": "B251",
"coord": "POINT (-73.9404717110729877 40.5775145612522365)",
"address": "Oriental Boulevard, Brighton Beach, Kings County, NYC, New York, 11235, United States of America",
"active": false
}
},
{
"pk": 4046,
"model": "core.place",
"fields": {
"name": "B251",
"coord": "POINT (-73.9407103445072948 40.5776542544432317)",
"address": "Oriental Boulevard, Brighton Beach, Kings County, NYC, New York, 11235, United States of America",
"active": false
}
},
{
"pk": 4047,
"model": "core.place",
"fields": {
"name": "Q215",
"coord": "POINT (-73.9352345884596502 40.7771799480914510)",
"address": "Hellgate Field, 2nd Street, Astoria, Queens County, NYC, New York, 11102, United States of America",
"active": false
}
},
{
"pk": 4048,
"model": "core.place",
"fields": {
"name": "Q215",
"coord": "POINT (-73.9350147830240587 40.7772339486983952)",
"address": "Hellgate Field, 2nd Street, Astoria, Queens County, NYC, New York, 11102, United States of America",
"active": false
}
},
{
"pk": 4049,
"model": "core.place",
"fields": {
"name": "Q215",
"coord": "POINT (-73.9346272198620653 40.7771901777425541)",
"address": "Hellgate Field, 2nd Street, Astoria, Queens County, NYC, New York, 11102, United States of America",
"active": false
}
},
{
"pk": 4050,
"model": "core.place",
"fields": {
"name": "Q300",
"coord": "POINT (-73.8218821446000959 40.7489830950572625)",
"address": "46-21 Colden Street, Queens, New York 11355",
"active": false
}
},
{
"pk": 4051,
"model": "core.place",
"fields": {
"name": "Q300",
"coord": "POINT (-73.8222372288493176 40.7489504886330494)",
"address": "Colden Street, Queens, New York 11355",
"active": false
}
},
{
"pk": 4052,
"model": "core.place",
"fields": {
"name": "Q300",
"coord": "POINT (-73.8223730452998979 40.7494006611945210)",
"address": "46-21 Colden Street, Queens, New York 11355",
"active": false
}
},
{
"pk": 4053,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9040472233672858 40.7271894184345769)",
"address": "Frank Principe Park, 54th Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4054,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9045011184547178 40.7276143036840068)",
"address": "Frank Principe Park, 54th Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4055,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9049519856123283 40.7270121507733052)",
"address": "Frank Principe Park, 54th Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4056,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9052127334134781 40.7271903844858940)",
"address": "Frank Principe Park, 54th Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4057,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9061837982850420 40.7278621755603680)",
"address": "59-81, Maurice Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4058,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9053641499444041 40.7283065527415502)",
"address": "60-10, Maurice Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4059,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9055350094230050 40.7284093961302816)",
"address": "60-10, Maurice Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4060,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9038634824774192 40.7266620553555256)",
"address": "Queens-Midtown Expressway, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4061,
"model": "core.place",
"fields": {
"name": "Q131",
"coord": "POINT (-73.9046009638912693 40.7270255535028909)",
"address": "Frank Principe Park, 54th Avenue, Maspeth, Queens County, NYC, New York, 11378, United States of America",
"active": false
}
},
{
"pk": 4062,
"model": "core.place",
"fields": {
"name": "Q104",
"coord": "POINT (-73.9472315790565204 40.7569183402580535)",
"address": "40-50, Vernon Boulevard, Long Island City, Queens County, NYC, New York, 11101, United States of America",
"active": false
}
},
{
"pk": 4063,
"model": "core.place",
"fields": {
"name": "Q104",
"coord": "POINT (-73.9494447440244471 40.7561601619317173)",
"address": "Vernon Boulevard, Long Island City, Queens County, NYC, New York, 10044, United States of America",
"active": false
}
},
{
"pk": 4064,
"model": "core.place",
"fields": {
"name": "Q104",
"coord": "POINT (-73.9483927845336098 40.7556980371643505)",
"address": "41-14, Vernon Boulevard, Long Island City, Queens County, NYC, New York, 11101, United States of America",
"active": false
}
},
{
"pk": 4065,
"model": "core.place",
"fields": {
"name": "X039",
"coord": "POINT (-73.7935065342401089 40.8680607118008723)",
"address": "Park Drive Greenway, Bronx County, NYC, New York, 10464, United States of America",
"active": false
}
},
{
"pk": 4066,
"model": "core.place",
"fields": {
"name": "X044",
"coord": "POINT (-73.8985626137726257 40.8656851960852023)",
"address": "2552 Jerome Avenue, Bronx, New York 10468",
"active": false
}
},
{
"pk": 4067,
"model": "core.place",
"fields": {
"name": "Q300A",
"coord": "POINT (-73.7877108648387718 40.7447871921363216)",
"address": "189-05 Underhill Avenue, Queens, New York 11365",
"active": false
}
},
{
"pk": 4068,
"model": "core.place",
"fields": {
"name": "R005",
"coord": "POINT (-74.1062675428598254 40.6185249243245536)",
"address": "Park Drive, Sunnyside, Todt Hill, Richmond County, NYC, New York, 10314, United States of America",
"active": false
}
},
{
"pk": 4069,
"model": "core.place",
"fields": {
"name": "X045",
"coord": "POINT (-73.9104931801986140 40.8098621648157334)",
"address": "721, East 144th Street, Port Morris, Bronx County, NYC, New York, 10455, United States of America",
"active": false
}
},
{
"pk": 4070,
"model": "core.place",
"fields": {
"name": "X045",
"coord": "POINT (-73.9102898476977259 40.8103901636793793)",
"address": "447, Jackson Avenue, Port Morris, Bronx County, NYC, New York, 10454, United States of America",
"active": false
}
},
{
"pk": 4071,
"model": "core.place",
"fields": {
"name": "X136",
"coord": "POINT (-73.8928276686727656 40.8766888372061459)",
"address": "West 205th Street, Bronx, New York 10468",
"active": false
}