-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFood_Scrap_Drop_Off_Sites.json
More file actions
1036 lines (1036 loc) · 63.5 KB
/
Food_Scrap_Drop_Off_Sites.json
File metadata and controls
1036 lines (1036 loc) · 63.5 KB
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
{
"meta" : {
"view" : {
"id" : "rmmq-46n5",
"name" : "Food Scrap Drop Off Sites",
"attribution" : "Department of Sanitation (DSNY)",
"averageRating" : 0,
"category" : "Environment",
"createdAt" : 1340750333,
"description" : "Locations and operators of food scrap drop-off sites. Please note that these sites are not necessarily operated solely by the City of New York.",
"displayType" : "table",
"downloadCount" : 132,
"indexUpdatedAt" : 1371845155,
"newBackend" : false,
"numberOfComments" : 0,
"oid" : 4140739,
"publicationAppendEnabled" : false,
"publicationDate" : 1371843824,
"publicationGroup" : 368576,
"publicationStage" : "published",
"rowsUpdatedAt" : 1371843819,
"rowsUpdatedBy" : "5fuc-pqz2",
"tableId" : 932844,
"totalTimesRated" : 0,
"viewCount" : 542,
"viewLastModified" : 1371843824,
"viewType" : "tabular",
"columns" : [ {
"id" : -1,
"name" : "sid",
"dataTypeName" : "meta_data",
"fieldName" : ":sid",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : -1,
"name" : "id",
"dataTypeName" : "meta_data",
"fieldName" : ":id",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : -1,
"name" : "position",
"dataTypeName" : "meta_data",
"fieldName" : ":position",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : -1,
"name" : "created_at",
"dataTypeName" : "meta_data",
"fieldName" : ":created_at",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : -1,
"name" : "created_meta",
"dataTypeName" : "meta_data",
"fieldName" : ":created_meta",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : -1,
"name" : "updated_at",
"dataTypeName" : "meta_data",
"fieldName" : ":updated_at",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : -1,
"name" : "updated_meta",
"dataTypeName" : "meta_data",
"fieldName" : ":updated_meta",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : -1,
"name" : "meta",
"dataTypeName" : "meta_data",
"fieldName" : ":meta",
"position" : 0,
"renderTypeName" : "meta_data",
"format" : {
}
}, {
"id" : 75764354,
"name" : "Borough",
"dataTypeName" : "text",
"fieldName" : "borough",
"position" : 1,
"renderTypeName" : "text",
"tableColumnId" : 3285477,
"width" : 96,
"cachedContents" : {
"non_null" : 39,
"smallest" : "BK",
"null" : 0,
"largest" : "SI",
"top" : [ {
"count" : 20,
"item" : "BK"
}, {
"count" : 19,
"item" : "MN"
}, {
"count" : 18,
"item" : "QN"
}, {
"count" : 17,
"item" : "SI"
} ]
},
"format" : {
}
}, {
"id" : 75764355,
"name" : "Name",
"dataTypeName" : "text",
"fieldName" : "location",
"position" : 2,
"renderTypeName" : "text",
"tableColumnId" : 3285478,
"width" : 196,
"cachedContents" : {
"non_null" : 39,
"smallest" : "462 Halsey Community Garden",
"null" : 0,
"largest" : "Windsor Terrace - PS 154 Greenmarket @PS 154",
"top" : [ {
"count" : 20,
"item" : "462 Halsey Community Garden"
}, {
"count" : 19,
"item" : "Bay Ridge Greenmarket"
}, {
"count" : 18,
"item" : "Brooklyn Borough Hall Greenmarket"
}, {
"count" : 17,
"item" : "Carrol Gardens Greenmarket"
}, {
"count" : 16,
"item" : "Compost For Brooklyn"
}, {
"count" : 15,
"item" : "Cortelyou Greenmarket"
}, {
"count" : 14,
"item" : "Fort Greene Greenmarket "
}, {
"count" : 13,
"item" : "Grand Army Plaza Greenmarket"
}, {
"count" : 12,
"item" : "McCarren Park Greenmarket"
}, {
"count" : 11,
"item" : "North Brooklyn Compost Project @ McCarren Park"
}, {
"count" : 10,
"item" : "Prospect Heights Community Farm"
}, {
"count" : 9,
"item" : "Red Hook Community Farm"
}, {
"count" : 8,
"item" : "Sunset Park Greenmarket"
}, {
"count" : 7,
"item" : "Windsor Terrace - PS 154 Greenmarket @PS 154"
}, {
"count" : 6,
"item" : "57th Street Greenmarket"
}, {
"count" : 5,
"item" : "79th Street Greenmarket"
}, {
"count" : 4,
"item" : "82nd Street Greenmarket"
}, {
"count" : 3,
"item" : "92nd Street Greenmarket"
}, {
"count" : 2,
"item" : "Abingdon Square Greenmarket"
}, {
"count" : 1,
"item" : "Columbia University Greenmarket"
} ]
},
"format" : {
"align" : "left"
}
}, {
"id" : 75764356,
"name" : "Location",
"dataTypeName" : "location",
"fieldName" : "location_1",
"position" : 3,
"renderTypeName" : "location",
"tableColumnId" : 3285488,
"width" : 220,
"cachedContents" : {
"non_null" : 39,
"smallest" : {
"longitude" : "-73.93211351051998",
"latitude" : "40.77205438915846",
"human_address" : "{\"address\":\"11-01 30th Avenue\",\"city\":\"Astoria\",\"state\":\"NY\",\"zip\":\"11104 \"}"
},
"null" : 0,
"largest" : {
"longitude" : "-74.00501000031113",
"latitude" : "40.733929999569966",
"human_address" : "{\"address\":\"West 12 St & 8th Ave\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10014 \"}"
},
"top" : [ {
"count" : 20,
"item" : {
"longitude" : "-73.9357346332942",
"latitude" : "40.68338860098805",
"human_address" : "{\"address\":\"462 Halsey Street\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11223 \"}"
}
}, {
"count" : 19,
"item" : {
"longitude" : "-74.03007000033011",
"latitude" : "40.62450999973686",
"human_address" : "{\"address\":\"3rd Ave & 95th Street\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11209 \"}"
}
}, {
"count" : 18,
"item" : {
"longitude" : "-73.99130999985647",
"latitude" : "40.69373999970139",
"human_address" : "{\"address\":\"Court St & Montague St\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11201 \"}"
}
}, {
"count" : 17,
"item" : {
"longitude" : "-74.0006699998205",
"latitude" : "40.680220000352904",
"human_address" : "{\"address\":\"Carroll St, b/t Smith & Court\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11231 \"}"
}
}, {
"count" : 16,
"item" : {
"longitude" : "-73.96349999982499",
"latitude" : "40.62294000018102",
"human_address" : "{\"address\":\"Newkirk Ave & East 8th St\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11230 \"}"
}
}, {
"count" : 15,
"item" : {
"longitude" : "-73.9573199999179",
"latitude" : "40.64728000027196",
"human_address" : "{\"address\":\"Courtelyou Rd b/t Argyle & Rugby Rd\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11226 \"}"
}
}, {
"count" : 14,
"item" : {
"longitude" : "-73.99130999985647",
"latitude" : "40.69373999970139",
"human_address" : "{\"address\":\"Washington Park b/t Dekalb Ave & Willoughby Ave\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11201 \"}"
}
}, {
"count" : 13,
"item" : {
"longitude" : "-73.9635700003551",
"latitude" : "40.679380000286926",
"human_address" : "{\"address\":\"Prospect Park West & Plaza St West\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11238 \"}"
}
}, {
"count" : 12,
"item" : {
"longitude" : "-73.95335566994004",
"latitude" : "40.71978151369627",
"human_address" : "{\"address\":\"229 North 12th St\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11211 \"}"
}
}, {
"count" : 11,
"item" : {
"longitude" : "-73.95335566994004",
"latitude" : "40.71978151369627",
"human_address" : "{\"address\":\"229 North 12th St\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11211 \"}"
}
}, {
"count" : 10,
"item" : {
"longitude" : "-73.96765157211405",
"latitude" : "40.67829843830225",
"human_address" : "{\"address\":\"252 St. Marks Ave\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11238 \"}"
}
}, {
"count" : 9,
"item" : {
"longitude" : "-74.0006699998205",
"latitude" : "40.680220000352904",
"human_address" : "{\"address\":\"580 Columbia St b/t Halleck St & Sigourney St\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11231 \"}"
}
}, {
"count" : 8,
"item" : {
"longitude" : "-74.01363999988592",
"latitude" : "40.64135999976435",
"human_address" : "{\"address\":\"4th Avenue b/t 59th & 60th Street\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11220 \"}"
}
}, {
"count" : 7,
"item" : {
"longitude" : "-73.9829100000963",
"latitude" : "40.66783000005461",
"human_address" : "{\"address\":\"11th Ave b/t Sherman & Windsor Pl.\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11215 \"}"
}
}, {
"count" : 6,
"item" : {
"longitude" : "-73.98420000022969",
"latitude" : "40.76489999963542",
"human_address" : "{\"address\":\"57th St & 9th Ave\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10019 \"}"
}
}, {
"count" : 5,
"item" : {
"longitude" : "-73.9752700003101",
"latitude" : "40.786299999945186",
"human_address" : "{\"address\":\"79th St & Columbus Ave\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10024 \"}"
}
}, {
"count" : 4,
"item" : {
"longitude" : "-73.95274999961265",
"latitude" : "40.77601999982329",
"human_address" : "{\"address\":\"East 82nd St & York Ave\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10028 \"}"
}
}, {
"count" : 3,
"item" : {
"longitude" : "-73.95056999980551",
"latitude" : "40.7813999997104",
"human_address" : "{\"address\":\"92nd St & 1st Ave\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10128 \"}"
}
}, {
"count" : 2,
"item" : {
"longitude" : "-74.00501000031113",
"latitude" : "40.733929999569966",
"human_address" : "{\"address\":\"West 12 St & 8th Ave\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10014 \"}"
}
}, {
"count" : 1,
"item" : {
"longitude" : "-73.96729000013323",
"latitude" : "40.798120000038125",
"human_address" : "{\"address\":\"Broadway b/t 114 & 115 St\",\"city\":\"New York\",\"state\":\"NY\",\"zip\":\"10025 \"}"
}
} ]
},
"format" : {
"view" : "address_coords",
"align" : "left"
},
"subColumnTypes" : [ "human_address", "latitude", "longitude", "machine_address", "needs_recoding" ]
}, {
"id" : 75764357,
"name" : "CityMap Location",
"dataTypeName" : "url",
"fieldName" : "citymap_location",
"position" : 4,
"renderTypeName" : "url",
"tableColumnId" : 3285479,
"width" : 292,
"cachedContents" : {
"non_null" : 39,
"smallest" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?searchType=AddressSearch&addressNumber=39&street=union+sq+west&borough=Manhattan&Submit=Go"
},
"null" : 0,
"largest" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=9&p=986952,192125&c=GISBasic&s=i:COURT+STREET,MONTAGUE+STREET,BROOKLYN"
},
"top" : [ {
"count" : 20,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1002094,188192&c=GISBasic&s=a:462,HALSEY+STREET,BROOKLYN"
}
}, {
"count" : 19,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=974925,164169&c=GISBasic&s=i:3+AVENUE,95+STREET,N,BROOKLYN"
}
}, {
"count" : 18,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=9&p=986952,192125&c=GISBasic&s=i:COURT+STREET,MONTAGUE+STREET,BROOKLYN"
}
}, {
"count" : 17,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=985667,187092&c=GISBasic&s=i:SMITH+STREET,CARROLL+STREET,S,BROOKLYN"
}
}, {
"count" : 16,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=993880,172748&c=GISBasic&s=i:CORTELYOU+ROAD,RUGBY+ROAD,BROOKLYN"
}
}, {
"count" : 15,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=991703,190525&c=GISBasic&s=i:DEKALB+AVENUE,WASHINGTON+PARK,BROOKLYN"
}
}, {
"count" : 14,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=7&p=991952,182827&c=GISBasic&s=i:PROSPECT+PARK+WEST,PLAZA+ST+WEST,BROOKLYN"
}
}, {
"count" : 13,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=997287,201419&c=GISBasic&s=a:229,NORTH+12+STREET,BROOKLYN"
}
}, {
"count" : 12,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=7&p=992727,184796&c=GISBasic&s=a:252,ST+MARKS+AVENUE,BROOKLYN"
}
}, {
"count" : 11,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=981522,184276&c=GISBasic&s=a:580,COLUMBIA+STREET,BROOKLYN"
}
}, {
"count" : 10,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=979306,172969&c=GISBasic&s=i:4+AVENUE,59+STREET,BROOKLYN"
}
}, {
"count" : 9,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=990877,178667&c=GISBasic&s=a:1625,11+AVENUE,BROOKLYN"
}
}, {
"count" : 8,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=988207,219050&c=GISBasic&s=i:WEST+57+STREET,9+AVENUE,MANHATTAN"
}
}, {
"count" : 7,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=991040,224164&c=GISBasic&s=i:WEST+79+STREET,COLUMBUS+AVENUE,MANHATTAN"
}
}, {
"count" : 6,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=997935,221182&c=GISBasic&s=l:MANHATTAN,1561,37,PLUTO"
}
}, {
"count" : 5,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=999041,223708&c=GISBasic&s=i:EAST+92+STREET,1+AVENUE,MANHATTAN"
}
}, {
"count" : 4,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=982912,207985&c=GISBasic&s=i:WEST+12+STREET,8+AVENUE,MANHATTAN"
}
}, {
"count" : 3,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=993981,233184&c=GISBasic&s=i:BROADWAY,WEST+114+STREET,MANHATTAN"
}
}, {
"count" : 2,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=980605,190782&c=GISBasic&s=a:1,GOVERNORS+ISLAND,MANHATTAN"
}
}, {
"count" : 1,
"item" : {
"url" : "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1006208,256266&c=GISBasic&s=i:ISHAM+STREET,SEAMAN+AVENUE,MANHATTAN"
}
} ]
},
"format" : {
},
"subColumnTypes" : [ "url", "description" ]
}, {
"id" : 75764358,
"name" : "Materials Accepted:",
"dataTypeName" : "text",
"fieldName" : "materials_accepted",
"position" : 5,
"renderTypeName" : "text",
"tableColumnId" : 3285480,
"width" : 228,
"cachedContents" : {
"non_null" : 39,
"smallest" : "food scraps",
"null" : 0,
"largest" : "food scraps, leaves, garden trimmings",
"top" : [ {
"count" : 20,
"item" : "food scraps"
}, {
"count" : 19,
"item" : "food scraps, leaves, garden trimmings"
} ]
},
"format" : {
}
}, {
"id" : 75764359,
"name" : "Days ",
"dataTypeName" : "text",
"fieldName" : "days",
"position" : 6,
"renderTypeName" : "text",
"tableColumnId" : 3285481,
"width" : 160,
"cachedContents" : {
"non_null" : 39,
"smallest" : "check garden for open hours",
"null" : 0,
"largest" : "whenever the garden is open",
"top" : [ {
"count" : 20,
"item" : "whenever the garden is open"
}, {
"count" : 19,
"item" : "Saturdays"
}, {
"count" : 18,
"item" : "Sundays"
}, {
"count" : 17,
"item" : "Saturdays, Sundays, Thursdays"
}, {
"count" : 16,
"item" : "check garden for open hours"
}, {
"count" : 15,
"item" : "whenever Governors Island is open to the public"
}, {
"count" : 14,
"item" : "Monday – Friday"
}, {
"count" : 13,
"item" : "Mondays, Wednesdays, Fridays, Saturdays"
}, {
"count" : 12,
"item" : "Thursday"
}, {
"count" : 11,
"item" : "email licgardencompost@gmail.com for info"
}, {
"count" : 10,
"item" : "Monday - Sunday"
}, {
"count" : 9,
"item" : "Tuesdays"
}, {
"count" : 8,
"item" : "garden open hours"
} ]
},
"format" : {
}
}, {
"id" : 75764360,
"name" : "Hours",
"dataTypeName" : "text",
"fieldName" : "hours",
"position" : 7,
"renderTypeName" : "text",
"tableColumnId" : 3285482,
"width" : 160,
"cachedContents" : {
"non_null" : 37,
"smallest" : "10 am – 4:30 pm",
"null" : 2,
"largest" : "whenever the garden is open",
"top" : [ {
"count" : 20,
"item" : "whenever the garden is open"
}, {
"count" : 19,
"item" : "8 am – 1:00 pm"
}, {
"count" : 18,
"item" : "8 am – 4 pm"
}, {
"count" : 17,
"item" : "8 am – 1 pm"
}, {
"count" : 16,
"item" : "Sat: 10 am– 1 pm; Sun 1 – 4 pm; Thur 4:30 to 6:30 PM"
}, {
"count" : 15,
"item" : "8 am – 3 pm"
}, {
"count" : 14,
"item" : "8 am – 3:30 pm"
}, {
"count" : 13,
"item" : "8 am – 2 pm"
}, {
"count" : 12,
"item" : "9 am – 12 pm"
}, {
"count" : 11,
"item" : "check garden for open hours"
}, {
"count" : 10,
"item" : "10 am to 3 pm "
}, {
"count" : 9,
"item" : "8 am – 1 pm"
}, {
"count" : 8,
"item" : "9 am – 1:00 pm"
}, {
"count" : 7,
"item" : "9 am – 1 pm"
}, {
"count" : 6,
"item" : "9 am – 1 pm "
}, {
"count" : 5,
"item" : "whenever Governors Island is open to the public"
}, {
"count" : 4,
"item" : "8 am – 12 pm"
}, {
"count" : 3,
"item" : "8 am – 5 pm"
}, {
"count" : 2,
"item" : "8 am – 4 pm"
}, {
"count" : 1,
"item" : "4:30 - 7:30 PM"
} ]
},
"format" : {
}
}, {
"id" : 75764361,
"name" : "Months of Operation",
"dataTypeName" : "text",
"fieldName" : "months_of_operation",
"position" : 8,
"renderTypeName" : "text",
"tableColumnId" : 3285483,
"width" : 328,
"cachedContents" : {
"non_null" : 22,
"smallest" : "(April - November) Check the calendar on home page for winter “community composting” times.",
"null" : 17,
"largest" : "Year Round",
"top" : [ {
"count" : 20,
"item" : "whenever the garden is open"
}, {
"count" : 19,
"item" : "May 12-Nov 17, 2012"
}, {
"count" : 18,
"item" : "Year Round"
}, {
"count" : 17,
"item" : "(April - November) Check the calendar on home page for winter “community composting” times."
}, {
"count" : 16,
"item" : "(June 23-Nov 17, 2012)"
}, {
"count" : 15,
"item" : "(July 8-Nov 18, 2012)"
}, {
"count" : 14,
"item" : "(through Dec 22, 2012)"
}, {
"count" : 13,
"item" : "(June 17-Dec 23, 2012)"
}, {
"count" : 12,
"item" : "(May 31 to Nov 29)(skip November 22)"
}, {
"count" : 11,
"item" : "Year round"
}, {
"count" : 10,
"item" : "(May 12-Nov 17 2012)"
}, {
"count" : 9,
"item" : "(June 23-Dec 22 2012)"
} ]
},
"format" : {
}
}, {
"id" : 75764362,
"name" : "Requirements",
"dataTypeName" : "text",
"fieldName" : "requirements",
"position" : 9,
"renderTypeName" : "text",
"tableColumnId" : 3285484,
"width" : 244,
"cachedContents" : {
"non_null" : 39,
"smallest" : "bring compostables to \"compost row\" on the southwest edge of the farm and follow easy self-help composting instructions",
"null" : 0,
"largest" : "must assist with maintenance of compost site",
"top" : [ {
"count" : 20,
"item" : "check website regularly for drop off schedule updates"
}, {
"count" : 19,
"item" : "check website for specific food scrap drop-off requirements and schedule updates"
}, {
"count" : 18,
"item" : "must assist with maintenance of compost site"
}, {
"count" : 17,
"item" : "garden membership or drop-off during garden's open hours"
}, {
"count" : 16,
"item" : "bring compostables to \"compost row\" on the southwest edge of the farm and follow easy self-help composting instructions"
}, {
"count" : 15,
"item" : "check Trust for Governors Island website for specific food scrap drop-off sites on Governors Island and schedule updates"
}, {
"count" : 14,
"item" : "households only; no businesses or other commercial generators may drop off organic waste"
}, {
"count" : 13,
"item" : "Drop off food scraps in the green metal containers within the large operations yard on the east side of the street. Do not include any metal, plastic, meat, oils, cooked foods, or highly invasive weeds. Contact jsmith@nyrp.org with any questions."
}, {
"count" : 12,
"item" : "food scrap drop-off when CSA is in operation"
}, {
"count" : 11,
"item" : "food scrap drop off when farmers market is in operation"
}, {
"count" : 10,
"item" : "food scrap drop off during designated collection times only; email licgardencompost@gmail.com for info"
}, {
"count" : 9,
"item" : "food scrap drop off only when farm stand in operation; look for the bin and the \"What to Compost\" sign"
}, {
"count" : 8,
"item" : "food scrap drop off only when farmers market is in operation"
}, {
"count" : 7,
"item" : "for most current information, please email wqnscompost@gmail.com"
} ]
},
"format" : {
}
}, {
"id" : 75764363,
"name" : "Organizer",
"dataTypeName" : "text",
"fieldName" : "organizer",
"position" : 10,
"renderTypeName" : "text",
"tableColumnId" : 3285485,
"width" : 208,
"cachedContents" : {
"non_null" : 39,
"smallest" : "462 Halsey Community Garden ",
"null" : 0,
"largest" : "Western Queens Compost Initiative through the NYC Compost Project Local Organics Recovery Program ",
"top" : [ {
"count" : 20,
"item" : "462 Halsey Community Garden "
}, {
"count" : 19,
"item" : "DSNY & GrowNYC Food Waste Drop-Off Program "
}, {
"count" : 18,
"item" : "Compost For Brooklyn "
}, {
"count" : 17,
"item" : "North Brooklyn Compost Project "
}, {
"count" : 16,
"item" : "Prospect Heights Community Farm "
}, {
"count" : 15,
"item" : "Red Hook Community Farm "
}, {
"count" : 14,
"item" : "NYC Compost Project Local Organics Recovery Program "
}, {
"count" : 13,
"item" : "Lower East Side Ecology Center "
}, {
"count" : 12,
"item" : "New York Restoration Project "
}, {
"count" : 11,
"item" : "Western Queens Compost Initiative through the NYC Compost Project Local Organics Recovery Program "
}, {
"count" : 10,
"item" : "Long Island City Community Garden"
}, {
"count" : 9,
"item" : "Queens County Farm Museum "
}, {
"count" : 8,
"item" : "DSNY & GrowNYC Food Scrap Drop-Off Program "
} ]
},
"format" : {
}
}, {
"id" : 75764364,
"name" : "Composted By",
"dataTypeName" : "text",
"fieldName" : "composted_by",
"position" : 11,
"renderTypeName" : "text",
"tableColumnId" : 3285486,
"width" : 244,
"cachedContents" : {
"non_null" : 39,
"smallest" : "462 Halsey Community Garden ",
"null" : 0,
"largest" : "Western Queens Compost Initiative through the NYC Compost Project Local Organics Recovery Program ",
"top" : [ {
"count" : 20,
"item" : "462 Halsey Community Garden "
}, {
"count" : 19,
"item" : "NYC Department of Sanitation"
}, {
"count" : 18,
"item" : "GrowNYC community partners"
}, {
"count" : 17,
"item" : "Compost For Brooklyn "
}, {
"count" : 16,
"item" : "North Brooklyn Compost Project "
}, {
"count" : 15,
"item" : "Prospect Heights Community Farm "
}, {
"count" : 14,
"item" : "Red Hook Community Farm "
}, {
"count" : 13,
"item" : "Earth Matter NY through the NYC Compost Project Local Organics Recovery Program "
}, {
"count" : 12,
"item" : "New York Restoration Project "
}, {
"count" : 11,
"item" : "Lower East Side Ecology Center "
}, {
"count" : 10,
"item" : "Western Queens Compost Initiative through the NYC Compost Project Local Organics Recovery Program "
}, {
"count" : 9,
"item" : "Long Island City Community Garden"
}, {
"count" : 8,
"item" : "Queens County Farm Museum "
} ]
},
"format" : {
}
}, {
"id" : 75764365,
"name" : "Website",
"dataTypeName" : "url",
"fieldName" : "website",
"position" : 12,
"renderTypeName" : "url",
"tableColumnId" : 3285487,
"width" : 184,
"cachedContents" : {
"non_null" : 38,
"smallest" : {
"url" : "http://462halsey.com/composting/"
},
"null" : 1,
"largest" : {
"url" : "http://www.queensfarm.org/"
},
"top" : [ {
"count" : 20,
"item" : {
"url" : "http://462halsey.com/composting/"
}
}, {
"count" : 19,
"item" : {
"url" : "http://www.nyc.gov/html/nycwasteless/html/compost/compostproj_orp_program.shtml"
}
}, {
"count" : 18,
"item" : {
"url" : "http://compostforbrooklyn.org/"
}
}, {
"count" : 17,
"item" : {
"url" : "http://northbrooklyncompostproject.wordpress.com/"
}
}, {
"count" : 16,
"item" : {
"url" : "http://www.phcfarm.com/welcome/"
}
}, {
"count" : 15,
"item" : {
"url" : "http://www.added-value.org/"
}
}, {
"count" : 14,
"item" : {
"url" : "http://www.lesecologycenter.org/"
}
}, {
"count" : 13,
"item" : {
"url" : "http://www.nyrp.org/"
}
}, {
"count" : 12,
"item" : {
"url" : "http://www.queensfarm.org/"
}
}, {
"count" : 11,
"item" : {
"url" : "http://bignyc.org/western-queens-compost-initiative"
}
} ]
},
"format" : {
},
"subColumnTypes" : [ "url", "description" ]
} ],
"grants" : [ {
"inherited" : false,
"type" : "viewer",
"flags" : [ "public" ]
} ],
"metadata" : {
"custom_fields" : {
"Update" : {
"Update Frequency" : "As needed"
}
},
"rdfSubject" : "0"
},
"owner" : {
"id" : "5fuc-pqz2",
"displayName" : "NYC OpenData",
"roleName" : "administrator",
"screenName" : "NYC OpenData",
"rights" : [ "create_datasets", "edit_others_datasets", "edit_sdp", "edit_site_theme", "moderate_comments", "manage_users", "chown_datasets", "edit_nominations", "approve_nominations", "feature_items", "federations", "manage_stories", "manage_approval", "change_configurations", "view_domain", "view_others_datasets", "edit_pages", "create_pages", "short_session", "view_goals", "view_dashboards", "edit_goals", "edit_dashboards", "create_dashboards" ]
},
"query" : {
},
"rights" : [ "read" ],
"tableAuthor" : {
"id" : "5fuc-pqz2",
"displayName" : "NYC OpenData",
"roleName" : "administrator",
"screenName" : "NYC OpenData",
"rights" : [ "create_datasets", "edit_others_datasets", "edit_sdp", "edit_site_theme", "moderate_comments", "manage_users", "chown_datasets", "edit_nominations", "approve_nominations", "feature_items", "federations", "manage_stories", "manage_approval", "change_configurations", "view_domain", "view_others_datasets", "edit_pages", "create_pages", "short_session", "view_goals", "view_dashboards", "edit_goals", "edit_dashboards", "create_dashboards" ]
},
"tags" : [ "food", "scrap", "compost", "clean web" ],
"flags" : [ "default" ]
}
},
"data" : [ [ 1, "10262DF9-F727-46B9-80AC-352C65B792FA", 1, 1340750336, "399949", 1340750348, "399949", "{\n}", "BK", "462 Halsey Community Garden", [ "{\"address\":\"462 Halsey Street\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11223 \"}", "40.68338860098805", "-73.9357346332942", null, false ], [ "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1002094,188192&c=GISBasic&s=a:462,HALSEY+STREET,BROOKLYN", null ], "food scraps", "whenever the garden is open", "whenever the garden is open", "whenever the garden is open", "check website regularly for drop off schedule updates", "462 Halsey Community Garden ", "462 Halsey Community Garden ", [ "http://462halsey.com/composting/", null ] ]
, [ 2, "7ABEEBB1-B322-4F61-957E-72D22D59C3C3", 2, 1340750336, "399949", 1340750349, "399949", "{\n}", "BK", "Bay Ridge Greenmarket", [ "{\"address\":\"3rd Ave & 95th Street\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11209 \"}", "40.62450999973686", "-74.03007000033011", null, false ], [ "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=974925,164169&c=GISBasic&s=i:3+AVENUE,95+STREET,N,BROOKLYN", null ], "food scraps", "Saturdays", "8 am – 1:00 pm", "May 12-Nov 17, 2012", "check website regularly for drop off schedule updates", "DSNY & GrowNYC Food Waste Drop-Off Program ", "NYC Department of Sanitation", [ "http://www.nyc.gov/html/nycwasteless/html/compost/compostproj_orp_program.shtml", null ] ]
, [ 3, "C3416B24-9C50-4871-8BC7-3F1CD2038BB7", 3, 1340750336, "399949", 1340750351, "399949", "{\n}", "BK", "Brooklyn Borough Hall Greenmarket", [ "{\"address\":\"Court St & Montague St\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11201 \"}", "40.69373999970139", "-73.99130999985647", null, false ], [ "http://gis.nyc.gov/doitt/nycitymap/?z=9&p=986952,192125&c=GISBasic&s=i:COURT+STREET,MONTAGUE+STREET,BROOKLYN", null ], "food scraps", "Saturdays", "8 am – 4 pm", "Year Round", "check website regularly for drop off schedule updates", "DSNY & GrowNYC Food Waste Drop-Off Program ", "GrowNYC community partners", [ "http://www.nyc.gov/html/nycwasteless/html/compost/compostproj_orp_program.shtml", null ] ]
, [ 4, "4637B72E-531D-4FD0-AE71-86667175B743", 4, 1340750336, "399949", 1340750348, "399949", "{\n}", "BK", "Carrol Gardens Greenmarket", [ "{\"address\":\"Carroll St, b/t Smith & Court\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11231 \"}", "40.680220000352904", "-74.0006699998205", null, false ], [ "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=985667,187092&c=GISBasic&s=i:SMITH+STREET,CARROLL+STREET,S,BROOKLYN", null ], "food scraps", "Sundays", "8 am – 1 pm", null, "check website regularly for drop off schedule updates", "DSNY & GrowNYC Food Waste Drop-Off Program ", "NYC Department of Sanitation", [ "http://www.nyc.gov/html/nycwasteless/html/compost/compostproj_orp_program.shtml", null ] ]
, [ 5, "53EF543B-2018-43B7-8A25-7F19F93A5987", 5, 1340750336, "399949", 1340750349, "399949", "{\n}", "BK", "Compost For Brooklyn", [ "{\"address\":\"Newkirk Ave & East 8th St\",\"city\":\"Brooklyn\",\"state\":\"NY\",\"zip\":\"11230 \"}", "40.62294000018102", "-73.96349999982499", null, false ], [ "http://gis.nyc.gov/doitt/nycitymap/?z=8&p=993880,172748&c=GISBasic&s=i:CORTELYOU+ROAD,RUGBY+ROAD,BROOKLYN", null ], "food scraps, leaves, garden trimmings", "Saturdays, Sundays, Thursdays", "Sat: 10 am– 1 pm; Sun 1 – 4 pm; Thur 4:30 to 6:30 PM", "Year Round", "check website regularly for drop off schedule updates", "Compost For Brooklyn ", "Compost For Brooklyn ", [ "http://compostforbrooklyn.org/", null ] ]