-
Notifications
You must be signed in to change notification settings - Fork 1
/
compost_queen.html
1645 lines (1594 loc) · 78.5 KB
/
compost_queen.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
<!-- START of CENTER column -->
<!-- BEGIN_PRINT_PAGE -->
<td id="main_content" align="left" valign="top" width="589">
<!-- START of PRIMARY FEATURE SECTION -->
<table width="589" border="0" cellspacing="0" cellpadding="0">
<tr><td colspan="3" align="left" valign="top" bgcolor="" width="589">
<img src="../../includes/site_images/spacers/spacer_30_30.gif" alt="" width="30" height="30" border="0"/><span class="area_header">Community-Based Compost Sites in Queens<br/></span>
</td></tr>
<tr><td align="left" bgcolor="" valign="top" width="30"><img src="../../includes/site_images/spacers/spacer_30_30.gif" alt="" width="30" height="30" border="0">
</td><td align="left" bgcolor="" valign="top" width="499"><img src="../../includes/site_images/spacers/spacer_499_15.gif" alt="" width="499" height="15" border="0"><br>
<span class="bodytext"></span>
<span class="bodytext"><a name="top" class="bookmark" title="top" id="top"></a>
<table border="0" width="515" cellpadding="0" cellspacing="0" style="height: 1200px;">
<tbody>
<tr>
<td> </td>
</tr>
<tr>
<td>
<p style="MARGIN-top: 0in"><a href="http://www.addtoany.com/share_save" class="a2a_dd"><img height="16" width="106" src="http://static.addtoany.com/buttons/share_save_106_16.gif" alt="Share/Bookmark" border="0" /></a>
<script type="text/javascript"><!--
a2a_onclick=1;a2a_show_title=1;a2a_num_services=8;a2a_prioritize=["facebook","twitter","myspace","blogger_post","linkedin","delicious","plaxo_pulse","digg"];
// --></script>
<script type="text/javascript" src="http://static.addtoany.com/menu/page.js"><!--
// --></script>
</p>
<p>With the help of the <a href="../../html/compost/compostproj_qns.shtml">NYC Compost Project in Queens</a>, many of the organizations listed below have developed active, <a href="../../html/compost/edu_outdoor.shtml">outdoor composting</a> operations where leaves, garden trimmings, food scraps, and other organic <a href="../../html/compost/edu_outdoor_materials.shtml">materials are composted</a>.</p>
<p>If you would like to learn more about community composting or have a site that would like to become a community-based compost site, please <a href="../../html/compost/compostproj_sites.shtml">contact the compost project site</a> in your borough.</p>
<p><strong>NOTE:</strong> If you are a NYC resident interested in dropping off leaves, garden trimmings, or food scraps, please see <a href="../../html/resources/prod_serv_composting_foodwastedropoffs.shtml">community drop-offs</a>.</p>
<p><span class="itemTitle"><a name="site-type" class="bookmark" title="site-type" id="site-type"></a>Site Type</span></p>
<p><img src="../../images/arrow.gif" border="0" /><a href="#GARDEN">Community Garden</a><br /><img src="../../images/arrow.gif" border="0" /><a href="#SCHOOL">NYC Schools (K-12)</a><br /><img src="../../images/arrow.gif" border="0" /><a href="#PARK">Park</a><br /><img src="../../images/arrow.gif" border="0" /><a href="#RESIDENTIAL">Residential</a><br /><img src="../../images/arrow.gif" border="0" /><a href="#INSTITUTION">Institution</a><br /><img src="../../images/arrow.gif" border="0" /><a href="#BUSINESS">Business</a></p>
<hr />
<br /><a name="GARDEN" class="bookmark" title="GARDEN" id="GARDEN"></a>
<p><span class="itemTitle">Community Garden</span></p>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a name="arrow" class="bookmark" title="arrow" id="arrow"></a>ARROW Community Garden</strong></td>
</tr>
<tr>
<td valign="top"><strong><a href="http://gis.nyc.gov/doitt/nycitymap/?searchType=BblSearch&borough=Queens&block=638&lot=37&Submit3=Go">35th Street between 35th Avenue and 36th Avenue, 11106</a></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img height="169" width="225" src="../../images/compost/photos/uses/compost-ARROW-01-225.jpg" alt="photo: ARROW Community Garden" border="0" /></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">varies</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a> </p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>Back to Eden Community Garden</strong></td>
</tr>
<tr>
<td valign="top"><a href="http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1038747,190620&c=GISBasic&s=a:144-55,LAKEWOOD+AVENUE,QUEENS"><strong>144-55 Lakewood Avenue, 11435</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><a href="compostproj_demo.shtml"><strong>Compost Demonstration Site</strong></a><strong>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a href="http://http//www.thegardenpeople.org/directions.html">Beach 91st Street Garden</a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /> </strong></td>
</tr>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1036098,152527&c=GISBasic&s=a:1-36,BEACH+91+STREET,QUEENS">136 Beach 91st Street, 11691</a> </span></strong><img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2 or 3 bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><a href="compostproj_demo.shtml"><strong>Compost Demonstration Site</strong></a><strong>:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>Dunton Community Garden</strong></td>
</tr>
<tr>
<td valign="top"><a href="http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1038106,190590&c=GISBasic&s=a:143-01,SHORE+AVENUE,QUEENS"><strong>143-01 Shore Avenue, 11435</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img src="../../images/compost/photos/uses/Dunton_225x169_01.jpg" align="left" alt="photo: dunton community garden" border="0" title="photo: dunton community garden" /> </td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><a href="compostproj_demo.shtml"><strong>Compost Demonstration Site</strong></a><strong>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>Evergreen Community Garden<a name="arrow" class="bookmark" title="arrow" id="arrow"></a></strong></td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1033759,212120&c=GISBasic&s=i:COLDEN+STREET,JUNIPER+AVENUE,QUEENS"><strong>Colden Street at Juniper Avenue, 11355</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="512" cellpadding="3" style="height: 151px;">
<tbody>
<tr>
<td></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">open pile</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings, leaves</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a href="http://http//www.queensbotanical.org/programs/IntergenerationalGarden">Intergenerational Garden at QGB</a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /> </strong></td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1031523,212704&c=GISBasic&s=a:43-50,MAIN+STREET,QUEENS"><strong>43-50 Main Street, 11355</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings, leaves</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<p> </p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>JH Scraps</strong></td>
</tr>
<tr>
<td valign="top"><a href="http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1012916,212736&c=GISBasic&s=i:35+AVENUE,69+STREET,QUEENS"><strong>35th Ave & 69th Street, 11377</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img src="../../images/compost/photos/uses/jhscraps_225x169_01.jpg" align="left" alt="Photo: JH Scraps Compost Site" border="0" title="Photo: JH Scraps Compost Site" /></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<br />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>LIC Community Garden</strong></td>
</tr>
<tr>
<td valign="top"><strong><a href="http://gis.nyc.gov/doitt/nycitymap/?searchType=BblSearch&borough=Queens&block=32&lot=39&Submit3=Go">49th Avenue between Vernon Boulevard and 5th Street, 11101</a></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img height="169" width="225" src="../../images/compost/photos/uses/compost-LICCOM-01-225.jpg" alt="photo: LIC Community Garden" border="0" /></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">open pile/bin, enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><a href="compostproj_demo.shtml"><strong>Compost Demonstration Site</strong></a><strong>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a> </p>
<hr />
<br />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a name="LIC_Roots" class="bookmark" title="LIC_Roots" id="LIC_Roots"></a>LIC Roots Community Garden</strong></td>
</tr>
<tr>
<td valign="top"><strong><a href="http://gis.nyc.gov/doitt/nycitymap/?searchType=BblSearch&borough=Queens&block=115&lot=163&Submit3=Go">47-08 30th Street, 11101</a></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img height="169" width="225" src="../../images/compost/photos/uses/compost-LICROO-01-225.jpg" alt="photo: LIC Roots Community Garden" border="0" /></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong><a href="compostproj_demo.shtml">Compost Demonstration Site</a>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a href="http://http//bqlt.org/Gardens/BQLTGardens/index.php?gIndex=19">McIntosh Neighborhood Association Garden</a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /> </strong></td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1020399,217673&c=GISBasic&s=a:25-16,MCINTOSH+STREET,QUEENS"><strong>25-16 McIntosh Street, 11369</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings, food scraps, leaves</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a name="LIC_Roots" class="bookmark" title="LIC_Roots" id="LIC_Roots"></a>Merrick-Marsden Neighbors Association Garden</strong></td>
</tr>
<tr>
<td valign="top"><a href="http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1012916,212736&c=GISBasic&s=i:35+AVENUE,69+STREET,QUEENS"><strong>11818–11820 Merrick Boulevard, 11377</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img src="../../images/compost/photos/uses/Merrick_Marsden_225x169_01.jpg" align="left" alt="Merrick-Marsden Compost Site" border="0" title="Merrick-Marsden Compost Site" /> </td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>New Life Community Farm<a name="LIC_Roots" class="bookmark" title="LIC_Roots" id="LIC_Roots"></a></strong></td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1022627,190315&c=GISBasic&s=a:88-38,80+STREET,QUEENS"><strong>88-38 80th Street, 11421</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td> </td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2 or 3 bin, enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings, leaves, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>Rockaway Hip Hop Community Garden</strong></td>
</tr>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;">Rockaway Beach Boulevard at 59th Street, 11691</span></strong> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2 or 3 bin, enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings, leaves, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a href="http://http//getdirtynyc.com/garden/smiling-hogshead-ranch/">Smiling Hogshead Ranch</a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /> </strong></td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=999916,209832&c=GISBasic&s=a:47-26,DAVIS+COURT,QUEENS"><strong>47-26 Davis Court, 11101</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img height="168" width="225" src="../../images/compost/photos/uses/QN_SmilingHogshead-225x169_01.jpg" align="left" alt="photo: SmilingHogshead" border="0" title="photo: SmilingHogshead" /></td>
<td></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">open window, enclosed bins, open pile</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings, leaves, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong><a href="compostproj_demo.shtml">Compost Demonstration Site</a>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a name="sunnyside" class="bookmark" title="sunnyside" id="sunnyside"></a><a href="http://www.nyc.gov/cgi-bin/exit.pl?url=http://www.sunnysidegardenspark.org">Sunnyside Gardens Community Garden</a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /></strong></td>
</tr>
<tr>
<td valign="top"><strong><a href="http://gis.nyc.gov/doitt/nycitymap/?searchType=BblSearch&borough=Queens&block=123&lot=44&Submit3=Go">48-21 39th Avenue, 11104</a></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img height="169" width="225" src="../../images/compost/photos/uses/compost-SUNNY-01-225.jpg" alt="photo: Sunnyside Gardens Community Garden" border="0" /></td>
<td><img height="169" width="225" src="../../images/compost/photos/uses/compost-SUNNY-02-225.jpg" alt="photo: Sunnyside Gardens Community Garden" border="0" /></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2 or 3 bin, enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">garden trimmings</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong><a href="compostproj_demo.shtml">Compost Demonstration Site</a>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<br />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a name="two" class="bookmark" title="two" id="two"></a><a href="http://www.nyc.gov/cgi-bin/exit.pl?url=http://www.twocovescommunitygarden.org">Two Coves Community Garden</a></strong> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /></td>
</tr>
<tr>
<td valign="top"><strong><a href="http://gis.nyc.gov/doitt/nycitymap/?searchType=BblSearch&borough=Queens&block=508&lot=20&Submit3=Go">11-01 30th Avenue, 11102</a></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td><img height="169" width="225" src="../../images/compost/photos/uses/compost-TWOCOV-01-225.jpg" alt="photo: Two Coves Community Garden" border="0" /></td>
<td><img height="169" width="225" src="../../images/compost/photos/uses/compost-TWOCOV-02-225.JPG" alt="photo: Two Coves Community Garden" border="0" /></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Community Garden</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2 or 3 bin, open pile/bin, enclosed bins</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong><a href="compostproj_demo.shtml">Compost Demonstration Site</a>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<br /><a name="SCHOOL" class="bookmark" title="SCHOOL" id="SCHOOL"></a>
<p><span class="itemTitle">NYC Schools (K-12)</span></p>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><a href="http://http//www.gugcs.org/"><strong>Growing Up Green Charter School</strong></a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /></td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1001956,213530&c=GISBasic&s=a:39-37,28+STREET,QUEENS"><strong>39-37 28th Street, 11101</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">NYC Schools (K-12)</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a href="http://http//www.cae-nyc.org/schools/204_q_oliver_w_holmes_school">I.S. 204Q</a><a href="http://http//www.gugcs.org/"> </a></strong> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /></td>
</tr>
<tr>
<td valign="top"><a href="http://%20http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1002910,214943&c=GISBasic&s=a:36-41,28+STREET,QUEENS"><strong>36-41 28th Street, 11106</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">NYC Schools (K-12)</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bin</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a href="http://www.nyc.gov/cgi-bin/exit.pl?url=http://johnbowne.org">John Bowne High School</a></strong> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /></td>
</tr>
<tr>
<td valign="top"><strong><a href="http://gis.nyc.gov/doitt/nycitymap/?searchType=BblSearch&borough=Queens&block=6507&lot=1&Submit3=Go">63-25 Main Street, 11367</a></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /></td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">NYC Schools (K-12)</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2 or 3 bin</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, animal bedding, farm waste</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><a href="http://http//lsfb.org/LSFBWebsite/Welcome.html"><strong>Lutheran School of Flushing and Bayside</strong></a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /> </td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1046992,219083&c=GISBasic&s=a:36-02,BELL+BOULEVARD,QUEENS"><strong>36-02 Bell Boulevard, 11361</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">NYC Schools (K-12)</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bin</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>New Life Community Farm</strong> </td>
</tr>
<tr>
<td valign="top"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1033146,207500&c=GISBasic&s=a:144-39,GRAVETT+ROAD,QUEENS"><strong>144-39 Gravett Road, 11367</strong></a> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">NYC Schools (K-12)</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bin</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;">Soloman Schecter</span></strong></td>
</tr>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;">P.O. Box 90065, 11690</span></strong> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">NYC Schools (K-12)</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bin</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, garden trimmings, food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<br /><a name="PARK" class="bookmark" title="PARK" id="PARK"></a>
<p><span class="itemTitle">Park</span></p>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a name="baby" class="bookmark" title="baby" id="baby"></a>Baby Park Aerated Static Pile</strong></td>
</tr>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;"><a href="http://gis.nyc.gov/doitt/nycitymap/?z=8&p=998787,213716&c=GISBasic&s=a:10-02,QUEENS+PLAZA+SOUTH,QUEENS">10-02 Queens Plaza South, Long Island City, Queens, 11101</a> </span></strong><img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><img height="169" width="225" src="../../images/compost/photos/Baby-Park-225x169_01.jpg" align="left" alt="image: baby park" border="0" title="image: baby park" /></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Park</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2-3 bin, open pile</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">food scraps, garden trimmings</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><a href="compostproj_demo.shtml"><strong>Compost Demonstration Site</strong></a><strong>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><a href="http://http//www.nycgovparks.org/parks/forttotten"><strong>Fort Totten Park</strong></a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /></td>
</tr>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=1044583,226961&c=GISBasic&s=i:CROSS+ISLAND+PARKWAY,TOTTEN+AVENUE,N,QUEENS">Cross Island Pkwy. b/t Totten Ave and 15th Rd, 11360</a> </span></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Park</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">enclosed bin</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">leaves, food scraps, garden trimmings</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>Land Restoration Project</strong></td>
</tr>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;"><a href="http://http//maps.nyc.gov/doitt/nycitymap/?z=8&p=998766,213843&c=GISBasic&s=i:QUEENS+PLAZA+SOUTH,10+STREET,QUEENS">Queen Plaza South and 10th Street, 11101</a> </span></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Park</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">n/a</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><a href="compostproj_demo.shtml"><strong>Compost Demonstration Site</strong></a><strong>:</strong></td>
<td width="225" valign="top" height="20">yes</td>
</tr>
</tbody>
</table>
<p><a href="#top">back to top</a> | <a target="_self" href="../../html/compost/collections.shtml">back to section</a> | <a href="../../html/compost/operations_community.shtml">back to community-based compost sites</a></p>
<hr />
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong><a name="socrates" class="bookmark" title="socrates" id="socrates"></a><a href="http://www.nyc.gov/cgi-bin/exit.pl?url=http://www.socratessculpturepark.org/">Socrates Sculpture Park</a> <img height="12" width="25" src="../../images/features/exit.gif" align="absMiddle" alt="leaving NYCWasteLess" border="0" /><a name="baby" class="bookmark" title="baby" id="baby"></a> </strong></td>
</tr>
<tr>
<td valign="top"><strong><span style="text-decoration: underline;"><a href="http://gis.nyc.gov/doitt/nycitymap/?z=8&p=1001742,218692&c=GISBasic&s=a:32-01,VERNON+BOULEVARD,QUEENS">32-01 Vernon Boulevard, Long Island City, Queens, 11106</a> </span></strong> <img height="12" width="43" src="../../images/features/map.jpg" align="absMiddle" alt="view NYCityMap" border="0" /> </td>
</tr>
</tbody>
</table>
<table border="0" width="515" cellpadding="3">
<tbody>
<tr>
<td width="225" valign="top" height="20"><img src="../../images/compost/photos/socrates-225x169_01.jpg" align="left" alt="image: socrates sculpture park" border="0" title="image: socrates sculpture park" /></td>
<td width="225" valign="top" height="20"></td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Site Type:</strong></td>
<td width="225" valign="top" height="20">Park</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Compost Container Type:</strong></td>
<td width="225" valign="top" height="20">2-3 bin, open pile</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Materials Composted on Site:</strong></td>
<td width="225" valign="top" height="20">food scraps</td>
</tr>
<tr>
<td width="225" valign="top" height="20"><strong>Received Compost from NYC:</strong></td>
<td width="225" valign="top" height="20">no</td>