diff --git a/.coverage b/.coverage new file mode 100644 index 00000000..10d51d54 Binary files /dev/null and b/.coverage differ diff --git a/.coveralls.yml b/.coveralls.yml new file mode 100644 index 00000000..20e2ab8e --- /dev/null +++ b/.coveralls.yml @@ -0,0 +1,2 @@ +repo_token: syDEBCoOfzHUiOmPUXoSK9J9yTBEEpz57 +service_name: travis-pro \ No newline at end of file diff --git a/.elasticbeanstalk/config.yml b/.elasticbeanstalk/config.yml index 3a8f8c10..19c6b173 100644 --- a/.elasticbeanstalk/config.yml +++ b/.elasticbeanstalk/config.yml @@ -10,6 +10,8 @@ branch-defaults: environment: seproject-cheerup-env fix-errors: environment: seproject-cheerup-env + setup-travis-integeration: + environment: seproject-cheerup-env environment-defaults: seproject-cheerup-env: branch: null diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..1956becc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,35 @@ +language: python +dist: bionic +os: linux +python: + - "3.11" # Update to the actual Python 3.11 version when available + +before_install: + - pip install 'urllib3<2.0' + - sudo apt-get update + +# Define your build steps, for example: +install: + - pip install -r requirements.txt # Install dependencies + +script: + - python manage.py test + - python -m black . --check + - python -m flake8 --ignore=E303,E501 --max-line-length=88 + - python -m coverage run manage.py test +env: + global: + - AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID + - AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY + +after_success: + coveralls +deploy: + provider: elasticbeanstalk + access_key_id: $AWS_ACCESS_KEY_ID + secret_access_key: "$AWS_SECRET_ACCESS_KEY" + region: "us-west-2" + app: "CheerUp" + env: "seproject-cheerup-env" + bucket_name: "elasticbeanstalk-us-west-2-623285752572" +# You can add additional steps such as deployment configuration if needed. \ No newline at end of file diff --git a/CheerUp/asgi.py b/CheerUp/asgi.py index 013d4f52..7a659219 100644 --- a/CheerUp/asgi.py +++ b/CheerUp/asgi.py @@ -11,6 +11,6 @@ from django.core.asgi import get_asgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'CheerUp.settings') +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "CheerUp.settings") application = get_asgi_application() diff --git a/CheerUp/settings.py b/CheerUp/settings.py index a8a53853..fd703c45 100644 --- a/CheerUp/settings.py +++ b/CheerUp/settings.py @@ -20,65 +20,69 @@ # See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'django-insecure-7a(i$_$tw(o7y2(ad4u8==68h4qln2%g&^a#6d+gz4b66j3v$#' +SECRET_KEY = "django-insecure-7a(i$_$tw(o7y2(ad4u8==68h4qln2%g&^a#6d+gz4b66j3v$#" # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ['seproject-cheerup-env.eba-vmpudkzi.us-west-2.elasticbeanstalk.com','localhost','127.0.0.1'] +ALLOWED_HOSTS = [ + "seproject-cheerup-env.eba-vmpudkzi.us-west-2.elasticbeanstalk.com", + "localhost", + "127.0.0.1", +] # Application definition INSTALLED_APPS = [ - 'location.apps.LocationConfig', - 'events.apps.EventsConfig', - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.staticfiles', + "location.apps.LocationConfig", + "events.apps.EventsConfig", + "django.contrib.admin", + "django.contrib.auth", + "django.contrib.contenttypes", + "django.contrib.sessions", + "django.contrib.messages", + "django.contrib.staticfiles", ] MIDDLEWARE = [ - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', + "django.middleware.security.SecurityMiddleware", + "django.contrib.sessions.middleware.SessionMiddleware", + "django.middleware.common.CommonMiddleware", + "django.middleware.csrf.CsrfViewMiddleware", + "django.contrib.auth.middleware.AuthenticationMiddleware", + "django.contrib.messages.middleware.MessageMiddleware", + "django.middleware.clickjacking.XFrameOptionsMiddleware", ] -ROOT_URLCONF = 'CheerUp.urls' +ROOT_URLCONF = "CheerUp.urls" TEMPLATES = [ { - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': [], - 'APP_DIRS': True, - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.debug', - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', + "BACKEND": "django.template.backends.django.DjangoTemplates", + "DIRS": [], + "APP_DIRS": True, + "OPTIONS": { + "context_processors": [ + "django.template.context_processors.debug", + "django.template.context_processors.request", + "django.contrib.auth.context_processors.auth", + "django.contrib.messages.context_processors.messages", ], }, }, ] -WSGI_APPLICATION = 'CheerUp.wsgi.application' +WSGI_APPLICATION = "CheerUp.wsgi.application" # Database # https://docs.djangoproject.com/en/4.2/ref/settings/#databases DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', + "default": { + "ENGINE": "django.db.backends.sqlite3", + "NAME": BASE_DIR / "db.sqlite3", } } @@ -88,16 +92,16 @@ AUTH_PASSWORD_VALIDATORS = [ { - 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + "NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator", }, { - 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + "NAME": "django.contrib.auth.password_validation.MinimumLengthValidator", }, { - 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + "NAME": "django.contrib.auth.password_validation.CommonPasswordValidator", }, { - 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + "NAME": "django.contrib.auth.password_validation.NumericPasswordValidator", }, ] @@ -105,9 +109,9 @@ # Internationalization # https://docs.djangoproject.com/en/4.2/topics/i18n/ -LANGUAGE_CODE = 'en-us' +LANGUAGE_CODE = "en-us" -TIME_ZONE = 'US/Pacific' +TIME_ZONE = "US/Pacific" USE_I18N = True @@ -117,9 +121,9 @@ # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/4.2/howto/static-files/ -STATIC_URL = 'static/' +STATIC_URL = "static/" # Default primary key field type # https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field -DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' +DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" diff --git a/CheerUp/urls.py b/CheerUp/urls.py index 7bd72500..6427244c 100644 --- a/CheerUp/urls.py +++ b/CheerUp/urls.py @@ -18,7 +18,7 @@ from django.urls import include, path urlpatterns = [ - path('admin/', admin.site.urls), - path('events/', include('events.urls')), - path('locations/', include('location.urls')), + path("admin/", admin.site.urls), + path("events/", include("events.urls")), + path("locations/", include("location.urls")), ] diff --git a/CheerUp/wsgi.py b/CheerUp/wsgi.py index c56a0b7c..249e2558 100644 --- a/CheerUp/wsgi.py +++ b/CheerUp/wsgi.py @@ -11,6 +11,6 @@ from django.core.wsgi import get_wsgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'CheerUp.settings') +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "CheerUp.settings") application = get_wsgi_application() diff --git a/events/admin.py b/events/admin.py index 7246217f..753be1fc 100644 --- a/events/admin.py +++ b/events/admin.py @@ -1,8 +1,6 @@ -from django.contrib import admin - # Register your models here. from django.contrib import admin from .models import Event -admin.site.register(Event) \ No newline at end of file +admin.site.register(Event) diff --git a/events/apps.py b/events/apps.py index 20f48f26..8c9099aa 100644 --- a/events/apps.py +++ b/events/apps.py @@ -2,5 +2,5 @@ class EventsConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'events' + default_auto_field = "django.db.models.BigAutoField" + name = "events" diff --git a/events/forms.py b/events/forms.py index 502a714c..66864ad9 100644 --- a/events/forms.py +++ b/events/forms.py @@ -1,7 +1,7 @@ from django import forms from .models import Event + class EventsForm(forms.Form): model = Event - fields = ['event_name', 'start_time', 'end_time','capacity'] - + fields = ["event_name", "start_time", "end_time", "capacity"] diff --git a/events/migrations/0001_initial.py b/events/migrations/0001_initial.py index fbbdd38c..2e153eb9 100644 --- a/events/migrations/0001_initial.py +++ b/events/migrations/0001_initial.py @@ -5,23 +5,37 @@ class Migration(migrations.Migration): - initial = True dependencies = [ - ('location', '__first__'), + ("location", "__first__"), ] operations = [ migrations.CreateModel( - name='Event', + name="Event", fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('event_name', models.CharField(max_length=200)), - ('start_time', models.DateTimeField()), - ('end_time', models.DateTimeField()), - ('capacity', models.IntegerField()), - ('event_location', models.ForeignKey(default=261, on_delete=django.db.models.deletion.CASCADE, to='location.location')), + ( + "id", + models.BigAutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("event_name", models.CharField(max_length=200)), + ("start_time", models.DateTimeField()), + ("end_time", models.DateTimeField()), + ("capacity", models.IntegerField()), + ( + "event_location", + models.ForeignKey( + default=261, + on_delete=django.db.models.deletion.CASCADE, + to="location.location", + ), + ), ], ), ] diff --git a/events/models.py b/events/models.py index fb14c386..a1ef6dfc 100644 --- a/events/models.py +++ b/events/models.py @@ -1,13 +1,16 @@ from django.db import models from location.models import Location + # Create your models here. + + class Event(models.Model): event_name = models.CharField(max_length=200) event_location = models.ForeignKey(Location, on_delete=models.CASCADE, default=261) start_time = models.DateTimeField() end_time = models.DateTimeField() capacity = models.IntegerField() - is_active = models.BooleanField(default = True) + is_active = models.BooleanField(default=True) + def __str__(self): return self.event_name - \ No newline at end of file diff --git a/events/tests.py b/events/tests.py index 7ce503c2..e69de29b 100644 --- a/events/tests.py +++ b/events/tests.py @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/events/urls.py b/events/urls.py index 51a854e5..afca58ca 100644 --- a/events/urls.py +++ b/events/urls.py @@ -2,11 +2,10 @@ from . import views -app_name = 'events' +app_name = "events" urlpatterns = [ - - path('', views.index, name='index'), - path('create-event', views.createEvent, name='create-event'), - path('save-event/', views.saveEvent, name='save-event'), - path('delete//', views.deleteEvent, name='delete-event'), -] \ No newline at end of file + path("", views.index, name="index"), + path("create-event", views.createEvent, name="create-event"), + path("save-event/", views.saveEvent, name="save-event"), + path("delete//", views.deleteEvent, name="delete-event"), +] diff --git a/events/views.py b/events/views.py index d7e87c30..35ac2c9b 100644 --- a/events/views.py +++ b/events/views.py @@ -1,29 +1,31 @@ from django.shortcuts import render, redirect, get_object_or_404 -from django.http import HttpResponse, HttpResponseRedirect +from django.http import HttpResponseRedirect from .forms import EventsForm from django.urls import reverse -from .models import Event,Location +from .models import Event, Location # Create your views here. + def index(request): events = Event.objects.filter(is_active=True) - return render(request, 'events/events.html',{'events': events}) + return render(request, "events/events.html", {"events": events}) + def saveEvent(request): event = Event() try: - event_name = request.POST['event_name'] - event_location_id = request.POST['event_location_id'] + event_name = request.POST["event_name"] + event_location_id = request.POST["event_location_id"] location_object = Location.objects.get(id=event_location_id) - start_time = request.POST['start_time'] - end_time = request.POST['end_time'] - capacity = request.POST['capacity'] + start_time = request.POST["start_time"] + end_time = request.POST["end_time"] + capacity = request.POST["capacity"] except (KeyError, Event.DoesNotExist): # Redisplay the question voting form. - return redirect('events:index') + return redirect("events:index") else: event.event_name = event_name event.event_location = location_object @@ -34,27 +36,27 @@ def saveEvent(request): # Always return an HttpResponseRedirect after successfully dealing # with POST data. This prevents data from being posted twice if a # user hits the Back button. - return HttpResponseRedirect(reverse('events:index')) - + return HttpResponseRedirect(reverse("events:index")) + + def createEvent(request): - if request.method == 'POST': + if request.method == "POST": form = EventsForm(request.POST) if form.is_valid(): - - return redirect('events:index') + return redirect("events:index") else: form = EventsForm() - return render(request, 'events/create-event.html', {'form': form}) + return render(request, "events/create-event.html", {"form": form}) + def deleteEvent(request, event_id): event = get_object_or_404(Event, pk=event_id) print(request) print(event) - if request.method == 'POST': - if request.POST.get('action') == 'delete': + if request.method == "POST": + if request.POST.get("action") == "delete": # Set is_active to False instead of deleting event.is_active = False event.save() - return redirect('events:index') - - return redirect('events:index') \ No newline at end of file + return redirect("events:index") + return redirect("events:index") diff --git a/exported_data.csv b/exported_data.csv index 545c5a58..5ac204b0 100644 --- a/exported_data.csv +++ b/exported_data.csv @@ -1,2029 +1,2029 @@ -261,Alexander Hamilton U.S. Custom House,40.70381622,-74.0137558,1 Bowling Grn,http://www.oldnycustomhouse.gov/,museum,10004 -262,Alice Austen House Museum,40.61512084,-74.06303179,2 Hylan Blvd,http://www.aliceausten.org/,museum,10305 -263,American Academy of Arts and Letters,40.8338535,-73.94729769,633 W. 155th St.,http://www.artsandletters.org/,museum,10032 -264,American Folk Art Museum,40.76162497,-73.97810302,45 West 53rd Street,http://www.folkartmuseum.org/,museum,10019 -265,American Immigration History Center,40.69905626,-74.03968484,Ellis Island,http://www.ellisisland.org/,museum,0 -266,American Museum of Natural History,40.78082623,-73.97364816,Central Park West at 79th Street,http://www.amnh.org/,museum,10024 -267,American Numismatic Society,40.72352659,-74.00701188,75 Varick St,http://www.numismatics.org/,museum,10013 -268,Americas Society,40.76882423,-73.96597045,680 Park Ave.,http://as.americas-society.org/,museum,10021 -269,Anne Frank Center USA,40.72112745,-73.99963037,38 Crosby Street,http://www.annefrank.com/,museum,10012 -270,Asia Society,40.76983378,-73.96428396,725 Park Avenue,http://www.asiasociety.org/,museum,10021 -271,Audubon Terrace,40.83358228,-73.9465459,Broadway at 155 Street,http://www.washington-heights.us/history/archives/audubon_terrace_museum_group_102.html,museum,10032 -272,Bartow-Pell Mansion,40.87177832,-73.8055795,895 Shore Road,http://bartowpellmansionmuseum.org/index.php,museum,10464 -273,Bowne House,40.76288633,-73.82489046,37-01 Bowne Street,http://www.bownehouse.org/,museum,11354 -274,Bronx Historical Society & Musem,40.87823644,-73.87974874,3309 Bainbridge Ave,http://www.bronxhistoricalsociety.org/,museum,10467 -275,Bronx Museum of the Arts (BXMA),40.83102978,-73.91975018,1040 Grand Concourse,http://www.bronxmuseum.org/,museum,10456 -276,Brooklyn Children's Museum,40.674507,-73.94401601,145 Brooklyn Avenue,http://www.brooklynkids.org/,museum,11213 -277,Brooklyn Historical Society,40.69480297,-73.9924054,128 Pierrepont Street,http://www.brooklynhistory.org/default/index.html,museum,11201 -278,Brooklyn Museum,40.67108321,-73.96358507,200 Eastern Parkway,http://www.brooklynmuseum.org/,museum,11238 -279,Chelsea Art Museum,40.7478976,-74.00731553,556 West 22nd Street,http://www.chelseaartmuseum.org/,museum,10011 -280,Children's Museum of Manhattan,40.78587092,-73.97727392,212 West 83rd Street,http://www.cmom.org/,museum,10024 -281,Children's Museum of the Arts,40.72074947,-73.99883836,182 Lafayette Street,http://cmany.org/intro.php?pn=home,museum,10012 -282,Cloisters,40.86492364,-73.93173409,99 Margaret Corbin Drive,http://www.metmuseum.org/cloisters/,museum,10040 -283,Coney Island Museum,40.57526324,-73.97985598,1208 Surf Ave,http://www.coneyisland.com/,museum,11224 -284,"Cooper-Hewitt, National Design Museum",40.78432574,-73.95778162,2 East 91st Street,http://www.cooperhewitt.org/,museum,10128 -285,Dahesh Museum,40.76210697,-73.9730419,580 Madison Avenue,http://www.daheshmuseum.org,museum,10022 -286,Dia at the Hispanic Society,40.83330211,-73.94649318,613 West 155th Street,http://www.diabeacon.org/,museum,10032 -287,Dia Art Foundation,40.74789493,-74.00613538,535 W 22nd Street,http://www.diacenter.org/,museum,10011 -288,Discovery Times Square Exposition,40.75750109,-73.98731864,226 W 44th St,http://www.discoverytsx.com/nyc/,museum,1036 -289,Drawing Center,40.72245119,-74.00290417,35 Wooster St.,http://www.drawingcenter.org/about_visit.cfm,museum,10013 -290,Dyckman Farmhouse,40.86713092,-73.92383915,4881 Broadway,http://www.dyckmanfarmhouse.org/,museum,10034 -291,East Village History Project,40.7249597,-73.99272306,308 Bowery,http://leshp.org/,museum,10012 -292,El Museo del Barrio,40.79309892,-73.9513676,1230 Fifth Ave,http://www.elmuseo.org/,museum,10029 -293,Ellis Island Museum,40.69820755,-74.04132162,Ellis Island,http://www.ellisisland.org/,museum,0 -294,Fraunces Tavern Museum,40.70339928,-74.01133926,54 Pearl Street,http://www.frauncestavernmuseum.org/,museum,10004 -295,Frick Collection,40.77105465,-73.96708041,1 E. 70th Street,http://www.frick.org/,museum,10021 -296,Garibaldi-Meucci Museum,40.61516522,-74.07387774,420 Tompkins Avenue,http://statenislandusa.com/pages/garibaldi.html,museum,10305 -297,Goethe-Institut New York,40.77916564,-73.96174204,1014 Fifth Avenue,http://www.goethe.de/ins/us/ney/deindex.htm,museum,10028 -298,Gracie Mansion,40.77611345,-73.94306846,89th Street at East End Avenue,http://www.nyc.gov/html/om/html/gracie.html,museum,10128 -299,Hall Of Fame For Great Americans,40.85874717,-73.91397963,Hall of Fame Terrace & Sedgwick Avenue,http://www.bcc.cuny.edu/hallofFame/,museum,10453 -300,Harbor Defense Museum of Fort Hamilton,40.60900867,-74.03231078,230 Sheridan Loop,http://www.harbordefensemuseum.com/,museum,11252 -301,Hispanic Society of America Museum,40.83345215,-73.94682282,613 West 155th Street,http://www.hispanicsociety.org/,museum,10032 -302,Holocaust Museum & Studies Center,40.87835786,-73.89098784,75 W 205th St,http://www.holocauststudies.org/,museum,10468 -303,Hudson Waterfront Museum and Showboat Barge,40.67557193,-74.01808694,290 Conover St.,http://www.waterfrontmuseum.org/,museum,11231 -304,International Center of Photography,40.75602115,-73.98383673,1133 Avenue Of The Americas,http://www.icp.org/,museum,10036 -305,Intrepid Sea-Air-Space Museum,40.76478327,-74.00089181,Pier 86 12th Ave. & 46th Street,http://www.intrepidmuseum.org/,museum,10036 -306,Isamu Noguchi Garden Museum,40.76695661,-73.93765515,32-37 Vernon Boulevard,http://www.noguchi.org/,museum,11106 -307,Italian American Museum,40.71919463,-73.99749411,155 Mulberry St.,http://www.italianamericanmuseum.org/,museum,10013 -308,Jackie Robinson Museum,40.72335066,-74.00664186,1 Hudson Square,http://www.jackierobinson.org/,museum,10013 -309,Jacques Marchais Center Museum of Tibetan Art,40.57631284,-74.13812337,338 Lighthouse Avenue,http://www.tibetanmuseum.org/,museum,10306 -310,Jeffrey's Hook lighthouse (Little Red Lighthouse),40.85022003,-73.94694495,178th Street at the Hudson River,http://www.nycgovparks.org/sub_about/parks_divisions/historic_houses/hh_little_red_light.html,museum,10033 -311,Jewish Museum,40.78540226,-73.95718706,1109 Fifth Ave,http://www.thejewishmuseum.org/index.php,museum,10128 -312,John J. Harvey Fireboat,40.7523302,-74.00965484,Pier 66 at West 26th Street,http://www.fireboat.org/,museum,10001 -313,King Manor Museum,40.70304202,-73.80376062,152-01 Jamaica Avenue,http://www.kingmanor.org/,museum,11432 -314,Kingsland Homestead,40.76359571,-73.82415642,143-35 37th Avenue,http://www.queenshistoricalsociety.org/kingsland.html,museum,11354 -315,LaGuardia and Wagner Archives,40.74396007,-73.93514568,31-10 Thomson Ave.,http://www.laguardiawagnerarchive.lagcc.cuny.edu/defaultc.htm,museum,11101 -316,Lee Young Hee Museum of Korean Culture,40.74719709,-73.98618833,2 West 32nd Street,http://www.lyhkm.org/,museum,10001 -317,Lefferts Historic House,40.66437996,-73.96381416,Prospect Park Willink Entrance,http://www.prospectpark.org/visit/places/lefferts,museum,11215 -318,Madame Tussauds Wax Museum,40.75631816,-73.98870226,234 W. 42nd Street,http://www.madametussauds.com/NewYork/,museum,10036 -319,Merchant's House Museum,40.72765742,-73.99234605,29 East Fourth Street,http://www.merchantshouse.com/,museum,10003 -320,Metropolitan Museum of Art (MET),40.77942354,-73.96345111,1000 Fifth Avenue,http://www.metmuseum.org/,museum,10028 -321,Mexican Cultural Institute of New York,40.75078437,-73.97988118,27 E. 39th St.,http://www.lavitrina.com/,museum,10016 -322,Morgan Library and Museum,40.74929507,-73.98132149,225 Madison Avenue,http://www.themorgan.org/home.asp,museum,10016 -323,Morris-Jumel Mansion,40.83444768,-73.93857439,65 Jumel Terrace,http://www.morrisjumel.org/,museum,10032 -324,Mount Vernon Hotel Museum & Garden,40.76052578,-73.95971083,421 East 61 Street,http://www.mvhm.org/,museum,10021 -325,Municipal Art Society,40.75824831,-73.97499987,457 Madison Avenue,http://mas.org/,museum,10022 -326,Museum for African Art,40.74634174,-73.92822391,36-01 43rd Avenue,http://www.africanart.org/,museum,11101 -327,Museum of American Finance,40.70648459,-74.0091216,48 Wall Street,http://www.moaf.org/index,museum,10005 -328,Museum of American Illustration,40.76471562,-73.96690031,128 E. 63d St.,http://societyillustrators.org/museum/index.cms,museum,10021 -329,Museum of Arts & Design (MAD),40.76740607,-73.98200725,2 Columbus Circle,http://www.madmuseum.org/,museum,10019 -330,Museum of Biblical Art,40.77025241,-73.98272584,1865 Broadway,http://www.mobia.org/,museum,10023 -331,Museum Of Chinese In America,40.71945395,-73.99919192,215 Centre Street,http://www.mocanyc.org/,museum,10013 -332,Museum of Comic and Cartoon Art (MoCCA),40.72479795,-73.99670248,594 Broadway,http://www.moccany.org/,museum,10012 -333,Museum of Contemporary African Diasporan Arts (MoCADA),40.68524514,-73.97442478,80 Hanson Place,http://www.mocada.org/,museum,11217 -334,Museum of Jewish Heritage,40.70598665,-74.01858572,36 Battery Place,http://www.mjhnyc.org/index.htm,museum,10280 -335,Museum of Modern Art (MoMA),40.76118664,-73.97700363,11 West 53rd Street,http://www.moma.org/,museum,10019 -336,Museum of the City of New York,40.79250903,-73.95191697,1220 Fifth Avenue,http://www.mcny.org,museum,10029 -337,Museum of the Moving Image,40.75694449,-73.92451017,35 Avenue at 36 Street,http://www.movingimage.us/site/site.php,museum,11106 -338,National Academy Museum,40.78361317,-73.95849177,1083 5th Avenue,https://nationalacademy.org/index.asp,museum,10128 -339,National Lighthouse Museum,40.64094902,-74.07373713,1 Lighthouse Plaza,http://statenislandusa.com/pages/lighthouse.html,museum,10301 -340,National Museum of the American Indian,40.70432126,-74.01372705,1 Bowling Green,http://www.nmai.si.edu/,museum,10004 -341,National September 11 Memorial & Museum at the World Trade Center,40.70965449,-74.01091566,1 Liberty Plaza,http://www.911memorial.org/,museum,10006 -342,Neue Galerie New York,40.78124234,-73.96024813,1048 Fifth Avenue,http://www.neuegalerie.org/,museum,10028 -343,New Museum of Contemporary Art,40.7223467,-73.99283879,235 Bowery,http://www.newmuseum.org/,museum,10002 -344,New York City Fire Museum,40.72557181,-74.00693426,278 Spring Street,http://www.nycfiremuseum.org/,museum,10012 -345,New York City Police Museum,40.70347829,-74.00811754,100 Old Slip,http://www.nycpolicemuseum.org/,museum,10038 -346,New York Hall of Science,40.74714779,-73.8516868,47-01 111th Street,http://www.nysci.org/,museum,11368 -347,New York Historical Society,40.77927324,-73.97425754,2 West 77th Street,https://www.nyhistory.org/web/,museum,10024 -348,New York Tolerance Center,40.75242292,-73.97912411,50 E 42nd St,http://www.kintera.org/site/pp.asp?c=fwLYKnN8LzH&b=242506,museum,10017 -349,New York Transit Museum,40.6905237,-73.99002597,Boerum Pl. & Schermenhorn Street,http://www.mta.info/mta/museum/,museum,0 -350,Nicholas Roerich Museum,40.802914,-73.9690225,319 West 107 Street,http://www.roerich.org/,museum,10025 -351,Noble Maritime Collection,40.64431194,-74.10177204,1000 Richmond Terrace,http://www.noblemaritime.org/,museum,10301 -352,Old Stone House,40.67299347,-73.98461861,326 5th Avenue,http://www.theoldstonehouse.org/,museum,11215 -353,P.S. 1 Contemporary Art Center,40.74583947,-73.94621242,22-25 Jackson Ave.,http://www.ps1.org/,museum,11101 -354,Paley Center For Media (formerly Museum Of Television & Radio),40.76057364,-73.97760161,25 West 52 Street,http://www.paleycenter.org/,museum,10019 -355,Queens Art Museum - Bulova Corporate Center,40.76460726,-73.89314846,75-20 Astoria Blvd.,http://www.bdg.net/properties/1/,museum,11386 -356,Queens County Farm Museum,40.7455696,-73.72573661,73-50 Little Neck Parkway,http://www.queensfarm.org/,museum,11004 -357,Queens Museum of Art,40.74584286,-73.84676276,Queens Museum of Art,http://www.queensmuseum.org/,museum,11368 -358,Rose Center for Earth and Space (Hayden Planetarium),40.78285983,-73.97257491,15 West 81st Street,http://www.haydenplanetarium.org/index.php,museum,10024 -359,Rose Museum at Carnegie Hall,40.76501231,-73.9799105,154 West 57th Street,http://www.carnegiehall.org/textSite/the_basics/art_museum_archives.html,museum,0 -360,Rubin Museum of Art,40.74002038,-73.99779153,150 West 17th Street,http://www.rmanyc.org/,museum,10011 -361,Sandy Ground Historical Society,40.54097835,-74.21650282,1538 Woodrow Road,http://statenislandusa.com/pages/sandy_ground.html,museum,0 -362,Scandinavia House: The Nordic Center in America,40.7494469,-73.98008844,58 Park Ave.,http://www.scandinaviahouse.org/,museum,10016 -363,Schomburg Center for Research in Black Culture,40.81461273,-73.94099076,515 Malcolm X Boulevard,http://www.nypl.org/research/sc/sc.html,museum,10037 -364,School of Visual Arts Museum,40.73875919,-73.98224233,209 E. 23rd St.,http://www.schoolofvisualarts.edu/sa/index.jsp?sid0=201&page_id=482&event_id=865,museum,10010 -365,Seguine Mansion,40.51521434,-74.1975893,440 Seguine Avenue,http://www.historichousetrust.org/item.php?i_id=38,museum,10307 -366,Skyscraper Museum,40.70565753,-74.01756807,39 Battery Place,http://www.skyscraper.org/home.htm,museum,10280 -367,Solomon R. Guggenheim Museum,40.78300948,-73.95891102,1071 Fifth Avenue,http://www.guggenheim.org/,museum,10128 -368,Sony Wonder Technology Lab,40.7614703,-73.97350782,550 Madison Ave,http://wondertechlab.sony.com/,museum,10022 -369,South Street Seaport Museum,40.70660336,-74.00372094,12 Fulton Street,http://www.southstreetseaportmuseum.org/,museum,10038 -370,Staten Island Children's Museum,40.64270888,-74.10189211,1000 Richmond Terr.,http://www.statenislandkids.org/,museum,10301 -371,Staten Island Museum / Staten Island Institute of Arts & Sciences,40.64436918,-74.07766506,75 Stuyvesant Pl.,http://www.statenislandmuseum.org/,museum,10301 -372,Studio Museum in Harlem,40.80824548,-73.94772615,144 West 125th Street,http://www.studiomuseum.org,museum,10027 -373,Tenement Museum,40.7186877,-73.98967905,108 Orchard Street,http://www.tenement.org/,museum,10002 -374,"The Freakatorium, El Museo Loco",40.71961673,-73.98501449,57 Clinton St.,http://www.freakatorium.com/,museum,10002 -375,The Jazz Museum in Harlem,40.80527638,-73.93805874,104 E. 126th Street,http://www.jazzmuseuminharlem.org/,museum,10035 -376,The Jewish Children's Museum,40.66891158,-73.94196177,792 Eastern Pkwy,http://www.jcmonline.org/,museum,11213 -377,The Museum at FIT,40.74700838,-73.99392967,7th Avenue at West 27th Street,http://www.fitnyc.edu/306.asp,museum,10001 -378,Theodore Roosevelt Birthplace,40.73864201,-73.98904085,28 East 20th Street,http://www.nps.gov/thrb/index.htm,museum,10003 -379,Ukrainian Museum,40.72767679,-73.98975703,222 East 6th Street,http://www.ukrainianmuseum.org/,museum,10003 -380,Valentine-Varian House,40.87737982,-73.87942472,3266 Bainbridge Ave.,http://www.museumregister.com/US/NewYork/Bronx/ValentineVarianHouse/Info.html,museum,10467 -381,Van Cortlandt House Museum,40.89111117,-73.89482257,VAN CRTLANDT MANSION,http://www.vancortlandthouse.org/,museum,10471 -382,Wave Hill,40.89788471,-73.91165377,West 249th Street & Independence Avenue,http://wavehill.org/visit/,museum,10471 -383,Whitney Museum of American Art,40.77340729,-73.96383435,945 Madison Ave.,http://www.whitney.org/,museum,10021 -384,Wyckoff Farmhouse Museum,40.64434068,-73.9207963,5816 Clarendon Ave,http://www.wyckoffassociation.org/,museum,11203 -385,Leo Baeck Institute,40.73802754,-73.99376449,15 W. 16th St.,http://www.lbi.org/,museum,10011 -386,American Sephardi Federation / Sephardic House,40.73807723,-73.9938858,15 W. 16th St.,http://www.americansephardifederation.org/,museum,10011 -387,YIVO Institute for Jewish Research,40.73795995,-73.99379427,15 W. 16th St.,http://www.yivoinstitute.org/,museum,10011 -388,American Jewish Historical Society,40.73801538,-73.9939289,15 W. 16th St.,http://www.ajhs.org/,museum,10011 -389,Yeshiva University Museum,40.73804568,-73.99381737,15 W. 16th St.,http://www.yumuseum.org/,museum,10011 -390,Center For Jewish History,40.73798676,-73.99386877,15 W. 16th St.,http://www.cjh.org,museum,10011 -391,115th Street,40.80297988,-73.95353074,West 115th Street,http://www.nypl.org/locations/115th-street,library,10026 -392,125th Street,40.80301816,-73.93484756,East 125th Street,http://www.nypl.org/locations/125th-street,library,10035 -393,53rd Street,40.76080689,-73.97736329,West 53rd Street,http://www.nypl.org/locations/53rd-street,library,10019 -394,58th Street,40.76218602,-73.9693817,East 58th Street,http://www.nypl.org/locations/58th-street,library,10022 -395,67th Street,40.76491501,-73.95954995,East 67th Street,http://www.nypl.org/locations/67th-street,library,10065 -396,96th Street,40.7859598,-73.95180567,East 96th Street,http://www.nypl.org/locations/96th-street,library,10128 -397,Aguilar,40.79421477,-73.94345828,East 110th Street,http://www.nypl.org/locations/aguilar,library,10029 -398,Allerton,40.86680443,-73.86322248,Barnes Avenue,http://www.nypl.org/locations/allerton,library,10467 -399,Andrew Heiskell Braille and Talking Book,40.74046546,-73.99335691,West 20th Street,http://www.nypl.org/locations/heiskell,library,10011 -400,Battery Park City Library,40.71569087,-74.01574871,North End Avenue,http://www.nypl.org/locations/battery-park-city,library,10282 -401,Baychester,40.87075331,-73.82931595,Asch Loop North,http://www.nypl.org/locations/baychester,library,10475 -402,Belmont Library and Enrico Fermi Cultural Center,40.85434421,-73.88788269,East 186th Street,http://www.nypl.org/locations/belmont,library,10458 -403,Bloomingdale,40.79587355,-73.96760677,West 100th Street,http://www.nypl.org/locations/bloomingdale,library,10025 -404,Bronx Library Center,40.86298061,-73.89450289,East Kingsbridge Road,http://www.nypl.org/locations/bronx-library-center,library,10458 -405,Castle Hill,40.82662921,-73.8501702,Castle Hill Avenue,http://www.nypl.org/locations/castle-hill,library,10473 -406,Chatham Square,40.71333307,-73.99648987,East Broadway,http://www.nypl.org/locations/chatham-square,library,10002 -407,City Island,40.8476919,-73.78636659,City Island Avenue,http://www.nypl.org/locations/city-island,library,10464 -408,Clason's Point,40.82999288,-73.8750206,Morrison Avenue,http://www.nypl.org/locations/clasons-point,library,10472 -409,Columbus,40.76493462,-73.99122082,10th Avenue,http://www.nypl.org/locations/columbus,library,10019 -410,Countee Cullen,40.81483582,-73.94116092,West 136th Street,http://www.nypl.org/locations/countee-cullen,library,10030 -411,Dongan Hills,40.59039134,-74.10113729,Richmond Road,http://www.nypl.org/locations/dongan-hills,library,10304 -412,Eastchester,40.8701397,-73.84506428,East Gun Hill Road,http://www.nypl.org/locations/eastchester,library,10469 -413,Edenwald,40.8888949,-73.84083713,East 233rd Street,http://www.nypl.org/locations/edenwald,library,10466 -414,Epiphany,40.73808712,-73.98204889,East 23rd Street,http://www.nypl.org/locations/epiphany,library,10010 -415,Fort Washington,40.84787004,-73.93386591,West 179th Street,http://www.nypl.org/locations/fort-washington,library,10033 -416,Francis Martin,40.85742189,-73.90931635,University Avenue,http://www.nypl.org/locations/francis-martin,library,10453 -417,George Bruce,40.81376896,-73.95705321,West 125th Street,http://www.nypl.org/locations/george-bruce,library,10027 -418,Grand Central,40.75406788,-73.97356772,East 46th Street,http://www.nypl.org/locations/grand-central,library,10017 -419,Grand Concourse,40.84400191,-73.91008714,East 173rd Street,http://www.nypl.org/locations/grand-concourse,library,10457 -420,Great Kills,40.55242326,-74.15111164,Giffords Lane,http://www.nypl.org/locations/great-kills,library,10308 -421,Hamilton Fish Park,40.71978015,-73.97942314,East Houston Street,http://www.nypl.org/locations/hamilton-fish-park,library,10002 -422,Hamilton Grange,40.82567237,-73.94803242,West 145th Street,http://www.nypl.org/locations/hamilton-grange,library,10031 -423,Harlem,40.80616044,-73.9433156,West 124th Street,http://www.nypl.org/locations/harlem,library,10027 -424,High Bridge,40.83796002,-73.9235509,West 168th Street,http://www.nypl.org/locations/high-bridge,library,10452 -425,Hudson Park,40.72998291,-74.00533101,Leroy Street,http://www.nypl.org/locations/hudson-park,library,10014 -426,Huguenot Park,40.53407849,-74.19322901,Huguenot Avenue,http://www.nypl.org/locations/huguenot-park,library,10312 -427,Hunts Point,40.81867009,-73.89413217,Southern Boulevard,http://www.nypl.org/locations/hunts-point,library,10459 -428,Inwood,40.86574872,-73.92586291,Broadway,http://www.nypl.org/locations/inwood,library,10034 -429,Jefferson Market,40.73463471,-73.99916929,Avenue of the Americas,http://www.nypl.org/locations/jefferson-market,library,10011 -430,Jerome Park,40.86906987,-73.90119236,Eames Place,http://www.nypl.org/locations/jerome-park,library,10468 -431,Kingsbridge,40.88069989,-73.90770595,West 231st Street,http://www.nypl.org/locations/kingsbridge,library,10463 -432,Kips Bay,40.74380962,-73.97990196,Third Avenue,http://www.nypl.org/locations/kips-bay,library,10016 -433,Macomb's Bridge,40.82653201,-73.93586246,Adam Clayton Powell Jr. Boulevard,http://www.nypl.org/locations/macombs-bridge,library,10039 -434,Mariners Harbor,40.63469343,-74.16658191,South Ave,http://www.nypl.org/locations/mariners-harbor,library,10303 -435,Melrose,40.82658456,-73.91758394,Morris Avenue,http://www.nypl.org/locations/melrose,library,10451 -436,Mid-Manhattan,40.75189156,-73.98169851,Fifth Avenue,http://www.nypl.org/locations/mid-manhattan-library,library,10016 -437,Morningside Heights,40.80613026,-73.96477562,Broadway,http://www.nypl.org/locations/morningside-heights,library,10025 -438,Morris Park,40.84802911,-73.85695785,Morris Park Avenue,http://www.nypl.org/locations/morris-park,library,10462 -439,Morrisania,40.83126291,-73.90179407,East 169th Street,http://www.nypl.org/locations/morrisania,library,10456 -440,Mosholu,40.87437981,-73.87838435,East 205th Street,http://www.nypl.org/locations/mosholu,library,10467 -441,Mott Haven,40.81158964,-73.92438195,East 140th Street,http://www.nypl.org/locations/mott-haven,library,10454 -442,Muhlenberg,40.74448733,-73.99596857,West 23rd Street,http://www.nypl.org/locations/muhlenberg,library,10011 -443,Mulberry Street,40.72413927,-73.99568417,Jersey Street,http://www.nypl.org/locations/mulberry-street,library,10012 -444,New Amsterdam,40.71357685,-74.00786921,Murray Street,http://www.nypl.org/locations/new-amsterdam,library,10007 -445,New Dorp,40.57193185,-74.11195815,New Dorp Lane,http://www.nypl.org/locations/new-dorp,library,10306 -446,"Library for the Performing Arts, Dorothy and Lewis B. Cullman Center",40.77350699,-73.98454685,Lincoln Center Plaza,http://www.nypl.org/locations/lpa,library,10023 -447,Ottendorfer,40.72890664,-73.98774284,Second Avenue,http://www.nypl.org/locations/ottendorfer,library,10003 -448,Parkchester,40.83378099,-73.85835005,Westchester Avenue,http://www.nypl.org/locations/parkchester,library,10462 -449,Pelham Bay,40.84431753,-73.82790017,Middletown Road,http://www.nypl.org/locations/pelham-bay,library,10461 -450,Pelham Parkway-Van Nest,40.85487588,-73.86414666,Barnes Avenue,http://www.nypl.org/locations/pelham-parkway-van-nest,library,10462 -451,Port Richmond,40.63758562,-74.13110462,Bennett Street,http://www.nypl.org/locations/port-richmond,library,10302 -452,Richmondtown,40.56653015,-74.13853388,Clarke Avenue,http://www.nypl.org/locations/richmondtown,library,10306 -453,Riverdale,40.90372278,-73.90277254,Mosholu Avenue,http://www.nypl.org/locations/riverdale,library,10471 -454,Riverside,40.77423208,-73.98451216,Amsterdam Avenue,http://www.nypl.org/locations/riverside,library,10023 -455,Roosevelt Island,40.76123276,-73.95020567,Main Street,http://www.nypl.org/locations/roosevelt-island,library,10044 -456,Schomburg Center for Research in Black Culture,40.81464862,-73.94094394,Malcolm X Boulevard,http://www.nypl.org/locations/schomburg,library,10037 -457,"Science, Industry and Business Library (SIBL)",40.74811516,-73.98300922,Madison Avenue,http://www.nypl.org/locations/sibl,library,10016 -458,Sedgwick,40.84944451,-73.91749502,Martin Luther King Jr. Boulevard,http://www.nypl.org/locations/sedgwick,library,10453 -459,Seward Park,40.71440955,-73.98850102,East Broadway,http://www.nypl.org/locations/seward-park,library,10002 -460,Soundview,40.81870935,-73.86288996,Soundview Avenue,http://www.nypl.org/locations/soundview,library,10473 -461,South Beach,40.59580257,-74.06298045,Robin Road,http://www.nypl.org/locations/south-beach,library,10305 -462,Spuyten Duyvil,40.88628524,-73.91465019,West 235th Street,http://www.nypl.org/locations/spuyten-duyvil,library,10463 -463,St. Agnes,40.78483464,-73.97745212,Amsterdam Avenue,http://www.nypl.org/locations/st-agnes,library,10024 -464,St. George Library Center,40.64179935,-74.07667836,Central Avenue,http://www.nypl.org/locations/st-george-library-center,library,10301 -465,Stapleton,40.62625652,-74.07786386,Canal Street,http://www.nypl.org/locations/stapleton,library,10304 -466,Stephen A. Schwarzman Building,40.75320442,-73.9822308,Fifth Avenue at 42nd Street,http://www.nypl.org/locations/schwarzman,library,10018 -467,Terence Cardinal Cooke-Cathedral,40.75680235,-73.97254083,Lexington Avenue,http://www.nypl.org/locations/cathedral,library,10022 -468,Throg's Neck,40.82287218,-73.81909494,Cross Bronx Expressway Extension,http://www.nypl.org/locations/throgs-neck,library,10465 -469,Todt Hill-Westerleigh,40.609602,-74.14852128,Victory Boulevard,http://www.nypl.org/locations/todt-hill-westerleigh,library,10314 -470,Tompkins Square,40.72728803,-73.98042071,East 10th Street,http://www.nypl.org/locations/tompkins-square,library,10009 -471,Tottenville,40.50953112,-74.24410671,Amboy Road,http://www.nypl.org/locations/tottenville,library,10307 -472,Tremont,40.84604569,-73.89834944,Washington Avenue,http://www.nypl.org/locations/tremont,library,10457 -473,Van Cortlandt,40.8827797,-73.89392119,Sedgwick Avenue,http://www.nypl.org/locations/van-cortlandt,library,10463 -474,Wakefield,40.89108507,-73.85958124,Lowerre Place,http://www.nypl.org/locations/wakefield,library,10466 -475,Washington Heights,40.83454889,-73.93971035,St. Nicholas Avenue,http://www.nypl.org/locations/washington-heights,library,10032 -476,Webster,40.77065254,-73.95134169,York Avenue,http://www.nypl.org/locations/webster,library,10021 -477,West Farms,40.84464445,-73.8830121,Honeywell Avenue,http://www.nypl.org/locations/west-farms,library,10460 -478,West New Brighton,40.63450894,-74.11482187,Castleton Avenue,http://www.nypl.org/locations/west-new-brighton,library,10310 -479,Westchester Square,40.84086754,-73.84673062,Glebe Avenue,http://www.nypl.org/locations/westchester-square,library,10461 -480,Woodlawn Heights,40.90043991,-73.867942,Katonah Avenue,http://www.nypl.org/locations/woodlawn-heights,library,10470 -481,Woodstock,40.82061891,-73.90464799,East 160th Street,http://www.nypl.org/locations/woodstock,library,10456 -482,Yorkville,40.77365564,-73.95637252,East 79th Street,http://www.nypl.org/locations/yorkville,library,10021 -483,Arlington,40.68068926,-73.88723724,Arlington Avenue,http://www.bklynlibrary.org/locations/arlington,library,11207 -484,Bay Ridge,40.63362571,-74.02953835,Ridge Boulevard,http://www.bklynlibrary.org/locations/bay-ridge,library,11209 -485,Bedford,40.68181211,-73.95616471,Franklin Avenue,http://www.bklynlibrary.org/locations/bedford,library,11238 -486,Borough Park,40.63888884,-73.98900319,43rd Street,http://www.bklynlibrary.org/locations/borough-park,library,11219 -487,Brighton Beach
(Closed for Renovation),40.57610775,-73.96677488,Brighton First Road,http://www.bklynlibrary.org/locations/brighton-beach,library,11235 -488,Brooklyn Heights,40.69568256,-73.99134799,Cadman Plaza West,http://www.bklynlibrary.org/locations/brooklyn-heights,library,11201 -489,Brower Park,40.67537085,-73.94856614,St. Marks Avenue,http://www.bklynlibrary.org/locations/brower-park,library,11216 -490,Brownsville,40.67152666,-73.90860343,Glenmore Avenue,http://www.bklynlibrary.org/locations/brownsville,library,11212 -491,Bushwick,40.70455906,-73.93961842,Bushwick Avenue,http://www.bklynlibrary.org/locations/bushwick,library,11206 -492,Canarsie,40.64220845,-73.89952442,Rockaway Parkway,http://www.bklynlibrary.org/locations/canarsie,library,11236 -493,Carroll Gardens,40.68321352,-73.99801906,Clinton Street,http://www.bklynlibrary.org/locations/carroll-gardens,library,11231 -494,Brooklyn Central Library,40.67234353,-73.96822438,Grand Army Plaza,http://www.bklynlibrary.org/locations/central,library,11238 -495,Clarendon,40.63574015,-73.9476343,Nostrand Avenue,http://www.bklynlibrary.org/locations/clarendon,library,11210 -496,Clinton Hill,40.68737909,-73.96603067,Washington Avenue,http://www.bklynlibrary.org/locations/clinton-hill,library,11238 -497,Coney Island,40.57663778,-73.98606199,Mermaid Avenue,http://www.bklynlibrary.org/locations/coney-island,library,11224 -498,Cortelyou,40.64080355,-73.96596508,Cortelyou Road,http://www.bklynlibrary.org/locations/cortelyou,library,11226 -499,Crown Heights,40.66118931,-73.9481023,New York Avenue,http://www.bklynlibrary.org/locations/crown-heights,library,11225 -500,Cypress Hills,40.67270747,-73.87403488,Sutter Avenue,http://www.bklynlibrary.org/locations/cypress-hills,library,11208 -501,DeKalb,40.6948167,-73.92839867,Bushwick Avenue,http://www.bklynlibrary.org/locations/dekalb,library,11221 -502,Dyker,40.61630814,-74.01198852,13th Avenue,http://www.bklynlibrary.org/locations/dyker,library,11228 -503,East Flatbush,40.65571088,-73.91494062,Church Avenue,http://www.bklynlibrary.org/locations/east-flatbush,library,11212 -504,Eastern Parkway,40.66848651,-73.93365085,Eastern Parkway,http://www.bklynlibrary.org/locations/eastern-parkway,library,11213 -505,Flatbush,40.65192508,-73.95824218,Linden Boulevard,http://www.bklynlibrary.org/locations/flatbush,library,11226 -506,Flatlands,40.6197682,-73.93321326,Flatbush Avenue,http://www.bklynlibrary.org/locations/flatlands,library,11234 -507,Fort Hamilton,40.61637311,-74.03136941,Fourth Avenue,http://www.bklynlibrary.org/locations/fort-hamilton,library,11209 -508,Gerritsen Beach,40.59137103,-73.92393763,Gerritsen Avenue,http://www.bklynlibrary.org/locations/gerritsen-beach,library,11229 -509,Gravesend,40.59054439,-73.97180845,Avenue X,http://www.bklynlibrary.org/locations/gravesend,library,11223 -510,Greenpoint,40.72602807,-73.95069498,Norman Avenue,http://www.bklynlibrary.org/locations/greenpoint,library,11222 -511,Highlawn,40.60569304,-73.98624642,West 13th Street,http://www.bklynlibrary.org/locations/highlawn,library,11223 -512,Homecrest,40.59523686,-73.96059937,Coney Island Avenue,http://www.bklynlibrary.org/locations/homecrest,library,11223 -513,Jamaica Bay,40.63446014,-73.88924363,Seaview Avenue,http://www.bklynlibrary.org/locations/jamaica-bay,library,11236 -514,Kensington,40.63129183,-73.97543591,18th Avenue,http://www.bklynlibrary.org/locations/kensington,library,11218 -515,Kings Bay,40.59486152,-73.94112492,Nostrand Avenue,http://www.bklynlibrary.org/locations/kings-bay,library,11229 -516,Kings Highway,40.61025667,-73.95310585,Ocean Avenue,http://www.bklynlibrary.org/locations/kings-highway,library,11229 -517,Leonard,40.71364489,-73.94793571,Devoe Street,http://www.bklynlibrary.org/locations/leonard,library,11211 -518,Macon,40.6830049,-73.93480547,Lewis Avenue,http://www.bklynlibrary.org/locations/macon,library,11233 -519,Mapleton,40.6230914,-73.98944015,60th Street,http://www.bklynlibrary.org/locations/mapleton,library,11204 -520,Marcy,40.69162309,-73.9512835,DeKalb Avenue,http://www.bklynlibrary.org/locations/marcy,library,11216 -521,McKinley Park,40.62918753,-74.01183731,Fort Hamilton Parkway,http://www.bklynlibrary.org/locations/mckinley-park,library,11219 -522,Midwood,40.62589331,-73.96031449,East 16th Street,http://www.bklynlibrary.org/locations/midwood,library,11230 -523,Mill Basin,40.61986842,-73.91702121,Ralph Avenue,http://www.bklynlibrary.org/locations/mill-basin,library,11234 -524,New Lots,40.66515937,-73.88607054,New Lots Avenue,http://www.bklynlibrary.org/locations/new-lots,library,11207 -525,"New Utrecht
(Temporary Closed, will reopen later this Summer (2016).",40.60800935,-74.00337655,86th Street,http://www.bklynlibrary.org/locations/new-utrecht,library,11214 -526,Pacific,40.68346663,-73.97858354,Fourth Avenue,http://www.bklynlibrary.org/locations/pacific,library,11217 -527,Paerdegat,40.63263699,-73.91998488,East 59th Street,http://www.bklynlibrary.org/locations/paerdegat,library,11234 -528,Park Slope,40.66823507,-73.98345537,6th Avenue,http://www.bklynlibrary.org/locations/park-slope,library,11215 -529,Red Hook,40.67524077,-74.01034307,Wolcott Street,http://www.bklynlibrary.org/locations/red-hook,library,11231 -530,Rugby,40.64861929,-73.93035653,Utica Avenue,http://www.bklynlibrary.org/locations/rugby,library,11203 -531,Ryder,40.61587983,-73.97596653,23rd Avenue,http://www.bklynlibrary.org/locations/ryder,library,11204 -532,Saratoga,40.68481005,-73.91513242,Thomas S. Boyland Street,http://www.bklynlibrary.org/locations/saratoga,library,11233 -533,Sheepshead Bay,40.58701343,-73.95537378,East 14th Street,http://www.bklynlibrary.org/locations/sheepshead-bay,library,11235 -534,Spring Creek,40.65320976,-73.88586614,Flatlands Avenue,http://www.bklynlibrary.org/locations/spring-creek,library,11207 -535,Stone Avenue,40.66449963,-73.90524945,Mother Gaston Boulevard,http://www.bklynlibrary.org/locations/stone-avenue,library,11212 -536,Sunset Park,40.64591212,-74.01363,4th Avenue,http://www.bklynlibrary.org/locations/sunset-park,library,11220 -537,Ulmer Park,40.59268512,-73.98862741,Bath Avenue,http://www.bklynlibrary.org/locations/ulmer-park,library,11214 -538,Walt Whitman,40.6944897,-73.97773263,Saint Edwards Street,http://www.bklynlibrary.org/locations/walt-whitman,library,11205 -539,Washington Irving,40.69749505,-73.91220085,Irving Avenue,http://www.bklynlibrary.org/locations/washington-irving,library,11237 -540,Williamsburgh,40.70693042,-73.95755461,Division Avenue,http://www.bklynlibrary.org/locations/williamsburgh,library,11211 -541,Windsor Terrace,40.64875019,-73.97675877,East 5th Street,http://www.bklynlibrary.org/locations/windsor-terrace,library,11218 -542,Arverne,40.59314678,-73.78404003,Beach 54 Street,http://www.queenslibrary.org/branch/Arverne?filters=ev_loc:92300000,library,11692 -543,Astoria,40.77237538,-73.92874209,Astoria Boulevard,http://www.queenslibrary.org/branch/Astoria?filters=ev_loc:92400000,library,11102 -544,Auburndale,40.77374626,-73.79634179,Francis Lewis Boulevard,http://www.queenslibrary.org/branch/Auburndale?filters=ev_loc:92500000,library,11358 -545,Baisley Park,40.68031131,-73.79167861,Sutphin Boulevard,http://www.queenslibrary.org/branch/Baisley-Park?filters=ev_loc:92600000,library,11436 -546,Bay Terrace,40.78252384,-73.7770109,Bell Boulevard,http://www.queenslibrary.org/branch/Bay-Terrace?filters=ev_loc:96600000,library,11360 -547,Bayside,40.76012558,-73.76836198,Northern Boulevard,http://www.queenslibrary.org/branch/Bayside?filters=ev_loc:91100000,library,11361 -548,Bellerose,40.73516055,-73.71710447,Hillside Avenue,http://www.queenslibrary.org/branch/Bellerose?filters=ev_loc:96400000,library,11426 -549,Briarwood,40.71003456,-73.81945312,Main Street,http://www.queenslibrary.org/branch/Briarwood?filters=ev_loc:92700000,library,11435 -550,Broad Channel,40.60073211,-73.82005266,Cross Bay Boulevard,http://www.queenslibrary.org/branch/Broad-Channel?filters=ev_loc:97200000,library,11693 -551,Broadway,40.75852927,-73.91862332,Broadway,http://www.queenslibrary.org/branch/Broadway?filters=ev_loc:91200000,library,11103 -552,Cambria Heights,40.69572261,-73.74116314,Linden Boulevard,http://www.queenslibrary.org/branch/Cambria-Heights?filters=ev_loc:92800000,library,11411 -553,Queens Central Library,40.70787313,-73.79467804,Merrick Boulevard,http://www.queenslibrary.org/branch/Central-Library?filters=ev_loc:11000000,library,11432 -554,Corona,40.75089408,-73.86197684,104 Street,http://www.queenslibrary.org/branch/Corona?filters=ev_loc:92900000,library,11368 -555,Court Square,40.74689957,-73.94442139,Jackson Avenue,http://www.queenslibrary.org/branch/Court-Square?filters=ev_loc:97100000,library,11101 -556,Douglaston/Little Neck,40.76822543,-73.73822944,Northern Boulevard,http://www.queenslibrary.org/branch/Douglaston/Little-Neck?filters=ev_loc:93000000,library,11363 -557,East Elmhurst,40.76242213,-73.87386663,Astoria Boulevard,http://www.queenslibrary.org/branch/East-Elmhurst?filters=ev_loc:93100000,library,11369 -558,East Flushing,40.75754568,-73.78430296,Northern Boulevard,http://www.queenslibrary.org/branch/East-Flushing?filters=ev_loc:96200000,library,11358 -559,Elmhurst
(Temporary location due to renovations),40.73830324,-73.87797366,51 Avenue,http://www.queenslibrary.org/branch/Elmhurst?filters=ev_loc:93200000,library,11373 -560,Far Rockaway,40.60431351,-73.75247942,Central Avenue,http://www.queenslibrary.org/branch/Far-Rockaway?filters=ev_loc:91300000,library,11691 -561,Flushing,40.75777407,-73.82888469,Main Street,http://www.queenslibrary.org/branch/Flushing?filters=ev_loc:91400000,library,11355 -562,Forest Hills,40.72214695,-73.843015,71 Avenue,http://www.queenslibrary.org/branch/Forest-Hills?filters=ev_loc:91500000,library,11375 -563,Fresh Meadows,40.74158266,-73.78228144,Horace Harding Expressway,http://www.queenslibrary.org/branch/Fresh-Meadows?filters=ev_loc:91600000,library,11365 -564,Glen Oaks,40.7451722,-73.7148458,Union Turnpike,http://www.queenslibrary.org/branch/Glen-Oaks?filters=ev_loc:93300000,library,11004 -565,Glendale,40.70258525,-73.87574435,73 Place,http://www.queenslibrary.org/branch/Glendale?filters=ev_loc:93400000,library,11385 -566,Hillcrest,40.72925482,-73.7819193,Union Turnpike,http://www.queenslibrary.org/branch/Hillcrest?filters=ev_loc:96500000,library,11366 -567,Hollis,40.72016654,-73.76232033,Hillside Avenue,http://www.queenslibrary.org/branch/Hollis?filters=ev_loc:93500000,library,11423 -568,Howard Beach,40.66381026,-73.84180222,156 Avenue,http://www.queenslibrary.org/branch/Howard-Beach?filters=ev_loc:93600000,library,11414 -569,Jackson Heights,40.75019609,-73.88506932,81 Street,http://www.queenslibrary.org/branch/Jackson-Heights?filters=ev_loc:91700000,library,11372 -570,Kew Gardens Hills
(Temporary location),40.72693697,-73.82226966,Main Street,http://www.queenslibrary.org/branch/Kew-Gardens-Hills?filters=ev_loc:92200000,library,11367 -571,Langston Hughes,40.7575773,-73.86819939,Northern Boulevard,http://www.queenslibrary.org/branch/Langston-Hughes?filters=ev_loc:98200000,library,11368 -572,Laurelton,40.67695273,-73.74567356,225 Street,http://www.queenslibrary.org/branch/Laurelton?filters=ev_loc:91800000,library,11413 -573,Lefferts,40.68690729,-73.8248297,Lefferts Boulevard,http://www.queenslibrary.org/branch/Lefferts?filters=ev_loc:91000000,library,11419 -574,Lefrak City,40.73743414,-73.86165593,57 Avenue,http://www.queenslibrary.org/branch/Lefrak-City?filters=ev_loc:93700000,library,11368 -575,Long Island City,40.75780343,-73.9393093,21 Street,http://www.queenslibrary.org/branch/Long-Island-City?filters=ev_loc:97300000,library,11101 -576,Maspeth,40.72699537,-73.89310456,Grand Avenue,http://www.queenslibrary.org/branch/Maspeth?filters=ev_loc:93900000,library,11378 -577,McGoldrick,40.76375032,-73.80983348,Roosevelt Avenue,http://www.queenslibrary.org/branch/McGoldrick?filters=ev_loc:93800000,library,11354 -578,Middle Village,40.71293388,-73.88085935,Metropolitan Avenue,http://www.queenslibrary.org/branch/Middle-Village?filters=ev_loc:94000000,library,11379 -579,Mitchell-Linden,40.76914153,-73.82694112,Union Street,http://www.queenslibrary.org/branch/Mitchell-Linden?filters=ev_loc:94100000,library,11354 -580,North Forest Park,40.71115686,-73.85367251,Metropolitan Avenue,http://www.queenslibrary.org/branch/North-Forest-Park?filters=ev_loc:96800000,library,11375 -581,North Hills,40.75925364,-73.73183792,Marathon Parkway,http://www.queenslibrary.org/branch/North-Hills?filters=ev_loc:94200000,library,11362 -582,Ozone Park
(Closed for renovations),40.68086718,-73.84648846,Rockaway Boulevard,http://www.queenslibrary.org/branch/Ozone-Park?filters=ev_loc:94300000,library,11417 -583,Peninsula,40.58586415,-73.81606503,Rockaway Beach Boulevard,http://www.queenslibrary.org/branch/Peninsula?filters=ev_loc:94400000,library,11693 -584,Pomonok,40.73292508,-73.81009489,Jewel Avenue,http://www.queenslibrary.org/branch/Pomonok?filters=ev_loc:94500000,library,11365 -585,Poppenhusen,40.7862131,-73.84601807,14 Avenue,http://www.queenslibrary.org/branch/Poppenhusen?filters=ev_loc:94600000,library,11356 -586,Queens Library for Teens,40.60239019,-73.75351241,Cornaga Avenue,http://www.queenslibrary.org/branch/Queens-Library-for-Teens?filters=ev_loc:91309134,library,11691 -587,Queens Village,40.71988833,-73.73904906,217 Street,http://www.queenslibrary.org/branch/Queens-Village?filters=ev_loc:91900000,library,11428 -588,Queensboro Hill,40.74293095,-73.82516996,Main Street,http://www.queenslibrary.org/branch/Queensboro-Hill?filters=ev_loc:96900000,library,11355 -589,Queensbridge
Now a Family Literacy Center,40.75507372,-73.94424079,41 Avenue,http://www.queenslibrary.org/branch/Queensbridge?filters=ev_loc:94700000,library,11101 -590,Ravenswood
Now a Family Literacy Center,40.76067995,-73.93640397,21 Street,http://www.queenslibrary.org/branch/Ravenswood?filters=ev_loc:94800000,library,11106 -591,Rego Park,40.72731656,-73.86450283,63 Drive,http://www.queenslibrary.org/branch/Rego-Park?filters=ev_loc:92000000,library,11374 -592,Richmond Hill,40.7007972,-73.83164233,Hillside Avenue,http://www.queenslibrary.org/branch/Richmond-Hill?filters=ev_loc:94900000,library,11418 -593,Ridgewood,40.70522689,-73.90258828,Madison Street,http://www.queenslibrary.org/branch/Ridgewood?filters=ev_loc:92100000,library,11385 -594,Rochdale Village,40.6728752,-73.77059022,137 Avenue,http://www.queenslibrary.org/branch/Rochdale-Village?filters=ev_loc:95000000,library,11434 -595,Rosedale,40.65996362,-73.73991101,243 Street,http://www.queenslibrary.org/branch/Rosedale?filters=ev_loc:95100000,library,11422 -596,Seaside,40.57940488,-73.83774701,Rockaway Beach Boulevard,http://www.queenslibrary.org/branch/Seaside?filters=ev_loc:96300000,library,11694 -597,South Hollis,40.70700391,-73.7537974,Hollis Avenue,http://www.queenslibrary.org/branch/South-Hollis?filters=ev_loc:95300000,library,11412 -598,South Jamaica,40.69561112,-73.79021187,Guy R. Brewer Boulevard,http://www.queenslibrary.org/branch/South-Jamaica?filters=ev_loc:95400000,library,11433 -599,South Ozone Park,40.67478395,-73.80926183,Rockaway Boulevard,http://www.queenslibrary.org/branch/South-Ozone-Park?filters=ev_loc:95500000,library,11420 -600,St.Albans,40.69249997,-73.76007289,Linden Boulevard,http://www.queenslibrary.org/branch/St.Albans?filters=ev_loc:95200000,library,11412 -601,Steinway,40.77682707,-73.90945659,31 Street,http://www.queenslibrary.org/branch/Steinway?filters=ev_loc:95600000,library,11105 -602,Sunnyside,40.7408467,-73.92166803,Greenpoint Avenue,http://www.queenslibrary.org/branch/Sunnyside?filters=ev_loc:95700000,library,11104 -603,Whitestone,40.78854019,-73.81070184,14 Road,http://www.queenslibrary.org/branch/Whitestone?filters=ev_loc:95800000,library,11357 -604,Windsor Park,40.73450483,-73.75561942,Bell Boulevard,http://www.queenslibrary.org/branch/Windsor-Park?filters=ev_loc:95900000,library,11364 -605,Woodhaven,40.69453115,-73.86145742,Forest Parkway,http://www.queenslibrary.org/branch/Woodhaven?filters=ev_loc:96000000,library,11421 -606,Woodside,40.74534171,-73.90979374,Skillman Avenue,http://www.queenslibrary.org/branch/Woodside?filters=ev_loc:96100000,library,11377 -607,Challenge Playground,40.7560520947,-73.72738293199147,251 St. bet. 61 Ave. and 63 Ave.,http://www.nycgovparks.org/parks/Q346/,park,11362 -608,Sunset Cove Park,40.59892072358,-73.82218300936414,W. 19 Rd. bet Jamaica Bay and Cross Bay Blvd.,http://www.nycgovparks.org/parks/Q498/,park,11693 -609,Archie Spigner Park,40.69252911744,-73.77836915150323,"169 St., Merrick Blvd., Marne Pl. bet. Linden Blvd., Sayres Ave., and 111 Rd.",http://www.nycgovparks.org/parks/Q051/,park,11433 -610,Watson Gleason Playground,40.82942792625,-73.86905996294475,"Gleason Ave., Watson Ave. bet. Noble Ave., and Rosedale Ave.",http://www.nycgovparks.org/parks/X124/,park,10472 -611,Beach 17 Playground,40.59495632537,-73.74596075957648,Seagirt Blvd bet. B. 17 St. and B. 12 St.,http://www.nycgovparks.org/parks/Q162J/,park,11691 -612,Bayview Terrace Park,40.52696026269,-74.16185588015657,Bayview Ter. from Barclay Ave. to Harold Ave.,http://www.nycgovparks.org/parks/R137/,park,10312 -613,Randall's Island Park,40.79081801536,-73.92596611446989,East River and Harlem River,http://www.nycgovparks.org/parks/M104/,park,10035 -614,Nassau Mall,40.76442908266,-73.72513450444242,"Horace Harding Exwy. Sr. Rd. N., Little Neck Pkwy., Nassau Blvd.",http://www.nycgovparks.org/parks/Q357I/,park,11362 -615,Shiloh Garden,40.68617686121,-73.94519019107632,Monroe St. between Tompkins Ave. and Marcy Ave.,http://www.nycgovparks.org/parks/B502/,park,11216 -616,St. Nicholas - Powers St. Garden,40.71260106123,-73.9396631946347,Powers St. between Judge St. and Olive St.,http://www.nycgovparks.org/parks/B426/,park,11211 -617,Brinkerhoff Mall,40.69547846891,-73.7818354714279,"Merrick Blvd., 171 Pl. bet. 110 Ave. and 110 Rd.",http://www.nycgovparks.org/parks/Q447/,park,11433 -618,Vernon Mall,40.74202958324,-73.95422946374332,Vernon Blvd. bet. 50 Ave. and 51 Ave.,http://www.nycgovparks.org/parks/Q435/,park,11101 -619,Ashmead Park,40.70280531389,-73.79042152693965,Liberty Ave. bet. 168 St. and 168 Pl.,http://www.nycgovparks.org/parks/Q003/,park,11433 -620,Hunts Point Riverside Park,40.81810754284,-73.88140651341904,Lafayette Av bet. Edgewater Rd and the Bronx River,http://www.nycgovparks.org/parks/X336/,park,10474 -621,Motor Parkway,40.73637164883,-73.75543638382298,Cloverdale Blvd. bet. 77 Ave. and Kingsbury Ave. and 210 St. bet. 75 Ave. and Richland Ave.,http://www.nycgovparks.org/parks/Q130/,park,11364 -622,Green Valley Garden,40.65808337297,-73.90176447842659,"New Lots Ave. bet. Sackman St., Powell St. and Junius St.",http://www.nycgovparks.org/parks/B486/,park,11212 -623,Sutter Ballfields,40.67067035382,-73.88708824273517,Belmont Ave. to Sutter Ave. between Schenck Ave. and Barbey St.,http://www.nycgovparks.org/parks/B419/,park,11207 -624,Bayswater Park,40.60036281086,-73.7711620019294,"Dwight Ave., Seagirt Blvd. bet. Beach 38 St. and Bay 32 St.",http://www.nycgovparks.org/parks/Q007/,park,11691 -625,Barnhill Square,40.86801678694,-73.89959001936431,W. Kingsbridge Ave at Reservoir Ave.,http://www.nycgovparks.org/parks/X001B/,park,10468 -626,O'Sullivan Plaza,40.76371788238,-73.880962574864,"Astoria Blvd., 25 Ave., 88 St.",http://www.nycgovparks.org/parks/Q160/,park,11369 -627,Garden,40.52676026717,-74.16368474386724,Bayview Ter. bet. Holdridge Ave. and Bennett Pl.,http://www.nycgovparks.org/parks/R137A/,park,10312 -628,Louis Armstrong Playground,40.75523613533,-73.85515938562745,37 Av bet. 112 and 113 Sts,http://www.nycgovparks.org/parks/Q415/,park,11368 -629,Tompkinsville Park,40.63704575779,-74.07633812079823,"Bay St., Victory Blvd.",http://www.nycgovparks.org/parks/R024/,park,10301 -630,Melrose Playground,40.82068530417,-73.91805349469043,Courtlandt Av bet. E 154 St and E 155 St,http://www.nycgovparks.org/parks/X154/,park,10451 -631,St. Gregory's Playground,40.78931792033,-73.97196443282706,W. 90 St. bet. Amsterdam Ave. and Columbus Ave.,http://www.nycgovparks.org/parks/M301/,park,10024 -632,Colden Playground,40.7700217052,-73.8267029343887,Union St. bet. 31 Rd. and 31 Dr.,http://www.nycgovparks.org/parks/Q347/,park,11354 -633,Horsebrook Island,40.73592692924,-73.87240187835147,"Justice Ave., 90 St., 56 Ave.",http://www.nycgovparks.org/parks/Q152/,park,11373 -634,North 5th Street Pier and Park,40.72138362497,-73.96367808982842,Kent Ave. bet. N. 4 St. and N. 7 St.,http://www.nycgovparks.org/parks/B536/,park,11211 -635,Louis Pl Friends,40.6774240029,-73.91687127666702,Louis Pl. between Herkimer St. and Atlantic Ave.,http://www.nycgovparks.org/parks/B498/,park,11233 -636,Flynn Playground,40.82122716003,-73.91147878525365,Brook Av to 3 Av bet. E 157 St and E 158 St,http://www.nycgovparks.org/parks/X146/,park,10451 -637,Garden Of Happiness,40.84832690761,-73.88483505705288,Prospect Av bet. E 181 St and E 182 St,http://www.nycgovparks.org/parks/X293/,park,10460 -638,Bathgate Playground,40.85349559821,-73.89368590039986,Washington to Bathgate Av bet. W 181 St and E 183 St,http://www.nycgovparks.org/parks/X252/,park,10457 -639,Angie Lee Gonzales Garden,40.83656695396,-73.8845285251959,Bryant Ave. at E. 174 St.,http://www.nycgovparks.org/parks/X339/,park,10460 -640,Udall's Park Preserve,40.7801409047,-73.74645122415272,"Northern Blvd., 244 St. to 247 St., Douglas Rd., Little Neck Bay",http://www.nycgovparks.org/parks/Q452/,park,11363 -641,Travis Triangle,40.76631221709,-73.8130687716547,"Murray La., Murray St. bet. 34 Ave. and 35 Ave.",http://www.nycgovparks.org/parks/Q246/,park,11354 -642,Norelli-Hargreaves Memorial Triangle,40.69575003179,-73.80520991162142,"Liberty Ave., 101 Ave. bet. Waltham St. and 146 St.",http://www.nycgovparks.org/parks/Q243/,park,11435 -643,Sergeant Colyer Square,40.67497041692,-73.80556769476696,"Rockaway Blvd., 120 Ave. bet. 132 St. and 133 St.",http://www.nycgovparks.org/parks/Q231/,park,11420 -644,Preston Community Garden,40.6719010156,-73.92066064540502,Park Pl. between Howard Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B487/,park,11233 -645,Mall Forty Two XLII,40.76199355833,-73.77450857177826,"42 Av, Bell Bl To Francis Lewis Bl",http://www.nycgovparks.org/parks/Q178/,park,11361 -646,Utopia Playground,40.73038994658,-73.79254236598904,"73 Ave., Jewel Ave. bet. Utopia Pkwy. and 179 St.",http://www.nycgovparks.org/parks/Q294/,park,11365 -647,Linnaeus Park,40.75323734017,-73.75130284730585,230 St. bet. 57 Ave. and 57 Rd.,http://www.nycgovparks.org/parks/Q388/,park,11364 -648,Plaut Triangle,40.75831183737,-73.79682635846903,"Northern Blvd., 43 Ave. bet. 169 St. and 170 St.",http://www.nycgovparks.org/parks/Q073/,park,11358 -649,Mall Eighteen,40.78324844821,-73.84142459671561,18 Ave. bet. 126 St. and 127 St.,http://www.nycgovparks.org/parks/Q033/,park,11356 -650,Bowne Playground,40.75859589597,-73.82488070831846,Union St. bet. Barclay Ave. and Sanford Ave.,http://www.nycgovparks.org/parks/Q308/,park,11355 -651,Ruoff Triangle,40.68252297194,-73.85252681394502,"Rockaway Blvd., 101 Ave., 87 St.",http://www.nycgovparks.org/parks/Q147/,park,11416 -652,Baybridge Green,40.78534237856,-73.78648217550897,Clearview Exwy. bet. Lori Dr. and 15 Dr.,http://www.nycgovparks.org/parks/Q387E/,park,11360 -653,Clearview Park Golf Course,40.77900671345,-73.78505941869885,"202 St., Clearview Exwy., bet. Cross Island Pkwy. and 23 Ave.",http://www.nycgovparks.org/parks/Q010/,park,11360 -654,Daniel Carter Beard Mall,40.76291121072,-73.831653936784,Northern Blvd. bet. Main St. and Linden Pl.,http://www.nycgovparks.org/parks/Q100A/,park,11354 -655,Sabba Park,40.74272865155,-73.91510277360271,"Queens Blvd. bet. 48 St., Greenpoint Ave. and 50 St.",http://www.nycgovparks.org/parks/Q034/,park,11377 -656,Doughboy Park,40.74614586167,-73.90825521100632,Woodside Ave. bet. 54 St. and 56 St.,http://www.nycgovparks.org/parks/Q031A/,park,11377 -657,William F Moore Park,40.74382007101,-73.8553609608765,"108 St., Corona Ave. bet. 51 Ave. and 52 Ave.",http://www.nycgovparks.org/parks/Q029/,park,11368 -658,Mentone Playground,40.66635351316,-73.74058264316812,N. Conduit Ave. bet. 230 Pl. and the Belt Pkwy.,http://www.nycgovparks.org/parks/Q096C/,park,11413 -659,Richmond Terrace Cemetery,40.63948244108,-74.12099740656076,Richmond Ter. bet. Tompkins Ct. and Alaska St.,http://www.nycgovparks.org/parks/R154/,park,10310 -660,Bell Malls,40.75531289053,-73.76696059493914,Bell Blvd. bet. 48 Ave. and Horace Harding Exwy. Sr. Rd. N.,http://www.nycgovparks.org/parks/Q268/,park,11364 -661,Laurelton Playground,40.6706159703,-73.7357248182306,Brookville Blvd. bet. 136 Ave. 137 Ave.,http://www.nycgovparks.org/parks/Q108/,park,11422 -662,Catharine Turner Richardson Park,40.7680309838,-73.74700351200937,"Douglaston Pkwy., 240 St. bet. 42 Ave. and 43 Ave.",http://www.nycgovparks.org/parks/Q059/,park,11363 -663,Park Avenue Malls,40.74713978428,-73.98126898270925,E 34 St To E 39 St and Park Av,http://www.nycgovparks.org/parks/M060B/,park,10016 -664,Playground 115,40.78504971441,-73.85278020879076,115 St. bet. 14 Ave. and 14 Rd.,http://www.nycgovparks.org/parks/Q136/,park,11356 -665,Raymond O’Connor Park,40.77089482393,-73.77907145592283,"32 Ave., 33 Ave. bet. Corporal Kennedy St. and 210 St.",http://www.nycgovparks.org/parks/Q103/,park,11361 -666,Marcus Garvey Tenant's Assoc. Garden,40.66927372409,-73.91598050092,Strauss St. bet. E. New York Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B510/,park,11212 -667,Staten Island Industrial Park,40.60884592987,-74.17026427795108,"SI Expwy., W. Shore Expwy., Graham Ave., South Ave.",http://www.nycgovparks.org/parks/R143/,park,10314 -668,Gordon Triangle,40.74861897826,-73.95202629912528,"10 St., Vernon Blvd. bet. 44 Rd. and 45 Ave.",http://www.nycgovparks.org/parks/Q018/,park,11101 -669,Carlton Park,40.55154292911,-74.18450548068519,Carlton Blvd. and Crown Ave.,http://www.nycgovparks.org/parks/R152/,park,10312 -670,Sobel Court Park,40.61534649036,-74.08425895306115,"Bowen St., Vanderbilt Ave., Targee St.",http://www.nycgovparks.org/parks/R144/,park,10304 -671,Ketchum Triangle,40.60553161172,-73.98222274690765,"Quentin Rd., Kings Hwy., W. 9 St.",http://www.nycgovparks.org/parks/B160/,park,11223 -672,Soundview Park,40.81679170396,-73.86982410310259,"Bronx River, Bronx River Ave. bet. Lafayette Ave., Surf Dr.",http://www.nycgovparks.org/parks/X118/,park,10473 -673,Eibs Pond Park,40.61275432288,-74.07826630071021,"Mosel Ave., Palma Dr., Hanover Ave.",http://www.nycgovparks.org/parks/R124/,park,10304 -674,Linwood Playground,40.66658896311,-73.88055188537409,Linwood St. bet. New Lots Ave. and Hegeman Ave.,http://www.nycgovparks.org/parks/B149B/,park,11208 -675,Ida Court,40.53810092915,-74.18723267552771,"Drumgoole Rd. E., N. Railroad St., Ida Ct.",http://www.nycgovparks.org/parks/R097/,park,10312 -676,Mohegan Triangle,40.84435629218,-73.88457250288049,"Mohegan Ave., Crotona Pkwy., E. 179 St.",http://www.nycgovparks.org/parks/X334/,park,10460 -677,Bell Tower Park,40.88916697957,-73.90834756788522,"Riverdale Ave., Henery hudson Pkwy., W. 239 St.",http://www.nycgovparks.org/parks/X110D/,park,10471 -678,Madison Square Park,40.74275844273,-73.98677782187565,"Broadway, Madison Ave. bet. E. 23 St. and E. 26 St.",http://www.nycgovparks.org/parks/M052/,park,10010 -679,O'Neill Triangle,40.8238942529,-73.91093749024229,Elton Av bet. E 161 St and E 162 St,http://www.nycgovparks.org/parks/X053/,park,10451 -680,Alben Square,40.63949791746,-73.99452972094957,"46 St., 11 Ave., New Utrecht Ave.",http://www.nycgovparks.org/parks/B123/,park,11219 -681,Sparrow's Nest Community Garden,40.74040394157,-73.85895173410294,Lewis Ave. bet. 101 St. and 102 St.,http://www.nycgovparks.org/parks/Q473/,park,11368 -682,Park at Beach 108 Street,40.5836943265,-73.83222939679193,Beach Channel Dr. bet. Beach 116 St. and Beach 108 St.,http://www.nycgovparks.org/parks/Q496/,park,11694 -683,Walt Whitman Park,40.69886003874,-73.98890532672436,"Cadman Plaza East, Adams St. bet. Red Cross Pl. and Tillary St.",http://www.nycgovparks.org/parks/B113E/,park,11201 -684,Scarangella Park,40.59375660721,-73.98379553233681,"W. 13 St., Stillwell Ave. bet. Ave. U and Ave. V",http://www.nycgovparks.org/parks/B106A/,park,11223 -685,Clove's Tail,40.61253196802,-74.11414704137226,Little Clove Rd. bet. Windsor Rd. and Victory Blvd.,http://www.nycgovparks.org/parks/R070/,park,10314 -686,Great Kills Veterans Playground,40.54734500156,-74.15150605682912,"Hillcrest Ave., N/o Highmount Rd.",http://www.nycgovparks.org/parks/R071/,park,10308 -687,Howard Malls,40.66405367418,-73.91979846532999,"Blake Ave., Tapscott St., Howard Ave.",http://www.nycgovparks.org/parks/B182/,park,11212 -688,Sgt. Joyce Kilmer Square,40.60784928743,-73.96082329434068,"E. 12 St., Kings Hwy., Quentin Rd.",http://www.nycgovparks.org/parks/B094/,park,11229 -689,Christopher J. Igneri Playground,40.60840423437,-74.11942364990158,"Schmidts La., Manor Rd. and Laguardia Ave.",http://www.nycgovparks.org/parks/R064/,park,10314 -690,Lowry Triangle,40.68085420022,-73.96449054790244,"Pacific St., Washington Ave., Underhill Ave.",http://www.nycgovparks.org/parks/B089/,park,11238 -691,Kaltenmeier Playground,40.61494574661,-74.06851662959531,Virginia Ave. and Anderson St.,http://www.nycgovparks.org/parks/R042/,park,10305 -692,Schiff Mall,40.71999727261,-73.99303393306414,Delancey St bet. Bowery and Essex St,http://www.nycgovparks.org/parks/M080/,park,10002 -693,De Matti Park,40.61421874356,-74.07413817418916,"Tompkins Ave., bet. Chestnut St. and Shaughnessy La.",http://www.nycgovparks.org/parks/R035/,park,10305 -694,Austin J. McDonald Playground,40.62953500735,-74.11490620094182,"Forest Ave., Myrtle Ave., Broadway, N. Burgher Ave.",http://www.nycgovparks.org/parks/R034/,park,10310 -695,Owl's Head Park,40.6396891505,-74.03051362651304,"Shore Rd., 68 St., Colonial Rd.",http://www.nycgovparks.org/parks/B066/,park,11220 -696,Gravesend Park,40.62439683282,-73.98472205000172,"18 Ave., 19 Ave., bet. 55 St. and 58 St.",http://www.nycgovparks.org/parks/B042/,park,11204 -697,Levy Playground,40.6337200818,-74.12876980301016,Jewett Ave. and Castleton Ave.,http://www.nycgovparks.org/parks/R033/,park,10302 -698,Kwame Ture Recreation Center,40.84473943458,-73.91856320847853,Jesup Av bet. W 172 St and Cross Bronx Exwy,http://www.nycgovparks.org/parks/X261/,park,10452 -699,Mariners Marsh Park,40.63768187359,-74.17170330510054,Richmond Terrace bet. Catherine Pl. and Holland Ave.,http://www.nycgovparks.org/parks/R142/,park,10303 -700,Maple Woods,40.61131085033,-74.08805627971647,Richmond Rd. bet. Pierce St. and Steuben St.,http://www.nycgovparks.org/parks/R032/,park,10304 -701,Staats Circle,40.59904381283,-74.07226981038929,Hylan Blvd. at Sand La.,http://www.nycgovparks.org/parks/R010/,park,10305 -702,Barrett Triangle,40.64195599346,-74.07558896216143,"Hyatt St., Bay St., Stuyvesant Pl. and Richmond Ter.",http://www.nycgovparks.org/parks/R004/,park,10301 -703,Tappen Park,40.62671723237,-74.0758098373344,"Canal St., Water St., Bay St.",http://www.nycgovparks.org/parks/R028/,park,10304 -704,Peaceful Valley Garden,40.80042702693,-73.94399726618308,Madison Ave. bet. E. 116 St. and E. 117 St.,http://www.nycgovparks.org/parks/M367/,park,10035 -705,Lower East Side Playground,40.72924585938,-73.98347493415832,"E. 12 St., E. 11 St. bet. 1 Ave. and Ave. A",http://www.nycgovparks.org/parks/M321A/,park,10009 -706,Queensboro Oval,40.75879964348,-73.95982612972409,"West of York Ave., E 59 St. To E 60 St.",http://www.nycgovparks.org/parks/M070/,park,10022 -707,Bryant Park,40.7529710288,-73.9834069537809,"bet. 5 and 6 Av, W 40 St and W 42 St",http://www.nycgovparks.org/parks/M008/,park,10018 -708,Livonia Park,40.66372269703,-73.90157017222514,Livonia Ave. between Powell St. and Junius St.,http://www.nycgovparks.org/parks/B367/,park,11212 -709,Duke Park,40.6667685124,-73.89305577658025,New Jersey Ave. between Blake Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B366/,park,11207 -710,Hawkins Park,40.84665149994,-73.78641186601298,City Island Ave. bet. Fordham St. and Hawkins St.,http://www.nycgovparks.org/parks/X107/,park,10464 -711,Haviland Playground,40.82881037886,-73.85824334399335,"Haviland Ave., Watson Ave. bet. Virginia Ave. and Pugsley Ave.",http://www.nycgovparks.org/parks/X208/,park,10472 -712,Gouverneur Playground,40.83613415114,-73.90291956363713,3 Av bet. E 170 St and St Paul's Pl,http://www.nycgovparks.org/parks/X222/,park,10456 -713,Samuel Goldberg Triangle,40.61118875265,-73.97729201429463,"65 St., Ave. O, W. 3 St.",http://www.nycgovparks.org/parks/B231/,park,11204 -714,Gonzalo Plasencia Playground,40.65270676028,-74.00797877099313,3 Ave. bet. 40 St. and 41 St.,http://www.nycgovparks.org/parks/B210I/,park,11232 -715,Corporal Wiltshire Square,40.61087826967,-73.95341010192851,"Ave. P, Kings Hwy., Ocean Ave.",http://www.nycgovparks.org/parks/B205/,park,11229 -716,Fort Hamilton Athletic Field,40.62703729873,-74.03616436902067,83 St. to 85 St. bet. Colonial Rd. and Narrows Ave.,http://www.nycgovparks.org/parks/B192A/,park,11209 -717,Greenwood Playground,40.64941819646,-73.97611731681965,"Ft Hamilton Pkwy., Prospect Ave., Greenwood Ave.",http://www.nycgovparks.org/parks/B130/,park,11218 -718,Gaeta Park,40.6104219384,-74.15046757766655,"N. Gannon Ave., Willow Road E., Victory Blvd., Wyona Ave.",http://www.nycgovparks.org/parks/R126/,park,10314 -719,Cooper Park,40.71665736875,-73.93636813561982,"Maspeth Ave., Sharon St. bet. Olive St. and Morgan Ave.",http://www.nycgovparks.org/parks/B025/,park,11211 -720,Grand Army Plaza,40.76383486434,-73.9735944822208,"5 Av, W 58 St To W 59 St",http://www.nycgovparks.org/parks/M062/,park,10019 -721,Barry Plaza,40.84284985051,-73.9048767558845,E 173 St bet. Clay Av and Anthony Av,http://www.nycgovparks.org/parks/X130/,park,10457 -722,Bowling Green,40.70480770767,-74.01337738570275,Broadway and Whitehall St.,http://www.nycgovparks.org/parks/M007/,park,10004 -723,Throgs Neck Park,40.83394494888,-73.82768098151953,Meyers St. bet. Haskin St. and Bruckner Blvd.,http://www.nycgovparks.org/parks/X050/,park,10461 -724,El Sol Brilliante Jr,40.72843924649,-73.97958800019131,E. 12 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M339/,park,10009 -725,Neighbors Of Vega Baja,40.79208120707,-73.94010438496912,E. 109 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M338/,park,10029 -726,Beattie Square,40.69641092056,-73.93448055059585,"Broadway, Stuyvesant Ave., Vernon Ave.",http://www.nycgovparks.org/parks/B006/,park,11221 -727,Sarah J.S. Tompkins Garnet Playground,40.70068373177,-73.95485764775498,"Lynch St., Middleton St. bet. Lee Ave. and Bedford Ave.",http://www.nycgovparks.org/parks/B022/,park,11206 -728,Detective Keith L Williams Park,40.70144023736,-73.78353936174929,Liberty Ave. bet. 172 St. and 173 St.,http://www.nycgovparks.org/parks/Q121/,park,11433 -729,Campos Garden,40.72709316677,-73.97758303889856,E. 12 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M359/,park,10009 -730,Sugar Hill Garden,40.82623766663,-73.9420996730531,Edgecombe Ave. and W. 150 St.,http://www.nycgovparks.org/parks/M319A/,park,10031 -731,Miele Park,40.83472913042,-73.82595389583385,Bruckner Blvd bet. Hollywood Ave. and Crosby Ave.,http://www.nycgovparks.org/parks/X149A/,park,10461 -732,Earth People,40.72522889577,-73.97875922976267,E. 8 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M324/,park,10009 -733,City Line Park,40.67925550438,-73.87409161778498,Atlantic Ave. bet. Fountain Ave. and N. Conduit Ave.,http://www.nycgovparks.org/parks/B141/,park,11208 -734,Bushwick Inlet Park,40.72531094574,-73.96022626634527,Kent Ave. bet. Quay St. and N 9 St.,http://www.nycgovparks.org/parks/B529/,park,11211 -735,Ramon Aponte Park,40.76127607104,-73.98931963848251,47 St. bet. 8 Ave. and 9 Ave.,http://www.nycgovparks.org/parks/M288/,park,10036 -736,Battery Park City,40.71222180074,-74.01772017027533,bet. Hudson River and South End Ave. S/o Liberty St.,http://www.nycgovparks.org/parks/M283A/,park,10280 -737,Asser Levy Park,40.57444185255,-73.9715454448973,"Boardwalk, Surf Ave., Sea Breeze Ave., Ocean Parkway",http://www.nycgovparks.org/parks/B080/,park,11224 -738,Todd Triangle,40.67223341785,-74.00869209569818,Halleck St. at Columbia St.,http://www.nycgovparks.org/parks/B126A/,park,11231 -739,Triboro Plaza,40.80153894491,-73.93158050831211,"1 Ave. To 2 Ave., bet. E. 124 St. and E. 126 St.",http://www.nycgovparks.org/parks/M108F/,park,10035 -740,Brevoort Playground,40.6799536361,-73.9228061443153,Ralph Ave. bet. Chauncey St. and Sumpter St.,http://www.nycgovparks.org/parks/B258/,park,11233 -741,American Veterans Memorial Pier,40.63939244038,-74.03657087851596,"Bay Ridge Ave., Shore Rd., Upper Bay",http://www.nycgovparks.org/parks/B432/,park,11220 -742,B.C.C.A. Mini-park and Garden,40.68322604652,-73.79198379030511,115 Dr. bet. Sutphin Blvd. and 155 St.,http://www.nycgovparks.org/parks/Q486/,park,11434 -743,Breukelen Ballfields,40.65186766257,-73.89214609005658,"Louisiana Ave., Stanley Ave., Flatlands Ave., Williams Ave.",http://www.nycgovparks.org/parks/B247/,park,11207 -744,Lafayette Gardens Playground,40.68930956406,-73.95734169044692,Lafayette Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B317/,park,11205 -745,South Beach Wetlands,40.58693503262,-74.0721115411988,"Qunitard St., Pearsall St., Frank Capodanno Blvd.",http://www.nycgovparks.org/parks/R147/,park,10305 -746,Seth Low Playground/ Bealin Square,40.60741900577,-73.986906922506,W. 12 St. bet. Bay Pkwy. and Ave. P,http://www.nycgovparks.org/parks/B100/,park,11204 -747,Laguardia Landing Lights,40.76621676079,-73.88770328810776,23 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/Q393G/,park,11370 -748,St. James Park,40.8658040788,-73.8961123248121,"Jerome Ave., E. 193 St., Creston Ave., E",http://www.nycgovparks.org/parks/X044/,park,10468 -749,Mill Pond Park,40.82469561551,-73.93129436278943,Major Deegan Exwy bet. E. 150 St and E. 153 St,http://www.nycgovparks.org/parks/X344/,park,10451 -750,Meredith Woods,40.59899377221,-74.19340377072457,"Meredith Ave., W. Shore Exwy., Chelsea Creek",http://www.nycgovparks.org/parks/R163/,park,10314 -751,Freeman Garden,40.82957277049,-73.89124453722863,Hoe Ave. bet. Home St. and Freeman St.,http://www.nycgovparks.org/parks/X270/,park,10459 -752,Old Place Creek Park,40.63282829287,-74.19312590958035,"Gulf Ave., Goethals Br. Appr. bet. Western Ave. and Arthur Kill",http://www.nycgovparks.org/parks/R159/,park,10314 -753,Peters Field,40.70528115835,-73.77433588525628,Liberty Ave. bet. 183 St. and 183 Pl.,http://www.nycgovparks.org/parks/Q351/,park,11423 -754,Cambria Playground,40.6887265945,-73.74195624852997,"Francis Lewis Blvd., 121 Ave. bet. 219 St. and 222 St.",http://www.nycgovparks.org/parks/Q339/,park,11411 -755,Hollis Veterans Square,40.71026597791,-73.77142843518415,"Jamaica Ave., Hollis Ave., 187 Pl.",http://www.nycgovparks.org/parks/Q245/,park,11423 -756,Midland Malls,40.71646381514,-73.78431284394776,Midland Pkwy. bet. Surrey Place and Hillside Ave.,http://www.nycgovparks.org/parks/Q030/,park,11432 -757,Grand Slope,40.73494084348,-73.88223700674277,"Kneeland Ave., Grand Ave. bet. Manilla St. and Haspel St.",http://www.nycgovparks.org/parks/Q151/,park,11373 -758,Alameda Malls,40.76409724954,-73.74453299244061,"Alameda Ave. bet. Northern Blvd., Hanford St. and Northern Blvd., 247 St.",http://www.nycgovparks.org/parks/Q262/,park,11362 -759,Reiff Playground,40.71808784171,-73.9012446434414,59 Dr. bet. Fresh Pond Rd. and 63 St.,http://www.nycgovparks.org/parks/Q423/,park,11378 -760,Collyer Brothers Park,40.80846787933,-73.94095712590331,"5 Ave., E. 128 St.",http://www.nycgovparks.org/parks/M305/,park,10027 -761,General Hart Playground,40.74852816886,-73.89688169607504,"Broadway, 37 Ave. bet. 65 St. and 69 St.",http://www.nycgovparks.org/parks/Q067A/,park,11377 -762,Pigeon Paradise,40.74855683901,-73.89662832487748,"Broadway, 69 St., 37 Ave.",http://www.nycgovparks.org/parks/Q067/,park,11377 -763,Heritage Park,40.64098801434,-74.12087634791477,"Richmond Ter. at Tompkins Ct., Kill Van Kull",http://www.nycgovparks.org/parks/R160/,park,10310 -764,Playground 52 LII,40.81512411781,-73.90158526597187,Kelly St bet. Av St John and Leggett Av,http://www.nycgovparks.org/parks/X179/,park,10455 -765,Steinmann Triangle,40.74517218272,-73.90881041140518,"Skillman Ave., Roosevelt Ave. bet. 55 St. and 56 St.",http://www.nycgovparks.org/parks/Q061/,park,11377 -766,Sohncke Square,40.74548706019,-73.90610144080462,"Woodside Ave., 58 St., Roosevelt Ave.",http://www.nycgovparks.org/parks/Q057/,park,11377 -767,Veteran's Square,40.74764513252,-73.86333322632865,"National St., 42 Ave., 102 St.",http://www.nycgovparks.org/parks/Q055/,park,11368 -768,Graniteville Quarry Park,40.6250348695,-74.15301081589939,"Forest Ave. Wilcox Ave., bet. Van Name Ave. and Eunice Pl.",http://www.nycgovparks.org/parks/R150/,park,10303 -769,Major Mark Park,40.71142084762,-73.78813103765194,Hillside Ave. bet. 173 St. and 175 St.,http://www.nycgovparks.org/parks/Q025/,park,11432 -770,Garlinge Triangle,40.72834405034,-73.89082774316519,"Grand Ave., 57 Ave. bet. 72 Pl and Mazeau St.",http://www.nycgovparks.org/parks/Q019/,park,11378 -771,The Queen Elizabeth II September 11th Garden,40.70462457109,-74.00943849246845,"Hanover Sq., Pearl St. and Stone St.",http://www.nycgovparks.org/parks/M212/,park,10005 -772,Abe Lebewohl Park,40.73012511025,-73.98676157203775,E. 10 St. and 2 Ave.,http://www.nycgovparks.org/parks/M188/,park,10003 -773,Harlem River Park,40.80802669412,-73.93460087596726,"Lexington Ave., E. 130 St. to E. 131 St.",http://www.nycgovparks.org/parks/M208C/,park,10037 -774,Allen Street Malls,40.72173502261,-73.9891531845691,"E Houston St, E Broadway",http://www.nycgovparks.org/parks/M004/,park,10002 -775,Playground One,40.71208655598,-73.99771196925718,Madison St. bet. Catherine St. and Oliver St.,http://www.nycgovparks.org/parks/M196/,park,10038 -776,Vito Locascio Field,40.66930591177,-73.84272246194284,"N. Conduit Ave., 149 Ave., Cross Bay Blvd.",http://www.nycgovparks.org/parks/Q095/,park,11417 -777,Woodrow Wilson Triangle,40.81341857528,-73.85803031053408,"Soundview Ave., Underhill Ave., Patterson Ave.",http://www.nycgovparks.org/parks/X065/,park,10473 -778,Fraser Square,40.61968255821,-73.94137651923477,"Kings Highway, Ave. M, E. 34 St. to E. 35 St.",http://www.nycgovparks.org/parks/B173/,park,11234 -779,Greenpoint Playground,40.73562462109,-73.95866350643134,Franklin St. bet. Commerical St. and Dupoint St.,http://www.nycgovparks.org/parks/B043/,park,11222 -780,Butterfly Gardens,40.65986369289,-73.98626727270292,7 Ave. bet. 18 St. and 17 St.,http://www.nycgovparks.org/parks/B255G/,park,11215 -781,Dodgers Triangle,40.61469434675,-74.11954154017475,Dongan Ave. at Hodges Pl.,http://www.nycgovparks.org/parks/R060/,park,10314 -782,Bar and Grill Park,40.70112994803,-73.98780325605382,"York St., through BQE bet. Adams St. and Pearl St.",http://www.nycgovparks.org/parks/B223IB/,park,11201 -783,Sitting Area,40.65100436835,-73.97592445668391,N/B Prospect Exwy. bet. Seeley St. and Greenwood Ave.,http://www.nycgovparks.org/parks/B255K/,park,11218 -784,McKinley Park,40.62677547751,-74.01524018623753,"73 St., Ft. Hamilton Pkwy., 7 Ave.",http://www.nycgovparks.org/parks/B060/,park,11228 -785,Lithuania Square,40.70882816293,-73.95093027922123,"Stagg St., Hewes St., Union Ave.",http://www.nycgovparks.org/parks/B202/,park,11211 -786,Sheridan Triangle,40.90499905761,-73.89660809459158,"Mosholu Ave., Broadway, David Sheridan Plaza",http://www.nycgovparks.org/parks/X060/,park,10471 -787,Pearl St Playground,40.7079386719,-74.00374111207715,Pearl St. bet. Fulton St. and Beekman St.,http://www.nycgovparks.org/parks/M378/,park,10038 -788,Classon Triangle,40.69911344669,-73.96143279695747,"Kent Ave., Classon Ave., Wallabout St.",http://www.nycgovparks.org/parks/B223NB/,park,11211 -789,Turtle Playground,40.74196319087,-73.8269338587308,"Horace Harding Exwy. Sr. Rd. S., 138 St., 61 Rd.",http://www.nycgovparks.org/parks/Q357G/,park,11367 -790,Devanney Triangle,40.85264460181,-73.90465323644139,E. Burnside Ave. bet. Creston Ave. and G,http://www.nycgovparks.org/parks/X129/,park,10453 -791,South Gate Mall,40.67313316052,-73.75866543638791,Southgate Plaza bet. 140 Ave. and 139 Ave.,http://www.nycgovparks.org/parks/Q277/,park,11413 -792,Plaza Lafayette,40.8513754141,-73.94136391242778,"Riverside Dr., W. 181 St. To Haven Ave.",http://www.nycgovparks.org/parks/M061/,park,10033 -793,El Flamboyan Garden,40.81389362141,-73.90578096495109,"Tinton Av, E 150th St and Union Av",http://www.nycgovparks.org/parks/X233A/,park,10455 -794,O'Brien Oval,40.84772733576,-73.90114994571947,E. Tremont Ave. at Valentine Ave. bet. Carter Ave.,http://www.nycgovparks.org/parks/X037/,park,10457 -795,Seaside Wildlife Nature Park,40.54219614399,-74.14227319856263,"Nelson Ave., Tennyson Dr. and Bulkhead Line",http://www.nycgovparks.org/parks/R145/,park,10308 -796,Catherine Slip Malls,40.70927192537,-73.99612263083613,Catherine Slip bet. Cherry St. and South St.,http://www.nycgovparks.org/parks/M178/,park,10038 -797,Abingdon Square,40.73708349257,-74.00558016086472,"Hudson St, 8 Av, W 12 St",http://www.nycgovparks.org/parks/M001/,park,10014 -798,Egbert Triangle,40.62503329193,-74.14487883457547,"Richmond Ave., Forest Ave., and Willowbrook Rd.",http://www.nycgovparks.org/parks/R020/,park,10302 -799,Barone Triangle,40.61993364201,-73.90744345023798,"Ave. U, E. 71 St., Veterans Ave.",http://www.nycgovparks.org/parks/B190/,park,11234 -800,Flatbush Mall,40.62948162876,-73.960276674296,"E. 17 St., South of Ave. H",http://www.nycgovparks.org/parks/B180/,park,11230 -801,Garden Party,40.67396672899,-73.88736814737095,Jerome St. and Glenmore Ave.,http://www.nycgovparks.org/parks/B522/,park,11207 -802,Ewen Park,40.88135997074,-73.90965644470499,"Johnson Av, W 232 St, Riverdale Av",http://www.nycgovparks.org/parks/X019/,park,10463 -803,Joseph Manna Park,40.62590099484,-74.17614474609623,"Forest Ave., Goethals Rd. N., Meeker Ave.",http://www.nycgovparks.org/parks/R127/,park,10303 -804,St. Nicholas - Olive St. Garden,40.71323418861,-73.93893539617332,Olive St. between Powers St. and Devoe St.,http://www.nycgovparks.org/parks/B425/,park,11211 -805,MacLaughlin Playground,40.88815910755,-73.90512615406934,Greystone Av bet. W 236 St and W 240 St,http://www.nycgovparks.org/parks/X224/,park,10471 -806,Flatbush Malls,40.63413885163,-73.96116055481573,E. 17 St. bet. Foster Ave. and Ave. H,http://www.nycgovparks.org/parks/B179/,park,11230 -807,Henry Hudson Park,40.88058808696,-73.91974259523117,"Palisade Av, Kappock St, Independence A",http://www.nycgovparks.org/parks/X080/,park,10463 -808,Estella Diggs Park,40.82906999202,-73.90565830783797,3 Av to Fulton Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X243/,park,10456 -809,Van Cortlandt's Tail,40.88636486559,-73.899431783064,Broadway bet. W 239 St and Van Cortlandt Pa,http://www.nycgovparks.org/parks/X150L/,park,10463 -810,Dahill Triangle,40.61298877568,-73.97493871387397,"Dahill Rd., 24 Ave., 62 St.",http://www.nycgovparks.org/parks/B175/,park,11204 -811,Gouverneur Morris Triangle,40.80461244398,-73.91284574336954,"Bruckner Blvd., Jackson Ave., E. 138 St.",http://www.nycgovparks.org/parks/X139/,park,10454 -812,Phyllis Post Goodman Park,40.88051959022,-73.9170937251771,Kappock St at the Henry Hudson Pkwy,http://www.nycgovparks.org/parks/X110B/,park,10463 -813,Ahearn Park,40.71471132298,-73.98365299179076,"Grand St, E Broadway and Willet St",http://www.nycgovparks.org/parks/M002/,park,10002 -814,Walton Walk,40.84535191291,-73.91193267835364,Cross Bronx Exwy bet. Townsend Av and Walton Av,http://www.nycgovparks.org/parks/X148C6/,park,10453 -815,Harris Park,40.87692228882,-73.88995334913588,Paul Ave. - Goulden Ave. bet. Bedford Par,http://www.nycgovparks.org/parks/X136/,park,10468 -816,Broad Channel Veteran's Park,40.61024670641,-73.8188135085339,Cross Bay Blvd. bet. E. 4 Rd. and E. 6 Rd.,http://www.nycgovparks.org/parks/Q225/,park,11693 -817,Tudor Malls,40.67426760352,-73.85048341833254,133 Ave. bet. 82 St. and 86 St.,http://www.nycgovparks.org/parks/Q177/,park,11417 -818,Drumm Triangle,40.6992367164,-73.88830572126575,"Cypress Hills St., Cooper Ave., 65 Pl.",http://www.nycgovparks.org/parks/Q139/,park,11385 -819,Lefferts Playground,40.66515811335,-73.8207699164176,N. Conduit Ave. bet. Lefferts Blvd. and 122 St.,http://www.nycgovparks.org/parks/Q096E/,park,11420 -820,Clemens Triangle,40.70009250663,-73.90583003293663,"Myrtle Ave., Cypress Ave., Cornelia St.",http://www.nycgovparks.org/parks/Q056/,park,11385 -821,Steuben Playground,40.69695233754,-73.96344411176511,"Flushing Ave., Steuben St., Williamsburg Pl.",http://www.nycgovparks.org/parks/B221/,park,11205 -822,Calvary Monument,40.73090468938,-73.92969252236846,"First Calvery, Greenpoint Ave., Gale St.",http://www.nycgovparks.org/parks/Q224/,park,11101 -823,Macri Triangle,40.71418132145,-73.95178383710152,"Metropolitan, Union, Meeker Avs",http://www.nycgovparks.org/parks/B223S/,park,11211 -824,Gasoline Alley,40.86026357032,-73.91441859001917,"Major Deegan Exwy, Cedar Ave., W. Fordha",http://www.nycgovparks.org/parks/X150D/,park,10468 -825,Townsend Walk,40.84584198115,-73.91265543859022,Cross Bronx Exwy bet. Townsend Av and Jerome Av,http://www.nycgovparks.org/parks/X148C4/,park,10453 -826,Featherbenches,40.8453405335,-73.91423095187697,Fetherbed La bet. Davidson Av and Jerome Av,http://www.nycgovparks.org/parks/X148C1/,park,10452 -827,Goble Playground,40.84379729532,-73.91668649863304,Goble Pl bet. Inwood Av and Macombs Rd,http://www.nycgovparks.org/parks/X114/,park,10452 -828,Hancock Park,40.80968275422,-73.95326774429552,"St Nicholas Av, Manhattan Av, W 123 St",http://www.nycgovparks.org/parks/M034/,park,10027 -829,Hoe Garden,40.82250148389,-73.89026548247787,Hoe Ave. bet. Aldus St. and Bruckner Blvd.,http://www.nycgovparks.org/parks/X241/,park,10459 -830,Isle Of Meadows,40.57959078792,-74.20254412410371,Arthur Kills Near Fresh Kills Landfill,http://www.nycgovparks.org/parks/R151/,park,10314 -831,Evergreen Park,40.69829949197,-73.89624285318602,St Felix Ave. bet. Seneca Ave. and 60 Pl.,http://www.nycgovparks.org/parks/Q302/,park,11385 -832,Kingdom Pond Park,40.5263301732,-74.18464800270051,Kingdom Ave. bet. Hylan Blvd. and Jansen St.,http://www.nycgovparks.org/parks/R138/,park,10312 -833,Shooters Island,40.64163985783,-74.15511140866296,Kill Van Kull and Newark Bay,http://www.nycgovparks.org/parks/R128/,park,10303 -834,Bath Beach Park,40.60245783222,-74.0101718475332,Shore Pkwy. bet. Bay 14 St. and Bay 16 St.,http://www.nycgovparks.org/parks/B164/,park,11214 -835,Jerome Playground South,40.84489616478,-73.91372888545921,S/s Cross Bronx Exwy bet. Townsend Av and Jerome Av,http://www.nycgovparks.org/parks/X148C7/,park,10452 -836,Triangle,40.66870147269,-73.87748842605443,"New Lots Ave., Dumont Ave., Atkins Ave.",http://www.nycgovparks.org/parks/B155/,park,11208 -837,Elton Playground,40.66549117563,-73.88041233354778,Elton St. bet. New Lots Ave. and Hegeman Ave.,http://www.nycgovparks.org/parks/B149A/,park,11208 -838,Siedenburg Park,40.55774428094,-74.14344557288587,"Greaves Ave., Dewey Ave. and Evergreen St.",http://www.nycgovparks.org/parks/R121/,park,10308 -839,Hutton Triangle,40.85220651379,-73.89008304568574,E. 182 St. at Quarry Rd. and Arthur Ave.,http://www.nycgovparks.org/parks/X069/,park,10457 -840,Lot,40.70028973896,-73.98966309745681,"Adam St., Cadman Plaza East bet. Prospect St. and Red Cross Pl.",http://www.nycgovparks.org/parks/B113D/,park,11201 -841,New Dorp Park,40.56943233466,-74.11814392710342,"8 St., bet. Allison Ave. and Beach Ave.",http://www.nycgovparks.org/parks/R107/,park,10306 -842,Decatur Playground,40.68122671769,-73.93612549033715,"Decatur St., Macdonough St. bet. Lewis Ave. and Marcus Garvey Blvd.",http://www.nycgovparks.org/parks/B215/,park,11233 -843,Gravesend Triangle,40.59513685085,-73.96929270370008,"Gravesend Neck Rd., E. 2 St., Ave. V",http://www.nycgovparks.org/parks/B213/,park,11223 -844,North Shore Esplanade,40.64693816076,-74.08901242966652,Richmond Ter. to Bank St. at Jersey St.,http://www.nycgovparks.org/parks/R083/,park,10301 -845,Harmony Triangle,40.70338691773,-73.95039079809928,"Middleton St., Harrison Ave., Union Ave.",http://www.nycgovparks.org/parks/B194/,park,11206 -846,Sixteen Lindens Triangle,40.58455382562,-73.95264083168026,"E. 16 St., Shore Pkwy., Bay Ct.",http://www.nycgovparks.org/parks/B166E/,park,11235 -847,Annadale Green,40.54165463938,-74.17754923637835,"Annadale Rd., Jefferson Blvd., N. Railroad St.",http://www.nycgovparks.org/parks/R080/,park,10312 -848,Zion Triangle,40.66866387643,-73.91838568724249,"Pitkin Ave., E. New York Ave. bet. Crafton St. and Legon St.",http://www.nycgovparks.org/parks/B116/,park,11212 -849,Cohn Triangle,40.70742374152,-73.96454467846301,Bedford Ave. at Division Ave.,http://www.nycgovparks.org/parks/B115/,park,11211 -850,Bradys Pond Park,40.60412847635,-74.07791983658133,"SI Expressway, Hylan Blvd., Narrows Rd. S.",http://www.nycgovparks.org/parks/R075G/,park,10305 -851,Von Briesen Park,40.60787505046,-74.05679295042127,"Tompkins Ave., Bay St. bet. School Rd., North Rd.",http://www.nycgovparks.org/parks/R059/,park,10305 -852,Liotti Ikefugi Playground,40.63860535599,-74.08391388491677,"Winter Ave., bet. Bismark Ave. and Westervelt Ave.",http://www.nycgovparks.org/parks/R037/,park,10301 -853,Bobbie Lewis Jr. Playground,40.63669457748,-74.16025193367476,Harbor Rd. at Richmond Terr.,http://www.nycgovparks.org/parks/R036/,park,10303 -854,Memorial Gore,40.71480680679,-73.94226119795081,"Metropolitan Ave., Maspeth Ave., bet. Humbolt St. and Bushwick Ave.",http://www.nycgovparks.org/parks/B062/,park,11211 -855,Ciccarone Park,40.8560640561,-73.88624423732497,E 188 St bet. Arthur Av and Hughes Av,http://www.nycgovparks.org/parks/X102/,park,10458 -856,Murphy Triangle,40.85108692291,-73.89349875550805,E. 181 St. at Third Ave. and Quarry Rd.,http://www.nycgovparks.org/parks/X036/,park,10457 -857,Chief Dennis L. Devlin Park,40.83215036213,-73.85437304470948,"Olmstead Av, Ellis Av, N/B Cross Bronx Exwy Service Rd",http://www.nycgovparks.org/parks/X148M/,park,10462 -858,John E. White Park,40.6071995549,-74.06327332141916,"High St., Lyman Ave., Bay St. and Summer St.",http://www.nycgovparks.org/parks/R012/,park,10305 -859,Hero Park,40.63030556437,-74.08694360178286,"Victory Blvd., Louis St., Howard Ave.",http://www.nycgovparks.org/parks/R011/,park,10301 -860,Planeview Park,40.76707424544,-73.88472344576967,23 Ave. bet. 85 St. and Ditmars Blvd.,http://www.nycgovparks.org/parks/Q393I/,park,10021 -861,Pugsley Creek Park,40.81615351856,-73.8516848947621,"White Plains Rd, Lacombe & Soundview Aves, Pugsley Creek",http://www.nycgovparks.org/parks/X088/,park,10473 -862,Brooklyn Museum,40.67187988961,-73.96451485138267,Eastern Pkwy. at Washington Ave.,http://www.nycgovparks.org/parks/B048/,park,11238 -863,John Paul Jones Park,40.61181455603,-74.03430375819211,"101 St., Shore Pkwy. bet. 4 Ave. and Ft. Hamilton Pkwy.",http://www.nycgovparks.org/parks/B035/,park,11209 -864,Edgemere Urban Renewal Park,40.59468753015,-73.77653112491065,Beach Channel Dr. bet. Beach 46 St. and Beach 45 St.,http://www.nycgovparks.org/parks/Q484/,park,11691 -865,Leonard Square,40.76407499649,-73.80954401692945,"Northern Blvd., Roosevelt Ave. bet. 155 St. and 156 St.",http://www.nycgovparks.org/parks/Q214/,park,11354 -866,Richmond Terrace Park,40.63932354665,-74.15291632841455,Richmond Ter. bet. Van Pelt Ave. and Van Name Ave.,http://www.nycgovparks.org/parks/R167/,park,10303 -867,Westwood Park,40.60563524047,-74.14285371089184,"SI Expressway, Woodward Ave., Wooley Ave. and Westwood Ave.",http://www.nycgovparks.org/parks/R075B/,park,10314 -868,Keltch Park,40.84038831454,-73.91775629334222,Jerome Av bet. Macombs Rd and Elliot Pl,http://www.nycgovparks.org/parks/X058/,park,10452 -869,North Shore Esplanade,40.64688214735,-74.07921196252838,Richmond Terr. from St Peter's Pl. to Stuyvesant Pl.,http://www.nycgovparks.org/parks/R066/,park,10301 -870,Veterans Triangle,40.65691905912,-73.90371887405493,"Hegeman Ave., New Lots Ave. bet. Watkins St. and Mother Gaston Blvd.",http://www.nycgovparks.org/parks/B027/,park,11212 -871,Cuyler Gore Park,40.6859597297,-73.97153804240897,"Carlton Ave., Fulton St., Green Ave.",http://www.nycgovparks.org/parks/B026/,park,11238 -872,William Simmons Community Garden Club,40.70173682842,-73.78272509216917,173 St. bet. 106 Ave. and 107 Ave.,http://www.nycgovparks.org/parks/Q121A/,park,11433 -873,Johnny Hartman Square,40.82406373902,-73.94865741277704,"Amsterdam Av, W 143 St and Hamilton Pl",http://www.nycgovparks.org/parks/M040/,park,10031 -874,La Perla Garden,40.79808703869,-73.96324214187145,W. 105 St. bet. Columbus Ave. and Manhattan Ave.,http://www.nycgovparks.org/parks/M373/,park,10025 -875,Dias Y Flores,40.72918418956,-73.9797664556247,E. 13 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M337/,park,10009 -876,Bradhurst Ave Garden,40.82754905791,-73.93920001356994,Bradhurst Ave. and W. 152 St.,http://www.nycgovparks.org/parks/M333/,park,10039 -877,Harris Garden,40.82988751339,-73.94194196115289,W. 153 St. and St Nicholas Ave.,http://www.nycgovparks.org/parks/M322/,park,10032 -878,Fort Hill Park,40.64079988036,-74.08140685797821,Sherman Ave. bet. Fort Pl. and Hendricks Ave.,http://www.nycgovparks.org/parks/R158/,park,10301 -879,Laredo Avenue Parcel,40.54900442798,-74.17349351132376,"Annadale Rd. bet. Laredo Ave. and Lamoka Ave., Memphis Ave.",http://www.nycgovparks.org/parks/R161/,park,10312 -880,Olmsted-Beil House Park,40.53167426421,-74.15777288781393,Orchard La. S. bet. King St. and Hylan Blvd.,http://www.nycgovparks.org/parks/R162/,park,10312 -881,Schneider Sampson Square,40.83623968406,-73.82566950303566,Baisley Ave. bet. Hollywood Ave. and Bruckner Blvd.,http://www.nycgovparks.org/parks/X049/,park,10461 -882,Edgecombe Park,40.82654626189,-73.94187403533974,Edgecombe Ave. and W. 150 St.,http://www.nycgovparks.org/parks/M319B/,park,10031 -883,The Creative Little Garden,40.7245169645,-73.98263473606178,"E. 6 St., bet. Ave. A and Ave. B",http://www.nycgovparks.org/parks/M315/,park,10009 -884,5th St Slope Garden,40.72372542312,-73.98077545284994,E. 5 St. at Ave. C,http://www.nycgovparks.org/parks/M313A/,park,10009 -885,6BC Botanical Garden,40.72391227886,-73.9804655535945,"E. 5 St. and E. 6 St., Ave. B and Ave. C",http://www.nycgovparks.org/parks/M313/,park,10009 -886,Green Oasis and Gilbert's Garden,40.72400364666,-73.97698288808616,E. 8 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M311/,park,10009 -887,Firemen's Memorial Garden,40.72433152752,-73.97776205372425,E. 8 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M310/,park,10009 -888,Margrichante Garden,40.81357871395,-73.9434157261838,W. 133 St. bet. Lenox Ave. and Adam C Powell Blvd.,http://www.nycgovparks.org/parks/M297A/,park,10030 -889,East River Esplanade,40.74669767209,-73.9688026206353,FDR Dr. bet. E. 36 St. and E. 41 St.,http://www.nycgovparks.org/parks/M289/,park,10016 -890,Sheridan Square Viewing Garden,40.7329662078,-74.00192654219055,"Washington Pl., W. 4 St., Barrow St.",http://www.nycgovparks.org/parks/M287/,park,10014 -891,Clinton Community Garden,40.76275832903,-73.99205855629361,"W. 47 St., W. 48 St., 9 Ave., 10 Ave.",http://www.nycgovparks.org/parks/M281/,park,10036 -892,Tramway Plaza,40.7607049914,-73.96443525493703,Second Ave. bet. E. 59 St. to E. 60 St.,http://www.nycgovparks.org/parks/M280/,park,10022 -893,Duarte Square,40.72210890708,-74.0055067518635,"Ave. Of Americas, Canal St. and Grand St.",http://www.nycgovparks.org/parks/M279/,park,10013 -894,Thomas J. Cuite Park,40.65426367445,-73.97846772524686,19 St. bet. 11 Ave. and Seeley St.,http://www.nycgovparks.org/parks/B255H/,park,11218 -895,Seeley Park,40.65342464182,-73.97774350618626,S/B Prospect Exwy. bet. Seeley St. and Vanderbilt St.,http://www.nycgovparks.org/parks/B255J/,park,11218 -896,97th Street Block Association,40.75620091065,-73.87126192104036,97 St. bet. Northern Blvd. and 34 Ave.,http://www.nycgovparks.org/parks/Q495/,park,11368 -897,Carlos R. Lillo Park,40.77056367328,-73.89338129903841,"21 Ave., 20 Ave., bet. 76 St. and 77 St.",http://www.nycgovparks.org/parks/Q491/,park,11370 -898,Locust Manor Civic Association,40.6835520048,-73.77361044340488,"120 Ave., Victoria Dr. bet. 171 St. and 171 St.",http://www.nycgovparks.org/parks/Q490/,park,11434 -899,George Eagle Carr Community Garden,40.70369716598,-73.80684379147954,148 St. bet. 89 Ave. and 90 Ave.,http://www.nycgovparks.org/parks/Q488/,park,11435 -900,Block Association #81,40.69081387844,-73.80368540246127,Inwood St. bet. Shore Ave. and Lakewood Ave.,http://www.nycgovparks.org/parks/Q487/,park,11435 -901,Corona Health Sanctuary,40.74388692642,-73.85822959385838,"Corona Ave. bet. 104 St. and 106 St., 50 Av.",http://www.nycgovparks.org/parks/Q483/,park,11368 -902,Manuel De Dios Unanue Triangle,40.74766640756,-73.88270284965012,"Roosevelt Ave., 83 St., Baxter Ave.",http://www.nycgovparks.org/parks/Q462/,park,11373 -903,Kimlau Square,40.71325478355,-73.99803558081696,"Chatham Sq., Oliver St. and E. Broadway",http://www.nycgovparks.org/parks/M246/,park,10038 -904,Clark Playground,40.81338504348,-73.92103020994116,"3 Ave. bet. E, 145 St. and E. 144 St.",http://www.nycgovparks.org/parks/X200/,park,10454 -905,Anchorage Plaza,40.70143730614,-73.98979119127117,"Fulton St., York St., Washington St. and Prospect St.; Brooklyn Bridge",http://www.nycgovparks.org/parks/B223I/,park,11201 -906,Samuel H. Young Park,40.84143531302,-73.83858247623101,Westchester Ave. bet. Waters Ave. and E. Tremont Ave.,http://www.nycgovparks.org/parks/X101A/,park,10461 -907,LaGuardia Landing Lights,40.76569365693,-73.88751791493587,Astoria Blvd. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/Q393F/,park,11370 -908,Ditmars Playground,40.77190779694,-73.90652123357675,Steinway St. bet. 23 Ave. and Ditmars Blvd.,http://www.nycgovparks.org/parks/Q385/,park,11105 -909,Freedom Square Playground,40.72294653442,-73.82002243372929,"Vleigh Pl., Main St. bet. 73 Ter. and 76 Ave.",http://www.nycgovparks.org/parks/Q370/,park,11367 -910,Barrier Playground,40.73633998435,-73.85406291417208,"Horace Harding Exwy. Sr. Rd. S., 62 Ave. bet. 102 St. and Yellowstone Blvd.",http://www.nycgovparks.org/parks/Q357B01/,park,11375 -911,Strippoli Square,40.75708917875,-73.90748556731788,"31 Ave., 51 St., 54 St.",http://www.nycgovparks.org/parks/Q355/,park,11377 -912,Redfern Playground,40.61118451042,-73.7487021771888,"Beach 12 St., Redfern Ave.",http://www.nycgovparks.org/parks/Q345/,park,11691 -913,Crosson Park,40.74284649598,-73.89579162165538,"Woodside Ave., 69 St., the BQE",http://www.nycgovparks.org/parks/Q341F/,park,11377 -914,Sherry Dog Run,40.74114745457,-73.89895098255093,Queens Blvd. bet. 65 Pl. and the BQE,http://www.nycgovparks.org/parks/Q341C/,park,11377 -915,Maurice A FitzGerald Playground,40.69025646677,-73.83911008399201,106 St. bet. Atlantic Ave. and 94 Ave.,http://www.nycgovparks.org/parks/Q337/,park,11416 -916,Judge Moses Weinstein Playground,40.7174843374,-73.82144926696974,"Union Turnpike, Vleigh Pl., 141 St.",http://www.nycgovparks.org/parks/Q336/,park,11367 -917,Gladys Warren Triangle,40.70740390906,-73.76415523695596,"Hollis Ave., 104 Ave., 194 St.",http://www.nycgovparks.org/parks/Q325/,park,11412 -918,Ehrenreich-Austin Playground,40.7150872966,-73.8361202683802,Austin St. bet. 76 Ave. and 76 Dr.,http://www.nycgovparks.org/parks/Q304/,park,11375 -919,Lt. Frank McConnell Park,40.69403411998,-73.82697299551421,"94 Ave., Atlantic Ave. bet. Leffers Blvd. and 120 St.",http://www.nycgovparks.org/parks/Q217/,park,11419 -920,Patricia A. Brackley Park,40.58125567462,-73.84586790695418,"Beach Channel Dr., Cronston Ave., Beach 124 St.",http://www.nycgovparks.org/parks/Q275/,park,11694 -921,Fresh Meadows Park,40.74069383131,-73.78458815683106,Horace Harding Exwy. Sr. Rd. S. bet. 188 St. and 190 St.,http://www.nycgovparks.org/parks/Q223/,park,11365 -922,Hoover - Manton Playgrounds,40.7124164135,-73.8226115068259,"Manton St. bet. 83 Ave., 134 St. and Main St.",http://www.nycgovparks.org/parks/Q220G/,park,11435 -923,Maple Grove Park,40.71163830369,-73.82356817380042,Hoover Ave. bet. Queens Blvd. and 132 St.,http://www.nycgovparks.org/parks/Q220F/,park,11415 -924,Playground One Forty,40.67588444978,-73.80158258970917,"Van Wyck Exwy. Sr. Rd. E., 140 St. bet. 120 Ave. and Rockaway Blvd.",http://www.nycgovparks.org/parks/Q220E/,park,11436 -925,Dr. Charles R. Drew Park,40.68017001748,-73.8018725240209,"Van Wyck Exwy. Sr. Rd. E., 140 St. bet. 115 Ave. and 116 Ave.",http://www.nycgovparks.org/parks/Q220C/,park,11436 -926,Lawrence Triangle,40.75605171401,-73.81569375848434,"Parsons Blvd., 147 St. bet. Elm Ave. and 45 Ave.",http://www.nycgovparks.org/parks/Q209/,park,11355 -927,Jackson Mill Green,40.76617992201,-73.87562696383199,"94 St., Jackson Mill Rd. bet. 23 Ave. and 24 Ave.",http://www.nycgovparks.org/parks/Q186/,park,11369 -928,Grand Canal Court,40.72236375079,-74.00485666946543,"Thompson St., Canal St., Ave. of the Americas",http://www.nycgovparks.org/parks/M222/,park,10013 -929,George Washington Carver Botanical Garden,40.69251673437,-73.79439428703527,156 St. bet. 109 Ave. and 110 Ave.,http://www.nycgovparks.org/parks/Q489/,park,11433 -930,Myrtle Avenue Clemens Triangle,40.70015098122,-73.90671445236775,"Myrtle Ave., Cypress Ave., Putnam Ave.",http://www.nycgovparks.org/parks/Q124/,park,11385 -931,One Room Schoolhouse Park,40.76310986966,-73.87953588633374,Astoria Blvd. bet. 90 St. and 89 St.,http://www.nycgovparks.org/parks/Q116/,park,11369 -932,Flushing Greens,40.7634381672,-73.82979219391672,Northern Blvd Bet. Linden Pl. and Union St.,http://www.nycgovparks.org/parks/Q100/,park,11354 -933,Notorious LIC Park,40.74174182262,-73.95139649191465,50 Ave. bet. 11 St. and 11 Pl.,http://www.nycgovparks.org/parks/Q360U/,park,11101 -934,Gemini Fields,40.67049381576,-73.84954704782143,"S. Conduit Ave., Linden Blvd., 149 Ave., bet. 79 St. and 85 St.",http://www.nycgovparks.org/parks/Q094D/,park,11414 -935,Veterans Plaza,40.75870545123,-73.87465994738922,"Jackson Mill Rd., 32 Ave. bet. 93 St. and 94 St.",http://www.nycgovparks.org/parks/Q080/,park,11369 -936,Short Triangle,40.74609783391,-73.9453269448861,"Jackson Ave., 45 Rd., 23 St.",http://www.nycgovparks.org/parks/Q072/,park,11101 -937,Triangle 90,40.74828456468,-73.87643341122411,"Elmhurst Ave., Roosevelt Ave., 90 St., Case St.",http://www.nycgovparks.org/parks/Q068/,park,11373 -938,Chappetto Square,40.77487724673,-73.92192580261036,Hoyt Ave. bet. 21 St. and 23 St.,http://www.nycgovparks.org/parks/Q066H/,park,11102 -939,Sitting Area,40.7756080534,-73.92296655250053,Hoyt Ave. bet. 19 St. and 21 St.,http://www.nycgovparks.org/parks/Q066G/,park,11102 -940,Hoyt Playground,40.77164916253,-73.91639421872728,Hoyt Ave. North bet. 29 St. and 31 St.,http://www.nycgovparks.org/parks/Q066F/,park,11102 -941,Triborough Bridge Playground E,40.77291990289,-73.92048217790372,"Hoyt Ave., bet. Crescent St. and 26 St.",http://www.nycgovparks.org/parks/Q066E/,park,11102 -942,Triborough Bridge Playground C,40.77401856926,-73.92203078403303,Hoyt Ave. bet. 23 St. and 24 St.,http://www.nycgovparks.org/parks/Q066C/,park,11102 -943,Studley Triangle,40.76233553387,-73.80384370023768,"162 St., Northern Blvd., Crocheron Ave.,",http://www.nycgovparks.org/parks/Q213/,park,11358 -944,Rainey Park,40.76750232546,-73.94052498544892,Vernon Blvd. bet. 33 Rd. and 34 Ave.,http://www.nycgovparks.org/parks/Q048/,park,11106 -945,Proctor-Hopson Circle,40.69778693452,-73.78617328376548,"Merrick Blvd., 169 Pl., 108 Rd.",http://www.nycgovparks.org/parks/Q043/,park,11433 -946,Wegener Park,40.55188875193,-74.17552907030266,"Drumgoole Rd. E., Annadale Rd., Genesee Ave.",http://www.nycgovparks.org/parks/R101/,park,10312 -947,Ocean Breeze Park,40.57954208877,-74.07780510132841,"Quintard St. and Mason Ave, Seaside Blvd., (Father Capodanno Blvd.)",http://www.nycgovparks.org/parks/R149/,park,10305 -948,Blake Hobbs Playground,40.7892644795,-73.94364304666648,E. 102 St. To E. 104 St. and 2 Ave.,http://www.nycgovparks.org/parks/M214/,park,10029 -949,Beach Channel Park,40.58267325542,-73.8391326129929,Beach Channel Dr. bet. B. 117 St. and B. 124 St.,http://www.nycgovparks.org/parks/Q028/,park,11694 -950,Nautilus Playground,40.57161058975,-73.99511484462207,"Public Beach, W. 29 St. and W. 32 St.",http://www.nycgovparks.org/parks/B268/,park,11224 -951,John V. Lindsay East River Park,40.71055222263,-73.98037777399468,"Montgomery St. To E. 12 St., FDR Drive",http://www.nycgovparks.org/parks/M144/,park,10002 -952,Bill Bojangles Robinson Playground,40.82535683101,-73.93708260848376,"W. 150 St., W/s 7 Ave.",http://www.nycgovparks.org/parks/M138/,park,10039 -953,David J O'Connell Square,40.67664238384,-73.82052879394212,"Rockaway Blvd., 115 Ave. bet. 117 St. and 118 St.",http://www.nycgovparks.org/parks/Q203/,park,11420 -954,Harlem River Park,40.80352366731,-73.93085595061291,E. 127 St. and Harlem River Drive,http://www.nycgovparks.org/parks/M208G/,park,10035 -955,Harlem River Park,40.80384752985,-73.93127291047392,"E. 127 St., 2 Ave., and Harlem River Drive",http://www.nycgovparks.org/parks/M208F/,park,10035 -956,Crack Is Wack Playground,40.80491104723,-73.9319261246103,"E. 127 St., 2 Ave., and Harlem River Drive",http://www.nycgovparks.org/parks/M208E/,park,10035 -957,Martin Luther King Triangle,40.81094598295,-73.9029487010649,Austin Pl. at E. 149 St.,http://www.nycgovparks.org/parks/X063/,park,10455 -958,Ryan Triangle,40.81552347556,-73.92453850603883,"E. 144 St., E. 143 St., Morris Ave.",http://www.nycgovparks.org/parks/X043/,park,10451 -959,Wald Playground,40.71940900765,-73.9767598668579,E. Houston St. and FDR Dr.,http://www.nycgovparks.org/parks/M201/,park,10009 -960,Abraham Lincoln Playground,40.81184552631,-73.93682693707335,5 Ave. and E. 135 St.,http://www.nycgovparks.org/parks/M193/,park,10037 -961,Police Officer Edward Byrne Park,40.6671762521,-73.80549146937769,"N. Conduit Ave., 135 Ave. bet. 130 Pl. and 134 St.",http://www.nycgovparks.org/parks/Q092/,park,11420 -962,Washington Square Park,40.72966821434,-73.99660685351029,"5 Ave, Waverly Pl., W. 4 St. and Macdougal St.",http://www.nycgovparks.org/parks/M098/,park,10011 -963,Allison Pond Park,40.63827197904,-74.10187657079348,"Prospect Ave., N Randall Ave. and Brentwood Ave.",http://www.nycgovparks.org/parks/R052/,park,10301 -964,Lt. Wm. Tighe Triangle,40.86568705246,-73.92774226568335,"Riverside Dr., Dyckman St. and Seaman Ave.",http://www.nycgovparks.org/parks/M180/,park,10034 -965,City Island Wetlands,40.84752306408,-73.79154584261555,"Bay St, Tier St, Echester Bay",http://www.nycgovparks.org/parks/X279/,park,10464 -966,Major General John R Brown Triangle,40.8694892827,-73.90436610153623,W. Kingsbridge Rd. and Sedgwick Ave.,http://www.nycgovparks.org/parks/X079/,park,10463 -967,Cherry Clinton Playground,40.71112717378,-73.98655499326335,Corner of Cherry St. and Clinton St.,http://www.nycgovparks.org/parks/M171/,park,10002 -968,Fred Samuel Playground,40.81729786641,-73.93881087687468,"Lenox Ave., W. 139 St. To W. 140 St.",http://www.nycgovparks.org/parks/M160/,park,10030 -969,Hot Spot Tot Lot,40.63068157909,-73.9567450925584,Campus Rd. bet. E. 21 St. and Ocean Ave.,http://www.nycgovparks.org/parks/B212/,park,11210 -970,Heckscher Playground,40.69537230166,-73.91761203826853,Linden St. bet. Central Ave. and Wilson Ave.,http://www.nycgovparks.org/parks/B139/,park,11221 -971,Clumber Corner,40.70140111396,-73.98958343495762,"BQE, Prospect St. bet. Washington St. and Adams St.",http://www.nycgovparks.org/parks/B223IA/,park,11201 -972,Vernam Barbadoes Peninsula,40.59226697736,-73.80399504512003,"Amstel Blvd., Jamaica Bay",http://www.nycgovparks.org/parks/Q472/,park,11692 -973,Brooklyn Heights Promenade,40.69554257163,-73.99807135309169,BQE bet. Remsen St. and Montague St.,http://www.nycgovparks.org/parks/B233DD/,park,11201 -974,Mt. Carmel Triangle,40.7158919458,-73.95183615887888,"Union Ave., Meeker Ave., Jackson St.",http://www.nycgovparks.org/parks/B226/,park,11211 -975,Forest Mall,40.6307630621,-74.09055170652667,Forest Ave. bet. Haven Esplanade and Duer La.,http://www.nycgovparks.org/parks/R021/,park,10301 -976,Avenue R Mall,40.60495375985,-73.96524813808884,Ave. R from E. 7 St. To Coney Island Ave.,http://www.nycgovparks.org/parks/B184/,park,11223 -977,Arbor Place,40.69602817787,-73.98043580838919,"Tillary St., Park Ave., Navy St.",http://www.nycgovparks.org/parks/B223MA/,park,11201 -978,Catholic War Veterans Square,40.67588080814,-73.81617350716965,"Rockaway Blvd. 116 Ave., 122 St.",http://www.nycgovparks.org/parks/Q148/,park,11420 -979,Pvt. Sonsire Triangle,40.71828618172,-73.95241848162225,"Union Ave., N. 11 St. and Roebling St.",http://www.nycgovparks.org/parks/B196/,park,11211 -980,Badame Sessa Triangle,40.71715135024,-73.94825476732194,"Leonard St., Withers St., Meeker Ave.",http://www.nycgovparks.org/parks/B223V/,park,11211 -981,Taylor-Soundview Block Assoc. Garden,40.81710361026,-73.86141310757226,Randal Ave. bet. Soundview Ave. and Thieriot Ave.,http://www.nycgovparks.org/parks/X325/,park,10473 -982,Miracle Garden,40.84268088206,-73.88749752664867,Marmion Av bet. Fairmount Pl and Elsmere Pl,http://www.nycgovparks.org/parks/X329/,park,10460 -983,Claremont Park,40.83722932758,-73.90826820373813,"Clay Ave., Anthony Ave. bet. Mount Eden Pkwy. and E. 170 St",http://www.nycgovparks.org/parks/X008/,park,10457 -984,Vietnam Veterans Plaza,40.70216497414,-74.00998903119358,N/S South St bet. Broad St and Old Slip,http://www.nycgovparks.org/parks/M046/,park,10004 -985,James Forten Playground,40.67648312083,-73.9654948142079,Underhill Ave. bet. Prospect Pl. and Park Pl.,http://www.nycgovparks.org/parks/B161/,park,11238 -986,Sixteen Oaks Grove,40.7582180783,-73.93853846452424,"37 Ave., 14 St., 21 St.",http://www.nycgovparks.org/parks/Q284/,park,11101 -987,American Triangle,40.7483089603,-73.8633642537271,"41 Av, 102 St, National Av",http://www.nycgovparks.org/parks/Q173/,park,11368 -988,MacDonald Park,40.7216936272,-73.84528369921858,Queens Blvd. bet. Yellowstone Blvd. and 70 Rd.,http://www.nycgovparks.org/parks/Q207/,park,11375 -989,Colonel David Marcus Playground,40.60937433005,-73.96917560100601,Ave. P bet. E. 4 St. and Ocean Pkwy.,http://www.nycgovparks.org/parks/B128/,park,11230 -990,Amundsen Circle,40.56433545065,-74.13092210196606,"Amboy Rd., Clarke Ave., and Savoy St.",http://www.nycgovparks.org/parks/R009/,park,10306 -991,Abe Lebewohl Triangle,40.73005920292,-73.98785628567128,E. 10 St. and Stuyvesant Pl.,http://www.nycgovparks.org/parks/M188A/,park,10003 -992,Vidalia Park,40.84386799816,-73.88061462489688,E. 180 St. bet. Daly Ave. and Vyse Ave.,http://www.nycgovparks.org/parks/X266/,park,10460 -993,Mosaic Success Garden,40.84025023969,-73.92537678297309,Ogden Av bet. W 169 St and W 170 St,http://www.nycgovparks.org/parks/X275/,park,10452 -994,Merriam Playground,40.8403991689,-73.92643967756395,W. 168 St. bet. Dr. MLK Jr. Blvd. and Merriam Ave.,http://www.nycgovparks.org/parks/X153/,park,10452 -995,McLaughlin Park,40.69672526852,-73.98514060716049,"Jay St., Bridge St. bet. Tillary St. and Cathedral Pl.",http://www.nycgovparks.org/parks/B061/,park,11201 -996,Kelly Park Playground,40.60362571763,-73.95692550408418,Ave. S bet. E. 14 St. and E. 15 St.,http://www.nycgovparks.org/parks/B051/,park,11229 -997,Brower Park,40.67471537488,-73.9429028809978,"St. Mark's Ave., Park Pl. bet. Brooklyn Ave. and Kingston Ave.",http://www.nycgovparks.org/parks/B012/,park,11213 -998,Betsy Head Park,40.6622214108,-73.91189056137189,"Livonia,Dumont,Hopkinson,Blake Aves, Strauss St",http://www.nycgovparks.org/parks/B008/,park,11212 -999,Kelly Park Playground,40.60491330351,-73.95671380774951,"Ave. S, Moore Pl. bet. E. 16 St. and E. 17 St.",http://www.nycgovparks.org/parks/B157/,park,11229 -1000,Astoria Health Playground,40.76795838129,-73.93241824208202,14 St. bet. 31 Ave. and 31 Dr.,http://www.nycgovparks.org/parks/Q123/,park,11106 -1001,Veterans Grove,40.74295556376,-73.87763050790115,"Whitney Ave., 43 Ave., bet. Judge St. and Ketcham St.",http://www.nycgovparks.org/parks/Q013/,park,11373 -1002,Spuyten Duyvil Shorefront Park,40.8789441761,-73.9210386034602,"Palisade Av, Johnson Av, Edsall Ave",http://www.nycgovparks.org/parks/X090/,park,10463 -1003,Cooper Triangle,40.728476397,-73.99089146557496,"3 Av To 4 Av, E 6 St To E 7 St",http://www.nycgovparks.org/parks/M016/,park,10003 -1004,El Batey Borincano Garden,40.82064732335,-73.90953685282669,Eagle Av bet. E 158 St and E 159 St,http://www.nycgovparks.org/parks/X313/,park,10456 -1005,Dunbar Playground,40.82325372408,-73.9059191265952,"E 161 St, Trinity Av, E 163 St, Cauldwel",http://www.nycgovparks.org/parks/X185/,park,10456 -1006,Fordham Landing Playground,40.86354167789,-73.90973408946118,"Landing Rd., Major Deegan Exwy., Bailey",http://www.nycgovparks.org/parks/X150E/,park,10468 -1007,Morris Mesa,40.84539041578,-73.90946965429053,N/s Cross Bronx Exwy bet. Morris Av and Grand Concourse,http://www.nycgovparks.org/parks/X148D1/,park,10457 -1008,I-Am-Park,40.81146245301,-73.90982839101922,Jackson Av bet. E 147 St and E 145 St,http://www.nycgovparks.org/parks/X228/,park,10455 -1009,Stockton Playground,40.69763239571,-73.94844467761502,"Park Ave., Martin Luther King Pl., Marcy Ave.",http://www.nycgovparks.org/parks/B298/,park,11206 -1010,Corlears Hook Park,40.71108804282,-73.98030413929077,"Jackson St, Cherry St, FDR Drive",http://www.nycgovparks.org/parks/M017/,park,10002 -1011,Givan Square,40.86761829624,-73.84300675794019,E. Gunhill Rd. and Eastchester Rd. bet. Arnow Ave. and Adee Ave..,http://www.nycgovparks.org/parks/X187/,park,10469 -1012,Fidler-Wyckoff House Park,40.64396895337,-73.92097520289201,"E. 59 St.,Ditmas Ave., Clarendon Rd., Ralph Ave.",http://www.nycgovparks.org/parks/B376/,park,11203 -1013,Richman (Echo) Park,40.85000382919,-73.90091895909708,Valentine Av bet. E Tremont Av and E Burnside Ave,http://www.nycgovparks.org/parks/X017/,park,10457 -1014,Inwood Park,40.84485802998,-73.91501374144904,W Mount Eden Av bet. Inwood and Jerome Av,http://www.nycgovparks.org/parks/X148C3/,park,10452 -1015,Plimpton Playground,40.84433179817,-73.92195465030149,Plimpton Ave. bet. W. 172 St. and Edward L Grant Hwy.,http://www.nycgovparks.org/parks/X148A2/,park,10452 -1016,Featherbed Triangle,40.84653454501,-73.92075565632062,Dr. MLK Jr. Blvd and Featherbed La.,http://www.nycgovparks.org/parks/X077/,park,10453 -1017,Clintonville Playground,40.78318743933,-73.80749720834113,Clintonville St. bet. 17 Ave. and 17 Rd.,http://www.nycgovparks.org/parks/Q390/,park,11357 -1018,Harold Schneiderman Playground,40.66471345573,-73.85008171907853,155 Ave. bet. 83 St. and 84 St.,http://www.nycgovparks.org/parks/Q408/,park,11414 -1019,University Malls,40.84835935605,-73.91832844898371,University Av bet. W 174 St and W Tremont Av,http://www.nycgovparks.org/parks/X082/,park,10453 -1020,Underbridge Dog Run,40.73360194885,-73.84511898846291,Grand Central Pkwy. Sr. Rd. W. bet. 64 Ave. and 64 Rd.,http://www.nycgovparks.org/parks/Q451/,park,11375 -1021,Bridge Park,40.70143550361,-73.98559911557679,"Prospect St., York St. bet. Jay St. and Bridge St.",http://www.nycgovparks.org/parks/B223JB/,park,11201 -1022,225 Street Malls,40.67451835886,-73.7467664861949,225 St. bet. 135 Ave. and 141 Ave.,http://www.nycgovparks.org/parks/Q283/,park,11413 -1023,Lewis H Latimer House,40.7661617326,-73.83000460700457,137th St. and Leavitt St.,http://www.nycgovparks.org/parks/Q497/,park,11354 -1024,Bay Terrace Playground,40.78197357501,-73.77767041639785,23 Ave. bet. 212 St. and Bell Blvd.,http://www.nycgovparks.org/parks/Q399/,park,11360 -1025,Beanstalk Playground,40.85357397894,-73.91670534798169,Billingsley Ter bet. Phelan Pl and Sedwick Av,http://www.nycgovparks.org/parks/X283/,park,10453 -1026,Cedar Playground,40.85481428011,-73.91697310271871,W 179 St bet. Cedar Av and Sedgwick Av,http://www.nycgovparks.org/parks/X111/,park,10453 -1027,Donnellan Square,40.82691909838,-73.94283754855454,"St Nicholas Av, W 150 St To St Nicholas Av",http://www.nycgovparks.org/parks/M023/,park,10031 -1028,Mott Playground,40.83089220265,-73.91458888811981,Morris Av bet. Mc Clellan St and E 166 St,http://www.nycgovparks.org/parks/X115/,park,10456 -1029,Martin Luther King Triangle,40.83819716279,-73.92331891257689,Shakespeare Av at W 168 St and Wodycrest Av,http://www.nycgovparks.org/parks/X067/,park,10452 -1030,Joyce Kilmer Park,40.82717885077,-73.92296438335553,Grand Concourse to Walton Av bet. E 161 St and E 164 St,http://www.nycgovparks.org/parks/X028/,park,10451 -1031,Montefiore Square,40.82122637435,-73.953952321884,"Broadway, Hamilton Pl., W. 138 St.",http://www.nycgovparks.org/parks/M055/,park,10031 -1032,Prall Playground,40.62884539052,-74.1172168256577,"Elizabeth St., Forest Ave., Broadway, Clove Lake Pl.",http://www.nycgovparks.org/parks/R105/,park,10310 -1033,Great Kills Park,40.56434413765,-74.0975552717075,"Hylan Blvd., Old Mill Rd., Cedar Grove Ave. bet. Hopkins Ave. and New Dorp La.",http://www.nycgovparks.org/parks/R016/,park,10306 -1034,Palmer Inlet,40.84431023404,-73.81725095998262,"bet. Outlook Ave and Library Ave., Griswold Ave. and Lucerne St.",http://www.nycgovparks.org/parks/X294/,park,10465 -1035,West Farms Soldiers Cemetery,40.84376663284,-73.87880008486053,E. 180 St. bet. Vyse Ave. and Boston Rd.,http://www.nycgovparks.org/parks/X311/,park,10460 -1036,Admiral Farragut Playground,40.84342954995,-73.89199831529538,S/S E 176 St bet. Crotona Av and Prospect Av,http://www.nycgovparks.org/parks/X148H/,park,10457 -1037,Harris Brothers Park,40.53297363576,-74.20159027370717,"Foste Rd., Carlton Ave., Drumgoole Rd. W.",http://www.nycgovparks.org/parks/R053/,park,10309 -1038,Nathan Straus Playground,40.71941221294,-73.98384053517334,Rivington St. and Attorney St. bet. Clinton St. and Ridge St.,http://www.nycgovparks.org/parks/M241/,park,10002 -1039,Bellaire Playground,40.72142334261,-73.75758753049627,Hillside Ave. bet. 207 St. and 208 St.,http://www.nycgovparks.org/parks/Q322/,park,11427 -1040,Annadale Playground,40.73098861415,-73.85130987345896,Yellowstone Blvd. bet. 64 Rd. and 65 Ave.,http://www.nycgovparks.org/parks/Q319/,park,11375 -1041,Nakks Malls,40.70849392663,-73.74135815925747,110 Ave. bet. 213 St. and 217 St.,http://www.nycgovparks.org/parks/Q281/,park,11429 -1042,Andries Playground,40.62340014307,-73.94637406393018,Nostrand Ave. between Ave. L and Ave. K,http://www.nycgovparks.org/parks/B287/,park,11210 -1043,Wood Park,40.83526042099,-73.86514430707692,"Thieriot Av, Wood Av, N/B Cross Bronx Exwy Service Rd",http://www.nycgovparks.org/parks/X148K3/,park,10460 -1044,Havemeyer Playground,40.83008304197,-73.84759253643051,"N/B Cross Bronx Exwy Service Rd, Watson Av, Havemeyer Ave",http://www.nycgovparks.org/parks/X148M1/,park,10462 -1045,Virginia Playground,40.83443550794,-73.861930260025,McGraw Av bet. White Plains Rd and Virginia Av,http://www.nycgovparks.org/parks/X148L/,park,10462 -1046,Admiral Playground,40.77106299259,-73.7372493205531,Little Neck Pkwy. bet. 42 Ave. and 43 Ave.,http://www.nycgovparks.org/parks/Q338/,park,11363 -1047,Beatty Plaza,40.83148953028,-73.90157502622878,E. 169 St and Franklin Ave,http://www.nycgovparks.org/parks/X062/,park,10456 -1048,McKinley Square,40.8309896258,-73.90080882118195,"E. 169 St., Boston Rd., Clinton Ave.",http://www.nycgovparks.org/parks/X031/,park,10456 -1049,Model T Senior Citizen's Garden,40.83093467746,-73.89365609249225,Rev. James Polite Ave. bet. Bristow St. and Intervale Ave.,http://www.nycgovparks.org/parks/X342/,park,10459 -1050,Freeman Triangle,40.82934410012,-73.88782042303264,"Freeman St, Longfellow Av, W Farms Rd",http://www.nycgovparks.org/parks/X134/,park,10459 -1051,Franklin Triangle,40.82715605029,-73.90723047893958,3 Ave. at Franklin Ave.,http://www.nycgovparks.org/parks/X078/,park,10456 -1052,Franklin Memorial Garden,40.82623449265,-73.90505397494762,Cauldwell Av bet. E 166 St and E 165 St,http://www.nycgovparks.org/parks/X318/,park,10456 -1053,Benjamin Gladstone Square,40.82524839248,-73.89108161224057,"Hoe Ave., Westchster Ave., W. Farms Rd.",http://www.nycgovparks.org/parks/X022/,park,10459 -1054,Lyons Square Playground,40.82261165255,-73.88767965403368,Aldus St to Bruckner Blvd bet. Bryant Av and Longfellow Av,http://www.nycgovparks.org/parks/X029/,park,10459 -1055,Bryant Triangle,40.82667385355,-73.888342708587,"Bryant Ave., Westchester Ave., Longfellow Ave.",http://www.nycgovparks.org/parks/X064/,park,10459 -1056,Railroad Park,40.82520777883,-73.91487359497532,Coutlandt Av bet. E 161 St and E 162 St,http://www.nycgovparks.org/parks/X032/,park,10451 -1057,Pontiac Playground,40.81453218126,-73.90808901928128,Jackson Ave. bet. E. 151 St. and E. 149,http://www.nycgovparks.org/parks/X207/,park,10455 -1058,Bill Rainey Park,40.81887169354,-73.89623462374813,Beck St bet. Interval Av and Longwood Av,http://www.nycgovparks.org/parks/X255/,park,10459 -1059,Dawson Playground,40.81957074901,-73.89799326873303,Rogers Pl. at Dawson St.,http://www.nycgovparks.org/parks/X164/,park,10459 -1060,Schomberg Academy Garden,40.82332051379,-73.89910115669812,Rev James Polite Av bet. E 164 St and E 165 St,http://www.nycgovparks.org/parks/X332/,park,10459 -1061,Colucci Playground,40.85434255339,-73.83397453352568,Hutchinson River Pkwy. E. bet. Wilkinson Ave. and E. 197 St.,http://www.nycgovparks.org/parks/X122/,park,10461 -1062,Clearview Park,40.77768427367,-73.78505572091082,Clearview Exwy. bet. 26 Ave. and 23 Ave.,http://www.nycgovparks.org/parks/Q387B/,park,11360 -1063,Skyline Playground,40.63923754089,-74.08921817939083,Arnold St. to Prospect Ave. bet. Harvard Ave and Clyde Pl.,http://www.nycgovparks.org/parks/R123/,park,10301 -1064,Colgate Close,40.82480807645,-73.88162513303396,N/B Bruckner Blvd bet. Colgate Ave. and Close Ave.,http://www.nycgovparks.org/parks/X195A/,park,10472 -1065,La Finca del Sur Community Garden,40.8127536104,-73.92991139574492,E. 138 St. at Grand Concourse,http://www.nycgovparks.org/parks/X145/,park,10451 -1066,Grove Hill Playground,40.82006508732,-73.90830549202809,E 158 st bet. Eagle Av and Caildwell Av,http://www.nycgovparks.org/parks/X235/,park,10455 -1067,Lozada Playground,40.80801552471,-73.92442434586505,E 135 St bet. Alexander Av and Willis Av,http://www.nycgovparks.org/parks/X131/,park,10454 -1068,Sakura Park,40.81239369455,-73.96215820728446,"Riverside Dr., Claremont Ave. To W. 122 St.",http://www.nycgovparks.org/parks/M087/,park,10027 -1069,Father Duffy Square,40.75882972887,-73.98509027731775,"Broadway, W. 46 St. To W. 47 St., 7 Ave.",http://www.nycgovparks.org/parks/M093/,park,10036 -1070,Haven Avenue,40.84745053312,-73.94288174658638,Riverside Dr. bet. W 176 St. and W 178 St.,http://www.nycgovparks.org/parks/M092A/,park,10032 -1071,Playground One Thirty Four CXXXIV,40.80246062214,-73.91676430531,E. 133 St. and Bruckner Blvd. bet. St Ann's Pl. and Cypress Ave.,http://www.nycgovparks.org/parks/X138/,park,10454 -1072,Granja Farm OTF,40.81584660561,-73.91120276756345,Westchester Av bet. St Ann's Av and Eagle Ave,http://www.nycgovparks.org/parks/X276/,park,10455 -1073,Evelina Antonetty Playground,40.81737974927,-73.92806879840799,E 146 St bet. Walton Av and Grand Concourse,http://www.nycgovparks.org/parks/X106/,park,10451 -1074,Graham Triangle,40.81067298719,-73.92740449391798,"Lincoln Av, Third Av, bet. E 137 St and E 138 St",http://www.nycgovparks.org/parks/X023/,park,10451 -1075,138th St. Community Garden,40.80538934245,-73.9152042383218,E. 138 St. bet. Cypress Ave. and St Ann's Ave.,http://www.nycgovparks.org/parks/X277/,park,10454 -1076,Saw Mill Playground,40.80902538205,-73.91888645045692,E. 139 St. bet. Brook Ave. and Willis Ave.,http://www.nycgovparks.org/parks/X238/,park,10454 -1077,Pulaski Park,40.80480308843,-73.92398827049517,Bruckner Blvd. bet. Willis Ave. and Brown Pl.,http://www.nycgovparks.org/parks/X041/,park,10454 -1078,Williamsbridge Square,40.87746371229,-73.8663734574437,White Plains Rd. bet. E. 212 St. and Magenta St.,http://www.nycgovparks.org/parks/X095/,park,10467 -1079,Givans Creek Woods,40.88131734275,-73.82843918961844,New England Thruway bet. Co-op City Blvd. and Rombouts Ave,http://www.nycgovparks.org/parks/X268/,park,10475 -1080,Seton Falls Park,40.88875869583,-73.83650402909664,E. 233 St. bet. Seton Ave. and Baychester Ave.,http://www.nycgovparks.org/parks/X046/,park,10466 -1081,Edenwald Playground,40.88537507708,-73.84383398063672,Schieffelin Ave. bet. E. 266 Dr. and E. 229 St.,http://www.nycgovparks.org/parks/X165/,park,10466 -1082,Bicentennial Veterans Memorial Park,40.8239085114,-73.81337955821465,Throgg's Neck Exwy at Pennyfield Ave. and Elisworth Ave.,http://www.nycgovparks.org/parks/X191A/,park,10465 -1083,Captain William Harry Thompson Playground,40.83443508719,-73.87722976016437,E. 174 St. bet. Bronx River Ave. and E. 173 St.,http://www.nycgovparks.org/parks/X159/,park,10472 -1084,Sutton Place Park,40.75690506635,-73.95995782993347,E. River bet. E. 56 St. and E. 57 St.,http://www.nycgovparks.org/parks/M108R/,park,10022 -1085,Bushman Steps,40.83222617107,-73.94028372866029,"Edgecombe Ave., W. 157 St.",http://www.nycgovparks.org/parks/M127/,park,10032 -1086,Peretz Square,40.72273833277,-73.98739691311997,"E. 1 St., E. Houston St., 1 Ave. and Allen St.",http://www.nycgovparks.org/parks/M123/,park,10003 -1087,Beach 59th St Playground,40.58891736763,-73.788719836308,Rockaway Boardwalk bet. B. 60 St. and B. 59 St.,http://www.nycgovparks.org/parks/Q162E/,park,11692 -1088,Beach 30th Street Playground,40.59309939532,-73.76298443748682,Rockaway Boardwalk bet. B. 32 St and B. 28 St.,http://www.nycgovparks.org/parks/Q162H/,park,11691 -1089,Dubos Point Wildlife Sanctuary,40.60042192513,-73.78842482253641,"Decosta Ave, B 63 St, Bayfield Ave, Barbadoes Dr",http://www.nycgovparks.org/parks/Q459/,park,11692 -1090,Jerry and The Senior Gents,40.67228304378,-73.88824009681908,Schenck Ave. between Belmont Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B478/,park,11207 -1091,Rockaway Beach and Boardwalk,40.59256149543,-73.75345339632301,Rockaway Boardwalk bet. Crest Rd. and B. 17 St.,http://www.nycgovparks.org/parks/Q162I/,park,11691 -1092,Beach 9 Playground,40.59591223591,-73.74410140695663,Seagirt Blvd bet. B. 12 St. and B. 9 St.,http://www.nycgovparks.org/parks/Q162J01/,park,11691 -1093,Brant Point Wildlife Sanctuary,40.59981097791,-73.80138728806727,Beach 72 St. bet. Bayfields Ave. and Hillmeyer Ave.,http://www.nycgovparks.org/parks/Q464/,park,11692 -1094,Hamilton Fish Park,40.72006798974,-73.97977396106187,"E Houston St, Stanton St, Sheriff St, Pitt St",http://www.nycgovparks.org/parks/M033/,park,10002 -1095,Luke J. Lang Square,40.71858302202,-73.90241204737778,"Fresh Pond Rd., 59 Rd. and 61 St.",http://www.nycgovparks.org/parks/Q063/,park,11378 -1096,Peck Slip,40.70746262758,-74.00115016345597,Peck Slip bet. South St. and Front St.,http://www.nycgovparks.org/parks/M167/,park,10038 -1097,Sergeant Collins Triangle,40.7516702261,-73.90283417331659,"Broadway, 59 St., 34 Ave.",http://www.nycgovparks.org/parks/Q501/,park,11377 -1098,Sitting Area,40.72834665234,-73.88701305337115,74 St. at 57 Ave.,http://www.nycgovparks.org/parks/Q360T/,park,11373 -1099,Quick Brown Fox Triangle,40.72758364334,-73.8886184234385,"73 St., 57 Rd., Queens - Mid-Town Exwy. Sr. Rd. N.",http://www.nycgovparks.org/parks/Q360S/,park,11378 -1100,Sitting Area 127 CXXVII,40.72510382073,-73.89182024903091,"69 Ln., 58 Rd., Queens - Mid-Town Exwy. Sr. Rd. S.",http://www.nycgovparks.org/parks/Q360Q/,park,11378 -1101,Sitting Area,40.72625010567,-73.88892977366065,"58 Ave., 73 St., Queens - Mid-Town Exwy. Sr. Rd. S.",http://www.nycgovparks.org/parks/Q360R/,park,11378 -1102,Park Slope,40.72565813616,-73.90373377830954,Behind overpass at 61 St. and Borden Ave.,http://www.nycgovparks.org/parks/Q360P/,park,11378 -1103,South Brother Island,40.79637706344,-73.89508086970636,East River,http://www.nycgovparks.org/parks/X309/,park,10021 -1104,Frontera Park,40.72417811847,-73.89569888902945,58 Ave. bet. Brown Pl. and 69 St.,http://www.nycgovparks.org/parks/Q360M/,park,11378 -1105,Peter Chahales Park,40.72490858806,-73.89408639642924,"69 St., 58 Ave., Queens - Mid-Town Exwy. Svc. Rd. S.",http://www.nycgovparks.org/parks/Q360H/,park,11378 -1106,Crowley Playground,40.72932985545,-73.87929076244706,"Queens Midtown Exwy., 57 Ave. bet. 84 St. and 82 St.",http://www.nycgovparks.org/parks/Q360J/,park,11373 -1107,Eastchester Playground,40.86955442811,-73.85224130463885,Adee Ave. at Tenboeck Ave.,http://www.nycgovparks.org/parks/X156/,park,10469 -1108,Zimmerman Playground,40.8665162707,-73.86842992438828,Britton St. bet. Olinville Ave. and Barker Ave.,http://www.nycgovparks.org/parks/X087/,park,10467 -1109,Monsignor Raul Del Valle Square,40.82086741241,-73.89099225601258,"Hunts Point Av, Bruckner Blvd, E 163 St",http://www.nycgovparks.org/parks/X009/,park,10459 -1110,Wellbrock Triangle,40.67890316516,-73.83355278732994,"109 Ave., 106 St., Rockaway Blvd.",http://www.nycgovparks.org/parks/Q079/,park,11417 -1111,Parkside Playground,40.86875404061,-73.86776530558117,Arnow Ave. bet. Olinville Ave. and White Plains Rd.,http://www.nycgovparks.org/parks/X162/,park,10467 -1112,Gwen Ifill Park,40.6797878205,-73.76742864923779,129 Ave. bet. 172 St. and 176 St.,http://www.nycgovparks.org/parks/Q412/,park,11434 -1113,Matthews Muliner Playground,40.84673077285,-73.86105361973188,Mathews Ave. bet. Morris Park Ave. and Rhinelander Ave.,http://www.nycgovparks.org/parks/X178/,park,10462 -1114,Ferris Family Burial Plot,40.83876745051,-73.84209590015743,Commerce Ave. bet. Butler Pl. and Westchester Ave.,http://www.nycgovparks.org/parks/X312/,park,10461 -1115,McKenna Square,40.83805812749,-73.93869677362001,"W. 165 St., Amsterdam Ave. To Audubon Ave.",http://www.nycgovparks.org/parks/M156/,park,10032 -1116,Father Giorgio Triangle,40.7162768642,-73.94979522061585,"Jackson St., Lorimer St., Meeker Ave.",http://www.nycgovparks.org/parks/B223T/,park,11211 -1117,Green Central Knoll,40.70240650234,-73.93295568846695,"Flushing Ave., Central Ave., Noll St., Evergreen Ave.",http://www.nycgovparks.org/parks/B395/,park,11206 -1118,Glendale Veterans Triangle,40.70187052773,-73.88077891196528,"Myrtle Ave., Cooper Ave., 70 St.",http://www.nycgovparks.org/parks/Q075/,park,11385 -1119,Adam Yauch Park,40.6916501429,-73.99836965458,"Atlantic Ave., Columbia Pl., State St.",http://www.nycgovparks.org/parks/B223D/,park,11201 -1120,Poppa and Momma Jones Historical Garden,40.671589288,-73.88955575337522,Belmont Ave. and Van Siclen Ave.,http://www.nycgovparks.org/parks/B509/,park,11207 -1121,Hinton Park,40.75503424872,-73.85450464212849,"114 St., 113 St. bet. 34 Ave. and 37 Ave.",http://www.nycgovparks.org/parks/Q410/,park,11368 -1122,St. John's Park,40.67351549297,-73.93362978017846,"Troy Ave., Bergen St., Prospect Pl., Schenectady Ave.",http://www.nycgovparks.org/parks/B245/,park,11213 -1123,Murray Playground,40.74730949818,-73.94777056105885,"45 Ave., 45 Rd. bet. 11 St. and 21 St.",http://www.nycgovparks.org/parks/Q141/,park,11101 -1124,"Phil ""Scooter"" Rizzuto Park",40.69414104233,-73.82129785507047,"Atlantic Ave., 95 Ave. bet. 127 St. and 125 St.",http://www.nycgovparks.org/parks/Q129/,park,11419 -1125,Junction Playground,40.7544274104,-73.87186279350361,34 Ave. bet. 96 St. and Junction Blvd.,http://www.nycgovparks.org/parks/Q122/,park,11372 -1126,Lawrence Virgilio Playground,40.74719606455,-73.90944231152876,"52 St., Woodside Ave. bet. 39 Rd. and 39 Dr.",http://www.nycgovparks.org/parks/Q031/,park,11377 -1127,Grover Cleveland Playground,40.71062902462,-73.91056836793909,Stanhope St. bet. Fairvier Ave. and Grandview Ave.,http://www.nycgovparks.org/parks/Q002/,park,11385 -1128,De Hostos Playground,40.70264963912,-73.94880364308555,Harrison Ave. between Walton St. and Lorimer St.,http://www.nycgovparks.org/parks/B358/,park,11206 -1129,Fleetwood Triangle,40.72278901395,-73.86719167967253,"Woodhaven Blvd., 63 Dr., Penelope Ave.",http://www.nycgovparks.org/parks/Q062/,park,11374 -1130,South Pacific Playground,40.67590575594,-73.91943970833157,Howard Ave. bet. Pacific St. and Dean St.,http://www.nycgovparks.org/parks/B153/,park,11233 -1131,Dome Playground,40.63823177061,-73.97975987534619,Dahill Rd. bet. 37 St. and 38 St.,http://www.nycgovparks.org/parks/B151/,park,11218 -1132,Kolbert Playground,40.62060660331,-73.95771811717395,Ave. L bet. E. 17 St. and E. 18 St.,http://www.nycgovparks.org/parks/B150/,park,11230 -1133,Rolph Henry Playground,40.65594388677,-73.94734787442285,"Clarkson Ave., New York Ave.",http://www.nycgovparks.org/parks/B148/,park,11226 -1134,Ocean Hill Playground,40.67469364968,-73.91157450661304,"Dean St., Bergen St. bet. Rockaway Ave.and Hopkinson Ave.",http://www.nycgovparks.org/parks/B144/,park,11233 -1135,Banneker Playground,40.69015204677,-73.9497527460619,Macy Ave. bet. Lafayette Ave. and Kosciuszko St.,http://www.nycgovparks.org/parks/B140/,park,11216 -1136,Sixteen Sycamores Playground,40.6869474539,-73.9811229077025,Schermerhorn St. bet. Nevins St. and 3 Ave.,http://www.nycgovparks.org/parks/B137/,park,11217 -1137,Gilbert Ramirez Park,40.70586979292,-73.93418260743378,Mc Kibbin St. bet. White St. and Bogart St.,http://www.nycgovparks.org/parks/B132/,park,11206 -1138,Paerdegat Park,40.63702433934,-73.93765819876536,"Albany Ave., E. 40 St. bet. Farragut Rd. and Foster Ave.",http://www.nycgovparks.org/parks/B218/,park,11203 -1139,Raymond Bush Playground,40.68617147348,-73.93879492875358,Marcus Garvey Blvd. bet. Monore St. and Madison St.,http://www.nycgovparks.org/parks/B216/,park,11221 -1140,Cough Triangle,40.67452973076,-73.99980509221093,"Hamilton Ave., Court St. Garnet St.",http://www.nycgovparks.org/parks/B210C/,park,11231 -1141,Admiral Triangle,40.67701179612,-74.00083742049672,"Hamilton Ave., Nelson St. Clinton St.",http://www.nycgovparks.org/parks/B210F/,park,11231 -1142,Welcome Home Garden,40.68499408562,-73.92538383288867,Halsey St. bet. Patchen Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B538/,park,11233 -1143,Sam Leggio Triangle,40.68514586869,-73.88200852229791,"Highland Pl. at Etna St., Forcetube Ave.",http://www.nycgovparks.org/parks/B278/,park,11208 -1144,811 Family and Friends Garden,40.8230537692,-73.91654082204063,Courtlandt Ave. bet. E. 158 St. and E. 159 St.,http://www.nycgovparks.org/parks/X351/,park,10451 -1145,Melrose Commons Park,40.82509984689,-73.91232998469353,Melrose Ave. bet. E. 162 St. and E. 163 St.,http://www.nycgovparks.org/parks/X350/,park,10451 -1146,D'Emic Playground,40.65584018563,-74.00468042094083,3 Ave. bet. 35 St. and 34 St.,http://www.nycgovparks.org/parks/B210B/,park,11232 -1147,William Sheridan Playground,40.71534674227,-73.96361355028422,Wythe Ave. bet. Grand St. and S. 1 St.,http://www.nycgovparks.org/parks/B124/,park,11211 -1148,Msgr. McGolrick Park,40.72335166735,-73.9423351968039,"Russell St., Monitor St. bet. Nassau Ave. and Driggs Ave.",http://www.nycgovparks.org/parks/B114/,park,11222 -1149,Cadman Plaza Park,40.70039331312,-73.98985510323615,"Cadman Plaza West, Cadman Plaza East bet. BQE and Tillary St.",http://www.nycgovparks.org/parks/B113A/,park,11201 -1150,Lion's Pride Playground,40.66248135013,-73.89931143742706,Riverdale Ave. bet. Van Sinderen Ave. and Snediker Ave.,http://www.nycgovparks.org/parks/B107/,park,11207 -1151,El Shabazz Playground,40.68313095117,-73.93101016219778,Macdonough St. between Malcolm X Blvd. and Stuyvesant Ave.,http://www.nycgovparks.org/parks/B313/,park,11233 -1152,Taaffe Playground,40.69416123181,-73.96055325306662,Taaffe Pl. bet. Park Ave. and Myrtle Ave.,http://www.nycgovparks.org/parks/B105/,park,11205 -1153,Lt. Joseph Petrosino Park,40.61915544765,-73.99802401748894,"16 Ave., New Utrecht Ave. bet. 70 St. and 71 St.",http://www.nycgovparks.org/parks/B099/,park,11228 -1154,Martin Luther Playground,40.64582903053,-74.01923281094766,2 Ave. bet. 55 St. and 56 St.,http://www.nycgovparks.org/parks/B098/,park,11220 -1155,Ennis Playground,40.67057586455,-73.99424820391394,"11 St., 12 St. bet. 2 Ave. and 3 Ave.",http://www.nycgovparks.org/parks/B095/,park,11215 -1156,Coffey Park,40.67794843261,-74.0069323017119,Verona St. bet. Richard St. and Dwight St.,http://www.nycgovparks.org/parks/B077/,park,11231 -1157,Westbourne Playground,40.60756528726,-73.76441329525404,"Mott Ave., Westbourne Ave. bet. Bay 28 St. and Bay 25 St.",http://www.nycgovparks.org/parks/Q266/,park,11691 -1158,Benninger Playground,40.70702714522,-73.89779650733226,Madison St. bet. 60 Pl. and Fresh Pond Rd.,http://www.nycgovparks.org/parks/Q038/,park,11385 -1159,Park Of The Americas,40.74833219081,-73.8610437236353,"41 Ave., 42 Ave. bet. 103 St. and 104 St.",http://www.nycgovparks.org/parks/Q026/,park,11368 -1160,Rufus King Park,40.70512111113,-73.80364542149252,"Jamaica Ave., 89 Ave. bet. 150 St. and 153 St.",http://www.nycgovparks.org/parks/Q023/,park,11432 -1161,Seven Gables Playground,40.7436464675,-73.76604641836396,"210 St., Oceania St. bet. the Long Island Exwy. and 64 Ave.",http://www.nycgovparks.org/parks/Q021C/,park,11364 -1162,Paul Raimonda Playground,40.77289183296,-73.89683255958211,20 Ave. bet. 47 St. and 48 St.,http://www.nycgovparks.org/parks/Q298/,park,11105 -1163,Fidelity Triangle,40.72182905389,-73.94188146679365,Monitor St. bet. Engert Ave. and Meeker Ave.,http://www.nycgovparks.org/parks/B031/,park,11222 -1164,Albert Capsouto Park,40.72228864543,-74.0061927210609,"Laight St., Canal St., and Varick St.",http://www.nycgovparks.org/parks/M145/,park,10013 -1165,Garibaldi Playground,40.60910288178,-73.99972930716017,18 Ave. bet. 83 St. and 82 St.,http://www.nycgovparks.org/parks/B158/,park,11214 -1166,St. Mary's Park,40.67600876309,-73.9972876730406,Smith St. bet. Nelson St. and Huntington St.,http://www.nycgovparks.org/parks/B118B/,park,11231 -1167,St. Mary's Park,40.67665744104,-73.99697310394723,Smith St. bet. Luquer St. and Nelson St.,http://www.nycgovparks.org/parks/B118A/,park,11231 -1168,Lindsay Triangle,40.70409579595,-73.94807708003248,"Throop Ave., Lormer St., Broadway",http://www.nycgovparks.org/parks/B117/,park,11206 -1169,Patrick O'Rourke Playground,40.61929874343,-74.01418137250747,"80 St. To 81 St., 11 Ave. To 12 Ave.",http://www.nycgovparks.org/parks/B282/,park,11228 -1170,Washington Park,40.67381484602,-73.98558138430056,"3 St., 4 St. bet. 4 Ave. and 5 Ave.",http://www.nycgovparks.org/parks/B111/,park,11215 -1171,Saratoga Park,40.68484680316,-73.91770512122248,Halsey St. bet. Howard Ave. and Saratoga Ave.,http://www.nycgovparks.org/parks/B079/,park,11233 -1172,Milestone Park,40.60965032195,-73.99912364548912,18 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/B063/,park,11214 -1173,Sternberg Park,40.70568896256,-73.94641731127383,Lorimer St. bet. Montrose Ave. and Boerum St.,http://www.nycgovparks.org/parks/B055/,park,11206 -1174,Dodger Playground,40.66469396736,-73.95255596792327,Sullican Pl. bet. Rogers Ave. and Nostrand Ave.,http://www.nycgovparks.org/parks/B121/,park,11225 -1175,Owen F. Dolen Park,40.83999046816,-73.84301209090562,"Lane Ave., E. Tremont Ave., Westchester Ave.",http://www.nycgovparks.org/parks/X016/,park,10461 -1176,Bailey Playground,40.88148164459,-73.90018389322712,Bailey Av bet. W 234 St and W 237 St,http://www.nycgovparks.org/parks/X150J/,park,10463 -1177,Rienzi Playground,40.88777834546,-73.85801299970566,E. 226 St. bet. White Plains Rd. and Barnes Ave.,http://www.nycgovparks.org/parks/X141/,park,10466 -1178,Brooklyn Heights Promenade,40.69436222465,-73.99871657392515,BQE bet. Joralemon St. and Grace Ct.,http://www.nycgovparks.org/parks/B223DB/,park,11201 -1179,Michel Triangle,40.83855450553,-73.90607424555895,Clay Av bet. E 171 St and Claremont Pkwy,http://www.nycgovparks.org/parks/X057/,park,10456 -1180,Washington Hall Park,40.69507857114,-73.96671934960324,Park Ave. bet. Washington Ave. and Hall St.,http://www.nycgovparks.org/parks/B220/,park,11205 -1181,Magenta Playground,40.87397750631,-73.8676358281836,Olinville Ave. at Rosewood St.,http://www.nycgovparks.org/parks/X214/,park,10467 -1182,West Farms Rapids,40.84148743292,-73.8774569429821,Bronx River bet. E 180 St and E Tremont Av,http://www.nycgovparks.org/parks/X288/,park,10460 -1183,Imagination Playground,40.70591428189,-74.00382704252628,"Front St., John St., and South St.",http://www.nycgovparks.org/parks/M386/,park,10038 -1184,Cpl Fischer Park,40.84041021588,-73.9225101872722,W. 170 St. bet. Nelson Ave. and Shakespeare Ave.,http://www.nycgovparks.org/parks/X269/,park,10452 -1185,Willowbrook Park,40.60609448147,-74.15439872286494,"Richmond Ave., Victory Blvd., Ashworth Ave., and Forest Hill Rd.",http://www.nycgovparks.org/parks/R030/,park,10314 -1186,Albemarle Playground,40.64579614353,-73.98018320691112,"Albemarle Rd., Dahill Rd., Mcdonald Ave.",http://www.nycgovparks.org/parks/B297/,park,11218 -1187,Queens Village Veterans Plaza,40.71788113273,-73.73618265220543,Springfield Blvd. bet. Jamaica Ave. and Amboy La.,http://www.nycgovparks.org/parks/Q047/,park,11429 -1188,Boerum Park,40.68477945476,-73.98983909685951,Warren St. to Baltic St. between Hoyt St. and Smith St.,http://www.nycgovparks.org/parks/B361/,park,11201 -1189,The Cyclone,40.57350904574,-73.97769957953619,W. 10 St. between Surf Ave. and Public Beach,http://www.nycgovparks.org/parks/B368/,park,11224 -1190,Richmond Terrace Storehouse,40.6378931066,-74.1216524045854,Richmond Ter. bet. Alaska St. and Taylor St.,http://www.nycgovparks.org/parks/R134/,park,10310 -1191,Brooklyn Academy Of Music,40.68679934118,-73.97750679306391,Lafayette Ave between St Felix St. and Ashland Pl.,http://www.nycgovparks.org/parks/B256/,park,11217 -1192,Dutch Kills Playground,40.75738914528,-73.93253754465057,"28 St., Crescent St. bet. 37 Ave. and 36 Ave.",http://www.nycgovparks.org/parks/Q218/,park,11106 -1193,Long Island Mews,40.73604776862,-73.88965660125358,"51 Ave., 51 Rd., 72 Pl.",http://www.nycgovparks.org/parks/Q434/,park,11373 -1194,Devoe Park,40.86409852176,-73.90427478405705,W. Fordham Rd. bet. Sedgwick Ave. and Un,http://www.nycgovparks.org/parks/X013/,park,10468 -1195,Roy Wilkins Recreation Center,40.68952978838,-73.77137903477231,"Merrick Blvd. bet. 115 Ave., 116 Ave., and Baisley Blvd.",http://www.nycgovparks.org/parks/Q448/,park,11434 -1196,Remsen Family Cemetery,40.71252483608,-73.85834289923423,"Trotting Course La., Alderton St.",http://www.nycgovparks.org/parks/Q480/,park,11374 -1197,Hybrid Oak Woods Park,40.50248602336,-74.23543971206398,Joline Ave. bet. Hylan Blvd. to Surf Ave.,http://www.nycgovparks.org/parks/R136/,park,10307 -1198,Frank Golden Park,40.78552182722,-73.8336318916601,14 Rd. bet. 132 St. and 138 St.,http://www.nycgovparks.org/parks/Q445/,park,11356 -1199,Athens Square,40.76801998963,-73.92172736045354,30 Ave. bet. 29 St. and 30 St.,http://www.nycgovparks.org/parks/Q436/,park,11102 -1200,Spirit Playground,40.76132336146,-73.94094711111056,36 Ave bet. 9 St. and 10 St.,http://www.nycgovparks.org/parks/Q429/,park,11106 -1201,Rosemary's Playground,40.70423981423,-73.90398972982707,"Woodbine St., Madison St. bet. Woodward Ave. and Fairview Ave.",http://www.nycgovparks.org/parks/Q398/,park,11385 -1202,Conch Playground,40.59616802782,-73.7801984327566,Beach 49 St. bet. Elizabeth Ave. and Beach Channel Dr.,http://www.nycgovparks.org/parks/Q394/,park,11691 -1203,Joseph Austin Playground,40.71596003427,-73.79991304979274,164 Pl. bet. Grand Central Pkwy. Sr. Rd. S. and 84 Ave.,http://www.nycgovparks.org/parks/Q391/,park,11432 -1204,Bayside Playground,40.58452481306,-73.82502453424574,Beach Channel Dr. bet. Beach 104 St. and Seaside Ave.,http://www.nycgovparks.org/parks/Q389/,park,11694 -1205,Francis Lewis Playground,40.76042694999,-73.7836542778031,"Francis Lewis Blvd., 201 St. bet. 42 Ave. and Station Rd.",http://www.nycgovparks.org/parks/Q381/,park,11361 -1206,Ampere Playground,40.68144071717,-73.85632486549325,101 Ave. bet. 92 St. and 83 St.,http://www.nycgovparks.org/parks/Q378/,park,11416 -1207,Playground Sixty Two LXII,40.73648677478,-73.85303918043705,62 Rd. bet. Yellowstone Blvd. and108 St.,http://www.nycgovparks.org/parks/Q377/,park,11375 -1208,Willets Point Playground,40.78359363987,-73.79690259219424,166 St. bet. 16 Ave. and 16 Rd.,http://www.nycgovparks.org/parks/Q375/,park,11357 -1209,Horace Harding Playground,40.73306387835,-73.8600480997644,62 Dr. bet. 97 Pl. and 98 St.,http://www.nycgovparks.org/parks/Q428/,park,11374 -1210,South Rochdale Playground,40.67384617645,-73.76876080360424,134 Rd. and 173 St.,http://www.nycgovparks.org/parks/Q427/,park,11434 -1211,North Rochdale Playground,40.67974949232,-73.77468422849846,Baisley Blvd. 168 St. and Bedell St.,http://www.nycgovparks.org/parks/Q426/,park,11434 -1212,Seaside Playground,40.58061974522,-73.83033877057792,Rockaway Beach Blvd. bet. Beach 110 St. and Beach 109 St.,http://www.nycgovparks.org/parks/Q422/,park,11694 -1213,Walter Ward Playground,40.65722833315,-73.84339592195943,160 Ave. bet. 88 St. and 89 St.,http://www.nycgovparks.org/parks/Q421/,park,11414 -1214,Hart Playground,40.77439967314,-73.81935512255222,147 St. bet. 26 Ave. and 27 Ave.,http://www.nycgovparks.org/parks/Q419/,park,11354 -1215,Lanett Playground,40.59972561349,-73.74395257250316,Lanett Ave. bet. Beach 9 St. and Beach 8 St.,http://www.nycgovparks.org/parks/Q407/,park,11691 -1216,Springfield Park North,40.66419957187,-73.7592563977784,145 Rd. bet. Arthur St. and Springfield Blvd.,http://www.nycgovparks.org/parks/Q406/,park,11413 -1217,Hollis Playground,40.70630822435,-73.75264707467772,Hollis Ave. bet. 204 St. and 205 St.,http://www.nycgovparks.org/parks/Q405/,park,11412 -1218,Latimer Playground,40.6968581455,-73.78641454837448,167 St. bet. 108 Dr. and 109 Ave.,http://www.nycgovparks.org/parks/Q402/,park,11433 -1219,Oakland Gardens,40.75293499979,-73.75990571560354,Springfield Blvd. bet. 53 Ave. and 56 Ave.,http://www.nycgovparks.org/parks/Q400/,park,11364 -1220,Playground Seventy Five,40.72668827456,-73.80815869562873,160 St. bet. 75 Ave. and 75 Rd.,http://www.nycgovparks.org/parks/Q354/,park,11366 -1221,Grassmere Playground,40.5987721762,-73.75874581450415,"Grassmere Terr., Briar Pl. bet. Hanson Ct. and Brookhaven Ave.",http://www.nycgovparks.org/parks/Q353/,park,11691 -1222,Russell Sage Playground,40.72382445031,-73.85099096991074,Booth St. bet. 68 Ave. and 68 Dr.,http://www.nycgovparks.org/parks/Q335/,park,11375 -1223,Locust Manor Playground,40.68560974331,-73.75625201068374,121 Ave. bet. Lucas St. and 192 St.,http://www.nycgovparks.org/parks/Q330/,park,11413 -1224,Van Alst Playground,40.77096048504,-73.9284640958145,21 St. bet. 29 Ave. and 30 Ave.,http://www.nycgovparks.org/parks/Q321/,park,11102 -1225,Galapo Playground,40.59786981101,-73.94636121718139,"Bedford Ave., Gravesend Neck Rd., Ave. V, E. 24 St.",http://www.nycgovparks.org/parks/B209/,park,11229 -1226,Hamilton Metz Field,40.66232209782,-73.94009836206811,"Albany Ave., E. New York Ave., Lefferts Ave.",http://www.nycgovparks.org/parks/B193/,park,11203 -1227,Russell Pedersen Playground,40.62693370704,-74.03571621333731,Colonial Rd. from 83 St. to 85 St.,http://www.nycgovparks.org/parks/B192/,park,11209 -1228,Continental Army Plaza,40.71034749277,-73.96030604864147,S. 4 St. bet. S. 5 Pl. and Roebling St.,http://www.nycgovparks.org/parks/B168/,park,11211 -1229,Jackie Robinson Playground,40.66599371346,-73.95877550406918,Montgomery St. between Franklin Ave. and McKeever Pl.,http://www.nycgovparks.org/parks/B357/,park,11225 -1230,Clearview's Tail,40.72452458093,-73.75535912566508,Clearview Exwy at Whitehall Terr.,http://www.nycgovparks.org/parks/Q387D/,park,11427 -1231,Blood Root Valley,40.58951378738,-74.12782385221055,"Rockland Ave., Manor Ave., Brielle Ave., Forest Hill Rd.",http://www.nycgovparks.org/parks/R129/,park,10314 -1232,Flushing Fields,40.77595871614,-73.81586731266746,"149 St. bet. 25 Ave. and 26 Ave., 29 Ave. and Bayside Ave.",http://www.nycgovparks.org/parks/Q086/,park,11354 -1233,Berry Playground,40.71267695765,-73.96319254851623,S. 3 St. bet. Berry St. and Bedford Ave.,http://www.nycgovparks.org/parks/B154/,park,11211 -1234,Playground of the Americas,40.72798141804,-74.0026158828559,"S/s W. Houston St., Ave. of Americas",http://www.nycgovparks.org/parks/M120B/,park,10014 -1235,Lafayette Playground,40.5951606243,-73.98513006001589,"Stillwell Ave., Benson Ave., Bay 43 St.",http://www.nycgovparks.org/parks/B106B/,park,11214 -1236,Nellie Bly Park,40.59039681491,-73.99390724820346,S/s Shore Pkwy between 25 Ave. and Bay 41 St.,http://www.nycgovparks.org/parks/B280/,park,11214 -1237,Tottenville Pool,40.50551793647,-74.23475728414512,Hylan Blvd. bet. Joline Ave. and Sprague Ave.,http://www.nycgovparks.org/parks/R110/,park,10307 -1238,Harlem River Park,40.80742548038,-73.93430532603055,"E. 128 St., 2 Ave., 3 Ave., Harlem River Drive",http://www.nycgovparks.org/parks/M208D/,park,10035 -1239,Bryant Hill Garden,40.81970462363,-73.88736572860253,Bryant Av bet. Seneca Av and Garrison Ave,http://www.nycgovparks.org/parks/X315/,park,10474 -1240,Neponsit Mall,40.57137043016,-73.85912321414128,Rockaway Beach Blvd. bet. Beach 149 St. and Beach 142 St.,http://www.nycgovparks.org/parks/Q037/,park,11694 -1241,Hunts Point Playground,40.81384928456,-73.88619730395624,Spofford Av bet. Faile St and Hunts Point Av,http://www.nycgovparks.org/parks/X113/,park,10474 -1242,Bildersee Playground,40.63574338163,-73.91170043126046,Flatlands Ave. between E. 81 St. and E. 82 St.,http://www.nycgovparks.org/parks/B335/,park,11236 -1243,Playground Eighty LXXX,40.74468920451,-73.70921435272733,80 Ave. bet. 261 St. and 262 St.,http://www.nycgovparks.org/parks/Q318/,park,11004 -1244,Rafferty Triangle,40.74758079295,-73.94328104323746,"44 Dr., Hunter St. Crescent St.",http://www.nycgovparks.org/parks/Q036A/,park,11101 -1245,Elizabeth Stroud Playground,40.67958281599,-73.93088845016617,Stuyvesant Ave. and Fulton St.,http://www.nycgovparks.org/parks/B200/,park,11233 -1246,Hoffman Park,40.7325681438,-73.8716073628971,Hoffman Dr. bet. 58 Ave. and Woodhaven Blvd.,http://www.nycgovparks.org/parks/Q360N/,park,11373 -1247,Heffernan Triangle,40.64586087634,-73.99473152714648,"New Utrecht Ave., 9 Ave., 39 St.",http://www.nycgovparks.org/parks/B172/,park,11219 -1248,Linden Sitting Area,40.65388237392,-73.91846674587376,"Linden Blvd., Church Ave., E. 92 St.",http://www.nycgovparks.org/parks/B171/,park,11236 -1249,Tall Oak Playground,40.74572137298,-73.75764301047239,64 Ave. bet. 218 St. and 219 St.,http://www.nycgovparks.org/parks/Q317/,park,11364 -1250,Saul Weprin Playground,40.74772280172,-73.77587394026898,56 Ave. bet. 201 St. and 202 St.,http://www.nycgovparks.org/parks/Q293/,park,11364 -1251,Fort Totten Park,40.79633624368,-73.77622835118328,Cross Island Pkwy. bet. Totten Ave. and 15 Rd.,http://www.nycgovparks.org/parks/Q458/,park,11359 -1252,Douglaston Park Golf Course,40.7544496283,-73.73320415943988,"61 Ave. bet. Marathon Pkwy., Commonwealth Blvd. and 242 St.",http://www.nycgovparks.org/parks/Q411/,park,11362 -1253,Louis Pasteur Park,40.76171141229,-73.73453593160808,248 St. bet. Van Zandt Ave. and 52 Ave.,http://www.nycgovparks.org/parks/Q369/,park,11362 -1254,Marie Curie Playground,40.75654902581,-73.77182519637729,"46 Ave., 46 Rd. bet. Oceania St. and 211 St.",http://www.nycgovparks.org/parks/Q364/,park,11361 -1255,Hillside Playground,40.74156103682,-73.71326879448377,82 Ave. bet. 256 St. and 257 St.,http://www.nycgovparks.org/parks/Q352/,park,11004 -1256,Farm Playground,40.73664896742,-73.77712625830974,73 Ave. bet. 195 St. and 196 Pl.,http://www.nycgovparks.org/parks/Q221/,park,11365 -1257,Poppenhusen Playground,40.78091352726,-73.84423329988674,"20 Ave., 21 Ave. bet. 123 St. and 124 St.",http://www.nycgovparks.org/parks/Q011/,park,11356 -1258,McLaughlin Playground,40.72549572952,-73.76598994603171,McLaughlin Ave. bet. Sutro St. and Francis Lewis Blvd.,http://www.nycgovparks.org/parks/Q021B/,park,11423 -1259,Glen Oaks Oval,40.74896585483,-73.71534734971091,"74 Ave., 260 St.",http://www.nycgovparks.org/parks/Q310/,park,11004 -1260,Kissena Park,40.74495423475,-73.80418278438971,"Underhill, Oak, Rose, Booth Memorial Aves, Kissena Blvd, Fresh Meadow Ln",http://www.nycgovparks.org/parks/Q024/,park,11365 -1261,James A. Bland Playground,40.75828239234,-73.83067260046143,40 Rd. bet. Prince St. and Main St.,http://www.nycgovparks.org/parks/Q326/,park,11354 -1262,Playground Twenty One,40.77848029756,-73.7978571869964,166 St. bet. 21 Rd. and 21 Ave.,http://www.nycgovparks.org/parks/Q334/,park,11357 -1263,Breininger Park,40.72524468137,-73.72814639331546,240 St. bet. Braddock Ave. and Fairbury Ave.,http://www.nycgovparks.org/parks/Q134/,park,11426 -1264,Julio Carballo Fields,40.81643989984,-73.8890124322292,Manida St bet. Spofford Av and Lafayette Av,http://www.nycgovparks.org/parks/X260/,park,10474 -1265,Sunrise Playground,40.65238075147,-73.73595423266357,253 St. bet. 149 Ave. and 149 Rd.,http://www.nycgovparks.org/parks/Q430/,park,11422 -1266,Barretto Park,40.81275394275,-73.8887947119048,Barretto St bet. Randall Av and Spoffard Av,http://www.nycgovparks.org/parks/X248/,park,10474 -1267,Noble Playground,40.83804065615,-73.87181306646414,Noble Ave. bet. Bronx River Av and E 177 St,http://www.nycgovparks.org/parks/X123/,park,10460 -1268,Alexander Grey Triangle,40.79521144497,-73.81368720720675,"Clintonville St., 7 Ave. and 151 St,",http://www.nycgovparks.org/parks/Q168/,park,11357 -1269,Bridge Park 3,40.69999117579,-73.98499135832654,"Sands St., Prospect St. bet. Bridge St. and Manh. Bridge",http://www.nycgovparks.org/parks/B223JC/,park,11201 -1270,Prophecy Garden,40.65917724781,-73.89485957920876,Malta St. between New Lots Ave. and Hegeman Ave.,http://www.nycgovparks.org/parks/B506/,park,11207 -1271,400 Montauk Av Block Assn,40.66850600146,-73.87675015169391,Montauk Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B535/,park,11208 -1272,Abib Newborn Garden,40.65967641046,-73.90614212686357,Newport St. and Osborn St.,http://www.nycgovparks.org/parks/B533/,park,11212 -1273,F.A.R.R. Community Garden,40.67830472548,-73.9266626881803,Herkimer St. and Suydam Pl.,http://www.nycgovparks.org/parks/B532/,park,11233 -1274,Garden of Plenty,40.67766485263,-73.92820281198452,Hunterfly Pl. between Herkimer St. and Atlantic Ave.,http://www.nycgovparks.org/parks/B531/,park,11233 -1275,Seasons of Vision,40.67882424635,-73.92689817063305,Rochester Ave. between Fulton St. and Herkimer St.,http://www.nycgovparks.org/parks/B530/,park,11233 -1276,Howard Av Block Association,40.66353755913,-73.91936272445108,Howard Ave. to Tapscott St. between Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B528/,park,11212 -1277,United Community Centers - E New York Farms Project,40.66077634969,-73.89572969728754,"Alabama Ave., Newport St., Georgia Ave., New Lots Ave.",http://www.nycgovparks.org/parks/B527/,park,11207 -1278,Cleveland Street Vegetable Garden,40.67413419296,-73.88388289260618,Cleveland St. between Pitkin Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B526/,park,11208 -1279,Mw United Orient Grand Lodge,40.67364335688,-73.8876577611677,Jerome St. to Barbey St. between Pitkin Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B521/,park,11207 -1280,Spencer St Block Association,40.6914041277,-73.95499939126604,Spencer St. between De Kalb Ave. and Willoughby Ave.,http://www.nycgovparks.org/parks/B519/,park,11205 -1281,Victory Garden's Group,40.68895314726,-73.9275699875039,Gates Ave. between Malcolm X Blvd. and Patchen Ave.,http://www.nycgovparks.org/parks/B518/,park,11221 -1282,"Saratoga Square Urban Renewal Area, Site 164",40.67866155247,-73.91118717548993,"Somers St., Rockaway Ave. and Fulton St.",http://www.nycgovparks.org/parks/B517/,park,11233 -1283,Nehemiah Ten Garden,40.66860086341,-73.88599740284238,Barbey St. to Jerome St. between Blake Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B514/,park,11207 -1284,Vernon New Harvest,40.6941115093,-73.95037939681437,Vernon Ave. between Nostrand Ave. and Marcy Ave.,http://www.nycgovparks.org/parks/B508/,park,11206 -1285,A Better Community Garden,40.67794867986,-73.92795541171245,Hunterfly Pl. between Herkimer St. and Atlantic Ave.,http://www.nycgovparks.org/parks/B507/,park,11233 -1286,Sterling Community Group,40.67136116029,-73.92203480919704,Ralph Ave. and Sterling Pl.,http://www.nycgovparks.org/parks/B505/,park,11233 -1287,Stars Of Hope,40.68480000685,-73.95063493868432,Corner of Nostrand Ave. and Madison St.,http://www.nycgovparks.org/parks/B503/,park,11216 -1288,St. Mark's Block Association,40.67330448321,-73.92171592645872,St Mark's Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B501/,park,11233 -1289,Patrick Van Doren Pocket Park,40.68943311073,-73.92991960191655,Malcolm X Blvd. and Quincy St.,http://www.nycgovparks.org/parks/B500/,park,11221 -1290,Madison Community Greenthumb,40.68765103599,-73.92183130698453,Madison St. between Ralph Ave. and Howard Ave.,http://www.nycgovparks.org/parks/B499/,park,11221 -1291,Victory Garden,40.66657630313,-73.88736565007737,Hendrix St. between Livonia Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B496/,park,11207 -1292,Vernon Tandt Block Association,40.69484270168,-73.94400736457072,Vernon Ave. between Tompkins Ave. and Throop Ave.,http://www.nycgovparks.org/parks/B494/,park,11206 -1293,Upon This Rock Comm Garden,40.6742032665,-73.87770626594677,Pitkin Ave. and Montauk Ave.,http://www.nycgovparks.org/parks/B493/,park,11208 -1294,St. John Cantius Parish,40.66738402238,-73.89380602334118,New Jersey Ave. between Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B492/,park,11207 -1295,Shield Of Faith,40.67745132554,-73.87829126928358,79-85 Montauk St,http://www.nycgovparks.org/parks/B491/,park,11208 -1296,Red Shed Garden,40.71592634049,-73.94015605780575,Kingsland Ave. between Skillman Ave. and Maspeth Ave.,http://www.nycgovparks.org/parks/B489/,park,11211 -1297,Red Gate Garden,40.69368164538,-73.94899005831826,Marcy Ave. and Willoughby Ave.,http://www.nycgovparks.org/parks/B488/,park,11206 -1298,P.S. 53,40.666029839,-73.89059698784907,Bradford St. between Dumont Ave. and Livonia Ave.,http://www.nycgovparks.org/parks/B485/,park,11207 -1299,Gregory's Garden,40.67258554884,-73.8857302501398,Warwick St. between Pitkin Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B484/,park,11207 -1300,Manley's Pl,40.67475246355,-73.87857041022092,Montauk Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B483/,park,11208 -1301,Madison Street Block Association,40.68378359516,-73.95546463890517,Madison St. between Franklin Ave. and Bedford Ave.,http://www.nycgovparks.org/parks/B482/,park,11216 -1302,Madison Square Garden Association,40.69468356973,-73.912872970857,Madison St. between Wilson Ave. and Knickerbocker Ave.,http://www.nycgovparks.org/parks/B481/,park,11221 -1303,Lefferts Pl Block Association,40.68052141751,-73.95752709071726,Lefferts Pl. between Classon Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B479/,park,11238 -1304,Jerome Gardens,40.67059337671,-73.88595789178665,Jerome St. and Sutter Ave.,http://www.nycgovparks.org/parks/B477/,park,11207 -1305,Sh'ma Yisrael,40.67570857551,-73.91592305902948,Pacific St. between Saratoga Ave. and Hopkinson Ave.,http://www.nycgovparks.org/parks/B476/,park,11233 -1306,Herbal Garden,40.67394429893,-73.88842820740602,Schenck Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B475/,park,11207 -1307,Hancock T and T,40.68296413192,-73.94302730985119,Hancock St. between Tompkins Ave. and Throop Ave.,http://www.nycgovparks.org/parks/B473/,park,11216 -1308,Greene Av United Neighbors Association Inc,40.68801079609,-73.95129259401246,Nostrand Ave. and Greene Ave.,http://www.nycgovparks.org/parks/B472/,park,11216 -1309,Good Shepherds Garden,40.67069490485,-73.8794633710015,Shepherd Ave. between Blake Ave. and Sutter Ave.,http://www.nycgovparks.org/parks/B469/,park,11208 -1310,Escape To Nature,40.67417293127,-73.88984162827091,Glenmore Ave. and Hendrix St.,http://www.nycgovparks.org/parks/B468/,park,11207 -1311,Floral Vineyard,40.67367452191,-73.88453421649129,Pitkin Ave. and Cleveland St.,http://www.nycgovparks.org/parks/B467/,park,11207 -1312,First Quincy St Block Association,40.68777739195,-73.94432155536188,Quincy St. between Throop Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B465/,park,11221 -1313,Farmers Garden,40.67475654627,-73.91821811405532,Bergen St. between Saratoga Ave. and Howard Ave.,http://www.nycgovparks.org/parks/B464/,park,11233 -1314,Fantasy Garden,40.66421617124,-73.91666512979006,Legion St. and Blake Ave.,http://www.nycgovparks.org/parks/B463/,park,11212 -1315,Elton St Block Association,40.66862578891,-73.8816660797557,Elton St. between Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B460/,park,11208 -1316,East End Community Garden,40.67354702201,-73.89062840207225,Glenmore Ave. and Van Siclen Ave.,http://www.nycgovparks.org/parks/B458/,park,11207 -1317,Walt L Shemal Garden,40.67753826466,-73.95348165085545,Dean St. between Bedford Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B456/,park,11216 -1318,Concerned Residents of Montauk Avenue,40.67383253897,-73.87796280492904,Montauk Ave. between Pitkin Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B453/,park,11208 -1319,Clifton Pl Memorial Park and Garden,40.68845462818,-73.95445132734469,Clifton Pl. and Bedford Ave.,http://www.nycgovparks.org/parks/B451/,park,11216 -1320,Clara's Garden,40.67427611731,-73.88914361443666,Glenmore Ave. between Schenck Ave. and Hendrix St.,http://www.nycgovparks.org/parks/B450/,park,11207 -1321,New Vision Garden,40.66592256841,-73.88680853686338,Livonia Ave. between Hendrix St. and Schenck Ave.,http://www.nycgovparks.org/parks/B449/,park,11207 -1322,Causa Festival Garden,40.66822727085,-73.88962569102848,Blake Ave. and Van Siclen Ave.,http://www.nycgovparks.org/parks/B447/,park,11207 -1323,Ten Eyck Houses Garden,40.7096624916,-73.95011661796708,Ten Eyck St. between Union Ave. and Lorminer St.,http://www.nycgovparks.org/parks/B445/,park,11206 -1324,Berry Street Garden,40.71347816529,-73.96370564320826,Berry St. between S. 3 St. and S. 2 St.,http://www.nycgovparks.org/parks/B444/,park,11211 -1325,P.S. 149 Artsy Bloom Community Garden,40.66964512815,-73.89225784074365,Sutter Ave. between Wyona St. and Bradford St.,http://www.nycgovparks.org/parks/B442/,park,11207 -1326,American Heart,40.69304236997,-73.94662637040156,Hart St. between Marcy Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B441/,park,11206 -1327,Amboy Neighborhood Center,40.66508824511,-73.91394888499298,Blake Ave. between Herzl St. and Amboy St.,http://www.nycgovparks.org/parks/B440/,park,11212 -1328,Gethsemane Garden,40.65888700541,-73.90957411598448,Newport St. between Bristol St. and Chester St.,http://www.nycgovparks.org/parks/B436/,park,11212 -1329,Old Gravesend Cemetery,40.59520494392,-73.97395740186487,Van Sicklen St. to McDonald Ave. between Village Rd. and Gravesend Neck Rd.,http://www.nycgovparks.org/parks/B434/,park,11223 -1330,Hendrick I. Lott House,40.61015741465,-73.93246287843549,E. 35 St. to E. 36 St. between Fillmore Ave. and Ave. S,http://www.nycgovparks.org/parks/B433/,park,11234 -1331,Lewis Playground,40.69528104558,-73.93772992401196,Willoughby Ave. between Lewis Ave. and Marcus Garvey Blvd.,http://www.nycgovparks.org/parks/B430/,park,11206 -1332,Hope Ballfield,40.69704845653,-73.9171135097753,Knickerbocker Ave. between Grove St. and Menahan St.,http://www.nycgovparks.org/parks/B429/,park,11237 -1333,Goodwin Gardens,40.69114331703,-73.9231967515498,Goodwin Pl. and Grove St.,http://www.nycgovparks.org/parks/B428/,park,11221 -1334,Sunshine Community Garden,40.70515125933,-73.94398552984758,McKibbin St. between Manhattan Ave. and Graham Ave.,http://www.nycgovparks.org/parks/B427/,park,11206 -1335,Earth Spirit Garden,40.71260596271,-73.95918713448903,S. 2 St. between Driggs Ave. and Roebling St.,http://www.nycgovparks.org/parks/B424/,park,11211 -1336,Project Roots,40.70260474253,-73.94793687808215,Walton St. between Harrison Ave. and Throop Ave.,http://www.nycgovparks.org/parks/B423/,park,11206 -1337,Umoja Garden,40.6877496328,-73.91921765713865,Broadway and Putnam Ave.,http://www.nycgovparks.org/parks/B420/,park,11221 -1338,P.S. 4 Paradise Garden,40.67451570902,-73.88512436772514,Glenmore Ave. between Ashford St. and Cleveland St.,http://www.nycgovparks.org/parks/B417/,park,11207 -1339,TLC Sculpture Park Garden,40.67257748897,-73.90065656214513,Glenmore Ave. and Hinsdale Ave.,http://www.nycgovparks.org/parks/B416/,park,11207 -1340,Georgia Ave Garden,40.66092218914,-73.89433215225341,Georgia Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B415/,park,11207 -1341,Powell Street Livonia Garden,40.66322864212,-73.90180943768125,Livonia Ave. between Powell St. and Junius St.,http://www.nycgovparks.org/parks/B516/,park,11212 -1342,Hull Street Garden,40.67998662829,-73.90778572603568,Hull St. between Mother Gaston Blvd. and Broadway,http://www.nycgovparks.org/parks/B413/,park,11233 -1343,Summit Street Community Garden,40.68248704425,-74.00344509328919,Summit St. bet. Columbia St. and Hicks St.,http://www.nycgovparks.org/parks/B411/,park,11231 -1344,The Backyard,40.68316722605,-74.00533072358304,"Hamilton Ave., Van Brunt St., Summit St.",http://www.nycgovparks.org/parks/B410/,park,11231 -1345,The Amazing Garden,40.68307352411,-74.0032176416544,Carroll St. and Columbia St.,http://www.nycgovparks.org/parks/B409/,park,11231 -1346,Human Compass Garden,40.68482218374,-74.00230389555124,Sackett St. and Columbia St.,http://www.nycgovparks.org/parks/B408/,park,11231 -1347,Epiphany Playground,40.70875417955,-73.96518869215083,Berry St. between S. 9 St. and S. 10 St.,http://www.nycgovparks.org/parks/B405/,park,11211 -1348,George Walker Jr. Park,40.67844850534,-73.89507279816732,Wyona St. to Vermont St. between Fulton St. and Jamaica Ave.,http://www.nycgovparks.org/parks/B402/,park,11207 -1349,Carter G. Woodson Children's Park,40.66791120732,-73.9057030555809,Christopher Ave. between Sutter Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B397/,park,11212 -1350,Diamante Garden,40.79793006639,-73.93613975446817,E. 118 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M323/,park,10035 -1351,Cedar Tree Garden,40.68787902785,-73.95902859147257,Greene Ave. between Classon Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B448/,park,11238 -1352,Nehemiah Park,40.66226250493,-73.90548435927123,"Watkins St., Mother Gaston Blvd., Livonia Ave., Riverdale Ave.",http://www.nycgovparks.org/parks/B396/,park,11212 -1353,Lt. Federico Narvaez Tot Lot,40.64016980833,-73.96579867120825,Argyle Rd. and Cortelyou Rd.,http://www.nycgovparks.org/parks/B391/,park,11226 -1354,Mother Cabrini Park,40.68451930207,-74.00506496661217,President St. and Van Brunt St.,http://www.nycgovparks.org/parks/B390/,park,11231 -1355,Umma Park,40.65347606284,-73.96181567904762,Woodruff Ave. and Ocean Ave.,http://www.nycgovparks.org/parks/B389/,park,11226 -1356,Gateway Triangle,40.68409556676,-73.96817181919647,"Vanderbilt Ave., Gates Ave. and Fulton St.",http://www.nycgovparks.org/parks/B388/,park,11238 -1357,Thomas Boyland Park,40.6822829845,-73.90793700460667,Broadway between Granite St. and Aberdeen St.,http://www.nycgovparks.org/parks/B381/,park,11207 -1358,Robert E. Venable Park,40.67502509747,-73.86481937522672,"Belmont Ave., Sutter Ave., Sheridan Ave. and Grant Ave.",http://www.nycgovparks.org/parks/B380/,park,11208 -1359,University Place,40.69183676087,-73.98152017138543,Flatbush Ave. at Fleet St.,http://www.nycgovparks.org/parks/B378/,park,11201 -1360,Brooklyn Bears Rockwell Pl Garden,40.68682008266,-73.97916641297812,"Flatbush Ave., Lafayette Ave., Rockwell Pl.",http://www.nycgovparks.org/parks/B422/,park,11217 -1361,Floyd Patterson Ballfields,40.66025275196,-73.90355315797022,"Christopher Ave., Riverdale Ave., Newport St., Mother Gaston Blvd.",http://www.nycgovparks.org/parks/B377/,park,11212 -1362,Friends Field,40.61969433341,-73.97208388252155,"Ave. L, E. 4 St., Mcdonald Ave., Ave. M",http://www.nycgovparks.org/parks/B372/,park,11230 -1363,Woods Playground,40.67433678402,-73.92843423606706,"Bergen St., Utica Ave., Rochester Ave., St Mark's Ave.",http://www.nycgovparks.org/parks/B364/,park,11213 -1364,Houston Playground,40.67198442282,-73.904645369763,Glenmore Ave. between Powell St. and Sackman St.,http://www.nycgovparks.org/parks/B363/,park,11212 -1365,Chester Playground,40.66911593883,-73.91163836305083,Chester St. to Bristol St. between Sutter Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B362/,park,11212 -1366,Remsen Playground,40.64241773237,-73.90678996935625,Remsen Ave. and Glenwood Rd.,http://www.nycgovparks.org/parks/B360/,park,11236 -1367,Eleanor Roosevelt Playground,40.69310815157,-73.935491161156,Kosciuszko St. to Dekalb Ave. between Lewis Ave. and Stuyvesant Ave.,http://www.nycgovparks.org/parks/B359/,park,11221 -1368,North Pacific Playground,40.68533275168,-73.98195273092512,Pacific St. between Nevins St. and 3 Ave.,http://www.nycgovparks.org/parks/B356/,park,11217 -1369,Bergen Beach Playground,40.6220338972,-73.90971174522873,E. 71 St. between Ave. N and Ave. T,http://www.nycgovparks.org/parks/B353/,park,11234 -1370,Curtis Playground,40.6407281703,-73.91716451896379,Foster Ave. between E. 81 St. and E. 82 St.,http://www.nycgovparks.org/parks/B352/,park,11236 -1371,Newtown Barge Playground,40.73694762976,-73.96063914629796,"Commercial St., Dupont St.",http://www.nycgovparks.org/parks/B135/,park,11222 -1372,First Temple Of David,40.66662885184,-73.89111242963195,Bradford St. and Dumont Ave.,http://www.nycgovparks.org/parks/B466/,park,11207 -1373,Hilltop Playground,40.67559976311,-73.91391316637994,Hopkinson Ave. bet. Pacific St. and Dean St.,http://www.nycgovparks.org/parks/B387/,park,11233 -1374,Sylvan Grove Cemetery,40.59094959925,-74.19211976511588,Victory Blvd. and Glen St.,http://www.nycgovparks.org/parks/R156/,park,10314 -1375,South Clove Road Cemetery,40.60871157083,-74.09126298048638,South Clove Rd. and Richmond Rd.,http://www.nycgovparks.org/parks/R155/,park,10304 -1376,Pinocchio Playground,40.70510512196,-73.87498589510204,"74 St., 75 St. bet. Cooper Ave. and 78 Ave.",http://www.nycgovparks.org/parks/Q289/,park,11385 -1377,Kosciuszko Pool,40.69105435001,-73.94845908753034,Marcy Ave. between Kosciuszko St. and Dekalb Ave.,http://www.nycgovparks.org/parks/B351/,park,11216 -1378,Stroud Playground,40.67503406471,-73.96128703530192,Sterling Pl. to Park Pl. between Classon Ave. and Washington Ave.,http://www.nycgovparks.org/parks/B350/,park,11238 -1379,Willoughby Playground,40.69480616929,-73.94681447373296,"Tompkins Ave., Willoughby Ave., Vernon Ave.",http://www.nycgovparks.org/parks/B348/,park,11206 -1380,Carver Playground,40.68007507055,-73.9201019074223,Sumpter St. to Marion St. between Howard Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B347/,park,11233 -1381,Ericsson Playground,40.72105062199,-73.9487268450287,Manhattan Ave. and Leonard St.,http://www.nycgovparks.org/parks/B346/,park,11222 -1382,Green Gems,40.67660541522,-73.87521584825697,Glenmore Ave. and Fountain Ave.,http://www.nycgovparks.org/parks/B471/,park,11208 -1383,Corona Golf Playground,40.74751639905,-73.85384748688088,"109 St., 111 St. bet. 46 Ave. and 47 Ave.",http://www.nycgovparks.org/parks/Q450/,park,11368 -1384,Ethan Allen Playground,40.655383428,-73.8867684430967,Wortman Ave. between Vermont St. and New Jersey Ave.,http://www.nycgovparks.org/parks/B345/,park,11207 -1385,100% Playground,40.6462549642,-73.89939837273964,Glenwood Rd. between E. 100 St. and E. 101 St.,http://www.nycgovparks.org/parks/B342/,park,11236 -1386,Garden Playground,40.70109060447,-73.93774918226296,Flushing Ave. between Beaver St. and Garden St.,http://www.nycgovparks.org/parks/B340/,park,11206 -1387,Century Playground,40.57741259024,-73.96957957675203,W. Brighton Ave. between W. 2 St. and W. 3 St.,http://www.nycgovparks.org/parks/B337/,park,11224 -1388,Fermi Playground,40.70099004877,-73.92774827695386,"Central Ave., Troutman St. and Starr St.",http://www.nycgovparks.org/parks/B334/,park,11221 -1389,Evergreen Playground,40.68614317116,-73.91025375126247,Decatur St. to Schaefer St. between Bushwick Ave. and Evergreen Ave.,http://www.nycgovparks.org/parks/B332/,park,11207 -1390,Hickman Playground,40.62094894688,-73.91386363150042,Veterans Ave. between E. 66 St. and E 68 St.,http://www.nycgovparks.org/parks/B330/,park,11234 -1391,Fish Playground,40.67834175444,-73.91400987432566,Fulton St. between Saratoga Ave. and Hopkinson Ave.,http://www.nycgovparks.org/parks/B325/,park,11233 -1392,Jacob Joffe Fields,40.62443730655,-73.91954923285431,Ave. K between E. 58 St. and E. 59 St.,http://www.nycgovparks.org/parks/B324/,park,11234 -1393,Hattie Carthan Playground,40.68538037999,-73.94563033934269,Monroe St. to Madison St. between Marcy Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B323/,park,11216 -1394,Pulaski Playground,40.69339683589,-73.94110197570997,Hart St. to Pulaski St. between Throop Ave. and Marcus Garvey Blvd.,http://www.nycgovparks.org/parks/B322/,park,11206 -1395,Whalen Playground,40.87442339238,-73.87740831572681,Perry Ave. bet. E. 205 St. and E. 208 St,http://www.nycgovparks.org/parks/X180/,park,10467 -1396,Eugene McCabe Field,40.80251821365,-73.94122413701776,"Park Ave., E. 120 St. To E. 121 St.",http://www.nycgovparks.org/parks/M243/,park,10035 -1397,Drumgoole Tot Lot,40.5493415445,-74.17974375571256,"Drumgoole Rd. W., Grantwood Ave., Carlton Ave., Rathbun Ave.",http://www.nycgovparks.org/parks/R100/,park,10312 -1398,Edmonds Playground,40.68945696904,-73.97125377590508,Dekalb Ave. between Adelphi St. and Carlton Ave.,http://www.nycgovparks.org/parks/B321/,park,11205 -1399,Park Slope Playground,40.6766307447,-73.97803688309779,Berkeley Pl. and Lincoln Pl. between 5 Ave. and 6 Ave.,http://www.nycgovparks.org/parks/B320/,park,11217 -1400,DiGilio Playground,40.63310667218,-73.97711409680471,Ave. F bet. McDonald Ave. and E. 2 St.,http://www.nycgovparks.org/parks/B316/,park,11218 -1401,Rainbow Garden,40.82341021408,-73.91479316702888,E 159 St bet. Melrose Av and Courtlandt Av,http://www.nycgovparks.org/parks/X317/,park,10451 -1402,Woodruff Playground,40.66506652778,-73.86563875507731,Stanley Ave. between Autumn Ave. and Hemlock St.,http://www.nycgovparks.org/parks/B312/,park,11208 -1403,Pink Playground,40.66634241452,-73.86220468901465,Stanley Ave. and Eldert La.,http://www.nycgovparks.org/parks/B309/,park,11208 -1404,Yak Playground,40.59250991895,-73.93570590982004,Ave. Y between Coyle St. and Batchelder St.,http://www.nycgovparks.org/parks/B308/,park,11235 -1405,Tiger Playground,40.68834738231,-73.91042429552446,Evergreen Ave. between Eldert St. and Covert St.,http://www.nycgovparks.org/parks/B307/,park,11207 -1406,Playground 286,40.59057976569,-73.93812935209951,Ave. Y between Brown St. and Haring St.,http://www.nycgovparks.org/parks/B306/,park,11235 -1407,Kennedy King Playground,40.65841590616,-73.92183500049609,"E. 93 St. to E. 94 St., between Lenox Rd. and Clarkson Ave.",http://www.nycgovparks.org/parks/B304/,park,11212 -1408,Greene Playground,40.68572912115,-73.96546940837165,Greene Ave. bet. Waverly Ave. and Washington Ave.,http://www.nycgovparks.org/parks/B301/,park,11238 -1409,Oracle Playground,40.69376112495,-73.97111544179398,"Adelphi St., Myrtle Ave., Clermont Ave.",http://www.nycgovparks.org/parks/B300/,park,11205 -1410,Luna Playground,40.57645485639,-73.97804478843902,Surf Ave. between W. 12 St. and W. 8 St.,http://www.nycgovparks.org/parks/B296/,park,11224 -1411,Oxport Playground,40.69711945257,-73.97606754205428,Flushing Ave. between N. Portland Ave. and N. Oxford St.,http://www.nycgovparks.org/parks/B295/,park,11205 -1412,Classon Playground,40.68903658432,-73.96015298653518,Lafayette Ave. and Classon Ave.,http://www.nycgovparks.org/parks/B293/,park,11205 -1413,Pratt Playground,40.69240572065,-73.96211619080259,Willoughby Ave. between Stuben St. and Emerson Pl.,http://www.nycgovparks.org/parks/B292/,park,11205 -1414,Power Playground,40.61747305224,-73.92688097964339,Ave. N between E. 49 St. and Utica Ave.,http://www.nycgovparks.org/parks/B291/,park,11234 -1415,Harry Maze Playground,40.64263670163,-73.9234266846367,"Ave. D, Ditmas Ave. bet. E. 56 St. and E. 57 St.",http://www.nycgovparks.org/parks/B285/,park,11203 -1416,Corporal Frank F. Fagan Sq.,40.75605610337,-73.91243016359473,"48 St., Newtown Rd., Broadway",http://www.nycgovparks.org/parks/Q254/,park,11377 -1417,Marc And Jason's Playground,40.66384643331,-73.94982718962258,"Sterling St., Empire Blvd., New York Ave., Nostrand Ave.",http://www.nycgovparks.org/parks/B284/,park,11225 -1418,Ranaqua Playground,40.80690756995,-73.92191988464064,E. 136 St. bet. Brown Pl. and Willis Ave.,http://www.nycgovparks.org/parks/X272/,park,10454 -1419,Grady Playground,40.58233322595,-73.96437357512889,"Shore Pkwy., Brighton 3 St., Brighton 4 St.",http://www.nycgovparks.org/parks/B275/,park,11235 -1420,Bayview Playground,40.6351837143,-73.88605616693891,Seaview Ave. between E. 99 St. and E. 101 St.,http://www.nycgovparks.org/parks/B274/,park,11236 -1421,Starr Playground,40.70982592368,-73.91730797173041,Onderdonk Ave. bet. Starr St. and Willoughby Ave.,http://www.nycgovparks.org/parks/Q291/,park,11385 -1422,Corporal Ruoff Square,40.68038895023,-73.8448450163566,"Liberty Ave., Rockaway Blvd. bet. 94 St., Cross Bay Blvd. and 95 St.",http://www.nycgovparks.org/parks/Q190/,park,11417 -1423,Brownsville Playground,40.6556117604,-73.90300876514156,"Hegeman Ave., Linden Blvd. bet. Powell St. and Mother Gaston Blvd.",http://www.nycgovparks.org/parks/B270/,park,11212 -1424,Winthrop Playground,40.65637220979,-73.95446701497883,Winthrop St. between Rogers Ave. and Bedford Ave.,http://www.nycgovparks.org/parks/B267/,park,11225 -1425,Star Spangled Playground,40.69242615564,-73.95770989246813,Franklin Ave. between Willoughby Ave. and Dekalb Ave.,http://www.nycgovparks.org/parks/B266/,park,11205 -1426,Rainbow Playground,40.64067349105,-74.01069911177859,6 Ave. bet. 55 St. and 56 St.,http://www.nycgovparks.org/parks/B265/,park,11220 -1427,Roebling Playground,40.70647158614,-73.9609452576999,Lee Ave. between Wilson St. and Taylor St.,http://www.nycgovparks.org/parks/B264/,park,11211 -1428,Potomac Playground,40.68173690927,-73.94476149765043,Tompkins Ave. between Halsey St. and Macon St.,http://www.nycgovparks.org/parks/B262/,park,11216 -1429,Howard Playground,40.67199200489,-73.90760273049897,Mother Gaston Blvd. and Glenmore Ave.,http://www.nycgovparks.org/parks/B260/,park,11212 -1430,Wingate Park,40.6596919687,-73.94420747204322,"Winthrop St., Brooklyn Ave., Rutland Rd.",http://www.nycgovparks.org/parks/B254/,park,11203 -1431,Nostrand Playground,40.63861773199,-73.94644652231321,Nostrand Ave. between Foster Ave. and Farragut Pl.,http://www.nycgovparks.org/parks/B250/,park,11210 -1432,McDonald Playground,40.60148673645,-73.97182711049231,Mcdonald Ave. between Ave. S and Ave. T,http://www.nycgovparks.org/parks/B244/,park,11223 -1433,Sheepshead Playground,40.5894526578,-73.9399536627248,Ave. Z between Nostrand Ave. and E. 29 St.,http://www.nycgovparks.org/parks/B239/,park,11235 -1434,Herman Dolgon Playground,40.59785956405,-73.9404721735751,Ave. V between Nostrand Ave. and Batchelder St.,http://www.nycgovparks.org/parks/B235/,park,11229 -1435,Seward Park,40.71426208449,-73.9888296647971,"Canal St, Essex St, Jefferson St and E Broadway",http://www.nycgovparks.org/parks/M082/,park,10002 -1436,St. Andrew's Playground,40.67816967074,-73.94148303666111,"Atlantic Ave., Herkimer St., Kingston Ave., St Andrew's Pl.",http://www.nycgovparks.org/parks/B225/,park,11216 -1437,Queens Valley Playground,40.72171901355,-73.82316609851492,137 St. bet. 76 Ave. and 76 Rd.,http://www.nycgovparks.org/parks/Q212/,park,11367 -1438,Squibb Park,40.70104213259,-73.9950993695748,Middagh St. between Columbia Heights & Furman St.,http://www.nycgovparks.org/parks/B223F/,park,11201 -1439,Jennie Jerome Playground,40.84558496661,-73.91327313915222,Jerome Av bet. E 174 St and the Cross Bronx Exwy Entrance Ramp,http://www.nycgovparks.org/parks/X148C5/,park,10453 -1440,Federalist Triangle,40.72683274077,-73.90050056269719,"55 Ave., Jay Ave., 65 Pl.",http://www.nycgovparks.org/parks/Q090/,park,11378 -1441,Legion Triangle,40.68653797831,-73.86682928835789,"Rockaway Blvd., Eldert La.",http://www.nycgovparks.org/parks/Q076/,park,11421 -1442,Trolley Car Triangle,40.76231431071,-73.87232106968362,"Astoria Blvd., 97 St. and Jackson Mill Rd.",http://www.nycgovparks.org/parks/Q070/,park,11369 -1443,Middleburgh Triangle,40.74131862834,-73.87502053287322,"Corona Ave., 90 St., 48 Ave.",http://www.nycgovparks.org/parks/Q069/,park,11373 -1444,John Vincent Daniels Jr. Square,40.74392521321,-73.91362408531764,"43 Ave., Roosevelt Ave. bet. 50 St., 51 St. and 52 St.",http://www.nycgovparks.org/parks/Q065/,park,11377 -1445,Rochdale Park,40.67524298933,-73.77295885791341,Guy R. Brewer Blvd. bet. 130 Ave. and 137 Ave.,http://www.nycgovparks.org/parks/Q413/,park,11434 -1446,Dunningham Triangle,40.74635179869,-73.88357183968009,"82 St., Ithaca St., Baxter Ave.",http://www.nycgovparks.org/parks/Q058/,park,11373 -1447,Mae Grant Playground,40.7926628468,-73.94895711388925,"N/s E. 104 St., Madison Ave. and Park Ave.",http://www.nycgovparks.org/parks/M213/,park,10029 -1448,Van Voorhees Playground,40.69019032643,-73.99922892592204,"Columbia St., Hicks St. bet. Congress St. and Atlantic Ave.",http://www.nycgovparks.org/parks/B050/,park,11201 -1449,Mary O'Connor Playground,40.74957908731,-73.97052783690923,E. 42 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M203D/,park,10017 -1450,Columbus Square,40.76999975481,-73.91742404027441,"Astoria Blvd S., Hoyt Ave. S. bet. 31 St. and 32 St.",http://www.nycgovparks.org/parks/Q137/,park,11103 -1451,Broadway Malls,40.83846673927,-73.94162339331957,"Broadway, W 156 St To W 168 St",http://www.nycgovparks.org/parks/M095A/,park,10032 -1452,Brizzi Playground,40.64269087997,-73.99441233975762,"10 Ave., New Utrecht Ave. bet. 43 St. and 42 St.",http://www.nycgovparks.org/parks/B162/,park,11219 -1453,Mapes Park,40.84731526863,-73.88506332614014,"Mapes Ave., Prospect Ave. bet. E. 180 St. and E. 181 St.",http://www.nycgovparks.org/parks/X289/,park,10460 -1454,Lyons Pool,40.63763524739,-74.07494471814765,Murray Julbert Ave. bet. Victory Blvd. and Hannah St.,http://www.nycgovparks.org/parks/R043/,park,10301 -1455,Saw Mill Creek Marsh,40.61122646035,-74.18776095396163,West Shore Exwy. to Kill Van Kull from River Rd. to South Ave.,http://www.nycgovparks.org/parks/R130/,park,10314 -1456,Mapes Pool,40.84650628414,-73.88575715253079,E 180 St bet. Prospect Av and Mapes Av,http://www.nycgovparks.org/parks/X236/,park,10460 -1457,Garden Of Eden,40.84358400882,-73.90720560327286,E 173 St bet. Weeks Av and Monroe Av,http://www.nycgovparks.org/parks/X297/,park,10457 -1458,Locust Point Marina,40.81610194891,-73.80459102744793,Longstreet Ave. bet. Harding Ave. and Giegerich Pl.,http://www.nycgovparks.org/parks/X310/,park,10465 -1459,Alexander's Alley,40.81159902717,-73.92306430570771,E. 141 St. bet. Willis Ave. and Alexander Ave.,http://www.nycgovparks.org/parks/X119/,park,10454 -1460,110th Street Block Association Garden,40.7962497377,-73.94742443828993,E. 110 St. bet. Madison Ave. and Park Ave.,http://www.nycgovparks.org/parks/M382/,park,10029 -1461,Huguenot Ponds Park,40.53017030149,-74.18977570007709,Billiou St. and Comely St. bet. Huguenot Ave. and Kingdom Ave.,http://www.nycgovparks.org/parks/R131/,park,10312 -1462,Jackie Robinson Park,40.82824916353,-73.9394109472362,"Bradhurst Av and Edgecombe Av, W 145 St To",http://www.nycgovparks.org/parks/M014/,park,10039 -1463,Chelsea Park,40.75069828559,-74.00177474199378,"9 Av To 10 Av, W 27 St To W 28 St",http://www.nycgovparks.org/parks/M011/,park,10001 -1464,Bennett Park,40.85223814809,-73.93792999681882,"Ft Washington Av, W 183 St, Pinehurst Av",http://www.nycgovparks.org/parks/M009/,park,10033 -1465,Columbus Park,40.71518119983,-73.99974544634283,"Baxter St, Mulberry St, Bayard St and Park",http://www.nycgovparks.org/parks/M015/,park,10013 -1466,Cooney Grauer Field,40.88049716004,-73.90087367611189,Bailey Ave. bet. W. 233 St. and W. 234 S,http://www.nycgovparks.org/parks/X150I/,park,10463 -1467,Sutton Parks,40.75543914166,-73.96187594075163,"E. 53 St. to E. 54 St. at Sutton Pl.; Foot of E. 55 St., E. 56 St., E. 57 St.",http://www.nycgovparks.org/parks/M108P/,park,10022 -1468,Valentino Pier,40.67889715901,-74.01821884592034,Ferris St. between Coffey St. and Van Dyke St.,http://www.nycgovparks.org/parks/B418/,park,11231 -1469,Juniper Valley Park,40.71920859897,-73.88081129246667,"Juniper Blvd. bet. Lutheran Ave., 71 St. and Dry Harbor Rd.",http://www.nycgovparks.org/parks/Q102/,park,11379 -1470,Hilton Holiday Gardens,40.66822491036,-73.7951244556081,"133 Ave., 135 Ave. bet. 143 St. and 145 St.",http://www.nycgovparks.org/parks/Q440/,park,11436 -1471,Weeksville Playground,40.67709959137,-73.9193215298684,Howard Ave. bet. Atlantic Ave. and Herkimer St.,http://www.nycgovparks.org/parks/B093/,park,11233 -1472,Whitey Ford Field,40.77825100367,-73.93371718774772,"26 Ave., bet. 1 St. and 2 St.",http://www.nycgovparks.org/parks/Q215/,park,11102 -1473,Captain Tilly Park,40.71281217248,-73.79827338424522,"Highland Ave., 85 Ave. bet. 165 St. and Chapin Pkwy.",http://www.nycgovparks.org/parks/Q052/,park,11432 -1474,Trinity Park,40.69848030416,-73.98333289232065,"Nassau St., Sands St. bet. Manh. Bridge and Gold St.",http://www.nycgovparks.org/parks/B223K/,park,11201 -1475,Police Officer Nicholas Demutiis Park,40.68148243301,-73.83893707403772,Liberty Ave. bet. 101 St. and 102 St.,http://www.nycgovparks.org/parks/Q118/,park,11417 -1476,Springfield Park,40.66033865512,-73.76139575823794,"149 Av, Springfield Bl, 145 Rd, 184 St",http://www.nycgovparks.org/parks/Q107/,park,11413 -1477,Brooklyn Heights Promenade,40.69842958658,-73.99681516426283,BQE bet. Clark St. and Pierrepoint St.,http://www.nycgovparks.org/parks/B223DG/,park,11201 -1478,Dimattina Playground,40.68062529686,-74.00178411679866,Hicks St. bet. Woodhull St. and Rapelye St.,http://www.nycgovparks.org/parks/B223B/,park,11231 -1479,Newtown Playground,40.73619628364,-73.86903336958271,"56 Ave., 92 St.",http://www.nycgovparks.org/parks/Q041/,park,11373 -1480,Pfc Norton Playground,40.61426202301,-73.94503487027522,Nostrand Ave. bet. Kings Hwy. and Ave. P,http://www.nycgovparks.org/parks/B208/,park,11229 -1481,Sunners Playground,40.63239670833,-73.92943855562463,Avenue H bet. Kings Hwy. and E. 49 St.,http://www.nycgovparks.org/parks/B206/,park,11234 -1482,Mellett Playground,40.59670553538,-73.95704055316381,Avenue V bet. E. 13 St. and E. 14 St.,http://www.nycgovparks.org/parks/B197/,park,11229 -1483,John Hancock Playground,40.68242790004,-73.95386934152293,"Bedford Ave., Hancock St., Jefferson Ave.",http://www.nycgovparks.org/parks/B237/,park,11216 -1484,P.S. 125 Playground,40.66516627688,-73.90940657813228,Rockaway Ave. bet. Blake Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B227/,park,11212 -1485,Dr. Green Playground,40.66757157691,-73.90651756610914,Mother Gaston Blvd. and Sutter Ave.,http://www.nycgovparks.org/parks/B228/,park,11212 -1486,Baisley Pond Park,40.67917896073,-73.78439768325394,"N. Conduit Ave., 116 Ave. bet. 150 St., Suptin Blvd., and Baisley Blvd. S.",http://www.nycgovparks.org/parks/Q005/,park,11434 -1487,Joe Holzka Community Garden,40.63481924555,-74.12158675820055,Barker St. bet. Castleton Ave. and Taylor Ct.,http://www.nycgovparks.org/parks/R146/,park,10310 -1488,La Guardia Playground,40.70964031186,-73.95892335421298,"S. 5 St., Broadway, Havemeyer St.",http://www.nycgovparks.org/parks/B167A/,park,11211 -1489,Thomas Greene Playground,40.6802174719,-73.98430020422195,"Nevins St., 3 Ave., bet. De Graw St. and Douglas St.",http://www.nycgovparks.org/parks/B145/,park,11217 -1490,Martinez Playground,40.70890968807,-73.94418229453073,Scholes St. bet. Manhattan Ave. and Graham Ave.,http://www.nycgovparks.org/parks/B127/,park,11206 -1491,Dyckman House Museum,40.86718368506,-73.92305320407046,Broadway and W. 204 St.,http://www.nycgovparks.org/parks/M026/,park,10034 -1492,CPL. Thompson Park,40.63686354103,-74.11861893340144,"Broadway, Henderson Ave., Chappell St.",http://www.nycgovparks.org/parks/R109/,park,10310 -1493,Bloomingdale Park,40.53031875178,-74.2112474349049,"Richmond Pkwy., West Shore Expw., Lenevar Ave., Ramona Ave.",http://www.nycgovparks.org/parks/R106/,park,10309 -1494,Marcy Playground,40.69584110591,-73.9506131078259,Myrtle Ave. bet. Nostrand Ave. and Marcy Ave.,http://www.nycgovparks.org/parks/B217/,park,11206 -1495,John Allen Payne Playground,40.64019324746,-74.02359665349556,3 Ave. bet. 64 St. and 65 St.,http://www.nycgovparks.org/parks/B210A/,park,11220 -1496,Dongan Playground,40.58231860205,-74.08859687032225,Mason Ave. bet. Buel Ave. and Dongan Hills Ave.,http://www.nycgovparks.org/parks/R087/,park,10305 -1497,Sledge Playground,40.63841294286,-73.89784646903031,E. 95 St. bet. Ave. L and Ave. K,http://www.nycgovparks.org/parks/B097/,park,11236 -1498,Davis Playground,40.64206115916,-74.08538230221099,"Jersey St., Crescent Ave., Layton Ave., Beechwood Ave.",http://www.nycgovparks.org/parks/R086/,park,10301 -1499,E.M.T. Christopher J. Prescott Playground,40.5222924396,-74.18557299612219,Edith Ave. at Irvington St.,http://www.nycgovparks.org/parks/R085/,park,10312 -1500,Harold Ickes Playground,40.68289588017,-74.00576643156036,Hamitlon Ave. ber. Van Brunt St. and Woodull St.,http://www.nycgovparks.org/parks/B210H/,park,11231 -1501,Latinos Unidos Garden,40.82166324449,-73.91397269643996,E. 157 St. bet. Melrose Ave and Elton Ave.,http://www.nycgovparks.org/parks/X337/,park,10451 -1502,Northerleigh Park,40.62328730672,-74.13366975802703,Burnside Ave. to North Ave. at Shaw Pl. and Eldridge Ave.,http://www.nycgovparks.org/parks/R078/,park,10302 -1503,Markham Playground,40.62340561265,-74.14513986569457,"Willowbrook Pkwy., Forest Ave. to Houston St.",http://www.nycgovparks.org/parks/R076/,park,10302 -1504,Clawson Playground,40.56108399698,-74.12480224365221,"Adelaide Ave., Clawson St.",http://www.nycgovparks.org/parks/R072/,park,10306 -1505,Columbus Park,40.69492270712,-73.98911885717008,"Adam St., Court St., Cadman Plaza West bet. Johnson St. and Fulton St.",http://www.nycgovparks.org/parks/B113C/,park,11201 -1506,Korean War Veterans Plaza,40.69513965387,-73.99033676948099,"Cadman Plaza West, Cadman Plaza East bet. Tillary St. and Johnson St.",http://www.nycgovparks.org/parks/B113B/,park,11201 -1507,Crispus Attucks Playground,40.6816534502,-73.95869140419849,Classon Ave. bet. Fulton St. and Lefferts Pl.,http://www.nycgovparks.org/parks/B102/,park,11238 -1508,Terrace Playground,40.61353155076,-74.0981168771601,"Foote Ave., Howard Ave., Martha St., Clove Rd.",http://www.nycgovparks.org/parks/R069/,park,10301 -1509,Old Town Playground,40.59514394693,-74.08082911468377,Parkinson Ave. at Kramer St.,http://www.nycgovparks.org/parks/R063/,park,10305 -1510,Arrochar Playground,40.5974265945,-74.07090104369,"Sand La., Major Ave. and Mcfarland Ave.",http://www.nycgovparks.org/parks/R062/,park,10305 -1511,Rev. Dr. Maggie Howard Playground,40.62267293285,-74.07874711255248,"Tompkins Ave., Broad St. and Hill St.",http://www.nycgovparks.org/parks/R061/,park,10304 -1512,Midland Field,40.57676504137,-74.09842046438315,"Midland Ave., Mason Ave., Bedford Ave., Boundary Ave.",http://www.nycgovparks.org/parks/R038A/,park,10306 -1513,Midland Playground,40.5742396953,-74.09877666294912,"Lincoln Ave., Mason Ave., Midland Ave., Poultney St.",http://www.nycgovparks.org/parks/R038/,park,10306 -1514,Sunset Park,40.64749905614,-74.0009059513263,"41 St., 44 St., bet. 5 Ave. and 7 Ave.",http://www.nycgovparks.org/parks/B087/,park,11232 -1515,Lost Battalion Hall Recreation Center,40.73283560424,-73.86443248551073,Queens Blvd. bet. 62 Ave. and 62 Rd.,http://www.nycgovparks.org/parks/Q401/,park,11374 -1516,Big Red Garden,40.66873180328,-73.8894045650259,Van Siclen Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B446/,park,11207 -1517,Martin Luther King Jr. Playground,40.66706529016,-73.88989700237092,"Dumont Ave., Blake Ave. bet. Bradford St. and Miller Ave.",http://www.nycgovparks.org/parks/B056/,park,11207 -1518,Highland Park Childrens Garden,40.68299624341,-73.88747057995819,Jamaica Ave. bet. Warwick St. to Ashford St.,http://www.nycgovparks.org/parks/B047A/,park,11207 -1519,Sperandeo Brothers Playground,40.67633180405,-73.88406137452317,"Atlantic Ave., Cleveland St. and Liberty Ave.",http://www.nycgovparks.org/parks/B163/,park,11208 -1520,Irving Square Park,40.692930635,-73.90823475719237,"Wilson Ave., Knickerbocker Ave., bet. Halsey St. and Weirfield St.",http://www.nycgovparks.org/parks/B049/,park,11207 -1521,Gerard P. Dugan Playground,40.56117067102,-74.10968203132582,Mill Rd. to Weed Ave. bet. Tysens La. and Isernia Ave.,http://www.nycgovparks.org/parks/R026/,park,10306 -1522,Mahoney Playground,40.64292595416,-74.08581316998756,"Beechwood Ave., Crescent Ave. and Jersey St.",http://www.nycgovparks.org/parks/R025/,park,10301 -1523,Silver Lake Park,40.62183259706,-74.09734236135799,"Victory Blvd., Clove Rd., Forest Ave.",http://www.nycgovparks.org/parks/R022/,park,10301 -1524,Walker Park,40.64266112915,-74.11035013703814,"Delafield Pl., Bard Ave., and Davis Ave.",http://www.nycgovparks.org/parks/R015/,park,10310 -1525,Barrett Park,40.62461067899,-74.11418956708948,Glenwood Pl. bet. Clove Rd. and Broadway,http://www.nycgovparks.org/parks/R003/,park,10310 -1526,Brooklyn Botanic Garden,40.67215243584,-73.96535651528673,"Washington Ave., Flatbush Ave. bet. Eastern Pkwy. and Empire Blvd.",http://www.nycgovparks.org/parks/B010/,park,11238 -1527,Heisser Triangle,40.69877822338,-73.91777998309018,"Knickerbocker Ave., Myrtle Ave., Bleecker St.",http://www.nycgovparks.org/parks/B045/,park,11237 -1528,Story Playground,40.82359378977,-73.86262163118082,Story Ave. bet. Taylor Ave. and Thieriot Ave.,http://www.nycgovparks.org/parks/X204/,park,10473 -1529,Printers Park,40.82391695232,-73.89059014547541,Hoe Av bet. Aldus St and Westchester Av,http://www.nycgovparks.org/parks/X284/,park,10459 -1530,Longfellow Playground,40.82587678326,-73.8874305585425,"Longfellow Ave., Lowell St., E. 165 St.",http://www.nycgovparks.org/parks/X290/,park,10459 -1531,Field Of Dreams Court,40.82668573181,-73.8920824638161,E 167 St bet. Southern Blvd and Simpson St,http://www.nycgovparks.org/parks/X264/,park,10459 -1532,Carroll Park,40.68097488253,-73.99448698908022,"Court St., Smith St., bet. Carroll St. and President St.",http://www.nycgovparks.org/parks/B019/,park,11231 -1533,Bushwick Playground,40.69653597818,-73.91204660623697,Knickerbocker Ave. bet. Woodbine St. and Putnam Ave.,http://www.nycgovparks.org/parks/B017/,park,11237 -1534,Amersfort Park,40.62761792705,-73.93854175927676,"E. 38 St., E. 38 St. bet. Ave. I and Ave. J",http://www.nycgovparks.org/parks/B002/,park,11210 -1535,American Playground,40.72852976621,-73.95749594420685,Franklin St. bet. Milton St. and Noble St.,http://www.nycgovparks.org/parks/B001/,park,11222 -1536,Marion Hopkinson Playground,40.68184391773,-73.91374895281301,Hopkinson Ave. bet. Marion St. and Chauncey St.,http://www.nycgovparks.org/parks/B110/,park,11233 -1537,Two Coves Community Garden,40.77209429321,-73.93204581404675,"Astoria Blvd., 30 Ave. bet. Main Ave. and 8 St.",http://www.nycgovparks.org/parks/Q477/,park,11102 -1538,Simeone Park,40.7411662673,-73.85976396232935,"Lewis Ave., Radcliff Ave. bet. 101 St. and 102 St.",http://www.nycgovparks.org/parks/Q474/,park,11368 -1539,Corona Taxpayers Association,40.74161199876,-73.8597496702838,102 St. bet. Radcliff Ave. and Strong Ave.,http://www.nycgovparks.org/parks/Q474A/,park,11368 -1540,Lafayette Playground,40.69246363108,-73.92963488062917,Lafayette Ave. bet. Malcolm X Blvd. and Patch Ave.,http://www.nycgovparks.org/parks/B023/,park,11221 -1541,Andrews Grove,40.74344294572,-73.95437824599685,49 Ave. bet. 5 St. and Vernon Blvd.,http://www.nycgovparks.org/parks/Q045/,park,11101 -1542,Tompkins Square Park,40.72518209047,-73.9812564536158,"Ave. A To Ave. B, E. 7 St. To E. 10 St.",http://www.nycgovparks.org/parks/M088/,park,10009 -1543,St. George Park,40.64443133748,-74.07793439662545,Stuyvesant Pl. bet. Wall St. and Hamilton Ave.,http://www.nycgovparks.org/parks/R077/,park,10301 -1544,Hart To Hart,40.69295205842,-73.94741273033296,Hart St. bet. Marcy Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B474/,park,11206 -1545,Robert L. Clinkscales Playground and Community Garden,40.8226887193,-73.93969486089213,W. 146 St. bet. Fredrick Douglass Blvd. and Adam Clayton Powell Blvd.,http://www.nycgovparks.org/parks/M355/,park,10039 -1546,Fort Tryon Park,40.85972020674,-73.93135505855416,"Riverside Dr To Broadway, W 192 St To Dyckman St",http://www.nycgovparks.org/parks/M029/,park,10040 -1547,Pueble Unido Garden,40.7964933635,-73.94724522871344,Madison Ave. bet. E. 110 St. and E. 111 St.,http://www.nycgovparks.org/parks/M384/,park,10029 -1548,La Cuevita Garden,40.79923127148,-73.94416361727798,E. 115 St. bet. Park Ave. and Madison Ave.,http://www.nycgovparks.org/parks/M383/,park,10029 -1549,United Block Association Garden,40.81079888905,-73.94110416163524,W. 131 St. bet. 5 Ave. and Lenox Ave.,http://www.nycgovparks.org/parks/M380/,park,10037 -1550,Pleasant Park Garden,40.79426108391,-73.93432908751741,E. 114 St. bet. 1 Ave. and Pleasant Ave.,http://www.nycgovparks.org/parks/M375/,park,10029 -1551,Our Little Green Acre/garden Eight,40.80829663882,-73.95192635084753,W. 122 St. bet. Frederick Douglass Blvd. and Adam C. Powell Blvd.,http://www.nycgovparks.org/parks/M365/,park,10027 -1552,Jackie Robinson Community Garden,40.8031905364,-73.93964584301888,E. 122 St. bet. Park Ave. and Lexington Ave.,http://www.nycgovparks.org/parks/M364/,park,10035 -1553,W 124th Street Community Garden,40.80716175258,-73.94515009314163,W. 124 St. bet. Lenox Ave. and 5 Ave.,http://www.nycgovparks.org/parks/M362/,park,10027 -1554,Lower East Side Ecology Center,40.72448463963,-73.97961759777417,E. 7 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M361/,park,10009 -1555,First Street Garden,40.72386474148,-73.98963948581685,E. 1 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M358/,park,10003 -1556,Los Amigos Garden,40.7223800789,-73.98207398041201,"E. 3 St., bet. Ave. B and Ave. C",http://www.nycgovparks.org/parks/M357/,park,10009 -1557,P.S. 76 Garden,40.80608522859,-73.95115536768618,W. 120 St. bet. Adam Clayton Powell Blvd. and St Nicholas Ave.,http://www.nycgovparks.org/parks/M356/,park,10027 -1558,Yu Suen Garden,40.72844258818,-73.97824962169392,Ave. B and E. 13 St.,http://www.nycgovparks.org/parks/M352/,park,10009 -1559,Peachtree Garden,40.72149581326,-73.9819962025476,E. 2 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M350/,park,10009 -1560,New 123rd St Block Association Garden,40.80676964129,-73.94735171527196,W. 123 St. bet. Lenox Ave. and Adam C Powell Blvd.,http://www.nycgovparks.org/parks/M349/,park,10027 -1561,Morris-Jumel Ecological Education Garden,40.83560421941,-73.9391576797723,W. 162 St. bet. Amsterdam Ave. and Edgecombe Ave.,http://www.nycgovparks.org/parks/M348/,park,10032 -1562,Mobilization For Change,40.79968890396,-73.96203692828661,Columbus Ave. and W. 107 St.,http://www.nycgovparks.org/parks/M347/,park,10025 -1563,Life Spire Garden,40.8025545658,-73.93833661623387,Lexington Ave. bet. E. 122 St. and E. 123 St.,http://www.nycgovparks.org/parks/M346/,park,10035 -1564,Kenkeleba House Garden,40.72207358623,-73.98257998337623,E. 2 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M345/,park,10009 -1565,Humacao Community Garden,40.79144347341,-73.9393568469474,E. 108 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M344/,park,10029 -1566,Community Garden Association,40.72834481006,-73.97893754532485,Ave. B bet. E. 12 St. and E. 13 St.,http://www.nycgovparks.org/parks/M342/,park,10009 -1567,Garden Of Love,40.8043309655,-73.95605540656489,W. 116 St. bet. Manhattan Ave. and Fred Douglass Blvd.,http://www.nycgovparks.org/parks/M341/,park,10026 -1568,Elizabeth Langley Memorial Garden,40.81621660031,-73.94087199179819,W. 137 St. bet. Lenox Ave. and Adam C Powell Blvd.,http://www.nycgovparks.org/parks/M340/,park,10030 -1569,De Colores Community Yard and Cultural Center,40.72533585411,-73.97974062578366,E. 8 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M336/,park,10009 -1570,Brisas Del Caribe,40.72217927211,-73.98159775544,E. 3 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M334/,park,10009 -1571,The Secret Garden,40.72240368422,-73.98023261302485,E. 4 St. and Ave C.,http://www.nycgovparks.org/parks/M332/,park,10009 -1572,117th St Community Garden,40.7989257637,-73.94043823738292,E. 117 St. bet. Lexington Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M331/,park,10035 -1573,Family Community Garden,40.79523159713,-73.94366336049531,E. 111 St. bet. Lexington Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M330/,park,10029 -1574,Generation X,40.72241789806,-73.98142360703135,E. 4 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M329/,park,10009 -1575,William B. Washington Memorial Garden,40.81129824765,-73.9515561700332,W. 126 St. bet. St Nicholas Ave. and Frederick Douglas Blvd.,http://www.nycgovparks.org/parks/M328/,park,10027 -1576,Liz Christy Garden,40.72406974355,-73.9915495407541,"E. Houston, bet. Bowery and 2 Ave.",http://www.nycgovparks.org/parks/M326/,park,10003 -1577,La Plaza Cultural,40.72526435365,-73.97812609359605,E. 9 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M325/,park,10009 -1578,Merchant's House Museum,40.72757234194,-73.99236371147707,E. 4 St. bet. Bowery and Lafayette St.,http://www.nycgovparks.org/parks/M318/,park,10003 -1579,Frank White Memorial Garden,40.82409314653,-73.9498918427289,W. 143 St. bet. Hamilton Pl. and Broadway,http://www.nycgovparks.org/parks/M317/,park,10031 -1580,Miracle Garden,40.72251216406,-73.98353466849754,"E. 3 St., bet. Ave. A and Ave. B",http://www.nycgovparks.org/parks/M314/,park,10009 -1581,Court Square Park,40.74630419399,-73.94306677581775,Jackson Ave. bet. Court Sq. and Thomson Ave.,http://www.nycgovparks.org/parks/Q267/,park,11101 -1582,9th St Community Garden Park,40.72569023309,-73.97752231492504,E. 9. St. and Ave. C,http://www.nycgovparks.org/parks/M312/,park,10009 -1583,W 104th Street Garden,40.79690258082,-73.96157941135702,"W. 104 St., Manhattan Ave., Central Park W.",http://www.nycgovparks.org/parks/M306/,park,10025 -1584,West 186th Street Basketball Court,40.85197590537,-73.93075663162118,"W. 186 St., Audubon Ave., St Nicholas Ave.",http://www.nycgovparks.org/parks/M304/,park,10033 -1585,Detective Omar Edwards Park,40.80254121752,-73.93495122934803,E. 124 St.bet. 2 Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M302/,park,10035 -1586,Santos White Garden,40.57591467,-73.9882759795244,Mermaid Ave. between W. 21 St. and W. 22 St.,http://www.nycgovparks.org/parks/B490/,park,11224 -1587,Jefferson Market Garden,40.73431535995,-73.99925426415518,W. 9 St. Ave. Of Americas and Greenwich Ave.,http://www.nycgovparks.org/parks/M278/,park,10011 -1588,Parks Council Success Garden,40.81361237654,-73.9427285671402,"W. 134 St., Lenox Ave., Adam C Powell Blvd.",http://www.nycgovparks.org/parks/M297/,park,10030 -1589,Sunshine Playground,40.78854994221,-73.9475961405579,E. 101 St. bet. 3 Ave. and Lexington Ave.,http://www.nycgovparks.org/parks/M292/,park,10029 -1590,Fishbridge Garden,40.70932680472,-74.0016459156729,Dover St. bet. Pearl St. and Water St.,http://www.nycgovparks.org/parks/M291/,park,10038 -1591,Dr. Ronald E. McNair Playground,40.80241440664,-73.93787523556922,Lexington Ave. bet. E. 122 St. and 123 St.,http://www.nycgovparks.org/parks/M285/,park,10035 -1592,Convent Garden,40.82817842692,-73.94263311848547,"Convent Ave., 151 St. and St. Nicholas Ave.",http://www.nycgovparks.org/parks/M284/,park,10031 -1593,Hell's Kitchen Park,40.7628909875,-73.99237523495403,10 Ave. bet. W. 47 St. and W. 48 St.,http://www.nycgovparks.org/parks/M277/,park,10036 -1594,Dry Dock Playground,40.72499386973,-73.97524106885247,"Szold Pl., E. 10 St., Ave. D",http://www.nycgovparks.org/parks/M270/,park,10009 -1595,El Jardin Del Paraiso Park,40.72214898251,-73.97892875271094,"E. 4 St. to E. 5 St., Ave. C, Ave. D",http://www.nycgovparks.org/parks/M268/,park,10009 -1596,Playground Eighty Nine LXXXIX,40.78840436586,-73.97170273649769,"W. 89 St., Amsterdam Ave. and Columbus Ave.",http://www.nycgovparks.org/parks/M264/,park,10024 -1597,Harlem Rose Garden,40.80861658672,-73.93979408651596,E. 129 St. bet. 5 Ave. and Madison Ave.,http://www.nycgovparks.org/parks/M363/,park,10035 -1598,West 111th St. People's Garden,40.80391061179,-73.96338200344834,Amsterdam Ave. bet. W. 111 St. and W. 112 St.,http://www.nycgovparks.org/parks/M368/,park,10025 -1599,CEP Community Garden,40.81103751559,-73.95073552024594,W. 126 St. and Frederick Douglass Blvd.,http://www.nycgovparks.org/parks/M374/,park,10027 -1600,Discovery Garden,40.69486716988,-73.79062942451517,"109 Ave. bet. 160 St., Unionhall St., and Guy R. Brewer Blvd.",http://www.nycgovparks.org/parks/Q493/,park,11433 -1601,Louis Armstrong Community Center,40.75710823967,-73.86100123257201,"107 St., 108 St. bet. Northern Blvd. and 34 Ave.",http://www.nycgovparks.org/parks/Q468/,park,11368 -1602,Gene Gray Playground,40.6061043437,-73.81909434125097,Cross Bay Blvd. bet. E 9 Rd. and E 10 Rd.,http://www.nycgovparks.org/parks/Q456/,park,11693 -1603,Private William Gray Playground,40.75785503838,-73.87064527999523,98 St. bet. Northern Blvd. and 32 Ave.,http://www.nycgovparks.org/parks/Q439/,park,11369 -1604,Yellowstone Park,40.72620621932,-73.84676314926931,Yellowstone Blvd. bet. 68 Ave. and 68 Rd.,http://www.nycgovparks.org/parks/Q425/,park,11375 -1605,Chelsea Recreation Center,40.74830574047,-74.00186615276677,"W. 25 St., 9 Ave. To 10 Ave.",http://www.nycgovparks.org/parks/M260/,park,10001 -1606,McKinley Playground,40.72417079663,-73.98558059554601,"Ave. A, E. 3 St. to E. 4 St.",http://www.nycgovparks.org/parks/M259/,park,10009 -1607,Clement Clarke Moore Park,40.74660718418,-74.0038770189828,W. 22 St. and 10 Ave.,http://www.nycgovparks.org/parks/M257/,park,10011 -1608,Bleecker Playground,40.73668990786,-74.00542601073961,"Hudson St., Bleecker St. and 8 Ave.",http://www.nycgovparks.org/parks/M251/,park,10014 -1609,Penn South Playground,40.74760581781,-73.99826871504614,"W. 26 St., 8 Ave. To 9 Ave.",http://www.nycgovparks.org/parks/M249/,park,10001 -1610,St. James Triangle,40.71267570545,-73.99842801890317,St James Pl. and Oliver St.,http://www.nycgovparks.org/parks/M247/,park,10038 -1611,Renaissance Playground,40.8213446724,-73.94139664225519,"7 Ave. To 8 Ave., W. 143 St. To W. 144 St.",http://www.nycgovparks.org/parks/M245/,park,10030 -1612,Sol Bloom Playground,40.78926268735,-73.96866126614377,"Columbus Ave., W. 91 St. To W. 92 St., Central Park W.",http://www.nycgovparks.org/parks/M244/,park,10025 -1613,Norelli-Hargreaves Playground,40.69002892017,-73.80811002560128,"Van Wyck Exwy. Sr. Rd. E., 142 St., 106 Ave.",http://www.nycgovparks.org/parks/Q220B/,park,11435 -1614,Collect Pond Park,40.71592674601,-74.0017068596393,Leonard St. bet. Centre St. and Lafayette St.,http://www.nycgovparks.org/parks/M242/,park,10013 -1615,P.S. 155 Playground,40.79744009784,-73.93497779661237,"E. 117 St. To E. 118 St., 1 Ave. To 2 Ave.",http://www.nycgovparks.org/parks/M239/,park,10035 -1616,Bloomingdale Playground,40.79937024735,-73.96611214505947,"Amsterdam Ave., W. 104 St. and W. 105 St.",http://www.nycgovparks.org/parks/M238/,park,10025 -1617,Corporal John A. Seravalli Playground,40.73882103763,-74.00430982349425,Hudson St. bet. Gansevoort St. and Horatio St.,http://www.nycgovparks.org/parks/M237/,park,10014 -1618,Samuel Seabury Playground,40.78523527423,-73.95055588355632,"Lexington Ave., E. 95 St. To E. 96 St.",http://www.nycgovparks.org/parks/M236/,park,10128 -1619,Sol Lain Plgd,40.71405476319,-73.98348653140829,"E. Broadway, Henry St., Gouverneur St.",http://www.nycgovparks.org/parks/M235/,park,10002 -1620,Wright Brothers Playground,40.83164295123,-73.9413009606635,St Nicholas Ave. and W. 156 St.,http://www.nycgovparks.org/parks/M234/,park,10032 -1621,Montbellier Park,40.67499399944,-73.75613313055041,"Springfield Blvd., Sloan St. bet. 139 Ave. and Eastgate Plaza",http://www.nycgovparks.org/parks/Q396/,park,11413 -1622,Steinway Playground,40.77665013394,-73.90294481771772,"37 St., 38 St., bet. 20 Rd. and 20 Ave.",http://www.nycgovparks.org/parks/Q395/,park,11105 -1623,LaGuardia Landing Lights,40.76447105196,-73.88737821384053,24 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/Q393E/,park,11370 -1624,LaGuardia Landing Lights,40.76385530321,-73.88925772282207,"79 St., 80 St. bet. 24 and 25 Ave.",http://www.nycgovparks.org/parks/Q393C/,park,11370 -1625,LaGuardia Landing Lights,40.76153113324,-73.88979035228844,25 Ave. bet. 78 St. and 79 St.,http://www.nycgovparks.org/parks/Q393A/,park,11370 -1626,Matthew P. Sapolin Playground,40.77725371273,-73.98344684488977,W. 70 St. bet. W. End Ave. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M233/,park,10023 -1627,Henry M. Jackson Playground,40.71378994141,-73.98195870073373,"Jackson St., Madison St., Henry St.",http://www.nycgovparks.org/parks/M228/,park,10002 -1628,Peter's Field,40.73619466771,-73.9810875609532,"E. 20 St. To E. 21 St., 1 Ave. To 2 Ave.",http://www.nycgovparks.org/parks/M227/,park,10010 -1629,Augustus St. Gaudens Playground,40.73545795259,-73.98184991028882,"2 Ave., E. 19 St. To E. 20 St.",http://www.nycgovparks.org/parks/M226/,park,10003 -1630,Wagner Playground,40.79991968997,-73.93435786750481,E. 120 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M225/,park,10035 -1631,Centreville Playground,40.67075778837,-73.8384015434683,Albert Rd. bet. 96 St. and Centerville St.,http://www.nycgovparks.org/parks/Q386/,park,11417 -1632,Litchhult Square,40.71601393804,-73.74480569872354,"Jamaica Ave., Hempstead Ave. bet. 212 Pl and 213 St.",http://www.nycgovparks.org/parks/Q208/,park,11429 -1633,Northern Playground,40.75553285595,-73.87476656738876,Northern Blvd. bet. 93 St. and 94 St.,http://www.nycgovparks.org/parks/Q363/,park,11372 -1634,Playground Ninety,40.75698498259,-73.87815752485392,"89 St., 90 St. bet. Northern Blvd. and Jackson Mill Rd.",http://www.nycgovparks.org/parks/Q362/,park,11369 -1635,Haggerty Park,40.71275178712,-73.7566373468171,Jamaica Ave. bet. 202 St. and 204 St.,http://www.nycgovparks.org/parks/Q359/,park,11423 -1636,Real Good Playground,40.73569155224,-73.85629498777283,"Horace Harding Exwy. Sr. Rd. S., 62 Ave. bet. 99 St. and 102 St.",http://www.nycgovparks.org/parks/Q357B/,park,11374 -1637,Electric Playground,40.73545512466,-73.80503278425257,164 St. bet. 65 Ave. and 67 Ave.,http://www.nycgovparks.org/parks/Q342/,park,11365 -1638,Ravenswood Playground,40.76279815894,-73.9342530127425,21 St. bet. 34 Ave. and 35 Ave.,http://www.nycgovparks.org/parks/Q333/,park,11106 -1639,Mafera Park,40.70543757971,-73.89112692091072,65 Pl. bet. Shaler Ave. and the rail yards,http://www.nycgovparks.org/parks/Q305/,park,11385 -1640,Tribute Park,40.58182732889,-73.83864193945465,Beach Channel Dr. bet. B. 116 St. and B. 117 St.,http://www.nycgovparks.org/parks/Q028A/,park,11694 -1641,Playground Thirty Five XXXV,40.75485491734,-73.92178354255603,35 Ave. bet. Steinway St. and 41 St.,http://www.nycgovparks.org/parks/Q296/,park,11101 -1642,Maple Playground,40.75623230419,-73.82582804746403,Kissena Blvd. bet. Maple Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/Q211/,park,11355 -1643,Nathan Weidenbaum Playground,40.73840885183,-73.90189544299167,"Laurel Hill Blvd., 48 Ave. bet. 63 St. and 64 St.",http://www.nycgovparks.org/parks/Q205B/,park,11377 -1644,Big Bush Playground,40.7404287433,-73.90240956921534,Laurel Hill Blvd. bet. 61 St. and 64 St.,http://www.nycgovparks.org/parks/Q205A/,park,11377 -1645,St. Michael's Playground,40.75788231723,-73.9000219378635,"30 Ave. To 31 Ave. and Boody St., BQE",http://www.nycgovparks.org/parks/Q174A/,park,11377 -1646,Jacob H. Schiff Playground,40.81971458884,-73.95184944016654,Amsterdam Ave. bet. W. 136 St. and W. 138 St.,http://www.nycgovparks.org/parks/M223/,park,10031 -1647,Gutenberg Playground,40.76335587055,-73.98978681107555,W. 49 St. bet. 9 Ave. and 10 Ave.,http://www.nycgovparks.org/parks/M221/,park,10019 -1648,Frederick Douglass Playground,40.79645344285,-73.96759302243127,Amsterdam Ave bet. W. 100 St. and W 102 St.,http://www.nycgovparks.org/parks/M220/,park,10025 -1649,Tecumseh Playground,40.78200746697,-73.97854070956227,W. 78 St. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M219/,park,10024 -1650,DeSalvio Playground,40.72172861267,-73.99588874233505,Spring St. and Mulberry St.,http://www.nycgovparks.org/parks/M218/,park,10012 -1651,Frederick B. Judge Playground,40.68333654128,-73.80766036651043,"134 St., 135 St., bet. 111 Ave. and Lincoln St., Linden Blvd",http://www.nycgovparks.org/parks/Q119/,park,11420 -1652,Daniel M. O'Connell Playground,40.69936009056,-73.75747795499024,"197 St., 196 St. bet. 113 Ave. and Murdock Ave.",http://www.nycgovparks.org/parks/Q106/,park,11412 -1653,Howard Von Dohlen Playground,40.69914862873,-73.81245153921572,"91 Ave., Archer Ave. bet. 138 Pl. and 138 St.",http://www.nycgovparks.org/parks/Q105/,park,11435 -1654,Cooper St Block Buster Association,40.68481610563,-73.91074780337563,Cooper St. between Bushwick Ave. and Broadway,http://www.nycgovparks.org/parks/B454/,park,11207 -1655,Middle Village Playground,40.70983090721,-73.87343435566332,79 St. bet. 68 Rd. and 69 Ave.,http://www.nycgovparks.org/parks/Q101/,park,11379 -1656,Josephine Caminiti Playground,40.74414481484,-73.86132955643444,102 St. bet. Corona Ave. and Alstyne Ave.,http://www.nycgovparks.org/parks/Q046/,park,11368 -1657,Howard Bennett Playground,40.81371589836,-73.93798957464757,"W. 135 St. To W. 136 St., Lenox Ave. To 5 Ave.",http://www.nycgovparks.org/parks/M217/,park,10037 -1658,Hoparkinson R&L Block Association Garden,40.66186604556,-73.91179808658565,Livonia Ave. bet. Hopkinson Ave. and Amboy St.,http://www.nycgovparks.org/parks/B512/,park,11212 -1659,Maggie's Magic Garden,40.7889610894,-73.94934658346982,Lexington Ave. bet. E. 100 St. and E. 101 St.,http://www.nycgovparks.org/parks/M327/,park,10029 -1660,East Flatbush Children's Playground,40.66328332339,-73.92677516724928,E. 94 St. bet. Rutland Rd. and E. New York Ave.,http://www.nycgovparks.org/parks/B404/,park,11212 -1661,Brooklyn Heights Promenade,40.69966925208,-73.99615642689967,BQE bet. Pineapple St. and Orange St.,http://www.nycgovparks.org/parks/B223DJ/,park,11201 -1662,Poppenhusen Park,40.78796240884,-73.84575702371716,"College Pl., College Pt. Blvd., bet. 11 Ave. and 12 Ave.",http://www.nycgovparks.org/parks/Q042/,park,11356 -1663,Flight 587 Memorial Park,40.57807101643,-73.83609486995667,"Beach 116 St., Ocean Promenade",http://www.nycgovparks.org/parks/Q494/,park,11694 -1664,Carl Schurz Park,40.77699912103,-73.94198090658357,"East End Av To East River, E 84 St To E 90 St",http://www.nycgovparks.org/parks/M081/,park,10028 -1665,Harmony Park,40.67791854941,-73.93487583980645,Troy Ave. to Schenectady Ave. between Atlantic Ave. and Herkimer St.,http://www.nycgovparks.org/parks/B403/,park,11213 -1666,Lott Park,40.64801768177,-73.95403188004711,Albemarle Rd. between Bedford Ave. and Veronica Pl. at Lott St.,http://www.nycgovparks.org/parks/B392/,park,11226 -1667,Success Garden,40.66518067404,-73.89752469742209,Livonia Ave. ber. Williams Ave. and Alabama Ave.,http://www.nycgovparks.org/parks/B383/,park,11207 -1668,Cobble Hill Park,40.68819380491,-73.9954797752875,Clinton St. between Verandah Pl. and Congress St.,http://www.nycgovparks.org/parks/B326/,park,11201 -1669,Helen Marshall Playground,40.76626306964,-73.8702121052178,"100 St., 98 St. bet. 24 Ave. and 25 Ave.",http://www.nycgovparks.org/parks/Q373/,park,11369 -1670,Langston Hughes Playground,40.81192212498,-73.94646185970547,W/s 7 Ave. at W. 130 St.,http://www.nycgovparks.org/parks/M211B/,park,10027 -1671,St. Nicholas Playground South,40.81151028198,-73.94676240794124,W/s 7 Ave. bet. W. 127 St. and W. 129 St.,http://www.nycgovparks.org/parks/M211A/,park,10027 -1672,Alice Kornegay Triangle,40.80601215771,-73.93496556044501,"Lexington Ave., E. 128 St. to E. 129 St.",http://www.nycgovparks.org/parks/M208A/,park,10035 -1673,McKee Triangle,40.78734742328,-73.81603225350716,"149 St., 15 Ave., Cross Island Pkwy.",http://www.nycgovparks.org/parks/Q135A/,park,11357 -1674,Lindower Park,40.61118290717,-73.91058279806741,Strickland Ave. between Mill Ave. and E. 60 Pl.,http://www.nycgovparks.org/parks/B329/,park,11234 -1675,Playground One Twenty Five CXXV,40.81139255563,-73.95639650870265,"Morningside Ave., W. 123 St. and W. 124 St.",http://www.nycgovparks.org/parks/M205/,park,10027 -1676,Moore Playground,40.80951499586,-73.93804386160019,Madison Ave. bet. E. 130 St. and E. 131 St.,http://www.nycgovparks.org/parks/M204/,park,10037 -1677,Tudor Grove Playground,40.74900978349,-73.97138027879109,E. 42 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M203E/,park,10017 -1678,Alfred E. Smith Playground,40.71072216855,-73.99740629942715,"Catherine Slip, Madison St. and South St.",http://www.nycgovparks.org/parks/M194/,park,10038 -1679,Sheltering Arms Playground,40.81554977109,-73.95626156437389,"W. 126 St. to W. 129 St., Amsterdam Ave. to Old Broadway",http://www.nycgovparks.org/parks/M190/,park,10027 -1680,Marx Brothers Playground,40.7843646967,-73.94548909480652,"2 Ave., E. 96 St. to E. 97 St.",http://www.nycgovparks.org/parks/M187/,park,10029 -1681,Southside Burial Ground,40.67056207627,-73.84388490169677,"Redding St, Albert Rd and 149th Av",http://www.nycgovparks.org/parks/Q481/,park,11417 -1682,Brigadier General Charles Young Playground,40.81814567943,-73.93439184815134,"W. 145 St. to W. 143 St., Lenox Ave., and Harlem River",http://www.nycgovparks.org/parks/M186/,park,10037 -1683,Samuel N. Bennerson 2nd Playground,40.77396589185,-73.98652618484202,"W. 64 St., bet. Amsterdam Ave. and West End Ave.",http://www.nycgovparks.org/parks/M184/,park,10023 -1684,Peter Minuit Playground,40.79440606945,-73.94713332007458,Park Ave. bet. E 108 St. and E. 109 St.,http://www.nycgovparks.org/parks/M183/,park,10029 -1685,Waterfront Garden,40.80970456576,-73.85039849664399,Gildersleeve Ave. bet. Husson Ave. and Betts Ave.,http://www.nycgovparks.org/parks/X088A/,park,10473 -1686,Bushwick Playground,40.70218709967,-73.93928519360402,Flushing Ave. bet.. Beaver St. and Garden St.,http://www.nycgovparks.org/parks/B310/,park,11206 -1687,Public Place,40.67779942746,-73.86496754366642,Eldert La. between Liberty Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B290/,park,11208 -1688,Sankofa Park,40.66548173579,-73.88574276046141,Livonia Ave. between Barbey St. and Schenck Ave.,http://www.nycgovparks.org/parks/B261/,park,11207 -1689,Underwood Park,40.68828641638,-73.96596041573984,Lafayette Ave. bet. Waverly Ave. and Washington Ave.,http://www.nycgovparks.org/parks/B259/,park,11205 -1690,"Captain John McKenna, IV Park",40.65212301263,-73.9772696205897,Vanderbilt St. bet. E. 4 St. and E. 5 St.,http://www.nycgovparks.org/parks/B255L/,park,11218 -1691,Baruch Playground,40.71662827233,-73.97674155822914,Corner of Baruch Pl. and Mangin St.,http://www.nycgovparks.org/parks/M165/,park,10002 -1692,McCaffrey Playground,40.75921570262,-73.99144035341237,W. 43 St. bet. 8 Ave. and 9 Ave.,http://www.nycgovparks.org/parks/M161/,park,10036 -1693,Linden Park,40.65958903252,-73.88558315149852,Vermont St. bet. Linden Blvd. and Stanley Ave.,http://www.nycgovparks.org/parks/B214/,park,11207 -1694,Sarsfield Playground,40.62024407884,-73.93709036893884,"E. 38 St., Ave. M, Flatlands Ave.",http://www.nycgovparks.org/parks/B207/,park,11234 -1695,Blue Playground,40.71077919361,-73.95525871029582,"Borinquen Pl., Rodney St. and S. 1 St.",http://www.nycgovparks.org/parks/B223PE/,park,11211 -1696,Hillside Dog Park,40.70097390409,-73.99482484180102,"Columbia Hts., Hicks St., bet. Middagh St. and Vine St.",http://www.nycgovparks.org/parks/B223G/,park,11201 -1697,Tony Dapolito Recreation Center,40.72977972684,-74.00547820643013,"Carmine St. and Clarkson St., 7 Ave.",http://www.nycgovparks.org/parks/M103/,park,10014 -1698,Citizens For A Better Community,40.68780876591,-73.9269155842741,Patchen Ave. between Monroe St. and Madison St.,http://www.nycgovparks.org/parks/B224A/,park,11221 -1699,Marcy Park South,40.7078932622,-73.95760351794146,Marcy Ave. bet. S. 9 St. and Division St.,http://www.nycgovparks.org/parks/B223OB/,park,11211 -1700,Brooklyn Heights Promenade,40.69908659629,-73.99602077341382,Pineapple St. bet. Columbia Heights and the BQE,http://www.nycgovparks.org/parks/B223DI/,park,11201 -1701,Raoul Wallenberg Forest,40.88735737068,-73.91692122568675,"Palisade Av, Douglas Av bet. W 235 St and",http://www.nycgovparks.org/parks/X259/,park,10471 -1702,Spuyten Duyvil Playground,40.88688609065,-73.91482361169206,Douglas Av bet. W 235 St and W 236 St,http://www.nycgovparks.org/parks/X171/,park,10463 -1703,Ralph Bunche Park,40.7490436147,-73.96998665551673,"1 Ave., bet. E. 42 St. and E. 43 St.",http://www.nycgovparks.org/parks/M203B/,park,10017 -1704,London Planetree Playground,40.68568340493,-73.85277880723194,"Atlantic Ave., 95 Ave. bet. 88 St., 89 St.",http://www.nycgovparks.org/parks/Q128/,park,11416 -1705,Daly Ave Garden,40.84414375873,-73.8832590421756,E. 179 St. and Honeywell Ave.,http://www.nycgovparks.org/parks/X326/,park,10460 -1706,Annunciation Playground,40.81782527446,-73.9519755363393,"Convent and Amsterdam Av, W 135 St",http://www.nycgovparks.org/parks/M003/,park,10031 -1707,Wave Hill,40.89621151072,-73.91192435701254,"W 248 St, Independence Av , W 252 St , P",http://www.nycgovparks.org/parks/X209/,park,10471 -1708,Rita Ley Triangle,40.89911391391,-73.87305888235448,"E 238 St, Oneida Av, Van Cortlandt Park E",http://www.nycgovparks.org/parks/X096/,park,10470 -1709,Washington's Walk,40.87436475618,-73.90044104098514,Resevoir Av bet. Sedgwick Av and Goulden Av,http://www.nycgovparks.org/parks/X038/,park,10468 -1710,Lt. Clinton L .Whiting Square,40.68709140015,-73.85823915390347,84 St. bet. 91 Ave. and 91 Ave.,http://www.nycgovparks.org/parks/Q257/,park,11421 -1711,Detective Joseph Mayrose Park,40.66200485501,-73.98781604228022,"N/B Prospect Exwy., 17 St., bet. 6 Ave. and 7 Ave.",http://www.nycgovparks.org/parks/B255F/,park,11215 -1712,Poe Park,40.86442015397,-73.89441231340214,Grand Concourse bet. E. 192 St. and E. K,http://www.nycgovparks.org/parks/X040/,park,10458 -1713,Judge Angelo Graci Triangle,40.67459732506,-73.85846452585056,"N. Conduit Ave., Sutter Ave. bet. 77 St. and 78 St.",http://www.nycgovparks.org/parks/Q424/,park,11417 -1714,Williamsbridge Oval,40.87616201105,-73.87770412084713,"Van Cortlandt Ave. East, Resevoir Oval E",http://www.nycgovparks.org/parks/X104/,park,10467 -1715,Valentine Varian House,40.87695553185,-73.8795093106913,Bainbridge Ave. bet. Van Cortlandt Ave.,http://www.nycgovparks.org/parks/X215/,park,10467 -1716,Risse Street Park,40.87795830498,-73.88533890673247,"Jerome Ave., Mosholu Pkwy, Grand Concour",http://www.nycgovparks.org/parks/X335/,park,10468 -1717,Margaret I. Carman Green - Weeping Beech,40.76400090553,-73.82381207175416,37 Ave. bet. Bowne St. and Parsons Blvd.,http://www.nycgovparks.org/parks/Q022/,park,11354 -1718,Bryan Park,40.86220762766,-73.89406037944143,E. Kingsbridge Rd. at E. Fordham Rd.,http://www.nycgovparks.org/parks/X005/,park,10458 -1719,Davidson Playground,40.85487400098,-73.90767549102084,W. 180 St. bet. Davidson Ave. and Grand,http://www.nycgovparks.org/parks/X300/,park,10453 -1720,Walton Park,40.85550762674,-73.90517576592276,E. 181 St. bet. Walton Ave. and Jerome A,http://www.nycgovparks.org/parks/X291/,park,10453 -1721,Mabel Hampton Playground,40.85478607958,-73.90354686121479,E. 181 St. bet. Morris Ave. and Creston,http://www.nycgovparks.org/parks/X292/,park,10453 -1722,Townsend Garden,40.84693539962,-73.91079350398927,E. 175th St. at Walton Ave.,http://www.nycgovparks.org/parks/X331/,park,10453 -1723,Cleopatra Playground,40.84529011394,-73.90401794992815,Anthony Av bet. Prospect Pl and Ittner Pl,http://www.nycgovparks.org/parks/X258/,park,10457 -1724,Half-Nelson Playground,40.84689244616,-73.91884704666863,Nelson Av bet. Featherbed La and W 174 St,http://www.nycgovparks.org/parks/X295/,park,10453 -1725,Galileo Playground,40.84850017842,-73.91533919084708,Macombs Rd bet. W 176 St and W 175 St,http://www.nycgovparks.org/parks/X265/,park,10453 -1726,Mount Hope Playground,40.85055380683,-73.90921821127671,E. 177 St. at Walton Ave.,http://www.nycgovparks.org/parks/X257/,park,10453 -1727,Downing Street Playground,40.73009066821,-74.0029299579995,"Downing St to Carmine St, Av Of Americas",http://www.nycgovparks.org/parks/M027/,park,10014 -1728,Highbridge Park,40.84221575636,-73.92629817996828,Dr. MLK Jr. Blvd. at W. 170 St.,http://www.nycgovparks.org/parks/X120/,park,10452 -1729,Claremont Neighborhood Garden,40.83418882125,-73.90997137091038,E 169th St bet. Teller Av and Clay Av,http://www.nycgovparks.org/parks/X321/,park,10456 -1730,Greeley Square Park,40.74840363817,-73.98827506263977,"Broadway, Av of the Americas, bet. W. 32 St. and W. 33 St.",http://www.nycgovparks.org/parks/M032/,park,10001 -1731,Herald Square,40.74990449647,-73.98781632794064,"Broadway, Ave of the Americas, bet. W. 34 St. and W. 35 St.",http://www.nycgovparks.org/parks/M036/,park,10001 -1732,La Isla Garden,40.83175435427,-73.9292526192357,W 163 St bet. Ogden Av and Woodycrest Av,http://www.nycgovparks.org/parks/X327/,park,10452 -1733,Taqwa Community Farm,40.83258987959,-73.92859281898026,W 164 St and Nelson Av bet. Ogden Av and Woodycrest Ave,http://www.nycgovparks.org/parks/X296/,park,10452 -1734,Nelson Playground,40.8350200797,-73.92627795123586,W 166 St bet. Woodycrest Av and Nelson Av,http://www.nycgovparks.org/parks/X168/,park,10452 -1735,Alexander Hamilton Playground,40.8231318409,-73.9507062319248,"Hamilton Pl., W. 140 St. To W. 141 St.",http://www.nycgovparks.org/parks/M041/,park,10031 -1736,Woodycrest Community Garden,40.83127665851,-73.92916546985225,W 162 St bet. Woodycrest Av and Ogden Av,http://www.nycgovparks.org/parks/X333/,park,10452 -1737,Lot,40.83159036204,-73.92265451859865,River Ave. bet. E 164 St. and E. 165 St.,http://www.nycgovparks.org/parks/X254/,park,10452 -1738,Franz Sigel Park,40.82094193697,-73.92641794484334,"NYCRR, Walton Ave, E 158 St, Grand Concourse",http://www.nycgovparks.org/parks/X047/,park,10451 -1739,D'Auria-Murphy Triangle,40.85335805363,-73.88884501236019,Adams Pl bet. Cresent Av and E 183 St,http://www.nycgovparks.org/parks/X068/,park,10458 -1740,Washington Park,40.8559804486,-73.89315234839358,E 183 St bet. Washington Av and Park Av,http://www.nycgovparks.org/parks/X280/,park,10458 -1741,Thorpe Family Playground,40.85632163085,-73.89474376384989,E 183 St bet. Park Av and Webster Av,http://www.nycgovparks.org/parks/X302/,park,10458 -1742,Belmont Playground,40.85003709455,-73.88696663993288,E 182 St bet. Belmont Av and Croton Av,http://www.nycgovparks.org/parks/X108/,park,10457 -1743,John Jay Park,40.76900910002,-73.94903734207423,"FDR Dr., E 76 St. To E 78 St.",http://www.nycgovparks.org/parks/M045/,park,10021 -1744,Quarry Ballfields,40.85078795096,-73.88946905865616,"E. 181 St., Oak Tree Pl. bet. Quarry Rd. and Hughes Ave.",http://www.nycgovparks.org/parks/X263/,park,10457 -1745,Thomas Jefferson Park,40.79229418446,-73.93489022711518,"1 Ave., FDR Dr., bet. E. 111 St. and E. 114 St.",http://www.nycgovparks.org/parks/M047/,park,10029 -1746,Harlem RBI,40.78677182848,-73.94339642114842,E. 100 St. to E. 101 St. bet. 2 Ave. and 1 Ave.,http://www.nycgovparks.org/parks/M271A/,park,10029 -1747,Elmhurst Park,40.72890922012,-73.88436854859785,"Grand Ave., 57 Ave. bet. 74 St. and 80 St.",http://www.nycgovparks.org/parks/Q492/,park,11373 -1748,Richard Tucker Square,40.7733787371,-73.98194017160988,"Broadway To Columbus Ave, W. 66 St.",http://www.nycgovparks.org/parks/M051/,park,10023 -1749,Tribeca Dog Run,40.71632572475,-74.01217155257838,Warren St. bet. Greenwich St. and West St.,http://www.nycgovparks.org/parks/M366/,park,10007 -1750,Washington Market Park,40.71743817396,-74.0108808468182,Chambers St. bet. Greenwich St. and West St.,http://www.nycgovparks.org/parks/M308/,park,10013 -1751,Prospect Playground,40.84329662262,-73.89006793021288,Fairmount Pl bet. Clinton Av and Prospect Av,http://www.nycgovparks.org/parks/X148H1/,park,10457 -1752,Stop & Go Playground,40.84504048353,-73.89857993272076,W 175 St bet. Washington Av and Bathgate Av,http://www.nycgovparks.org/parks/X281/,park,10457 -1753,El Batey de Doña Provi Garden,40.84769840174,-73.89621404497828,E 178 St. bet. Bathgate and 3 Ave.,http://www.nycgovparks.org/parks/X323/,park,10457 -1754,Murphy Brothers Playground,40.72966769676,-73.97245221623079,"Ave. C, FDR Dr., E. 17 St.",http://www.nycgovparks.org/parks/M059/,park,10009 -1755,Marcus Garvey Park,40.80390727753,-73.94591164848372,"Madison Ave, E. 120 St. to E. 124 St.",http://www.nycgovparks.org/parks/M058/,park,10027 -1756,Mitchel Square,40.83968939477,-73.93998721317689,"Broadway, St Nicholas Av, W 166 St To W 168 St",http://www.nycgovparks.org/parks/M054/,park,10032 -1757,Theodore Roosevelt Park,40.77967203384,-73.97361916110918,"Central Park W, Columbus Av, W 77 To W 81 Sts",http://www.nycgovparks.org/parks/M053/,park,10024 -1758,Eae J Mitchell Park,40.83650290166,-73.88416649518459,E 174 St bet. Bryant Av and Longfellow Av,http://www.nycgovparks.org/parks/X267/,park,10460 -1759,P.S. 186 Day Treatment Program,40.8318964417,-73.89820279062852,Jennings St bet. Union Av and Prospect Av,http://www.nycgovparks.org/parks/X330/,park,10456 -1760,CS 134 Community Improvement Garden,40.83092268695,-73.89482119381759,Bristow St bet. Jennings St and Freeman St,http://www.nycgovparks.org/parks/X340/,park,10459 -1761,Youth Village,40.82847250079,-73.90289209598981,Home St bet. Boston Rd and Jackson Av,http://www.nycgovparks.org/parks/X242/,park,10456 -1762,Rev Lena Irons Unity Park,40.8311252296,-73.90636032010167,E 168 St bet. Washington Av and 3 Av,http://www.nycgovparks.org/parks/X286/,park,10456 -1763,Little Claremont Playground,40.839018532,-73.90345266423574,Claremont Pkwy bet. Park Av and Washington Av,http://www.nycgovparks.org/parks/X299/,park,10457 -1764,Jackie Robinson Park Playground,40.68056974193,-73.92725629404693,Malcom X Blvd. between Chauncey St. and Marion St.,http://www.nycgovparks.org/parks/B294/,park,11233 -1765,Behagen Playground,40.82590522654,-73.90065552689464,Tinton Av bet. E 166 St and E 165 St,http://www.nycgovparks.org/parks/X166/,park,10456 -1766,Jackson-Forest Community Garden,40.82812894376,-73.90216659017666,Home St bet. Jackson Av and Forrest Av,http://www.nycgovparks.org/parks/X319/,park,10456 -1767,Jardin de la Roca,40.82289329846,-73.91312507377751,Elton Ave. at E. 160 St.,http://www.nycgovparks.org/parks/X349/,park,10451 -1768,Edith Garden,40.82272951155,-73.91223538084505,Elton Av bet. E 159 St and E 160 St,http://www.nycgovparks.org/parks/X341/,park,10451 -1769,James Madison Plaza,40.71164217397,-74.00006617589952,"Pearl St., Madison St. and St James Pl.",http://www.nycgovparks.org/parks/M255/,park,10038 -1770,Rev J Polite Playground,40.82745647611,-73.89615856782297,Rev James Polite Av to Interval Av bet. E 167 St and Home St,http://www.nycgovparks.org/parks/X116/,park,10459 -1771,Dr. Gertrude B. Kelly Playground,40.74134480344,-74.00197756530805,"W. 17 St., 8 Ave. To 9 Ave.",http://www.nycgovparks.org/parks/M066/,park,10011 -1772,Luther Gulick Park,40.71546863725,-73.98121798902919,"Columbia St, Delancey St and Bialystoker Pl",http://www.nycgovparks.org/parks/M065/,park,10002 -1773,Lillian D Wald Playground,40.71237532065,-73.98441469542125,"Cherry St, Montgomery St and Gouverneur St",http://www.nycgovparks.org/parks/M064/,park,10002 -1774,Gertrude Ederle Recreation Center,40.77095008884,-73.98867250775429,"W. 59 St., W. 60 St., bet. Amsterdam Ave. and W. End Ave.",http://www.nycgovparks.org/parks/M063/,park,10023 -1775,St. Catherine's Park,40.7647482438,-73.95841958165919,"1 Ave., bet. E. 67 St. To E. 68 St.",http://www.nycgovparks.org/parks/M079/,park,10065 -1776,Arden Woods,40.56358354848,-74.18908028887722,"Arthur Kill Rd., Arden Ave. and Halpin Ave.",http://www.nycgovparks.org/parks/R120/,park,10312 -1777,LaGuardia Landing Lights,40.76378791042,-73.88791784481427,"80 St., 81 St. bet. 24 Ave. and 25 Ave.",http://www.nycgovparks.org/parks/Q393D/,park,11370 -1778,St. Vartan Park,40.74458614458,-73.973129156703,"1 Ave.,2 Ave., bet. E. 35 St. and E. 36 St.",http://www.nycgovparks.org/parks/M076/,park,10016 -1779,Roger Morris Park,40.83415018948,-73.93831667659839,"Jumel Terr To Edgecombe Av, W 160 St To W 162 St",http://www.nycgovparks.org/parks/M073/,park,10032 -1780,Vesuvio Playground,40.72498231393,-74.00263965850152,Thompson St bet. Spring St and Prince St,http://www.nycgovparks.org/parks/M069/,park,10012 -1781,Horseshoe Playground,40.82393581311,-73.89752863835875,E. 165 St. and Rogers Pl.,http://www.nycgovparks.org/parks/X014/,park,10459 -1782,Fox Park,40.81493886385,-73.89783962787203,E 156 St bet. Fox St and Southern Blvd,http://www.nycgovparks.org/parks/X247/,park,10455 -1783,Charlton Garden,40.8248941033,-73.90682448199338,E 164 St bet. Cauldwell Av and Boston Rd,http://www.nycgovparks.org/parks/X086/,park,10456 -1784,Lafayette Square,40.80357443921,-73.95803901771242,"Manhattan Av, W 114 St, Morningside Av",http://www.nycgovparks.org/parks/M090/,park,10026 -1785,Stuyvesant Square,40.73387465415,-73.98284750488925,"Rutherford Pl. To N D Perlman Pl., E 15 St. To E 17 St.",http://www.nycgovparks.org/parks/M086/,park,10003 -1786,Verdi Square,40.77929293162,-73.98134316753715,"Broadway, Amsterdam Ave. and W. 73 St.",http://www.nycgovparks.org/parks/M097/,park,10023 -1787,Worth Square,40.74244069671,-73.98901995926714,"Broadway, 5 Ave., W. 24 St. to W. 25 St.",http://www.nycgovparks.org/parks/M101/,park,10010 -1788,J. Hood Wright Park,40.84549904763,-73.94059870081793,W. 173 St. bet. Haven Ave. and Ft. Washington Ave.,http://www.nycgovparks.org/parks/M099/,park,10033 -1789,Isla Verde Garden,40.81497253906,-73.90661105255664,E 151 St bet. Concord Av and Wales Av,http://www.nycgovparks.org/parks/X314/,park,10455 -1790,Captain Rivera Playground,40.8181160785,-73.90645973171593,E 156 St bet. Jackson Av and Forest Av,http://www.nycgovparks.org/parks/X194/,park,10455 -1791,Willis Playground,40.81107224309,-73.92374333032465,E 141 St to E 140 St bet. Willis Av and Alexander Av,http://www.nycgovparks.org/parks/X217/,park,10454 -1792,Orchard Alley Garden,40.72136641723,-73.97820327222415,E. 4 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M354/,park,10009 -1793,The Public Theater,40.72923342534,-73.99143693293948,Lafayette St. bet. Astor Pl. and E. 4 St.,http://www.nycgovparks.org/parks/M276/,park,10003 -1794,United We Stand Garden,40.80538934245,-73.9152042383218,E. 137 St. bet. Cypress Ave. and St. Ann's Ave.,http://www.nycgovparks.org/parks/X277A/,park,10454 -1795,Robert Moses Playground,40.74859984186,-73.96967801303215,"1 Ave., bet. E. 41 St. and E. 42 St.",http://www.nycgovparks.org/parks/M158/,park,10017 -1796,Tanahey Playground,40.70986334565,-73.99601102624779,"Cherry St. To Water St., W. Catherine Slip To Market Slip",http://www.nycgovparks.org/parks/M206/,park,10002 -1797,Sara D. Roosevelt Park,40.71998285531,-73.99218978765998,E. Houston St. To Canal St. bet. Chrystie St. and Forsyth St.,http://www.nycgovparks.org/parks/M105/,park,10002 -1798,Agnes Haywood Playground,40.87994509303,-73.86160030527505,Barnes Ave. bet. E. 216 St. and E. 215 St.,http://www.nycgovparks.org/parks/X169/,park,10467 -1799,Almeda Playground,40.59377784605,-73.79437779141547,"Beach 65 St. to Beach 66 St., Beach Channel Dr.",http://www.nycgovparks.org/parks/Q443/,park,11692 -1800,Dag Hammarskjold Plaza,40.75289389826,-73.96978157624022,E. 47 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M203C/,park,10017 -1801,Fisher Pool,40.75877123906,-73.8693318214911,32 Ave. bet. 99 St. and 100 St.,http://www.nycgovparks.org/parks/Q441/,park,11369 -1802,MacArthur Playground,40.75223498849,-73.96492705722271,"E. 48 St. To E. 49 St., FDR",http://www.nycgovparks.org/parks/M256/,park,10017 -1803,Bellevue South Park,40.74046709284,-73.97742211525204,"E. 26 St. To E. 28 St., 2 Ave.",http://www.nycgovparks.org/parks/M263/,park,10016 -1804,Peter Detmold Park,40.75272089523,-73.96439338176133,"E. 49 St. To E. 51 St., W/s FDR Dr.",http://www.nycgovparks.org/parks/M108N/,park,10022 -1805,Albert J. Parham Playground,40.68998446082,-73.97063986586979,"Adelphi St., Clermont Ave., Dekalb Ave., Willoughby Ave.",http://www.nycgovparks.org/parks/B253/,park,11205 -1806,St. Michael's Park,40.76385949195,-73.89585313733565,30 Ave to Astoria Blvd. on BQE,http://www.nycgovparks.org/parks/Q174/,park,11377 -1807,William F. Passannante Ballfield,40.72849670723,-74.0018714077467,"W. Houston St., Ave. of Americas, Macdougal St.",http://www.nycgovparks.org/parks/M120A/,park,10012 -1808,Joseph C. Sauer Park,40.72811989352,-73.97937993443009,E. 12 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M113/,park,10009 -1809,Charlton Plaza,40.72705655464,-74.00356750595179,"Ave. of Americas, King St. and Charlton St.",http://www.nycgovparks.org/parks/M125E/,park,10014 -1810,Minetta Playground,40.73069711194,-74.00115974811168,"Minetta Lane, W. 3 St. and Ave. of Americas",http://www.nycgovparks.org/parks/M125B/,park,10012 -1811,Minetta Green,40.73023996427,-74.00154712711851,S/e Corner Minetta Lane and Ave. of Americas,http://www.nycgovparks.org/parks/M125A/,park,10012 -1812,First Park,40.72401752715,-73.9904178720097,"Houston St., E. 1 St., 1 Ave.",http://www.nycgovparks.org/parks/M124/,park,10003 -1813,Captain Jacob Joseph Playground,40.71349250569,-73.98966020021557,Rutgers St. and Henry St.,http://www.nycgovparks.org/parks/M122/,park,10002 -1814,Kosciuszko Street Garden,40.69211872767,-73.9390779758553,Kosciuszko St. bet. Marcus Garvey Blvd. and Lewis Ave.,http://www.nycgovparks.org/parks/B398/,park,11221 -1815,Constance Baker Motley Recreation Center,40.75630883112,-73.96510179634521,E. 54 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M130/,park,10022 -1816,Strawberry Playground,40.70991497361,-73.95564604448505,"Rodney St., S. 3 St. and S. 4 St.",http://www.nycgovparks.org/parks/B223PC/,park,11211 -1817,Rodney Park North,40.70928636666,-73.95603390668552,"Rodney St., S. 4 St. and S. 5 St.",http://www.nycgovparks.org/parks/B223PB/,park,11211 -1818,Rodney Park Center,40.70864112342,-73.95643659889264,"Broadway, Rodney St., S. 5 St.","http://www.nycgovparks.org/parks/B223PA -/",park,11211 -1819,Marcy Green South,40.70886169396,-73.95709901414698,"Broadway, Marcy Ave. and S. 5 St.",http://www.nycgovparks.org/parks/B223QA/,park,11211 -1820,Gustave Hartman Square,40.72056777195,-73.98024719483584,"E. Houston St., Ave. C and E. 2 St.",http://www.nycgovparks.org/parks/M254/,park,10009 -1821,Hope Garden,40.72219525688,-73.98406015165793,E. 2 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M371/,park,10009 -1822,Sorrentino Recreation Center,40.60228797966,-73.751590491967,Cornaga Ave. bet. Beach 19 St. and Morse Ct.,http://www.nycgovparks.org/parks/Q446/,park,11691 -1823,Marcy Green North,40.71026986933,-73.95661676611525,"Marcy Ave., S. 3 St. and S. 4 St.",http://www.nycgovparks.org/parks/B223QC/,park,11211 -1824,Marcy Green Center,40.70902438766,-73.95699805730628,"Marcy Ave., S. 4 St. and S. 5 St.",http://www.nycgovparks.org/parks/B223QB/,park,11211 -1825,Commodore Barry Park,40.69801949359,-73.97760933302072,"Nassau St., Park Ave., bet. Navy St. and N. Elliot Pl.",http://www.nycgovparks.org/parks/B021/,park,11201 -1826,Metropolitan Recreation Center,40.71503286934,-73.96003691649274,Bedford Ave. bet. Metropolitan Ave. and N. 1 St.,http://www.nycgovparks.org/parks/B085/,park,11211 -1827,Allerton Playground,40.86647054105,-73.85014562237889,Allerton Ave. bet. Throop Ave. and Bouck Ave.,http://www.nycgovparks.org/parks/X172/,park,10469 -1828,Mazzei Playground,40.86198943562,-73.85871873519501,Mace Ave. bet. Pauldings Ave. and Williamsbridge Rd.,http://www.nycgovparks.org/parks/X157/,park,10469 -1829,Boston Garden,40.86580790312,-73.86172708468268,"Boston Rd., Bronxwood Ave., Allerton Ave.",http://www.nycgovparks.org/parks/X278/,park,10467 -1830,A.R.R.O.W. Field House,40.75604544216,-73.92632038784268,35th St. bet. 35 Ave. and 36 Ave.,http://www.nycgovparks.org/parks/Q470/,park,11106 -1831,Van Nest Park,40.84320222141,-73.86559547009844,"White Plains Rd., Van Nest Ave., Unionport Rd.",http://www.nycgovparks.org/parks/X093/,park,10462 -1832,Little Flower Playground,40.71219812345,-73.98810282521463,Madison St. bet. Clinton St. and Rutgers St.,http://www.nycgovparks.org/parks/M132/,park,10002 -1833,Louis Cuvillier Park,40.80130019314,-73.93049123888036,"E.125 St., FDR Dr., 1 Ave., Paladino Ave.",http://www.nycgovparks.org/parks/M108A/,park,10035 -1834,ABC Playground,40.72185681012,-73.98567580944254,"Essex St., Norfolk St. and Houston St.",http://www.nycgovparks.org/parks/M116/,park,10002 -1835,Courtney Callender Playground,40.81015473063,-73.94033555877915,"5 Ave., W. 130 St. To .W 131 St.",http://www.nycgovparks.org/parks/M155/,park,10037 -1836,Mathews-Palmer Playground,40.76107926328,-73.9927469033595,W. 45 St. bet. 9 Ave. and 10 Ave.,http://www.nycgovparks.org/parks/M154/,park,10036 -1837,White Playground,40.79175360042,-73.94547037883957,E. 105 St. To E. 106 St. bet. Lexington Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M148/,park,10029 -1838,Fulton Park,40.68006035,-73.93160144190735,Chauncey St. bet. Lewis Ave. and Stuyvesant Ave.,http://www.nycgovparks.org/parks/B038/,park,11233 -1839,Honey Locust Park,40.76013726622,-73.96245931414859,"E. 59 St., bet. 1 Ave. and 2 Ave.",http://www.nycgovparks.org/parks/M177/,park,10022 -1840,Lentol Garden,40.72010374338,-73.9447823949202,"Graham Ave., Meeker Ave., Humbolt St., BQE",http://www.nycgovparks.org/parks/B223U/,park,11222 -1841,Jaime Campiz Playground,40.71396250993,-73.95377718093302,"Hope St., Marcy Ave., Metropolitan Ave.",http://www.nycgovparks.org/parks/B223R/,park,11211 -1842,Broad Channel American Park,40.59881280403,-73.82090383591581,Cross Bay Blvd. bet. W. 20 Rd. and Beach Channel,http://www.nycgovparks.org/parks/Q467/,park,11693 -1843,P.S. 29 Ballfield,40.82143889853,-73.91665189609022,E 157 St bet. Melrose Ave and Cortlandt Ave,http://www.nycgovparks.org/parks/X354/,park,10451 -1844,Sherman Creek,40.85586681987,-73.92209574056815,10 Ave. bet. Academy St. and the Harlem River,http://www.nycgovparks.org/parks/M300/,park,10040 -1845,Abe Stark Skating Rink,40.57502060188,-73.9854448852634,Surf Ave. to the Boardwalk between W. 19 St. and W. 20 St.,http://www.nycgovparks.org/parks/B336/,park,11224 -1846,Calvert Vaux Park,40.58665370706,-73.99176843871128,"Gravesend Bay, Bay 44 St. to Bay 49 St., Shore Pkwy.",http://www.nycgovparks.org/parks/B125/,park,11214 -1847,Brighton Playground,40.57491015635,-73.96593741470511,Brighton 2 St. bet. Brightwater Ct. and Boardwalk E.,http://www.nycgovparks.org/parks/B169A/,park,11235 -1848,Tottenville Shore Park,40.5117621387,-74.25442681695237,"Bentley St. and Arthur Kill Rd., Hopping Ave. and Amboy Rd.",http://www.nycgovparks.org/parks/R139/,park,10307 -1849,Coney Island Boat Basin,40.583007446,-73.98881972964085,W. 22 St. bet. Bay 56 St. and Shore Pkwy.,http://www.nycgovparks.org/parks/B166C/,park,11214 -1850,Purple Playground,40.66241300534,-73.98889582753861,17 St. bet. 5 Ave. and 6 Ave.,http://www.nycgovparks.org/parks/B255C/,park,11215 -1851,Lemon Creek Park,40.51538548321,-74.19809191879783,Hylan Blvd. from Sharrott Ave. to Seguine Ave.,http://www.nycgovparks.org/parks/R079/,park,10309 -1852,Hattie Carthan Community Garden,40.68951307615,-73.94877722234759,Marcy Ave between Clifton Pl. and Lafayette Ave.,http://www.nycgovparks.org/parks/B400/,park,11216 -1853,Meucci Triangle,40.59579936034,-73.98320073051605,"Ave U, 86 St. and W. 12 St.",http://www.nycgovparks.org/parks/B242/,park,11223 -1854,Jackson Square,40.73881065533,-74.00257386380441,"8 Ave. To Greenwich Ave., Horatio St.",http://www.nycgovparks.org/parks/M044/,park,10014 -1855,Faber Pool and Park,40.64085319123,-74.13645632629526,"Richmond Ter. To Kill Van Kull, Faber St.",http://www.nycgovparks.org/parks/R008/,park,10302 -1856,Kaiser Park,40.57776620035,-73.99727044739234,"Neptune Ave., Bayview Ave.,W. 24 St. to W. 32 St.",http://www.nycgovparks.org/parks/B129/,park,11224 -1857,Frost Playground,40.7186374343,-73.93854335327208,Frost St. bet. Debevoise Ave. and Kingsland Ave.,http://www.nycgovparks.org/parks/B257/,park,11211 -1858,Dwyer Square,40.75394075612,-73.91523783933494,"Northern Blvd., 34 Ave. bet. 47 St. and 48 St.",http://www.nycgovparks.org/parks/Q232/,park,11101 -1859,176th Street Community Garden,40.84790862648,-73.90986756794135,E. 176 St. bet. Walton Ave. and Morris Ave.,http://www.nycgovparks.org/parks/X324/,park,10453 -1860,City Hall Park,40.71176985232,-74.00749079377619,"Broadway, Park Row and Chambers St",http://www.nycgovparks.org/parks/M013/,park,10007 -1861,Sheepshead Bay Piers,40.58362862191,-73.94153372288157,Emmons Ave. bet. Ocean Ave. and E. 26 St.,http://www.nycgovparks.org/parks/B393/,park,11235 -1862,Tucker Place,40.5833140314,-73.94124833839845,E. 27 St. and Emmons Ave.,http://www.nycgovparks.org/parks/B240/,park,11235 -1863,Broad Channel Park,40.60151600316,-73.81937749046988,"Cross Bay Blvd., Channel Rd. bet. E. 16 Rd. and E. 18 Rd.",http://www.nycgovparks.org/parks/Q460/,park,11693 -1864,St. Lawrence Triangle,40.83495746397,-73.86756824667066,"S/B Cross Bronx Exwy Service Rd, St Lawrence Av, E 174 St",http://www.nycgovparks.org/parks/X148K2/,park,10472 -1865,Prospect Park,40.67188946046,-73.96881026705002,"Prospect Pk W, Flatbush, Parkside, Ocean Aves",http://www.nycgovparks.org/parks/B073/,park,11215 -1866,Sam and Sadie Koenig Garden,40.72420486495,-73.978211389293,E. 7 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M370/,park,10009 -1867,Powell Playground,40.67161940409,-73.90454212975825,Sackman To Powell Sts bet. Glenmore and Pit,http://www.nycgovparks.org/parks/B156/,park,11212 -1868,Garden,40.82849323503,-73.9060548664558,Fulton Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X243/,park,10456 -1869,Marconi Park,40.69261278477,-73.79593975451517,"157 St., 155 St. bet. 108 Ave. and 109 Ave.",http://www.nycgovparks.org/parks/Q127/,park,11433 -1870,Harding Park Beautification Project,40.80841378596,-73.85834953138522,Bronx River Ave. bet. C St. and Cornell Ave.,http://www.nycgovparks.org/parks/X118A/,park,10473 -1871,Captain Dermody Triangle,40.75551957162,-73.76433926865728,"216 St., 48 Ave.",http://www.nycgovparks.org/parks/Q316/,park,11364 -1872,Triangle,40.61658797605,-73.91665899207433,"Ralph Ave., Ave. T and E. 61 St.",http://www.nycgovparks.org/parks/B229/,park,11234 -1873,Nassau Mall South,40.76275501673,-73.72649336739991,"Horace Harding Exwy. Sr. Rd. S., 254 St., 57 Ave.",http://www.nycgovparks.org/parks/Q357J/,park,11362 -1874,Emerald Playground,40.7305450308,-73.80623159659328,"Jewel Ave., 71 Ave. bet. 163 St. and 164 St.",http://www.nycgovparks.org/parks/Q344/,park,11365 -1875,Morningside Park,40.80298748969,-73.95845947997974,"W 110 St To W 123 St, Manhattan Av To Morningside Av",http://www.nycgovparks.org/parks/M056/,park,10026 -1876,Travers Park,40.75457850502,-73.8890793602144,34 Ave. bet. 77 St. and 78 St.,http://www.nycgovparks.org/parks/Q303/,park,11372 -1877,Fort Totten Park,40.79613861328,-73.77628552004614,Cross Island Pkwy. bet. Totten Ave. and 15 Rd.,http://www.nycgovparks.org/parks/Q458/,park,11359 -1878,Eight Oaks Triangle,40.70731481074,-73.82708342453387,"125 St., Austin St., 84 Dr.",http://www.nycgovparks.org/parks/Q206/,park,11415 -1879,Givan Square,40.86761829624,-73.84300675794019,E. Gunhill Rd. and Eastchester Rd. bet. Arnow Ave. and Adee Ave..,http://www.nycgovparks.org/parks/X187/,park,10469 -1880,E 4th Street Garden,40.6482583633,-73.97693043384864,E. 4 St. between Caton Ave. and Fort Hamilton Pkwy.,http://www.nycgovparks.org/parks/B414/,park,11218 -1881,Corona Plaza,40.74973583049,-73.86234428805405,Roosevelt Ave. bet. National St. and 104 St.,http://www.nycgovparks.org/parks/Q172/,park,11368 -1882,Barclay Triangle,40.7613184985,-73.86704700165858,102 St. bet. Astoria Blvd. and 31 Ave.,http://www.nycgovparks.org/parks/Q140/,park,11369 -1883,Tudor Park,40.67450185171,-73.85623427898487,"N. Conduit Ave., 133 Ave. bet. 80 St. and 88 St.",http://www.nycgovparks.org/parks/Q094/,park,11417 -1884,Metro Triangle,40.70440237933,-73.82614136406448,"125 St., 85 Ave., Metropolitan Ave.",http://www.nycgovparks.org/parks/Q157/,park,11415 -1885,Classon Playground,40.69828119698,-73.9619828057776,"Flushing Ave, Williamsburg Pl, Classon & Kent Aves",http://www.nycgovparks.org/parks/B223NA/,park,11211 -1886,Last Chance Pond Park,40.5854753544,-74.09738777210076,"Zoe St., Husson St., Naughton Ave., Seaver Ave.",http://www.nycgovparks.org/parks/R148/,park,10305 -1887,McKenna Triangle,40.74660100437,-73.9440476381809,"Jackson Ave., Court Sq., 45 Ave.",http://www.nycgovparks.org/parks/Q032/,park,11101 -1888,Pralls Island,40.60085771496,-74.19894192131045,Pralls River and Arthur Kill,http://www.nycgovparks.org/parks/R122/,park,10314 -1889,Father Reilly Square,40.72267578865,-73.73628053979716,"Winchester Blvd., 93 Ave., 220 St.",http://www.nycgovparks.org/parks/Q159/,park,11428 -1890,Willow Lake Playground,40.72291359741,-73.83701365562236,72 Ave. bet. 112 St. and Grand Central Parkway,http://www.nycgovparks.org/parks/Q348/,park,11375 -1891,Space Time Playground,40.82199019334,-73.85944191946082,Lafayette Ave. bet. Bolton Ave. and Underhill Ave.,http://www.nycgovparks.org/parks/X221/,park,10473 -1892,Harvey Park,40.78241531404,-73.82307458131865,"144 St., Whitestone Exwy. bet. 15 Ave. and 20 Ave.",http://www.nycgovparks.org/parks/Q089B/,park,11357 -1893,Frank Principe Park,40.72711206874,-73.90323384266392,"Maurice Ave., 63 St. bet. 54 Ave. and Borden Ave.",http://www.nycgovparks.org/parks/Q131/,park,11378 -1894,Monsignor Crawford Field,40.61449471618,-73.91555962014412,"Ave. U bet. E. 58 St., E. 59 St., and E. 60 St.",http://www.nycgovparks.org/parks/B147/,park,11234 -1895,Lopez Playground,40.61095090228,-74.08514293232253,Palma Dr. bet. Targee St. and Oder Ave.,http://www.nycgovparks.org/parks/R125/,park,10304 -1896,Crocheron Park,40.77323174269,-73.76564327191497,"214 Pl., 214 La., 215 Pl, Cross Island Pkwy. bet. 33 Ave. and 35 Ave.",http://www.nycgovparks.org/parks/Q012/,park,11361 -1897,Glenwood Landing,40.77496115173,-73.74025260251084,"Glenwood St., 39 Rd.",http://www.nycgovparks.org/parks/Q222/,park,11363 -1898,Wards Island Park,40.78362827238,-73.9316174582867,East River and Hell Gate,http://www.nycgovparks.org/parks/M107/,park,10035 -1899,Sleight Family Graveyard,40.55637255061,-74.21237838856243,Rossvile Ave. and Arthur Kill Rd.,http://www.nycgovparks.org/parks/R157/,park,10309 -1900,Vinmont Veteran Park,40.90186976065,-73.90477399198286,W. 254 St. bet. Riverdale Ave. and Mosholu Ave.,http://www.nycgovparks.org/parks/X152/,park,10471 -1901,Rudd Playground,40.6832042138,-73.90492726459235,"Arberdeen St., Furman Ave. north of Bushwick Ave.",http://www.nycgovparks.org/parks/B131/,park,11207 -1902,Homecrest Playground,40.58548608224,-73.95680523104001,"Belt Pkwy., Williams Court bet. E. 12 St. and Homecrest Ave",http://www.nycgovparks.org/parks/B166B/,park,11235 -1903,Blueberry Park,40.52882680167,-74.15994254988424,Arden Ave. at Blueberry Lane,http://www.nycgovparks.org/parks/R165/,park,10312 -1904,Father Macris Park,40.61562726065,-74.15978309266148,"S/s Of SI Expressway., Exit 6, Fahy Ave., Lamberts La.",http://www.nycgovparks.org/parks/R075A/,park,10314 -1905,Cypress Hills Playground,40.66989426562,-73.8707420946387,Euclid Ave. bet. Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B103/,park,11208 -1906,Schmul Park,40.58866624972,-74.18506786871878,"Wild Ave., Pearson St., Melvin Ave.",http://www.nycgovparks.org/parks/R045/,park,10314 -1907,Sobel Playground,40.707188996,-73.96140283431592,"Lee Ave., Division Ave., Roebling St.",http://www.nycgovparks.org/parks/B090/,park,11211 -1908,Bedford Green,40.61805709365,-74.08504603600146,"Waverly Pl., Targee St.",http://www.nycgovparks.org/parks/R049/,park,10304 -1909,Westerleigh Park,40.61940161638,-74.13517001562607,"Willard Ave., Springfield Ave., Maine Ave., Neal Dow Ave.",http://www.nycgovparks.org/parks/R029/,park,10314 -1910,Ingram Woods,40.60842986622,-74.13602320349565,"SI Expressway, Warwick Ave., Purdy Ave., and Ingram Ave.",http://www.nycgovparks.org/parks/R075C/,park,10314 -1911,Veterans Park,40.63693843286,-74.1319134946225,"Heberton Ave., Park Ave., Bennett St., Vreeland St.",http://www.nycgovparks.org/parks/R019/,park,10302 -1912,Bruckner Playground,40.82711407647,-73.82832690582798,Brinsmade Ave. bet. Cross Bronx Ser. Rd. and Swinton Ave.,http://www.nycgovparks.org/parks/X183/,park,10465 -1913,Castle Hill Playground,40.83974426272,-73.8530137637704,"Castle Hill Av, Parker St",http://www.nycgovparks.org/parks/X177/,park,10462 -1914,Caserta Playground,40.83719626453,-73.8535066027878,St. Raymond's Ave. bet. Odell St. and Purdy St.,http://www.nycgovparks.org/parks/X160/,park,10462 -1915,Dr. Ronald McNair Park,40.67017458782,-73.96190900002155,"Eastern Pkwy., Washington Ave., Classon Ave.",http://www.nycgovparks.org/parks/B044/,park,11225 -1916,Clinton Community Garden (LES),40.71986381844,-73.98448088352004,Stanton St. and Clinton St.,http://www.nycgovparks.org/parks/M335/,park,10002 -1917,Ruppert Park,40.78057042929,-73.94997734022681,Second Ave. bet. E. 90 St. and E. 91 St.,http://www.nycgovparks.org/parks/M294/,park,10128 -1918,W 87th Street Garden,40.78693837401,-73.97095460664923,"W. 87 St., Columbus Ave., Central Park W.",http://www.nycgovparks.org/parks/M307/,park,10024 -1919,Orient Grove,40.71483456502,-73.94009513965999,Metropolitan Ave. and Orient Ave.,http://www.nycgovparks.org/parks/B024/,park,11211 -1920,Laguardia Landing Lights,40.76271553541,-73.88902699972355,25 Ave. bet. 79 St. and 80 St.,http://www.nycgovparks.org/parks/Q393B/,park,11370 -1921,Woodtree Playground,40.77793838025,-73.90235900334193,20 Ave. bet. 37 St. and 38 St.,http://www.nycgovparks.org/parks/Q332/,park,11105 -1922,Foch Sitting Area,40.67780424677,-73.80235910794437,"Van Wyck Exwy. Sr. Rd. E., 139 St., Fooch Blvd.",http://www.nycgovparks.org/parks/Q220D/,park,11436 -1923,Crosson Green,40.74229553065,-73.89661731302351,"68 St., the BQE bet. Woodside Ave. and 43 Ave.",http://www.nycgovparks.org/parks/Q341E/,park,11377 -1924,Herbert Von King Park,40.68917698101,-73.94518639407613,"Marcy Ave., Tompkins Ave., bet. Greene Ave. and Lafayette Ave.",http://www.nycgovparks.org/parks/B088/,park,11216 -1925,Triborough Bridge Playground D,40.77358194315,-73.9219522436241,"Hoyt Ave., bet. 24 St. and Crescent St.",http://www.nycgovparks.org/parks/Q066D/,park,11102 -1926,Nine Heroes Plaza,40.74552046973,-73.88901229704497,"Broadway, 41 Ave., 76 St.",http://www.nycgovparks.org/parks/Q060/,park,11373 -1927,Jacob Riis Triangle,40.70202209695,-73.83490784310472,"Bessemer St., 116 St., 85 Ave.",http://www.nycgovparks.org/parks/Q142/,park,11418 -1928,Lady Moody Triangle,40.59676318874,-73.97420991818656,"Village Rd. N., Ave. U bet. Van Sicklen St. and Lake St.",http://www.nycgovparks.org/parks/B211/,park,11223 -1929,Fort Hamilton Triangle,40.61627167978,-74.03082919834463,"5 Ave., 4 Ave., 94 St.",http://www.nycgovparks.org/parks/B033/,park,11209 -1930,Sidney Hillman Playground,40.71498948647,-73.97963918741115,Lewis St. bet. Delancey St. and Broome St.,http://www.nycgovparks.org/parks/M195/,park,10002 -1931,Brooklyn Heights Promenade,40.69508983998,-73.99837444732965,BQE bet. Remsen St. and Grace Ct.,http://www.nycgovparks.org/parks/B223DC/,park,11201 -1932,United Community Centers Youth Farm,40.65964149458,-73.90767976392544,Rockaway Ave. and Newport St.,http://www.nycgovparks.org/parks/B513/,park,11212 -1933,Mill Rock Park,40.77918519409,-73.93880185057095,East River Opp E. 96 St.,http://www.nycgovparks.org/parks/M209/,park,10128 -1934,Locust Grove Civic Triangle,40.6664145575,-73.8232753447066,N Conduit Av bet. 118 St and Lefferts Blvd,http://www.nycgovparks.org/parks/Q096A/,park,11420 -1935,Triborough Bridge Playground B,40.77441656432,-73.92250956021628,Hoyt Ave. bet. 21 St. and 23 St.,http://www.nycgovparks.org/parks/Q066B/,park,11102 -1936,Echo Triangle,40.84979417266,-73.90611676721716,"Echo Pl. E. Tremont Ave., Grand Concourse",http://www.nycgovparks.org/parks/X018/,park,10453 -1937,Church Triangle,40.82987556349,-73.85004438387472,"Castlehill Ave., Watson Ave., Cross Bronx Exwy. Svc. Rd. S.",http://www.nycgovparks.org/parks/X012/,park,10472 -1938,Harlem Art Park,40.80105746904,-73.93847003371262,E. 120 St. and Sylvan Pl.,http://www.nycgovparks.org/parks/M166/,park,10035 -1939,Derosa O'Boyle Triangle,40.82244415802,-73.81909067370539,Dewey Ave. bet. E. Tremont Ave. and Edison Ave.,http://www.nycgovparks.org/parks/X133/,park,10465 -1940,Project Eden,40.71628582852,-73.85754269668996,Kessel St. bet. Yellowstone Blvd. and Selfridge St.,http://www.nycgovparks.org/parks/Q475/,park,11375 -1941,Marlboro Playground,40.59081808801,-73.98053886906368,W. 11 St. at Ave. W,http://www.nycgovparks.org/parks/B272/,park,11223 -1942,Seabury Playground,40.83636145063,-73.88775245883497,Southern Blvd bet. E 174 St and E 173 St,http://www.nycgovparks.org/parks/X282/,park,10460 -1943,Father Demo Square,40.72996116861,-74.00216440065645,"Ave. of Americas, Bleecker St. and Carmine St.",http://www.nycgovparks.org/parks/M191/,park,10014 -1944,The Olde Towne of Flushing Burial Ground,40.75533247738,-73.80194209409632,46 Ave. bet. 164 St. and 165 St.,http://www.nycgovparks.org/parks/Q017/,park,11358 -1945,Samuel Marx Triangle,40.80262216166,-73.9527206629128,"7 Ave., St. Nicholas Ave., W. 115 St.",http://www.nycgovparks.org/parks/M169/,park,10026 -1946,Manhattan Beach Park,40.57822482947,-73.9394434539579,Oriental Blvd. between Ocean Ave. and Mackenzie St.,http://www.nycgovparks.org/parks/B251/,park,11235 -1947,Dan Ross Playground,40.6230458171,-74.02126458949637,7 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/B210P/,park,11209 -1948,Tepper Triangle,40.71881510231,-73.79124791809534,"GCP Service Rd. South, 173 St., Homelawn St.",http://www.nycgovparks.org/parks/Q084B/,park,11432 -1949,Hermon A. MacNeil Park,40.79297782206,-73.8485241645034,Poppenhusen Ave. bet. 115 St. and College Pl.,http://www.nycgovparks.org/parks/Q009/,park,11356 -1950,Graniteville Swamp Park,40.62584590547,-74.17562672676485,"Goethals Rd. N., Meeker Ave., Morrow St.",http://www.nycgovparks.org/parks/R141/,park,10303 -1951,Aimee Triangle,40.61319274431,-73.94414048279089,"Ave. P, Madison Pl., Nostrand Ave.",http://www.nycgovparks.org/parks/B273/,park,11229 -1952,Sherman Square,40.7772887549,-73.98227835291218,Broadway and Amsterdam Ave. At W. 70 St.,http://www.nycgovparks.org/parks/M083/,park,10023 -1953,Lot,40.57321436074,-73.98810669954692,Surf Ave. between W. 22 St. and W. 21 St.,http://www.nycgovparks.org/parks/B336A/,park,11224 -1954,Tiffany Playground,40.82505203078,-73.89436356116366,Fox St to Tiffany St bet. E 167 St and E 165 St,http://www.nycgovparks.org/parks/X190/,park,10459 -1955,Straus Square,40.71413503905,-73.99001995402244,"Canal St., Rutgers St. and E. Broadway",http://www.nycgovparks.org/parks/M224/,park,10002 -1956,Rockaway Beach,40.57925545175,-73.82996978266254,"Ocean Promenade, bet. Beach 126 St. and Beach 110 St.",http://www.nycgovparks.org/parks/Q050/,park,11694 -1957,Mercer Playground,40.72780079024,-73.99605200976539,Mercer St. bet. Houston St. and W. 4 St.,http://www.nycgovparks.org/parks/M295/,park,10012 -1958,Forest Grove,40.6272727065,-74.17362385294396,"Forest Ave., Elizabet.h Grove Rd.",http://www.nycgovparks.org/parks/R050/,park,10303 -1959,McCarthy Square,40.73531491561,-74.00168485970386,"7 Ave., Charles St. and Waverly Pl.",http://www.nycgovparks.org/parks/M172/,park,10014 -1960,Penn Triangle,40.70052569694,-73.9610834973556,"Penn St., Wythe Ave., Williamsburg St. E.",http://www.nycgovparks.org/parks/B223NC/,park,11211 -1961,Canal Park,40.72569074073,-74.01078297167567,Canal St. bet. West St. and Washington St.,http://www.nycgovparks.org/parks/M379/,park,10013 -1962,Castle Hill Park,40.81137193244,-73.84765476893402,"Barrett Ave., Hart St. bet. Olmstead Ave. and Zerega Ave.",http://www.nycgovparks.org/parks/X007/,park,10473 -1963,Sedgwick Playground,40.84559172747,-73.92268112946196,Cross Bronx Exwy. Sr. Ramp bet. Undercliff Ave. and Dr. MLK Jr. Blvd.,http://www.nycgovparks.org/parks/X158/,park,10453 -1964,Greenbelt Native Plant Center,40.59616019487,-74.18045654659832,Victory Blvd. bet. Ridgeway Ave. and Travis Ave.,http://www.nycgovparks.org/parks/R017A/,park,10314 -1965,Lincoln Center Plaza,40.7732617687,-73.98307727476411,"Columbus Ave., Amsterdam Ave., W. 63 St. and W. 65 St.",http://www.nycgovparks.org/parks/M232/,park,10023 -1966,Percy E. Sutton Playground,40.82520519724,-73.93466460250441,"Harlem River Dr., W. 151 St. To W. 154 St.",http://www.nycgovparks.org/parks/M141/,park,10039 -1967,Middle Village Veterans Triangle,40.71438253883,-73.87725680873234,"Gray St., 77 St., 66 Rd.",http://www.nycgovparks.org/parks/Q383/,park,11379 -1968,Southern Fields,40.66599969856,-73.82491051650112,N Conduit Av-Belt Pkwy bet. 114 and 117 Sts,http://www.nycgovparks.org/parks/Q096B/,park,11420 -1969,Abigail Playground,40.81723051593,-73.90439763867242,E 156 St bet. Tinton Av and Union Av,http://www.nycgovparks.org/parks/X216/,park,10455 -1970,Fountain Of Youth Playground,40.81443715607,-73.90481691032083,Union Av bet. E 150 St and e 152 St,http://www.nycgovparks.org/parks/X233/,park,10455 -1971,Family Community Garden,40.66528802499,-73.88108260167456,Cleveland St. between Hegeman Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B462/,park,11208 -1972,Crescent Park,40.87975778873,-73.90166312616562,"Albany Crescent, W 233 St, Major Deegan",http://www.nycgovparks.org/parks/X150H/,park,10463 -1973,Euclid Garden,40.67379231871,-73.8718063661942,Doscher St. - Euclid Ave. bet. Belmont Ave. and Sutter Ave.,http://www.nycgovparks.org/parks/B457/,park,11208 -1974,Jerome Park,40.88212802759,-73.8889360654048,Goulden Av bet. W 205 St and Sedgwick Av,http://www.nycgovparks.org/parks/X137/,park,10468 -1975,Dante Park,40.77160234037,-73.98243756779853,"Broadway, Columbus Av, W 63 St",http://www.nycgovparks.org/parks/M020/,park,10023 -1976,Dorrance Brooks Square,40.81802703527,-73.94740229194849,"W 136 St To W 137 St, St Nicholas Av, Edgecom Av",http://www.nycgovparks.org/parks/M024/,park,10030 -1977,Muller Triangle,40.86246015243,-73.89806215955596,"E. Fordham Rd., Creston Ave., E. 190 St.",http://www.nycgovparks.org/parks/X035/,park,10468 -1978,Freedom Triangle,40.6972708703,-73.93181660333437,"Bushwick Ave., Myrtle Ave., Willoughby Ave.",http://www.nycgovparks.org/parks/B037/,park,11221 -1979,Bergen Triangle,40.85510378305,-73.90113020765544,"E. 181 St., Anthony Ave., Grand Concourse",http://www.nycgovparks.org/parks/X006/,park,10457 -1980,Peace Park,40.84524919589,-73.9049142919392,Cross Bronx Exwy Service Rd N bet. Topping Av and Clay Av,http://www.nycgovparks.org/parks/X148E/,park,10457 -1981,Aqueduct Walk,40.86394106084,-73.90294527819808,Aqueduct Ave. W. bet. W. Fordham Rd. and W. Kingsbridge Rd.,http://www.nycgovparks.org/parks/X001/,park,10468 -1982,Machate Circle,40.65103372963,-73.9713040175594,"Park Cir., Parkside Ave., Ocean Pkwy.",http://www.nycgovparks.org/parks/B070/,park,11215 -1983,Christopher Park,40.73344595067,-74.00253687676795,"Christopher St, Grove St, W 4 St",http://www.nycgovparks.org/parks/M012/,park,10014 -1984,A Philip Randolph Square,40.80366735325,-73.95250303562699,"7 Av, St Nicholas Av, W 117 St",http://www.nycgovparks.org/parks/M021/,park,10026 -1985,Garrison Park,40.82155760808,-73.88442504604235,Edgewater Rd bet. Garrison Av and Bruckner Blvd,http://www.nycgovparks.org/parks/X306/,park,10474 -1986,Brigadier General Charles Young Triangle,40.82693309906,-73.93547590292454,"7 Ave., Macombs Pl., At W. 153 St.",http://www.nycgovparks.org/parks/M035/,park,10039 -1987,Eastern Parkway Coalition,40.67012686327,-73.95915817899227,Eastern Pkwy. to Union St. between Franklin Ave. and Classon Ave.,http://www.nycgovparks.org/parks/B459/,park,11225 -1988,Crystal Wells Block Association,40.67785481482,-73.87549349347607,Wells St. and Crystal St.,http://www.nycgovparks.org/parks/B455/,park,11208 -1989,College Point Park,40.78536061727,-73.84620812420202,14 Ave. bet. 121 St. and College Point Blvd.,http://www.nycgovparks.org/parks/Q457/,park,11356 -1990,Ogden Plimpton Playground,40.84195154445,-73.92348670255434,"Ogden Av, Plimpton Av, W 170 St",http://www.nycgovparks.org/parks/X287/,park,10452 -1991,Amelia Gorman Park,40.85581255749,-73.93171714763652,"Broadway To Wadsworth Terr, W 189 St To W 190 St",http://www.nycgovparks.org/parks/M031/,park,10040 -1992,Dimattina Playground,40.67943450792,-74.00300179905186,"Rapelye St., Hicks St., Coles St.",http://www.nycgovparks.org/parks/B223A/,park,11231 -1993,Duane Park,40.71705513782,-74.00926104306279,"Hudson St., Duane St.",http://www.nycgovparks.org/parks/M025/,park,10013 -1994,Las Casitas Community Garden,40.83540520531,-73.92531982971485,Woodycrest Av bet. W 167 St and W 166 St,http://www.nycgovparks.org/parks/X328/,park,10452 -1995,Flood Triangle,40.85816904357,-73.8909566166126,E. 188 St. at 3 Ave. and Washington Ave.,http://www.nycgovparks.org/parks/X061/,park,10458 -1996,Sergeant Johnson Triangle,40.8581025668,-73.88126790009846,Dr Kazimiroff Blvd and Crotona Av at E Fordham Rd,http://www.nycgovparks.org/parks/X059/,park,10458 -1997,Whalen Grove,40.8509461061,-73.88586966839269,Crotona Ave. at Grote St. and Garden St.,http://www.nycgovparks.org/parks/X071/,park,10457 -1998,Fairmount Playground,40.8426175484,-73.88907239384194,Prospect Ave. bet. N/B Cross Bronx Exwy. and Fairmount Pl.,http://www.nycgovparks.org/parks/X148H2/,park,10460 -1999,Boone Slope,40.83716596539,-73.8822720700898,N/B Cross Bronx Exwy Exit Ramp bet. Boone Av and W Farms Rd,http://www.nycgovparks.org/parks/X148J2/,park,10460 -2000,Rock Garden Park,40.83559520586,-73.88470939592784,Longfellow Av bet. E 173 St and E 174 St,http://www.nycgovparks.org/parks/X273/,park,10460 -2001,Drew Playground,40.83327074447,-73.90282172309531,Fulton Av bet. E 169 St and E 170 St,http://www.nycgovparks.org/parks/X021/,park,10456 -2002,Triangle Three Sixteen,40.66712579264,-73.99498803771627,3 Ave. bet. Hamilton Ave. and 16 St.,http://www.nycgovparks.org/parks/B210G/,park,11215 -2003,Bradhurst Gardens Association,40.82735275944,-73.93916001222117,W. 152 St. and Fredrick Douglas Blvd.,http://www.nycgovparks.org/parks/M377/,park,10039 -2004,Triangle,40.82458883497,-73.91074031455958,"E 163 St, Washington Av and Brook Av",http://www.nycgovparks.org/parks/X052/,park,10451 -2005,Hines Park,40.82891214643,-73.9051856187144,Fulton Av to Franklin Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X026/,park,10456 -2006,Co-op City Field,40.87604748368,-73.8230171563259,Co-op City Blvd. and the Hutch. River bet. Carver Loop and Bellamy Loop,http://www.nycgovparks.org/parks/X251/,park,10475 -2007,Gen. Douglas MacArthur Park,40.587619202,-74.10016394203477,Dongan Hills Ave. and Jefferson St.,http://www.nycgovparks.org/parks/R067/,park,10306 -2008,D'Onofrio Square,40.87987393965,-73.86503445987383,White Plains Rd. bet. E. 213 St. and E. 215 St.,http://www.nycgovparks.org/parks/X084/,park,10467 -2009,Latham Park,40.74190921757,-73.89787411497055,"43 Ave. bet. 66 St. and 67 St., BQE",http://www.nycgovparks.org/parks/Q341B/,park,11377 -2010,LaGuardia Landing Lights,40.76647408172,-73.88650853733353,82 St. bet. Astoria Blvd. and 23 Ave.,http://www.nycgovparks.org/parks/Q393H/,park,11370 -2011,Jones Woods Park,40.63823557502,-74.08925952264646,"Arnold St., Brighton Ave., Lafayette Ave.",http://www.nycgovparks.org/parks/R048/,park,10301 -2012,Minetta Triangle,40.72974587195,-74.00198570262627,N/e Corner Ave. of Americas and Minetta St.,http://www.nycgovparks.org/parks/M125D/,park,10012 -2013,Allied Productions/Le Petit Versailles,40.72119552136,-73.98169431947319,"E. 2 St., E. Houston St. bet. Ave. B and Ave. C",http://www.nycgovparks.org/parks/M372/,park,10009 -2014,Technical Sergeant Thomas J. Davey Triangle,40.72648509556,-73.90055277458494,"Borden Ave., Hamilton Pl., Jay Ave.",http://www.nycgovparks.org/parks/Q360F/,park,11378 -2015,Hull Triangle,40.72547378176,-73.90123581004576,"55 Dr., 64 St., Hull Ave.",http://www.nycgovparks.org/parks/Q360E/,park,11378 -2016,Burns Playground,40.86384297173,-73.83657995957529,Mace Ave. bet. Lodovick Ave. and Gunther Ave.,http://www.nycgovparks.org/parks/X232/,park,10469 -2017,Moore Homestead Playground,40.74190332065,-73.88136169378862,"Broadway., 82 St., 45 Ave.",http://www.nycgovparks.org/parks/Q361/,park,11373 -2018,Whitefish Triangle,40.72512780133,-73.89868804397167,"55 Dr., Hamilton Pl., Perry Ave.",http://www.nycgovparks.org/parks/Q360G/,park,11378 -2019,Grant Gore,40.67658189042,-73.95277740492178,"Bedford Ave., Rodgers Ave., Bergen St.",http://www.nycgovparks.org/parks/B041/,park,11216 -2020,University Woods,40.85827433237,-73.91595087391448,"Cedar Ave., Sedgwick Ave. bet. Hall of Fame Ter. and W. 180 St.",http://www.nycgovparks.org/parks/X051/,park,10468 -2021,The Pearly Gates,40.83879396464,-73.8451142303648,St. Peter's Ave. at Tratman Ave.,http://www.nycgovparks.org/parks/X170/,park,10461 -2022,Telephone Playground,40.73806629612,-73.75678292379457,75 Ave. bet. Bell Blvd. and 217 St.,http://www.nycgovparks.org/parks/Q349/,park,11364 -2023,Rappaport Playground,40.63696137914,-74.00002850281535,Ft. Hamilton Pkwy. bet. 52 St. and 53 St.,http://www.nycgovparks.org/parks/B152/,park,11219 -2024,Lieutenant John H. Martinson Playground,40.53696351046,-74.16197949628776,Preston Ave. bet. Koch Blvd. and Osborne St.,http://www.nycgovparks.org/parks/R090/,park,10312 -2025,Sumpter Community Garden,40.6801773307,-73.91759480772673,Sumpter St. bet. Howard Ave. and Saratoga Ave.,http://www.nycgovparks.org/parks/B525/,park,11233 -2026,Bill Brown Playground,40.59125201993,-73.94511518047662,"Ave. Y, Ave. X bet. E. 24 St. and Bedford Ave.",http://www.nycgovparks.org/parks/B109/,park,11235 -2027,P.O. Serrano Playground,40.82326339095,-73.84993650085696,Olmstead Ave. bet. Turnbull Ave. and Lafayetter Ave.,http://www.nycgovparks.org/parks/X151/,park,10473 -2028,TRUCE Garden,40.80461500632,-73.9529195300737,St. Nicholas Ave. bet. W. 118 St. and W. 117 St.,http://www.nycgovparks.org/parks/M387/,park,10026 -2029,Louis C. Moser Playground,40.762606827,-73.8918483849886,25 Ave. bet. 76 St. and 77 St.,http://www.nycgovparks.org/parks/Q366/,park,11370 -2030,L/CPL Thomas P. Noonan Jr. Playground,40.74093392883,-73.92213790719099,"47 Ave., Greenpoint Ave. bet. 42 St. and 43 St.",http://www.nycgovparks.org/parks/Q044/,park,11104 -2031,Torsney Playground,40.74782152608,-73.92074727949363,Skillman Ave. bet. 41 St. and 43 St.,http://www.nycgovparks.org/parks/Q340/,park,11104 -2032,Fort Stirling Park,40.69862069428,-73.9966593914142,Clark St. at Columbia Heights and the Brooklyn-Queens Exwy.,http://www.nycgovparks.org/parks/B036/,park,11201 -2033,Bay Breeze Park,40.59125432639,-73.81386767939775,Beach Channel Dr. bet. Beach 89 St. Old Beach 88 St.,http://www.nycgovparks.org/parks/Q499/,park,11693 -2034,Millbrook Playground,40.80436439922,-73.9160459192458,E. 135 St. bet. Cypress Ave. and St Ann's Ave.,http://www.nycgovparks.org/parks/X182/,park,10454 -2035,DeLury Square,40.70927048285,-74.00507859354515,Fulton St.bet. Ryders Alley and Gold St.,http://www.nycgovparks.org/parks/M385/,park,10038 -2036,Vogue Garden,40.82064165557,-73.9141092740645,Elton Ave. at E. 156 St.,http://www.nycgovparks.org/parks/X347/,park,10455 -2037,South Oxford Park,40.6832960021,-73.97272645885994,S. Oxford St. bet. Commos and Atlantic Ave.,http://www.nycgovparks.org/parks/B407/,park,11217 -2038,Fox Playground,40.63302799507,-73.92364807335066,Ave. H between E. 54 St. to E. 55 St.,http://www.nycgovparks.org/parks/B248/,park,11234 -2039,Gun Hill Playground,40.87484133704,-73.86509137744432,Magenta St. bet. Holland Ave. and Cruger Ave.,http://www.nycgovparks.org/parks/X161/,park,10467 -2040,Gorman Playground,40.76160916542,-73.88371746200323,"30 Ave., 25 Ave. bet. 84 St. and 85 St.",http://www.nycgovparks.org/parks/Q085/,park,11370 -2041,Thomas Paine Park,40.71416768021,-74.00325136498869,"Lafayette St., Centre St. bet. Worth St., Pearl St. and Duane St.",http://www.nycgovparks.org/parks/M030/,park,10007 -2042,Asser Levy Playground,40.73573350806,-73.97520910500639,"E. 23 St. To E. 25 St., FDR Drive",http://www.nycgovparks.org/parks/M164/,park,10010 -2043,Isham Park,40.87205126799,-73.91987771815732,"Broadway, Isham St, Inwood Pk",http://www.nycgovparks.org/parks/M043/,park,10034 -2044,Frank D. O'Connor Playground,40.74389837225,-73.88597836801559,Broadway and Woodside Ave. bet. 77 St. and 79 St.,http://www.nycgovparks.org/parks/Q098/,park,11373 -2045,Sean's Place,40.76082984232,-73.91805175769134,38 St. bet. 31 Ave. and Broadway,http://www.nycgovparks.org/parks/Q444/,park,11103 -2046,Jesse Owens Playground,40.69201807426,-73.93199110383165,Lafayette Ave. bet. Stuyvesant Ave. and Malcom X Blvd.,http://www.nycgovparks.org/parks/B269/,park,11221 -2047,Auburndale Playground,40.76605619028,-73.7938787926504,"171 St., 172 St. bet. 33 Ave. and 35 Ave.",http://www.nycgovparks.org/parks/Q397/,park,11358 -2048,Murray Hill Playground,40.76145949632,-73.81134737138704,Murray St. bet. Barclay Ave. and Sanford Ave.,http://www.nycgovparks.org/parks/Q437/,park,11355 -2049,Pelham Bay Little League,40.84138412002,-73.8390052243046,Westchester Ave. bet. Tan Pl. and Waters Ave.,http://www.nycgovparks.org/parks/X256/,park,10461 -2050,East Springfield Playground,40.6986702966,-73.73941752218502,115 Rd. bet. 218 St. and 219 St.,http://www.nycgovparks.org/parks/Q404/,park,11411 -2051,Bellerose Playground,40.73256385013,-73.71748692011855,85 Ave. bet. 248 St. and 249 St.,http://www.nycgovparks.org/parks/Q328/,park,11426 -2052,Vleigh Playground,40.72970511816,-73.81560317974835,"70 Rd., 71 Ave. bet. 150 St. and Kissena Blvd.",http://www.nycgovparks.org/parks/Q320/,park,11367 -2053,Harvard Playground,40.70874815786,-73.78157988844221,179 Pl. bet. 90 Ave. and Jamaica Ave.,http://www.nycgovparks.org/parks/Q120/,park,11432 -2054,Bayside Fields,40.77294911466,-73.78472799933617,29 Ave. bet. 204 St. and Clearview Exwy. Sr. Rd. W.,http://www.nycgovparks.org/parks/Q387A/,park,11360 -2055,Bowne Park,40.77101044021,-73.80547989779006,"29 Ave., 32 Ave. bet. 155 St. and 159 St.",http://www.nycgovparks.org/parks/Q006/,park,11354 -2056,Ponderosa Garden,40.64908720119,-73.8969728966756,E. 105 St. between Farragut Rd. and Glenwood Rd.,http://www.nycgovparks.org/parks/B504/,park,11236 -2057,Lincoln Rd Block Association,40.66108684577,-73.95219075695849,Lincoln Rd. between Rogers Ave. and Nostrand Ave.,http://www.nycgovparks.org/parks/B480/,park,11225 -2058,All People's Church of the Apostolic Faith Community Garden,40.69436616864,-73.94567279852019,Tompkins Ave. and Willoughby Ave.,http://www.nycgovparks.org/parks/B439/,park,11206 -2059,700 Decatur St Block Association,40.68375192031,-73.91421720909678,Hopkinson Ave. and Decatur St.,http://www.nycgovparks.org/parks/B438/,park,11233 -2060,Brooklyn Bears Carlton Ave Garden,40.68581476662,-73.97094993164195,Carlton Ave. between Greene Ave. and Fulton St.,http://www.nycgovparks.org/parks/B421/,park,11238 -2061,Atkins Gardeners,40.6737822491,-73.8783312795067,Atkins Ave. between Belmont Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B443/,park,11208 -2062,Gardens Of Union,40.67700810251,-73.98229892793522,Union St. between 4 Ave. and 5 Ave.,http://www.nycgovparks.org/parks/B399/,park,11215 -2063,Ten Eyck Plaza,40.70903710326,-73.94911565165785,Ten Eyck St. to Stagg St. between Lorimer St. and Union Ave.,http://www.nycgovparks.org/parks/B386/,park,11206 -2064,Beach Channel Playground,40.5892243664,-73.80540028506893,"B 80 St., B 79 St., Rockaway Beach Blvd., Beach Channel Dr.",http://www.nycgovparks.org/parks/Q403/,park,11693 -2065,Wilson Playground,40.64236543885,-73.89413337287988,Ave. K between E. 100 St. and E. 101 St.,http://www.nycgovparks.org/parks/B279/,park,11236 -2066,Benson Playground,40.6022945914,-74.0020041747784,Bath Ave. between Bay 22 St. and Bay 23 St.,http://www.nycgovparks.org/parks/B277/,park,11214 -2067,Sumner Playground,40.69779227335,-73.94292203708201,Throop Ave. between Myrtle Ave. and Park Ave.,http://www.nycgovparks.org/parks/B263/,park,11206 -2068,P.O. Reinaldo Salgado Playground,40.68776000309,-73.92490016530772,Monroe St. to Madison St. between Patchen Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B224/,park,11221 -2069,Rodney Playground Center,40.710422132,-73.9553329149497,"Rodney St., S. 3 St., Borniquen Pl.",http://www.nycgovparks.org/parks/B223PD/,park,11211 -2070,Rockaway Garage,40.59133130379,-73.80273892755633,Amstel Blvd. bet. Beach 75 St. and Beach 74 St.,http://www.nycgovparks.org/parks/Q455/,park,11692 -2071,Railroad Playground,40.6490960379,-73.91342067703167,Ditmas Ave. bet. E. 92 St. and E. 91 St.,http://www.nycgovparks.org/parks/B271/,park,11236 -2072,Brooklyn Heights Promenade,40.69602978348,-73.9978368902687,BQE at Montague St.,http://www.nycgovparks.org/parks/B223DF/,park,11201 -2073,West Playground,40.58761652185,-73.97014873022829,Ave. Z between W. 1 St. and West St.,http://www.nycgovparks.org/parks/B252/,park,11223 -2074,Tilden Playground,40.64724642557,-73.93174011489194,Tilden Ave. between E. 48 St. and E. 49 St.,http://www.nycgovparks.org/parks/B234/,park,11203 -2075,Nicholas Naquan Heyward Jr. Park,40.68421201029,-73.9874808027048,Wyckoff St. between Hoyt St. and Bond St.,http://www.nycgovparks.org/parks/B230/,park,11217 -2076,Rodney Park South,40.70753243954,-73.95714285365467,"Division Ave., Rodney St., S. 9 St.",http://www.nycgovparks.org/parks/B223OC/,park,11211 -2077,Harry Chapin Playground,40.70052351987,-73.99479706266717,Columbia Hts. at Middagh St.,http://www.nycgovparks.org/parks/B223H/,park,11201 -2078,Jennifer's Playground,40.62023796183,-74.16248855636586,"Jules Dr., Elson Ct., Regis Dr.",http://www.nycgovparks.org/parks/R114/,park,10314 -2079,United Community Center Garden,40.66513649319,-73.88660847294206,Schenck Ave. bet. Livonia Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B515/,park,11207 -2080,Brooklyn Heights Promenade,40.69573873899,-73.9974135434037,Montague St. bet. Montague Ter. and BQE,http://www.nycgovparks.org/parks/B223DF/,park,11201 -2081,Pierrepont Playground,40.69600575065,-73.99728632001353,"bet. Pierrepont Pl., Pierrepont St. and the BQE",http://www.nycgovparks.org/parks/B222/,park,11201 -2082,Aesop Park,40.50952810782,-74.22924890046362,Corner Of Bartow Ave. and Page Ave.,http://www.nycgovparks.org/parks/R027A/,park,10309 -2083,La Guardia Playground,40.71030022838,-73.96011017205772,S. 4 St. bet. Roebling St. and Williamsburg Bridge Ramp,http://www.nycgovparks.org/parks/B167/,park,11211 -2084,Bedford Playground,40.70855957451,-73.96348799692701,Bedford Ave. bet. S. 9 St. and Division Ave.,http://www.nycgovparks.org/parks/B142/,park,11211 -2085,Lt. Lia Playground,40.64375562007,-74.08041544162526,Wall St. bet. St Marks Pl. and Belmont Pl.,http://www.nycgovparks.org/parks/R111/,park,10301 -2086,Greencroft Playground,40.55186119976,-74.13543274125965,Greencroft Ave. bet. Ainsworth Ave. and Redgrave Ave.,http://www.nycgovparks.org/parks/R089/,park,10308 -2087,Sports Park,40.60921738617,-74.11867424407325,"SI Expressway, Manor Rd. and Schmidts La.",http://www.nycgovparks.org/parks/R075D/,park,10314 -2088,Lot,40.71163139713,-73.96510672856029,S. 5 St. bet. Wythe Ave. and Berry St.,http://www.nycgovparks.org/parks/B112/,park,11211 -2089,Vamos Sembrar,40.72829982483,-73.9789702893822,Ave. B bet. E. 12 St. and E. 13 St.,http://www.nycgovparks.org/parks/M343/,park,10009 -2090,Old Croton Aqueduct Gatehouse,40.80862798918,-73.95955535979222,Amsterdam Ave. bet. W. 118 St. and W. 119 St.,http://www.nycgovparks.org/parks/M320/,park,10027 -2091,Pleasant Village Community Garden,40.79669097298,-73.93144538061266,"Pleasant Ave., bet. E. 118 St. and E. 119 St.",http://www.nycgovparks.org/parks/M299/,park,10035 -2092,Unity Gardens,40.80942764383,-73.94248043243698,W. 128. St. bet. 5 Ave. and Lenox Ave.,http://www.nycgovparks.org/parks/M298/,park,10027 -2093,6th St and Ave B Community Garden,40.72422569792,-73.98194087171696,Ave. B bet. E. 5 St. and E. 6 St.,http://www.nycgovparks.org/parks/M293/,park,10009 -2094,Abyssinian Tot Lot,40.81726604067,-73.9406885465869,W. 139 St. bet. Adam C Powell Blvd. and Lenox Ave.,http://www.nycgovparks.org/parks/M303/,park,10030 -2095,East River Playground,40.78885176366,-73.93787392348952,"FDR Dr., E. 106 St. To E. 107 St.",http://www.nycgovparks.org/parks/M258/,park,10029 -2096,Septuagesimo UNO,40.77873959951,-73.98422664225284,71 St. bet. West End Ave. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M282/,park,10023 -2097,Poor Richard's Playground,40.79331732385,-73.94319197216295,E. 109 St. bet. 2 Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M230/,park,10029 -2098,Jacob's Ladder Playground,40.70484661344,-73.96653496005578,Clymer St. to Morton St. between Kent Ave. and Wythe Ave.,http://www.nycgovparks.org/parks/B382B/,park,11211 -2099,Chiarantano Playground,40.63679878588,-73.93319466418113,Farragut Rd. between E. 45 St. and E. 46 St.,http://www.nycgovparks.org/parks/B375/,park,11203 -2100,Trygve Lie Plaza,40.74884250487,-73.97023732560665,"1 Ave., bet. E. 41 St. and E. 42 St.",http://www.nycgovparks.org/parks/M203A/,park,10017 -2101,Holcombe Rucker Park,40.82978399248,-73.93659161474059,"W. 155 St., 8 Ave. To Harlem River Drive",http://www.nycgovparks.org/parks/M216/,park,10039 -2102,Cherry Tree Park,40.78685884929,-73.94706292181864,"99 St. To 100 St., 3 Ave.",http://www.nycgovparks.org/parks/M215/,park,10029 -2103,Astoria Heights Playground,40.76076801709,-73.91101385359487,30 Rd. bet. 45 St. and 46 St.,http://www.nycgovparks.org/parks/Q014/,park,11103 -2104,Jes Good Rewards Childeren's Garden,40.66677177717,-73.91343241065258,Sutter Ave. and Amboy St.,http://www.nycgovparks.org/parks/B511/,park,11212 -2105,Vladeck Park,40.71150340209,-73.98181770672083,Madison St. To Water St. bet. Jackson St. and Gouverneur St.,http://www.nycgovparks.org/parks/M182/,park,10002 -2106,Tom McDonald Triangle,40.62193629204,-74.02249206358081,"Ft Hamilton Pkwy., 83 St., 6 Ave.",http://www.nycgovparks.org/parks/B338/,park,11209 -2107,Anibal Aviles Playground,40.80125912674,-73.96263452668934,"W. 108 St. to W. 109 St., Columbus Ave. and Amsterdam Ave.",http://www.nycgovparks.org/parks/M200A/,park,10025 -2108,Booker T. Washington Playground,40.80095740462,-73.96310982046077,"W. 107 St. to W. 108 St., Columbus Ave. and Amsterdam Ave.",http://www.nycgovparks.org/parks/M200/,park,10025 -2109,Fresh Meadows Playground,40.73448792987,-73.79577536207546,67 Ave. bet. 173 St. and 174 St.,http://www.nycgovparks.org/parks/Q314/,park,11365 -2110,Harding Park,40.80924557141,-73.85639866166588,Bolton Ave. bet. O'Brien Ave. and G St.,http://www.nycgovparks.org/parks/X262/,park,10473 -2111,Charlie's Place,40.69890669959,-73.94542600584076,"Ellery St. at Delmonico Pl., Hopkinds St. bet. Tompkins Ave. and Throop Ave.",http://www.nycgovparks.org/parks/B302/,park,11206 -2112,Monsignor Kett Playground,40.86264738798,-73.9204737673532,W. 204 St. bet. 10 Ave. and Nagle Ave.,http://www.nycgovparks.org/parks/M199/,park,10034 -2113,Prospect Cemetery,40.70104204723,-73.79906252718544,Beaver Rd. bet. 158 St. and 159 St.,http://www.nycgovparks.org/parks/Q482/,park,11433 -2114,Washington Skate Park,40.67266943053,-73.98508748296607,"5 St., 4 St. bet. 4 Ave. and 5 Ave.",http://www.nycgovparks.org/parks/B111A/,park,11215 -2115,Randall Playground,40.81901922236,-73.84922408877432,Randall Ave. bet. Olmstead Ave. and Castle Hill Ave.,http://www.nycgovparks.org/parks/X203/,park,10473 -2116,Sgt. William Dougherty Playground,40.72354751067,-73.93670785540392,Vandervoort Ave. bet. Cherry St. and Anthony St.,http://www.nycgovparks.org/parks/B096/,park,11222 -2117,Grace Playground,40.67128162686,-73.89384054415771,Vermont St. bet. Pitkin Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B078/,park,11207 -2118,Glenwood Playground,40.63727383391,-73.91930427982197,Ralph Ave. and Farragut Rd.,http://www.nycgovparks.org/parks/B236/,park,11234 -2119,John J Carty Park,40.6128415012,-74.0300932735937,Ft. Hamilton Pkwy. bet. 94 St. and 101 St.,http://www.nycgovparks.org/parks/B210W/,park,11209 -2120,River Avenue Parks,40.82485894686,-73.92706900971802,E 157 St bet. River Av and Gerard Av,http://www.nycgovparks.org/parks/X348/,park,10451 -2121,Dean Playground,40.68110166498,-73.97272908330662,Dean St. to Bergen St. between 6 Ave. and Carlton Ave.,http://www.nycgovparks.org/parks/B232/,park,11217 -2122,Young Park,40.83979930052,-73.87088909330323,Van Nest Ave. at E. 180 St. and E. Tremont Ave.,http://www.nycgovparks.org/parks/X073/,park,10460 -2123,Riverdale Playground,40.88740184698,-73.9140791234728,Hudson Manor Ter bet. W 237 St and W 236 St,http://www.nycgovparks.org/parks/X186/,park,10463 -2124,Siren Slope,40.87644706341,-73.90397267745317,"W 230 St, Bailey Av, Major Deegan Exwy",http://www.nycgovparks.org/parks/X150G/,park,10463 -2125,Kingsbridge Heights Community Center,40.87755774647,-73.90036065437914,Kingsbridge Ter bet. Perot St and Summilt P,http://www.nycgovparks.org/parks/X250/,park,10463 -2126,Carmansville Playground,40.82885247172,-73.94423739439577,"Amsterdam Av, W 151 St To W 152 St",http://www.nycgovparks.org/parks/M018/,park,10031 -2127,Davidson Ave. Community Gardeners Group,40.86419509373,-73.90064951635848,Davidson Ave. at W. 190 St.,http://www.nycgovparks.org/parks/X343/,park,10468 -2128,Slattery Playground,40.85693358482,-73.89825077067158,E. 183 St. bet. Valentine Ave. and Ryer,http://www.nycgovparks.org/parks/X085/,park,10458 -2129,Mount Hope Garden,40.85233186129,-73.9053260213287,Creston Ave. bet. E. Burnside Ave. and E,http://www.nycgovparks.org/parks/X274/,park,10453 -2130,Hunter's Point South Park,40.74187176241,-73.96034144053077,Center Blvd. bet. 50 Ave. and 2 St.,http://www.nycgovparks.org/parks/Q471/,park,11101 -2131,Jardin De Las Rosas,40.85797587884,-73.90482747559675,Buchanan Pl. bet. Jerome Ave. and Davidso,http://www.nycgovparks.org/parks/X322/,park,10453 -2132,Grand Playground,40.85605373758,-73.90699859013269,W. 181 St. bet. Grand Ave. and Davidson,http://www.nycgovparks.org/parks/X244/,park,10453 -2133,Coleman Playground,40.71079330523,-73.99316195276386,"Cherry St, Pike St, Monroe St",http://www.nycgovparks.org/parks/M019/,park,10002 -2134,De Witt Clinton Park,40.76727280943,-73.99383726769912,"W. 52 St. To W. 54 St., 11 Ave. To 12 Ave.",http://www.nycgovparks.org/parks/M022/,park,10019 -2135,Grant Park,40.83774812957,-73.91160011332084,E 170 St bet. Sheridan Av and Morris Av,http://www.nycgovparks.org/parks/X271/,park,10456 -2136,Webster Playground,40.85937697353,-73.89239779472493,E. 188 St. bet. Webster Ave. and Park Ave.,http://www.nycgovparks.org/parks/X174/,park,10458 -2137,Volky Garden & Flowers,40.84707387749,-73.88234391814649,Hornaday Pl bet. Crotona Pkwy and Mohegan Av,http://www.nycgovparks.org/parks/X346/,park,10460 -2138,Daniel Boone Playground,40.82859551467,-73.88602063818213,Boone Av bet. W Farms Rd and Freeman St,http://www.nycgovparks.org/parks/X147B/,park,10459 -2139,Genesis Park Community Garden,40.82959791799,-73.90440919267616,Franklin Av bet. E 167 St and E 168 St,http://www.nycgovparks.org/parks/X316/,park,10456 -2140,Morgan Playground,40.83271828168,-73.90701799190813,E 168 St bet. Park Av and Washington Av,http://www.nycgovparks.org/parks/X206/,park,10456 -2141,Jardin De La Familia,40.83802580491,-73.90324849746916,E. 171 St. at Washington Ave.,http://www.nycgovparks.org/parks/X320/,park,10457 -2142,Sophie Irene Loeb,40.71360531673,-73.99442125447004,"Henry St., Market St., E. Broadway",http://www.nycgovparks.org/parks/M067/,park,10002 -2143,Haffen Park,40.87331371221,-73.83763290069393,Hammersley Ave. to Burke Ave. bet. Ely Ave. and Gunther Ave.,http://www.nycgovparks.org/parks/X196/,park,10469 -2144,Castle Hill Little League Field,40.83286426779,-73.84346594277106,Zerega Av bet. Commerce Av and Gleason Av,http://www.nycgovparks.org/parks/X239/,park,10462 -2145,Straus Park,40.80159984818,-73.96812312780794,"Broadway, W. 106 St., W. End Ave.",http://www.nycgovparks.org/parks/M085/,park,10025 -2146,James J Walker Park,40.73013812355,-74.00672402234832,"Hudson St., St. Luke's Pl., Clarkson St., 7 Ave.",http://www.nycgovparks.org/parks/M038/,park,10014 -2147,Courtlandt Avenue Association Garden,40.82256846898,-73.91592928828673,E 158 St bet. Melrose Av and Courtlandt Av,http://www.nycgovparks.org/parks/X338/,park,10451 -2148,St. Ann's Block Association Garden,40.8172326477,-73.91110273250362,St Ann's Ave. at Rae St.,http://www.nycgovparks.org/parks/X345/,park,10455 -2149,Padre Plaza,40.80775150025,-73.91699019642044,E. 139 St. and St Ann's Ave.,http://www.nycgovparks.org/parks/X285/,park,10454 -2150,Brook Park,40.80955496357,-73.91821137155662,Brook Ave. bet. E. 141 St. and E. 140 St.,http://www.nycgovparks.org/parks/X246/,park,10454 -2151,People's Park,40.80987048321,-73.91732690349966,E. 141 St. bet. Brook Ave. and St Ann's Ave.,http://www.nycgovparks.org/parks/X103/,park,10454 -2152,West 4th Street Courts,40.73090253445,-74.00092286126788,"Ave. Of Americas, W. 3 St. and W. 4 St.",http://www.nycgovparks.org/parks/M125C/,park,10012 -2153,Loreto Playground,40.84863603391,-73.85136679666141,Morris Park Ave. bet. Haight Ave. and Tomlinson Ave.,http://www.nycgovparks.org/parks/X163/,park,10461 -2154,James Weldon Johnson Playground,40.79692280504,-73.94157178085652,E. 115 St. bet. 3 Ave. and Lexington Ave.,http://www.nycgovparks.org/parks/M111/,park,10029 -2155,William McCray Playground,40.81553449102,-73.93732949281154,"W. 138 St., bet. Lenox Ave. and 5 Ave.",http://www.nycgovparks.org/parks/M110/,park,10037 -2156,Arverne Playground,40.5925020625,-73.78521573415489,Arverne Blvd. bet. Beach 56 St. and Beach 54 St.,http://www.nycgovparks.org/parks/Q313/,park,11692 -2157,Twenty-Four Sycamores Park,40.75960193452,-73.95827002036043,"FDR Dr., E. 60 St. To E. 61 St. and York Ave.",http://www.nycgovparks.org/parks/M108Q/,park,10065 -2158,Asphalt Green,40.77872759852,-73.94363368593727,"E. 90 St., York Ave., FDR Dr.",http://www.nycgovparks.org/parks/M286/,park,10128 -2159,Children's Garden,40.72808245525,-73.97913710442276,S/w Corner of E. 12 St. At Ave. B,http://www.nycgovparks.org/parks/M113A/,park,10009 -2160,Concerned Residents of Barbey Street,40.67405915528,-73.8876657055523,Barbey St. and Glenmore Ave.,http://www.nycgovparks.org/parks/B452/,park,11207 -2161,Bufano Park,40.83783058967,-73.8304587458853,Bradford Ave. bet. La Salle Ave. and Waterbury Ave.,http://www.nycgovparks.org/parks/X121/,park,10461 -2162,Steeplechase Park,40.57530722581,-73.98325414168744,"Surf Ave. between W. 16 St. and W. 19 St., Public Beach",http://www.nycgovparks.org/parks/B369/,park,11224 -2163,Astoria Park,40.7825274375,-73.91996804286025,19 St. bet. Astoria Park S. and Ditmars Blvd.,http://www.nycgovparks.org/parks/Q004/,park,11105 -2164,Francis Lewis Park,40.79563781596,-73.8260497433326,3 Ave. bet. Parsons Blvd and 147 St.,http://www.nycgovparks.org/parks/Q126,park,11357 -2165,Thursby Basin Park,40.59534080136,-73.791081668037,Beach 63 St. bet. Elizabeth Rd. and Thursby Ave.,http://www.nycgovparks.org/parks/Q479/,park,11692 -2166,Poseidon Playground,40.57176971595,-73.99150900764111,"Surf Ave. bet. W. 25 St. to W. 27 St., Boardwalk",http://www.nycgovparks.org/parks/B169B/,park,11224 -2167,Pier 107 CVII,40.78894223346,-73.93611806830104,FDR Dr. at E. 107 St.,http://www.nycgovparks.org/parks/M290/,park,10029 -2168,Red Hook Recreation Area,40.67179112362,-74.00342102840533,"Halleck St., Bush St. bet. Otsego St. and Court St.",http://www.nycgovparks.org/parks/B126/,park,11231 -2169,Coney Island Creek Park,40.58103152317,-74.00413959028121,Bay View Ave. between Sea Gate Ave. and W. 33 St.,http://www.nycgovparks.org/parks/B379/,park,11224 -2170,River Garden,40.84198786955,-73.87623969625949,E 180 St bet. the Bronx River and Devoe Av,http://www.nycgovparks.org/parks/X245/,park,10460 -2171,Ambrosini Field,40.8440889832,-73.78243845176827,City Island Ave bet. Centre St. and Winter St.,http://www.nycgovparks.org/parks/X253/,park,10464 -2172,Joseph Daniel Wilson Garden,40.80774069979,-73.95042032246141,W. 122 St. bet. Fred Douglass Blvd. and Adam Clayton Powell Blvd.,http://www.nycgovparks.org/parks/M351/,park,10027 -2173,Frederick Johnson Playground,40.82460151284,-73.93462145633255,7 Ave. bet. W. 150 St. and W. 151 St.,http://www.nycgovparks.org/parks/M159/,park,10039 -2174,Queensbridge Park,40.75589212431,-73.94806058617907,"Queensboro Bridge, 41 Rd., 40 Ave. bet. The East River, Vernon Blvd., and 21 St.",http://www.nycgovparks.org/parks/Q104/,park,11101 -2175,Brooklyn Heights Promenade,40.69808464653,-73.99699305334475,BQE over-hang bet. Remsen St. and Orange St.,http://www.nycgovparks.org/parks/B223DK/,park,11201 -2176,Memorial Circle,40.57872354339,-73.84088486382107,Rockaway Beach Blvd. bet. Beach 120 St. and Beach 121 St.,http://www.nycgovparks.org/parks/Q259/,park,11694 -2177,Hempstead Ballfield,40.71027383581,-73.7287188787995,Hempstead Ave. bet. Cross Is. Pkwy. and 225 St.,http://www.nycgovparks.org/parks/Q133A/,park,11429 -2178,Fruit Street Sitting Area,40.70059713694,-73.99530459994776,Columbia Heights and Orange St. To Cranberry St.,http://www.nycgovparks.org/parks/B223E/,park,11201 -2179,Hackett Park,40.90111391915,-73.90559007025497,"W 254 St, Riverdale Av, Henry Hudson Pkw",http://www.nycgovparks.org/parks/X110A/,park,10471 -2180,Alley Park,40.7472472492,-73.74439054688156,67 Ave. bet. 230 St. and 233 St.,http://www.nycgovparks.org/parks/Q356/,park,11364 -2181,Barretto Point Park,40.80426974197,-73.88722954312396,Viele Ave. bet. Tiffany St. and Barretto St.,http://www.nycgovparks.org/parks/X307/,park,10474 -2182,Rev. Linnette C Williamson Memorial Park,40.80987448255,-73.94277704284598,E. 129 St. bet. Lenox Ave. and 5 Ave.,http://www.nycgovparks.org/parks/M316/,park,10027 -2183,Estella Diggs Park,40.82906999202,-73.90565830783797,3 Av to Fulton Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X243/,park,10456 -2184,Chelsea Green,40.74178064653,-73.99615101159142,W. 20 St. bet. Ave. of the Americas and 7 Ave.,http://www.20thstreetpark.org/,park,10011 -2185,Cedar Grove Playground,40.73638556059,-73.82413760240924,Gravett Rd. bet. Main St. and 149 St.,http://www.nycgovparks.org/parks/Q376/,park,11367 -2186,Whitestone Playground,40.79228486304,-73.80786502743729,"11 Ave., 12 Ave. bet. 152 St. and 154 St.",http://www.nycgovparks.org/parks/Q343/,park,11357 -2187,Surf Playground,40.57404512057,-73.9919677686699,Surf Ave. between W. 25 St. and W. 27 St.,http://www.nycgovparks.org/parks/B315/,park,11224 -2188,Bath Playground,40.5951813981,-73.99256961791514,Bath Ave. between 24 Ave. and Bay 37 St.,http://www.nycgovparks.org/parks/B349/,park,11214 -2189,Golconda Playground,40.69756187748,-73.98158112112017,Gold St. between Nassau St. and Concord St.,http://www.nycgovparks.org/parks/B243/,park,11201 -2190,Long Pond Park,40.51353637172,-74.22665486323866,"Page Ave., Hylan Blvd., and Amboy Rd.",http://www.nycgovparks.org/parks/R027/,park,10309 -2191,Bunker Ponds Park,40.52369764252,-74.18164990647155,"Hylan Blvd., Chester Ave., Arbutus Ave., Huguenot Ave.",http://www.nycgovparks.org/parks/R132/,park,10312 -2192,King Fisher Park,40.56084932764,-74.1518868875469,"Miles Ave., Corbin Ave., Barlow Ave., Fairfield St.",http://www.nycgovparks.org/parks/R140/,park,10308 -2193,Blue Heron Park,40.53728220667,-74.17491195173616,"Amboy Rd., Barclay Ave., Hylan Blvd. and Bertram Ave.",http://www.nycgovparks.org/parks/R119/,park,10312 -2194,Roosevelt Triangle,40.81132419344,-73.95423114697054,W. 125 St. and Morningside Ave.,http://www.nycgovparks.org/parks/M189/,park,10027 -2195,Newport Playground,40.6606529482,-73.90661014690899,Riverdale Ave. bet. Thatford Ave. and Osborn St.,http://www.nycgovparks.org/parks/B339/,park,11212 -2196,Garden Of Life,40.84338431351,-73.90779158232726,E 173 St bet. Weeks Av and Eastburn Av,http://www.nycgovparks.org/parks/X298/,park,10457 -2197,Vernon/Throop Ave Block Association,40.69515265354,-73.94324227632016,Throop Ave. and Vernon Ave.,http://www.nycgovparks.org/parks/B495/,park,11206 -2198,Granite St Block Association,40.68224533097,-73.90750653688438,Granite St. between Broadway and Bushwick Ave.,http://www.nycgovparks.org/parks/B470/,park,11207 -2199,Walter Gladwin Park,40.84633610857,-73.89478193236265,E 175 St to E Tremont Av bet. 3 Av and Arthur Ave,http://www.nycgovparks.org/parks/X010A/,park,10457 -2200,Hansborough Recreation Center,40.8126238564,-73.93920593381904,"W. 134 St., Lenox Terrace Pl.",http://www.nycgovparks.org/parks/M131/,park,10037 -2201,Targee Street Triangle,40.60887033369,-74.08807252164642,"De Kalb St., Targee St., Narrows Rd. N.",http://www.nycgovparks.org/parks/R164/,park,10304 -2202,Yolanda García Park,40.82322080828,-73.9132449912286,Melrose Ave. bet. E. 160 St. and E. 159 St.,http://www.nycgovparks.org/parks/X353/,park,10451 -2203,Pleasant Plains Plaza,40.52390419722,-74.216345334665,"Amboy Rd., Bloomingdale Rd.",http://www.nycgovparks.org/parks/R002/,park,10309 -2204,McGuire Fields,40.6055743753,-73.89906362004717,"Ave Y., Bergen Ave. bet. Ave. V and Belt Pkwy.",http://www.nycgovparks.org/parks/B166D/,park,11234 -2205,Mount Prospect Park,40.67215243584,-73.96535651528673,"Eastern Pkwy., Flatbush Ave. bet. Underhill Ave. and Washington Ave.",http://www.nycgovparks.org/parks/B159/,park,11238 -2206,Four Sparrow Marsh,40.60036548634,-73.90382941160448,"Flatbush Ave., Belt Pkwy., Mill Basin",http://www.nycgovparks.org/parks/B394/,park,11234 -2207,Bensonhurst Park,40.59646464786,-74.00020282563159,Cropsey Ave. bet. 21 Ave. and Bay Pkwy.,http://www.nycgovparks.org/parks/B007/,park,11214 -2208,Bridge Playground,40.84442971685,-73.92361869858321,"Boscobel Pl, bet. Dr MLK Jr Blvd and Undercliff Av",http://www.nycgovparks.org/parks/X148A3/,park,10452 -2209,Joseph Rodman Drake Park & Enslaved African Burial Ground,40.80982262776,-73.88323029594491,Oak Pt. Ave. bet. Hunts Pt. Ave. and Longfellow Ave.,http://www.nycgovparks.org/parks/X015/,park,10474 -2210,Playground 103 CIII,40.78737531943,-73.93879154414053,FDR Dr. bet. E. 102 St. and E. 106 St.,http://www.nycgovparks.org/parks/M108G/,park,10029 -2211,Family Group Garden,40.8219468871,-73.91393735494913,E. 158 St. bet. Melrose Ave. and Elton Ave.,http://www.nycgovparks.org/parks/X352/,park,10451 -2212,"Martin Luther King, Jr. Playground",40.79996367345,-73.95090138982894,"Lenox Ave, W. 113 St. To W. 114 St.",http://www.nycgovparks.org/parks/M198/,park,10026 -2213,Brooklyn Heights Promenade,40.69886144497,-73.99652568050227,BQE bet. Clark St. and Pineapple St.,http://www.nycgovparks.org/parks/B223DH/,park,11201 -2214,Howard Pool,40.67263053196,-73.90852481321426,E. New York Ave. between Mother Gaston Blvd. and St. Mark's Ave.,http://www.nycgovparks.org/parks/B260A/,park,11212 -2215,Wagner Houses Pool,40.8014685355,-73.93163164085813,E. 124 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M273/,park,10035 -2216,Slope Park Playground,40.66139567772,-73.98913202082416,6 Ave. between 18 St. and 19 St.,http://www.nycgovparks.org/parks/B288/,park,11215 -2217,Vincent F. Albano Jr. Playground,40.74176941381,-73.97826651009748,2 Ave. bet. E. 29 St. and E. 30 St.,http://www.nycgovparks.org/parks/M265/,park,10016 -2218,Van Dyke Playground,40.6641483856,-73.90349595172391,Dumont Ave. between Powell St. and Mother Gaston Blvd.,http://www.nycgovparks.org/parks/B249/,park,11212 -2219,Cutinella Triangle,40.5917309332,-73.97677333958097,"Ave. W, W. 6 St. and 86 St.",http://www.nycgovparks.org/parks/B289/,park,11223 -2220,Callahan-Kelly Playground,40.67860334852,-73.90369797331626,"Fulton St., Truxton St., bet. Eastern Pkwy. and Van Sinderen Ave.",http://www.nycgovparks.org/parks/B219/,park,11233 -2221,Bartel-Pritchard Square,40.66142937714,-73.97984506009364,"Prospect Park W., 15 St.",http://www.nycgovparks.org/parks/B003/,park,11215 -2222,Damrosch Park,40.77210130857,-73.98398490449247,Amsterdam Ave. and W. 62 St.,http://www.nycgovparks.org/parks/M231/,park,10023 -2223,Petrosino Square,40.72159322733,-73.9974421394935,"Kenmare St., Lafayette St., and Cleveland Pl.",http://www.nycgovparks.org/parks/M170/,park,10012 -2224,Ralph Demarco Park,40.78349954848,-73.91871011502643,Shore Blvd. bet. Ditmars Blvd. and 20 Ave.,http://www.nycgovparks.org/parks/Q004A/,park,11105 -2225,Parade Ground,40.64951566082,-73.96849393627504,"Parkside Ave., Caton Ave., bet. Parade Pl. and Coney Island Ave.",http://www.nycgovparks.org/parks/B068/,park,11226 -2226,Hempstead Bench Spread,40.71079468818,-73.7296558548861,104 Ave. bet. 225 St. and 227 St.,http://www.nycgovparks.org/parks/Q133B/,park,11429 -2227,Quaker Parrot Park at the Dust Bowl,40.63259498089,-74.01276037951446,8 Ave. bet. 65 St. and 66 St.,http://www.nycgovparks.org/parks/B146/,park,11220 -2228,Stars & Stripes Playground,40.88567381564,-73.83868117507936,Crawford Ave. at Baychester Ave.,http://www.nycgovparks.org/parks/X193/,park,10466 -2229,Trust Triangle,40.61610274441,-73.92952044840865,"Flatbush Ave., Schenctady Ave., Ave. O",http://www.nycgovparks.org/parks/B176/,park,11234 -2230,Rev. T. Wendell Foster Park and Recreation Center,40.83410517636,-73.92240136423838,Jerome Av to River Av bet. E 164 St and McClellan St at Cromwell Ave,http://www.nycgovparks.org/parks/X034/,park,10452 -2231,Holy Cow Playground,40.74211419685,-73.77809413661085,Peck Ave. bet. 61 Rd. and 67 Ave.,http://www.nycgovparks.org/parks/Q300B/,park,11365 -2232,The Big Park,40.63095323297,-74.16375018086438,"Grandview Ave., at Continental Pl.",http://www.nycgovparks.org/parks/R068/,park,10303 -2233,Rose Hill Park,40.86280920791,-73.88957477260601,Webster Ave. bet. E. Fordham Rd. and E. 194 St.,http://www.nycgovparks.org/parks/X042/,park,10458 -2234,Union Square Park,40.73516883702,-73.99022507209253,"Broadway To 4 Ave., E 14 St. To E 17 St.",http://www.nycgovparks.org/parks/M089/,park,10003 -2235,Jerome Slope,40.83253481828,-73.92561018812562,Jerome Ave. at E. 165 St.,http://www.nycgovparks.org/parks/X105/,park,10452 -2236,Kissena Corridor Park,40.75123430849,-73.82508501900409,"Lawrence St,N Hempstead Tpk,Elder Ave,Kissena Blvd",http://www.nycgovparks.org/parks/Q300/,park,11355 -2237,Pat Williams Playground,40.71274659803,-73.72956246356631,"Hempstead Ave., 225 St. and 224 St. Cross Island Parkway Exit at 225 St.",http://www.nycgovparks.org/parks/Q133/,park,11429 -2238,Alley Athletic Playground,40.73950576949,-73.73378358401631,Winchester Blvd. bet. Union Tpke. and the Grand Central Pkwy.,http://www.nycgovparks.org/parks/Q001A/,park,11426 -2239,Queens Farm Park,40.74886592739,-73.72256641457663,Little Neck Pkwy. bet. 73 Rd. and 74 Ave.,http://www.nycgovparks.org/parks/Q453/,park,11426 -2240,Castlewood Playground,40.74952421057,-73.72290873000276,Little Neck Pkwy. bet. 72 Ave. and 73 Ave.,http://www.nycgovparks.org/parks/Q327/,park,11426 -2241,Tiffany Street Pier,40.80603380466,-73.89188625112085,Tiffany St. at Viele Ave.,http://www.nycgovparks.org/parks/X304/,park,10455 -2242,Maritcha R. Lyons Park,40.70067130019,-73.98592558555639,Prospect St. bet. Jay St. and the BQE,http://www.nycgovparks.org/parks/B223JB/,park,11201 -2243,Cornell Burial Ground,40.59998747783,-73.74925026011584,Caffrey Ave. bet. New Haven Ave. and Davies Rd.,http://www.nycgovparks.org/parks/Q463/,park,11691 -2244,Ferry Point Park,40.82164238264,-73.82677155590329,"Schley Ave., LI Sound bet. Westchester Creek and Balcom Ave.",http://www.nycgovparks.org/parks/X126/,park,10465 -2245,Susan Smith McKinney Steward Park,40.70143550361,-73.98559911557678,"Bridge St., Jay St. bet. Prospect St. and York St.",http://www.nycgovparks.org/parks/B223JB/,park,11201 -2246,Fairview Park,40.53226533631,-74.22503674042603,"Englewood Ave., W. Shore Expwy., Veterans Rd. W.",http://www.nycgovparks.org/parks/R153/,park,10309 -2247,North Brother Island,40.80005672074,-73.8965240595704,East River,http://www.nycgovparks.org/parks/X308/,park,10474 -2248,Overlook Park,40.77058103057,-73.87146310607713,"Ditmars Blvd., 22 Dr. bet. 97 St. and 100 St.",http://www.nycgovparks.org/parks/Q299/,park,11369 -2249,Tribeca Park,40.72034735287,-74.00529330188084,"Walker St., Beach St. bet. St. John's La. and Ave. of the Americas",http://www.nycgovparks.org/parks/M006/,park,10013 -2250,Pomonok Playground,40.73543360911,-73.81383004192628,"Kissena Blvd., 155 St. bet. 65 Ave. and Melbourne Ave.",http://www.nycgovparks.org/parks/Q329/,park,11367 -2251,Hammel Playground,40.58800862348,-73.80884104438482,Rockaway Beach Blvd. bet. Beach 84 St. and Beach 81 St.,http://www.nycgovparks.org/parks/Q367/,park,11693 -2252,Audubon Playground,40.84163583646,-73.93767304280274,"Audubon Ave., W. 169 St. and W. 170 St.",http://www.nycgovparks.org/parks/M240/,park,10032 -2253,Neptune Playground,40.57776125506,-73.98046369186403,W. 12 St. between Neptune Ave. and Surf Ave.,http://www.nycgovparks.org/parks/B331/,park,11224 -2254,Cardozo Playground,40.59382346359,-73.78699442781044,Arverne Blvd. bet. Beach 57 St. and Beach 56 St.,http://www.nycgovparks.org/parks/Q382/,park,11692 -2255,Stebbins Playground,40.8224933784,-73.89822232336533,Rev James Polite Av bet. E 163 St and E 164 St,http://www.nycgovparks.org/parks/X211/,park,10459 -2256,FDNY-EMT Yadira Arroyo Playground,40.82869656123,-73.85790357598778,"Watson Ave., Blackrock Ave. bet. Virginia Ave., Pugsley Ave.",http://www.nycgovparks.org/parks/X205/,park,10472 -2257,Taylor Playground,40.83937989252,-73.86586558950711,Guerlain St. bet. Taylor Ave. and Thieriot Ave.,http://www.nycgovparks.org/parks/X176/,park,10460 -2258,Patterson Playground,40.81618195104,-73.92136690726105,E. 148 St. bet. Morris Ave. and College Ave.,http://www.nycgovparks.org/parks/X155/,park,10451 -2259,Hilton White Playground,40.82307904034,-73.90706058519979,Cauldwell Ave bet. E. 161 St and E. 163 St.,http://www.nycgovparks.org/parks/X112/,park,10456 -2260,Naples Playground,40.6023287488,-74.08928925467146,"Targee St, Stanwich St. Rome Ave.",http://www.nycgovparks.org/parks/R073/,park,10304 -2261,Briarwood Playground,40.70995732656,-73.81068254111658,148 St. bet. 85 Ave. and 85 Rd.,http://www.nycgovparks.org/parks/Q379/,park,11435 -2262,Delphin H. Greene Playground,40.68570029052,-73.72948435623373,121 Ave. bet. 235 St. and 237 St.,http://www.nycgovparks.org/parks/Q307/,park,11411 -2263,The Painter's Playground,40.720446511,-73.86082992103245,Alderton St. bet. Dieterle Cr. and Ellwell Cr.,http://www.nycgovparks.org/parks/Q306/,park,11374 -2264,Wayanda Park,40.71098620615,-73.73844359511142,Robard La. bet. Hollis Ave. and Montery St.,http://www.nycgovparks.org/parks/Q082/,park,11429 -2265,Equity Playground,40.69076884676,-73.85309614373467,88 Ave. to 89 Ave. at 90 St.,http://www.nycgovparks.org/parks/Q053/,park,11421 -2266,Happy Warrior Playground,40.7958824263,-73.9684607135703,W. 97 St. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M229/,park,10025 -2267,Ten Eyck Playground,40.70917933603,-73.93845318769564,Scholes St bet. Bushwick Av and Waterbury St,http://www.nycgovparks.org/parks/B311/,park,11206 -2268,Osborn Playground,40.65556536068,-73.9056212034488,"Linden Blvd., Osborn St., Rockaway Ave., Hegeman Ave.",http://www.nycgovparks.org/parks/B343/,park,11212 -2269,Belmont Playground,40.67534257507,-73.86263713398635,Belmont Ave. between Forbell St. and Drew St.,http://www.nycgovparks.org/parks/B283/,park,11208 -2270,Jerome Playground,40.65887880678,-73.87914351679838,Wortman Ave. between Jerome St. and Warwick St.,http://www.nycgovparks.org/parks/B246/,park,11207 -2271,Pena Herrera Playground,40.64910554894,-74.01202524585769,3 Ave. bet. 47 St. and 46 St.,http://www.nycgovparks.org/parks/B210J/,park,11220 -2272,Arbutus Woods Park,40.52812626796,-74.18516662343932,"Eylandt St., Stecher St. and Colon St.",http://www.nycgovparks.org/parks/R133/,park,10312 -2273,P.S. 279 Playground,40.64473418995,-73.89298461617551,E. 103 St. to E. 104 St. between Ave. J and Ave. K,http://www.nycgovparks.org/parks/B305/,park,11236 -2274,"""Uncle"" Vito F. Maranzano Glendale Playground",40.70468616799,-73.88127775205633,Central Ave. bet. 70 St. and 71 St.,http://www.nycgovparks.org/parks/Q290/,park,11385 -2275,Jamaica Playground,40.69359865212,-73.79100019817751,"Union Hall St., 160 St. bet. 110 Ave. and 109 Ave.",http://www.nycgovparks.org/parks/Q301/,park,11433 -2276,Pier 42,40.7105735686,-73.98042162941599,South Side of FDR Dr. at Gouverneur St.,http://www.nycgovparks.org/parks/M369/,park,10002 -2277,Al Stabile Playground,40.67708556692,-73.83555242063038,Centreville St. bet. 133 Ave. and 103 St.,http://www.nycgovparks.org/parks/Q285/,park,11417 -2278,Bartlett Playground,40.70087509654,-73.94552970219333,"Whipple St., Bartlett St., between Throop Ave. and Flushing Ave.",http://www.nycgovparks.org/parks/B286/,park,11206 -2279,Rocket Playground,40.67098522078,-73.84626606026997,N Conduit Ave. and 149 Ave.bet. Whitelaw St. and Lafayette St.,http://www.nycgovparks.org/parks/Q414/,park,11417 -2280,Wakefield Playground,40.90187445885,-73.85415528855233,Matilda Ave. to Carpenter Ave. bet. E. 239 St. and E. 240 St.,http://www.nycgovparks.org/parks/X188/,park,10470 -2281,Rockaway Beach,40.56993164931,-73.84557241051095,Atlantic Ocean bet. B. 149 St. and B. 126 St.,http://www.nycgovparks.org/parks/Q164/,park,11694 -2282,Grand Ferry Park,40.71659130036,-73.96651183948478,Grand St. at River St.,http://www.nycgovparks.org/parks/B401/,park,11211 -2283,Spargo Park,40.74113481189,-73.89721950602699,BQE bet. 43 Ave. and Queens Blvd.,http://www.nycgovparks.org/parks/Q341D/,park,11377 -2284,WNYC Transmitter Park,40.73032004562,-73.96140516032709,West St. bet. Kent St. and Greenpoint Ave.,http://www.nycgovparks.org/parks/B385/,park,11222 -2285,Socrates Sculpture Park,40.76881206596,-73.93799866513538,Vernon Blvd. bet. Broadway and 30 Dr.,http://www.nycgovparks.org/parks/Q465/,park,11106 -2286,Maria Hernandez Park,40.70351339622,-73.92251220650344,"Irving Ave., Knickerbocker Ave. bet. Starr St. and Suydam St.",http://www.nycgovparks.org/parks/B016/,park,11237 -2287,Crotona Parkway Malls,40.84470309713,-73.88496438272014,Crotona Pkwy bet. Bronx Park South and E 175 St,http://www.nycgovparks.org/parks/X011/,park,10460 -2288,Roberto Clemente Ballfield,40.70580895476,-73.96761394640824,Division Ave. between Wythe Ave. and Kent Ave.,http://www.nycgovparks.org/parks/B382A/,park,11211 +2029,Alexander Hamilton U.S. Custom House,40.70381622,-74.0137558,10004,1 Bowling Grn,http://www.oldnycustomhouse.gov/,museum +2030,Alice Austen House Museum,40.61512084,-74.06303179,10305,2 Hylan Blvd,http://www.aliceausten.org/,museum +2031,American Academy of Arts and Letters,40.8338535,-73.94729769,10032,633 W. 155th St.,http://www.artsandletters.org/,museum +2032,American Folk Art Museum,40.76162497,-73.97810302,10019,45 West 53rd Street,http://www.folkartmuseum.org/,museum +2033,American Immigration History Center,40.69905626,-74.03968484,0,Ellis Island,http://www.ellisisland.org/,museum +2034,American Museum of Natural History,40.78082623,-73.97364816,10024,Central Park West at 79th Street,http://www.amnh.org/,museum +2035,American Numismatic Society,40.72352659,-74.00701188,10013,75 Varick St,http://www.numismatics.org/,museum +2036,Americas Society,40.76882423,-73.96597045,10021,680 Park Ave.,http://as.americas-society.org/,museum +2037,Anne Frank Center USA,40.72112745,-73.99963037,10012,38 Crosby Street,http://www.annefrank.com/,museum +2038,Asia Society,40.76983378,-73.96428396,10021,725 Park Avenue,http://www.asiasociety.org/,museum +2039,Audubon Terrace,40.83358228,-73.9465459,10032,Broadway at 155 Street,http://www.washington-heights.us/history/archives/audubon_terrace_museum_group_102.html,museum +2040,Bartow-Pell Mansion,40.87177832,-73.8055795,10464,895 Shore Road,http://bartowpellmansionmuseum.org/index.php,museum +2041,Bowne House,40.76288633,-73.82489046,11354,37-01 Bowne Street,http://www.bownehouse.org/,museum +2042,Bronx Historical Society & Musem,40.87823644,-73.87974874,10467,3309 Bainbridge Ave,http://www.bronxhistoricalsociety.org/,museum +2043,Bronx Museum of the Arts (BXMA),40.83102978,-73.91975018,10456,1040 Grand Concourse,http://www.bronxmuseum.org/,museum +2044,Brooklyn Children's Museum,40.674507,-73.94401601,11213,145 Brooklyn Avenue,http://www.brooklynkids.org/,museum +2045,Brooklyn Historical Society,40.69480297,-73.9924054,11201,128 Pierrepont Street,http://www.brooklynhistory.org/default/index.html,museum +2046,Brooklyn Museum,40.67108321,-73.96358507,11238,200 Eastern Parkway,http://www.brooklynmuseum.org/,museum +2047,Chelsea Art Museum,40.7478976,-74.00731553,10011,556 West 22nd Street,http://www.chelseaartmuseum.org/,museum +2048,Children's Museum of Manhattan,40.78587092,-73.97727392,10024,212 West 83rd Street,http://www.cmom.org/,museum +2049,Children's Museum of the Arts,40.72074947,-73.99883836,10012,182 Lafayette Street,http://cmany.org/intro.php?pn=home,museum +2050,Cloisters,40.86492364,-73.93173409,10040,99 Margaret Corbin Drive,http://www.metmuseum.org/cloisters/,museum +2051,Coney Island Museum,40.57526324,-73.97985598,11224,1208 Surf Ave,http://www.coneyisland.com/,museum +2052,"Cooper-Hewitt, National Design Museum",40.78432574,-73.95778162,10128,2 East 91st Street,http://www.cooperhewitt.org/,museum +2053,Dahesh Museum,40.76210697,-73.9730419,10022,580 Madison Avenue,http://www.daheshmuseum.org,museum +2054,Dia at the Hispanic Society,40.83330211,-73.94649318,10032,613 West 155th Street,http://www.diabeacon.org/,museum +2055,Dia Art Foundation,40.74789493,-74.00613538,10011,535 W 22nd Street,http://www.diacenter.org/,museum +2056,Discovery Times Square Exposition,40.75750109,-73.98731864,1036,226 W 44th St,http://www.discoverytsx.com/nyc/,museum +2057,Drawing Center,40.72245119,-74.00290417,10013,35 Wooster St.,http://www.drawingcenter.org/about_visit.cfm,museum +2058,Dyckman Farmhouse,40.86713092,-73.92383915,10034,4881 Broadway,http://www.dyckmanfarmhouse.org/,museum +2059,East Village History Project,40.7249597,-73.99272306,10012,308 Bowery,http://leshp.org/,museum +2060,El Museo del Barrio,40.79309892,-73.9513676,10029,1230 Fifth Ave,http://www.elmuseo.org/,museum +2061,Ellis Island Museum,40.69820755,-74.04132162,0,Ellis Island,http://www.ellisisland.org/,museum +2062,Fraunces Tavern Museum,40.70339928,-74.01133926,10004,54 Pearl Street,http://www.frauncestavernmuseum.org/,museum +2063,Frick Collection,40.77105465,-73.96708041,10021,1 E. 70th Street,http://www.frick.org/,museum +2064,Garibaldi-Meucci Museum,40.61516522,-74.07387774,10305,420 Tompkins Avenue,http://statenislandusa.com/pages/garibaldi.html,museum +2065,Goethe-Institut New York,40.77916564,-73.96174204,10028,1014 Fifth Avenue,http://www.goethe.de/ins/us/ney/deindex.htm,museum +2066,Gracie Mansion,40.77611345,-73.94306846,10128,89th Street at East End Avenue,http://www.nyc.gov/html/om/html/gracie.html,museum +2067,Hall Of Fame For Great Americans,40.85874717,-73.91397963,10453,Hall of Fame Terrace & Sedgwick Avenue,http://www.bcc.cuny.edu/hallofFame/,museum +2068,Harbor Defense Museum of Fort Hamilton,40.60900867,-74.03231078,11252,230 Sheridan Loop,http://www.harbordefensemuseum.com/,museum +2069,Hispanic Society of America Museum,40.83345215,-73.94682282,10032,613 West 155th Street,http://www.hispanicsociety.org/,museum +2070,Holocaust Museum & Studies Center,40.87835786,-73.89098784,10468,75 W 205th St,http://www.holocauststudies.org/,museum +2071,Hudson Waterfront Museum and Showboat Barge,40.67557193,-74.01808694,11231,290 Conover St.,http://www.waterfrontmuseum.org/,museum +2072,International Center of Photography,40.75602115,-73.98383673,10036,1133 Avenue Of The Americas,http://www.icp.org/,museum +2073,Intrepid Sea-Air-Space Museum,40.76478327,-74.00089181,10036,Pier 86 12th Ave. & 46th Street,http://www.intrepidmuseum.org/,museum +2074,Isamu Noguchi Garden Museum,40.76695661,-73.93765515,11106,32-37 Vernon Boulevard,http://www.noguchi.org/,museum +2075,Italian American Museum,40.71919463,-73.99749411,10013,155 Mulberry St.,http://www.italianamericanmuseum.org/,museum +2076,Jackie Robinson Museum,40.72335066,-74.00664186,10013,1 Hudson Square,http://www.jackierobinson.org/,museum +2077,Jacques Marchais Center Museum of Tibetan Art,40.57631284,-74.13812337,10306,338 Lighthouse Avenue,http://www.tibetanmuseum.org/,museum +2078,Jeffrey's Hook lighthouse (Little Red Lighthouse),40.85022003,-73.94694495,10033,178th Street at the Hudson River,http://www.nycgovparks.org/sub_about/parks_divisions/historic_houses/hh_little_red_light.html,museum +2079,Jewish Museum,40.78540226,-73.95718706,10128,1109 Fifth Ave,http://www.thejewishmuseum.org/index.php,museum +2080,John J. Harvey Fireboat,40.7523302,-74.00965484,10001,Pier 66 at West 26th Street,http://www.fireboat.org/,museum +2081,King Manor Museum,40.70304202,-73.80376062,11432,152-01 Jamaica Avenue,http://www.kingmanor.org/,museum +2082,Kingsland Homestead,40.76359571,-73.82415642,11354,143-35 37th Avenue,http://www.queenshistoricalsociety.org/kingsland.html,museum +2083,LaGuardia and Wagner Archives,40.74396007,-73.93514568,11101,31-10 Thomson Ave.,http://www.laguardiawagnerarchive.lagcc.cuny.edu/defaultc.htm,museum +2084,Lee Young Hee Museum of Korean Culture,40.74719709,-73.98618833,10001,2 West 32nd Street,http://www.lyhkm.org/,museum +2085,Lefferts Historic House,40.66437996,-73.96381416,11215,Prospect Park Willink Entrance,http://www.prospectpark.org/visit/places/lefferts,museum +2086,Madame Tussauds Wax Museum,40.75631816,-73.98870226,10036,234 W. 42nd Street,http://www.madametussauds.com/NewYork/,museum +2087,Merchant's House Museum,40.72765742,-73.99234605,10003,29 East Fourth Street,http://www.merchantshouse.com/,museum +2088,Metropolitan Museum of Art (MET),40.77942354,-73.96345111,10028,1000 Fifth Avenue,http://www.metmuseum.org/,museum +2089,Mexican Cultural Institute of New York,40.75078437,-73.97988118,10016,27 E. 39th St.,http://www.lavitrina.com/,museum +2090,Morgan Library and Museum,40.74929507,-73.98132149,10016,225 Madison Avenue,http://www.themorgan.org/home.asp,museum +2091,Morris-Jumel Mansion,40.83444768,-73.93857439,10032,65 Jumel Terrace,http://www.morrisjumel.org/,museum +2092,Mount Vernon Hotel Museum & Garden,40.76052578,-73.95971083,10021,421 East 61 Street,http://www.mvhm.org/,museum +2093,Municipal Art Society,40.75824831,-73.97499987,10022,457 Madison Avenue,http://mas.org/,museum +2094,Museum for African Art,40.74634174,-73.92822391,11101,36-01 43rd Avenue,http://www.africanart.org/,museum +2095,Museum of American Finance,40.70648459,-74.0091216,10005,48 Wall Street,http://www.moaf.org/index,museum +2096,Museum of American Illustration,40.76471562,-73.96690031,10021,128 E. 63d St.,http://societyillustrators.org/museum/index.cms,museum +2097,Museum of Arts & Design (MAD),40.76740607,-73.98200725,10019,2 Columbus Circle,http://www.madmuseum.org/,museum +2098,Museum of Biblical Art,40.77025241,-73.98272584,10023,1865 Broadway,http://www.mobia.org/,museum +2099,Museum Of Chinese In America,40.71945395,-73.99919192,10013,215 Centre Street,http://www.mocanyc.org/,museum +2100,Museum of Comic and Cartoon Art (MoCCA),40.72479795,-73.99670248,10012,594 Broadway,http://www.moccany.org/,museum +2101,Museum of Contemporary African Diasporan Arts (MoCADA),40.68524514,-73.97442478,11217,80 Hanson Place,http://www.mocada.org/,museum +2102,Museum of Jewish Heritage,40.70598665,-74.01858572,10280,36 Battery Place,http://www.mjhnyc.org/index.htm,museum +2103,Museum of Modern Art (MoMA),40.76118664,-73.97700363,10019,11 West 53rd Street,http://www.moma.org/,museum +2104,Museum of the City of New York,40.79250903,-73.95191697,10029,1220 Fifth Avenue,http://www.mcny.org,museum +2105,Museum of the Moving Image,40.75694449,-73.92451017,11106,35 Avenue at 36 Street,http://www.movingimage.us/site/site.php,museum +2106,National Academy Museum,40.78361317,-73.95849177,10128,1083 5th Avenue,https://nationalacademy.org/index.asp,museum +2107,National Lighthouse Museum,40.64094902,-74.07373713,10301,1 Lighthouse Plaza,http://statenislandusa.com/pages/lighthouse.html,museum +2108,National Museum of the American Indian,40.70432126,-74.01372705,10004,1 Bowling Green,http://www.nmai.si.edu/,museum +2109,National September 11 Memorial & Museum at the World Trade Center,40.70965449,-74.01091566,10006,1 Liberty Plaza,http://www.911memorial.org/,museum +2110,Neue Galerie New York,40.78124234,-73.96024813,10028,1048 Fifth Avenue,http://www.neuegalerie.org/,museum +2111,New Museum of Contemporary Art,40.7223467,-73.99283879,10002,235 Bowery,http://www.newmuseum.org/,museum +2112,New York City Fire Museum,40.72557181,-74.00693426,10012,278 Spring Street,http://www.nycfiremuseum.org/,museum +2113,New York City Police Museum,40.70347829,-74.00811754,10038,100 Old Slip,http://www.nycpolicemuseum.org/,museum +2114,New York Hall of Science,40.74714779,-73.8516868,11368,47-01 111th Street,http://www.nysci.org/,museum +2115,New York Historical Society,40.77927324,-73.97425754,10024,2 West 77th Street,https://www.nyhistory.org/web/,museum +2116,New York Tolerance Center,40.75242292,-73.97912411,10017,50 E 42nd St,http://www.kintera.org/site/pp.asp?c=fwLYKnN8LzH&b=242506,museum +2117,New York Transit Museum,40.6905237,-73.99002597,0,Boerum Pl. & Schermenhorn Street,http://www.mta.info/mta/museum/,museum +2118,Nicholas Roerich Museum,40.802914,-73.9690225,10025,319 West 107 Street,http://www.roerich.org/,museum +2119,Noble Maritime Collection,40.64431194,-74.10177204,10301,1000 Richmond Terrace,http://www.noblemaritime.org/,museum +2120,Old Stone House,40.67299347,-73.98461861,11215,326 5th Avenue,http://www.theoldstonehouse.org/,museum +2121,P.S. 1 Contemporary Art Center,40.74583947,-73.94621242,11101,22-25 Jackson Ave.,http://www.ps1.org/,museum +2122,Paley Center For Media (formerly Museum Of Television & Radio),40.76057364,-73.97760161,10019,25 West 52 Street,http://www.paleycenter.org/,museum +2123,Queens Art Museum - Bulova Corporate Center,40.76460726,-73.89314846,11386,75-20 Astoria Blvd.,http://www.bdg.net/properties/1/,museum +2124,Queens County Farm Museum,40.7455696,-73.72573661,11004,73-50 Little Neck Parkway,http://www.queensfarm.org/,museum +2125,Queens Museum of Art,40.74584286,-73.84676276,11368,Queens Museum of Art,http://www.queensmuseum.org/,museum +2126,Rose Center for Earth and Space (Hayden Planetarium),40.78285983,-73.97257491,10024,15 West 81st Street,http://www.haydenplanetarium.org/index.php,museum +2127,Rose Museum at Carnegie Hall,40.76501231,-73.9799105,0,154 West 57th Street,http://www.carnegiehall.org/textSite/the_basics/art_museum_archives.html,museum +2128,Rubin Museum of Art,40.74002038,-73.99779153,10011,150 West 17th Street,http://www.rmanyc.org/,museum +2129,Sandy Ground Historical Society,40.54097835,-74.21650282,0,1538 Woodrow Road,http://statenislandusa.com/pages/sandy_ground.html,museum +2130,Scandinavia House: The Nordic Center in America,40.7494469,-73.98008844,10016,58 Park Ave.,http://www.scandinaviahouse.org/,museum +2131,Schomburg Center for Research in Black Culture,40.81461273,-73.94099076,10037,515 Malcolm X Boulevard,http://www.nypl.org/research/sc/sc.html,museum +2132,School of Visual Arts Museum,40.73875919,-73.98224233,10010,209 E. 23rd St.,http://www.schoolofvisualarts.edu/sa/index.jsp?sid0=201&page_id=482&event_id=865,museum +2133,Seguine Mansion,40.51521434,-74.1975893,10307,440 Seguine Avenue,http://www.historichousetrust.org/item.php?i_id=38,museum +2134,Skyscraper Museum,40.70565753,-74.01756807,10280,39 Battery Place,http://www.skyscraper.org/home.htm,museum +2135,Solomon R. Guggenheim Museum,40.78300948,-73.95891102,10128,1071 Fifth Avenue,http://www.guggenheim.org/,museum +2136,Sony Wonder Technology Lab,40.7614703,-73.97350782,10022,550 Madison Ave,http://wondertechlab.sony.com/,museum +2137,South Street Seaport Museum,40.70660336,-74.00372094,10038,12 Fulton Street,http://www.southstreetseaportmuseum.org/,museum +2138,Staten Island Children's Museum,40.64270888,-74.10189211,10301,1000 Richmond Terr.,http://www.statenislandkids.org/,museum +2139,Staten Island Museum / Staten Island Institute of Arts & Sciences,40.64436918,-74.07766506,10301,75 Stuyvesant Pl.,http://www.statenislandmuseum.org/,museum +2140,Studio Museum in Harlem,40.80824548,-73.94772615,10027,144 West 125th Street,http://www.studiomuseum.org,museum +2141,Tenement Museum,40.7186877,-73.98967905,10002,108 Orchard Street,http://www.tenement.org/,museum +2142,"The Freakatorium, El Museo Loco",40.71961673,-73.98501449,10002,57 Clinton St.,http://www.freakatorium.com/,museum +2143,The Jazz Museum in Harlem,40.80527638,-73.93805874,10035,104 E. 126th Street,http://www.jazzmuseuminharlem.org/,museum +2144,The Jewish Children's Museum,40.66891158,-73.94196177,11213,792 Eastern Pkwy,http://www.jcmonline.org/,museum +2145,The Museum at FIT,40.74700838,-73.99392967,10001,7th Avenue at West 27th Street,http://www.fitnyc.edu/306.asp,museum +2146,Theodore Roosevelt Birthplace,40.73864201,-73.98904085,10003,28 East 20th Street,http://www.nps.gov/thrb/index.htm,museum +2147,Ukrainian Museum,40.72767679,-73.98975703,10003,222 East 6th Street,http://www.ukrainianmuseum.org/,museum +2148,Valentine-Varian House,40.87737982,-73.87942472,10467,3266 Bainbridge Ave.,http://www.museumregister.com/US/NewYork/Bronx/ValentineVarianHouse/Info.html,museum +2149,Van Cortlandt House Museum,40.89111117,-73.89482257,10471,VAN CRTLANDT MANSION,http://www.vancortlandthouse.org/,museum +2150,Wave Hill,40.89788471,-73.91165377,10471,West 249th Street & Independence Avenue,http://wavehill.org/visit/,museum +2151,Whitney Museum of American Art,40.77340729,-73.96383435,10021,945 Madison Ave.,http://www.whitney.org/,museum +2152,Wyckoff Farmhouse Museum,40.64434068,-73.9207963,11203,5816 Clarendon Ave,http://www.wyckoffassociation.org/,museum +2153,Leo Baeck Institute,40.73802754,-73.99376449,10011,15 W. 16th St.,http://www.lbi.org/,museum +2154,American Sephardi Federation / Sephardic House,40.73807723,-73.9938858,10011,15 W. 16th St.,http://www.americansephardifederation.org/,museum +2155,YIVO Institute for Jewish Research,40.73795995,-73.99379427,10011,15 W. 16th St.,http://www.yivoinstitute.org/,museum +2156,American Jewish Historical Society,40.73801538,-73.9939289,10011,15 W. 16th St.,http://www.ajhs.org/,museum +2157,Yeshiva University Museum,40.73804568,-73.99381737,10011,15 W. 16th St.,http://www.yumuseum.org/,museum +2158,Center For Jewish History,40.73798676,-73.99386877,10011,15 W. 16th St.,http://www.cjh.org,museum +2159,115th Street,40.80297988,-73.95353074,10026,West 115th Street,http://www.nypl.org/locations/115th-street,library +2160,125th Street,40.80301816,-73.93484756,10035,East 125th Street,http://www.nypl.org/locations/125th-street,library +2161,53rd Street,40.76080689,-73.97736329,10019,West 53rd Street,http://www.nypl.org/locations/53rd-street,library +2162,58th Street,40.76218602,-73.9693817,10022,East 58th Street,http://www.nypl.org/locations/58th-street,library +2163,67th Street,40.76491501,-73.95954995,10065,East 67th Street,http://www.nypl.org/locations/67th-street,library +2164,96th Street,40.7859598,-73.95180567,10128,East 96th Street,http://www.nypl.org/locations/96th-street,library +2165,Aguilar,40.79421477,-73.94345828,10029,East 110th Street,http://www.nypl.org/locations/aguilar,library +2166,Allerton,40.86680443,-73.86322248,10467,Barnes Avenue,http://www.nypl.org/locations/allerton,library +2167,Andrew Heiskell Braille and Talking Book,40.74046546,-73.99335691,10011,West 20th Street,http://www.nypl.org/locations/heiskell,library +2168,Battery Park City Library,40.71569087,-74.01574871,10282,North End Avenue,http://www.nypl.org/locations/battery-park-city,library +2169,Baychester,40.87075331,-73.82931595,10475,Asch Loop North,http://www.nypl.org/locations/baychester,library +2170,Belmont Library and Enrico Fermi Cultural Center,40.85434421,-73.88788269,10458,East 186th Street,http://www.nypl.org/locations/belmont,library +2171,Bloomingdale,40.79587355,-73.96760677,10025,West 100th Street,http://www.nypl.org/locations/bloomingdale,library +2172,Bronx Library Center,40.86298061,-73.89450289,10458,East Kingsbridge Road,http://www.nypl.org/locations/bronx-library-center,library +2173,Castle Hill,40.82662921,-73.8501702,10473,Castle Hill Avenue,http://www.nypl.org/locations/castle-hill,library +2174,Chatham Square,40.71333307,-73.99648987,10002,East Broadway,http://www.nypl.org/locations/chatham-square,library +2175,City Island,40.8476919,-73.78636659,10464,City Island Avenue,http://www.nypl.org/locations/city-island,library +2176,Clason's Point,40.82999288,-73.8750206,10472,Morrison Avenue,http://www.nypl.org/locations/clasons-point,library +2177,Columbus,40.76493462,-73.99122082,10019,10th Avenue,http://www.nypl.org/locations/columbus,library +2178,Countee Cullen,40.81483582,-73.94116092,10030,West 136th Street,http://www.nypl.org/locations/countee-cullen,library +2179,Dongan Hills,40.59039134,-74.10113729,10304,Richmond Road,http://www.nypl.org/locations/dongan-hills,library +2180,Eastchester,40.8701397,-73.84506428,10469,East Gun Hill Road,http://www.nypl.org/locations/eastchester,library +2181,Edenwald,40.8888949,-73.84083713,10466,East 233rd Street,http://www.nypl.org/locations/edenwald,library +2182,Epiphany,40.73808712,-73.98204889,10010,East 23rd Street,http://www.nypl.org/locations/epiphany,library +2183,Fort Washington,40.84787004,-73.93386591,10033,West 179th Street,http://www.nypl.org/locations/fort-washington,library +2184,Francis Martin,40.85742189,-73.90931635,10453,University Avenue,http://www.nypl.org/locations/francis-martin,library +2185,George Bruce,40.81376896,-73.95705321,10027,West 125th Street,http://www.nypl.org/locations/george-bruce,library +2186,Grand Central,40.75406788,-73.97356772,10017,East 46th Street,http://www.nypl.org/locations/grand-central,library +2187,Grand Concourse,40.84400191,-73.91008714,10457,East 173rd Street,http://www.nypl.org/locations/grand-concourse,library +2188,Great Kills,40.55242326,-74.15111164,10308,Giffords Lane,http://www.nypl.org/locations/great-kills,library +2189,Hamilton Fish Park,40.71978015,-73.97942314,10002,East Houston Street,http://www.nypl.org/locations/hamilton-fish-park,library +2190,Hamilton Grange,40.82567237,-73.94803242,10031,West 145th Street,http://www.nypl.org/locations/hamilton-grange,library +2191,Harlem,40.80616044,-73.9433156,10027,West 124th Street,http://www.nypl.org/locations/harlem,library +2192,High Bridge,40.83796002,-73.9235509,10452,West 168th Street,http://www.nypl.org/locations/high-bridge,library +2193,Hudson Park,40.72998291,-74.00533101,10014,Leroy Street,http://www.nypl.org/locations/hudson-park,library +2194,Huguenot Park,40.53407849,-74.19322901,10312,Huguenot Avenue,http://www.nypl.org/locations/huguenot-park,library +2195,Hunts Point,40.81867009,-73.89413217,10459,Southern Boulevard,http://www.nypl.org/locations/hunts-point,library +2196,Inwood,40.86574872,-73.92586291,10034,Broadway,http://www.nypl.org/locations/inwood,library +2197,Jefferson Market,40.73463471,-73.99916929,10011,Avenue of the Americas,http://www.nypl.org/locations/jefferson-market,library +2198,Jerome Park,40.86906987,-73.90119236,10468,Eames Place,http://www.nypl.org/locations/jerome-park,library +2199,Kingsbridge,40.88069989,-73.90770595,10463,West 231st Street,http://www.nypl.org/locations/kingsbridge,library +2200,Kips Bay,40.74380962,-73.97990196,10016,Third Avenue,http://www.nypl.org/locations/kips-bay,library +2201,Macomb's Bridge,40.82653201,-73.93586246,10039,Adam Clayton Powell Jr. Boulevard,http://www.nypl.org/locations/macombs-bridge,library +2202,Mariners Harbor,40.63469343,-74.16658191,10303,South Ave,http://www.nypl.org/locations/mariners-harbor,library +2203,Melrose,40.82658456,-73.91758394,10451,Morris Avenue,http://www.nypl.org/locations/melrose,library +2204,Mid-Manhattan,40.75189156,-73.98169851,10016,Fifth Avenue,http://www.nypl.org/locations/mid-manhattan-library,library +2205,Morningside Heights,40.80613026,-73.96477562,10025,Broadway,http://www.nypl.org/locations/morningside-heights,library +2206,Morris Park,40.84802911,-73.85695785,10462,Morris Park Avenue,http://www.nypl.org/locations/morris-park,library +2207,Morrisania,40.83126291,-73.90179407,10456,East 169th Street,http://www.nypl.org/locations/morrisania,library +2208,Mosholu,40.87437981,-73.87838435,10467,East 205th Street,http://www.nypl.org/locations/mosholu,library +2209,Mott Haven,40.81158964,-73.92438195,10454,East 140th Street,http://www.nypl.org/locations/mott-haven,library +2210,Muhlenberg,40.74448733,-73.99596857,10011,West 23rd Street,http://www.nypl.org/locations/muhlenberg,library +2211,Mulberry Street,40.72413927,-73.99568417,10012,Jersey Street,http://www.nypl.org/locations/mulberry-street,library +2212,New Amsterdam,40.71357685,-74.00786921,10007,Murray Street,http://www.nypl.org/locations/new-amsterdam,library +2213,New Dorp,40.57193185,-74.11195815,10306,New Dorp Lane,http://www.nypl.org/locations/new-dorp,library +2214,"Library for the Performing Arts, Dorothy and Lewis B. Cullman Center",40.77350699,-73.98454685,10023,Lincoln Center Plaza,http://www.nypl.org/locations/lpa,library +2215,Ottendorfer,40.72890664,-73.98774284,10003,Second Avenue,http://www.nypl.org/locations/ottendorfer,library +2216,Parkchester,40.83378099,-73.85835005,10462,Westchester Avenue,http://www.nypl.org/locations/parkchester,library +2217,Pelham Bay,40.84431753,-73.82790017,10461,Middletown Road,http://www.nypl.org/locations/pelham-bay,library +2218,Pelham Parkway-Van Nest,40.85487588,-73.86414666,10462,Barnes Avenue,http://www.nypl.org/locations/pelham-parkway-van-nest,library +2219,Port Richmond,40.63758562,-74.13110462,10302,Bennett Street,http://www.nypl.org/locations/port-richmond,library +2220,Richmondtown,40.56653015,-74.13853388,10306,Clarke Avenue,http://www.nypl.org/locations/richmondtown,library +2221,Riverdale,40.90372278,-73.90277254,10471,Mosholu Avenue,http://www.nypl.org/locations/riverdale,library +2222,Riverside,40.77423208,-73.98451216,10023,Amsterdam Avenue,http://www.nypl.org/locations/riverside,library +2223,Roosevelt Island,40.76123276,-73.95020567,10044,Main Street,http://www.nypl.org/locations/roosevelt-island,library +2224,Schomburg Center for Research in Black Culture,40.81464862,-73.94094394,10037,Malcolm X Boulevard,http://www.nypl.org/locations/schomburg,library +2225,"Science, Industry and Business Library (SIBL)",40.74811516,-73.98300922,10016,Madison Avenue,http://www.nypl.org/locations/sibl,library +2226,Sedgwick,40.84944451,-73.91749502,10453,Martin Luther King Jr. Boulevard,http://www.nypl.org/locations/sedgwick,library +2227,Seward Park,40.71440955,-73.98850102,10002,East Broadway,http://www.nypl.org/locations/seward-park,library +2228,Soundview,40.81870935,-73.86288996,10473,Soundview Avenue,http://www.nypl.org/locations/soundview,library +2229,South Beach,40.59580257,-74.06298045,10305,Robin Road,http://www.nypl.org/locations/south-beach,library +2230,Spuyten Duyvil,40.88628524,-73.91465019,10463,West 235th Street,http://www.nypl.org/locations/spuyten-duyvil,library +2231,St. Agnes,40.78483464,-73.97745212,10024,Amsterdam Avenue,http://www.nypl.org/locations/st-agnes,library +2232,St. George Library Center,40.64179935,-74.07667836,10301,Central Avenue,http://www.nypl.org/locations/st-george-library-center,library +2233,Stapleton,40.62625652,-74.07786386,10304,Canal Street,http://www.nypl.org/locations/stapleton,library +2234,Stephen A. Schwarzman Building,40.75320442,-73.9822308,10018,Fifth Avenue at 42nd Street,http://www.nypl.org/locations/schwarzman,library +2235,Terence Cardinal Cooke-Cathedral,40.75680235,-73.97254083,10022,Lexington Avenue,http://www.nypl.org/locations/cathedral,library +2236,Throg's Neck,40.82287218,-73.81909494,10465,Cross Bronx Expressway Extension,http://www.nypl.org/locations/throgs-neck,library +2237,Todt Hill-Westerleigh,40.609602,-74.14852128,10314,Victory Boulevard,http://www.nypl.org/locations/todt-hill-westerleigh,library +2238,Tompkins Square,40.72728803,-73.98042071,10009,East 10th Street,http://www.nypl.org/locations/tompkins-square,library +2239,Tottenville,40.50953112,-74.24410671,10307,Amboy Road,http://www.nypl.org/locations/tottenville,library +2240,Tremont,40.84604569,-73.89834944,10457,Washington Avenue,http://www.nypl.org/locations/tremont,library +2241,Van Cortlandt,40.8827797,-73.89392119,10463,Sedgwick Avenue,http://www.nypl.org/locations/van-cortlandt,library +2242,Wakefield,40.89108507,-73.85958124,10466,Lowerre Place,http://www.nypl.org/locations/wakefield,library +2243,Washington Heights,40.83454889,-73.93971035,10032,St. Nicholas Avenue,http://www.nypl.org/locations/washington-heights,library +2244,Webster,40.77065254,-73.95134169,10021,York Avenue,http://www.nypl.org/locations/webster,library +2245,West Farms,40.84464445,-73.8830121,10460,Honeywell Avenue,http://www.nypl.org/locations/west-farms,library +2246,West New Brighton,40.63450894,-74.11482187,10310,Castleton Avenue,http://www.nypl.org/locations/west-new-brighton,library +2247,Westchester Square,40.84086754,-73.84673062,10461,Glebe Avenue,http://www.nypl.org/locations/westchester-square,library +2248,Woodlawn Heights,40.90043991,-73.867942,10470,Katonah Avenue,http://www.nypl.org/locations/woodlawn-heights,library +2249,Woodstock,40.82061891,-73.90464799,10456,East 160th Street,http://www.nypl.org/locations/woodstock,library +2250,Yorkville,40.77365564,-73.95637252,10021,East 79th Street,http://www.nypl.org/locations/yorkville,library +2251,Arlington,40.68068926,-73.88723724,11207,Arlington Avenue,http://www.bklynlibrary.org/locations/arlington,library +2252,Bay Ridge,40.63362571,-74.02953835,11209,Ridge Boulevard,http://www.bklynlibrary.org/locations/bay-ridge,library +2253,Bedford,40.68181211,-73.95616471,11238,Franklin Avenue,http://www.bklynlibrary.org/locations/bedford,library +2254,Borough Park,40.63888884,-73.98900319,11219,43rd Street,http://www.bklynlibrary.org/locations/borough-park,library +2255,Brighton Beach
(Closed for Renovation),40.57610775,-73.96677488,11235,Brighton First Road,http://www.bklynlibrary.org/locations/brighton-beach,library +2256,Brooklyn Heights,40.69568256,-73.99134799,11201,Cadman Plaza West,http://www.bklynlibrary.org/locations/brooklyn-heights,library +2257,Brower Park,40.67537085,-73.94856614,11216,St. Marks Avenue,http://www.bklynlibrary.org/locations/brower-park,library +2258,Brownsville,40.67152666,-73.90860343,11212,Glenmore Avenue,http://www.bklynlibrary.org/locations/brownsville,library +2259,Bushwick,40.70455906,-73.93961842,11206,Bushwick Avenue,http://www.bklynlibrary.org/locations/bushwick,library +2260,Canarsie,40.64220845,-73.89952442,11236,Rockaway Parkway,http://www.bklynlibrary.org/locations/canarsie,library +2261,Carroll Gardens,40.68321352,-73.99801906,11231,Clinton Street,http://www.bklynlibrary.org/locations/carroll-gardens,library +2262,Brooklyn Central Library,40.67234353,-73.96822438,11238,Grand Army Plaza,http://www.bklynlibrary.org/locations/central,library +2263,Clarendon,40.63574015,-73.9476343,11210,Nostrand Avenue,http://www.bklynlibrary.org/locations/clarendon,library +2264,Clinton Hill,40.68737909,-73.96603067,11238,Washington Avenue,http://www.bklynlibrary.org/locations/clinton-hill,library +2265,Coney Island,40.57663778,-73.98606199,11224,Mermaid Avenue,http://www.bklynlibrary.org/locations/coney-island,library +2266,Cortelyou,40.64080355,-73.96596508,11226,Cortelyou Road,http://www.bklynlibrary.org/locations/cortelyou,library +2267,Crown Heights,40.66118931,-73.9481023,11225,New York Avenue,http://www.bklynlibrary.org/locations/crown-heights,library +2268,Cypress Hills,40.67270747,-73.87403488,11208,Sutter Avenue,http://www.bklynlibrary.org/locations/cypress-hills,library +2269,DeKalb,40.6948167,-73.92839867,11221,Bushwick Avenue,http://www.bklynlibrary.org/locations/dekalb,library +2270,Dyker,40.61630814,-74.01198852,11228,13th Avenue,http://www.bklynlibrary.org/locations/dyker,library +2271,East Flatbush,40.65571088,-73.91494062,11212,Church Avenue,http://www.bklynlibrary.org/locations/east-flatbush,library +2272,Eastern Parkway,40.66848651,-73.93365085,11213,Eastern Parkway,http://www.bklynlibrary.org/locations/eastern-parkway,library +2273,Flatbush,40.65192508,-73.95824218,11226,Linden Boulevard,http://www.bklynlibrary.org/locations/flatbush,library +2274,Flatlands,40.6197682,-73.93321326,11234,Flatbush Avenue,http://www.bklynlibrary.org/locations/flatlands,library +2275,Fort Hamilton,40.61637311,-74.03136941,11209,Fourth Avenue,http://www.bklynlibrary.org/locations/fort-hamilton,library +2276,Gerritsen Beach,40.59137103,-73.92393763,11229,Gerritsen Avenue,http://www.bklynlibrary.org/locations/gerritsen-beach,library +2277,Gravesend,40.59054439,-73.97180845,11223,Avenue X,http://www.bklynlibrary.org/locations/gravesend,library +2278,Greenpoint,40.72602807,-73.95069498,11222,Norman Avenue,http://www.bklynlibrary.org/locations/greenpoint,library +2279,Highlawn,40.60569304,-73.98624642,11223,West 13th Street,http://www.bklynlibrary.org/locations/highlawn,library +2280,Homecrest,40.59523686,-73.96059937,11223,Coney Island Avenue,http://www.bklynlibrary.org/locations/homecrest,library +2281,Jamaica Bay,40.63446014,-73.88924363,11236,Seaview Avenue,http://www.bklynlibrary.org/locations/jamaica-bay,library +2282,Kensington,40.63129183,-73.97543591,11218,18th Avenue,http://www.bklynlibrary.org/locations/kensington,library +2283,Kings Bay,40.59486152,-73.94112492,11229,Nostrand Avenue,http://www.bklynlibrary.org/locations/kings-bay,library +2284,Kings Highway,40.61025667,-73.95310585,11229,Ocean Avenue,http://www.bklynlibrary.org/locations/kings-highway,library +2285,Leonard,40.71364489,-73.94793571,11211,Devoe Street,http://www.bklynlibrary.org/locations/leonard,library +2286,Macon,40.6830049,-73.93480547,11233,Lewis Avenue,http://www.bklynlibrary.org/locations/macon,library +2287,Mapleton,40.6230914,-73.98944015,11204,60th Street,http://www.bklynlibrary.org/locations/mapleton,library +2288,Marcy,40.69162309,-73.9512835,11216,DeKalb Avenue,http://www.bklynlibrary.org/locations/marcy,library +2289,McKinley Park,40.62918753,-74.01183731,11219,Fort Hamilton Parkway,http://www.bklynlibrary.org/locations/mckinley-park,library +2290,Midwood,40.62589331,-73.96031449,11230,East 16th Street,http://www.bklynlibrary.org/locations/midwood,library +2291,Mill Basin,40.61986842,-73.91702121,11234,Ralph Avenue,http://www.bklynlibrary.org/locations/mill-basin,library +2292,New Lots,40.66515937,-73.88607054,11207,New Lots Avenue,http://www.bklynlibrary.org/locations/new-lots,library +2293,"New Utrecht
(Temporary Closed, will reopen later this Summer (2016).",40.60800935,-74.00337655,11214,86th Street,http://www.bklynlibrary.org/locations/new-utrecht,library +2294,Pacific,40.68346663,-73.97858354,11217,Fourth Avenue,http://www.bklynlibrary.org/locations/pacific,library +2295,Paerdegat,40.63263699,-73.91998488,11234,East 59th Street,http://www.bklynlibrary.org/locations/paerdegat,library +2296,Park Slope,40.66823507,-73.98345537,11215,6th Avenue,http://www.bklynlibrary.org/locations/park-slope,library +2297,Red Hook,40.67524077,-74.01034307,11231,Wolcott Street,http://www.bklynlibrary.org/locations/red-hook,library +2298,Rugby,40.64861929,-73.93035653,11203,Utica Avenue,http://www.bklynlibrary.org/locations/rugby,library +2299,Ryder,40.61587983,-73.97596653,11204,23rd Avenue,http://www.bklynlibrary.org/locations/ryder,library +2300,Saratoga,40.68481005,-73.91513242,11233,Thomas S. Boyland Street,http://www.bklynlibrary.org/locations/saratoga,library +2301,Sheepshead Bay,40.58701343,-73.95537378,11235,East 14th Street,http://www.bklynlibrary.org/locations/sheepshead-bay,library +2302,Spring Creek,40.65320976,-73.88586614,11207,Flatlands Avenue,http://www.bklynlibrary.org/locations/spring-creek,library +2303,Stone Avenue,40.66449963,-73.90524945,11212,Mother Gaston Boulevard,http://www.bklynlibrary.org/locations/stone-avenue,library +2304,Sunset Park,40.64591212,-74.01363,11220,4th Avenue,http://www.bklynlibrary.org/locations/sunset-park,library +2305,Ulmer Park,40.59268512,-73.98862741,11214,Bath Avenue,http://www.bklynlibrary.org/locations/ulmer-park,library +2306,Walt Whitman,40.6944897,-73.97773263,11205,Saint Edwards Street,http://www.bklynlibrary.org/locations/walt-whitman,library +2307,Washington Irving,40.69749505,-73.91220085,11237,Irving Avenue,http://www.bklynlibrary.org/locations/washington-irving,library +2308,Williamsburgh,40.70693042,-73.95755461,11211,Division Avenue,http://www.bklynlibrary.org/locations/williamsburgh,library +2309,Windsor Terrace,40.64875019,-73.97675877,11218,East 5th Street,http://www.bklynlibrary.org/locations/windsor-terrace,library +2310,Arverne,40.59314678,-73.78404003,11692,Beach 54 Street,http://www.queenslibrary.org/branch/Arverne?filters=ev_loc:92300000,library +2311,Astoria,40.77237538,-73.92874209,11102,Astoria Boulevard,http://www.queenslibrary.org/branch/Astoria?filters=ev_loc:92400000,library +2312,Auburndale,40.77374626,-73.79634179,11358,Francis Lewis Boulevard,http://www.queenslibrary.org/branch/Auburndale?filters=ev_loc:92500000,library +2313,Baisley Park,40.68031131,-73.79167861,11436,Sutphin Boulevard,http://www.queenslibrary.org/branch/Baisley-Park?filters=ev_loc:92600000,library +2314,Bay Terrace,40.78252384,-73.7770109,11360,Bell Boulevard,http://www.queenslibrary.org/branch/Bay-Terrace?filters=ev_loc:96600000,library +2315,Bayside,40.76012558,-73.76836198,11361,Northern Boulevard,http://www.queenslibrary.org/branch/Bayside?filters=ev_loc:91100000,library +2316,Bellerose,40.73516055,-73.71710447,11426,Hillside Avenue,http://www.queenslibrary.org/branch/Bellerose?filters=ev_loc:96400000,library +2317,Briarwood,40.71003456,-73.81945312,11435,Main Street,http://www.queenslibrary.org/branch/Briarwood?filters=ev_loc:92700000,library +2318,Broad Channel,40.60073211,-73.82005266,11693,Cross Bay Boulevard,http://www.queenslibrary.org/branch/Broad-Channel?filters=ev_loc:97200000,library +2319,Broadway,40.75852927,-73.91862332,11103,Broadway,http://www.queenslibrary.org/branch/Broadway?filters=ev_loc:91200000,library +2320,Cambria Heights,40.69572261,-73.74116314,11411,Linden Boulevard,http://www.queenslibrary.org/branch/Cambria-Heights?filters=ev_loc:92800000,library +2321,Queens Central Library,40.70787313,-73.79467804,11432,Merrick Boulevard,http://www.queenslibrary.org/branch/Central-Library?filters=ev_loc:11000000,library +2322,Corona,40.75089408,-73.86197684,11368,104 Street,http://www.queenslibrary.org/branch/Corona?filters=ev_loc:92900000,library +2323,Court Square,40.74689957,-73.94442139,11101,Jackson Avenue,http://www.queenslibrary.org/branch/Court-Square?filters=ev_loc:97100000,library +2324,Douglaston/Little Neck,40.76822543,-73.73822944,11363,Northern Boulevard,http://www.queenslibrary.org/branch/Douglaston/Little-Neck?filters=ev_loc:93000000,library +2325,East Elmhurst,40.76242213,-73.87386663,11369,Astoria Boulevard,http://www.queenslibrary.org/branch/East-Elmhurst?filters=ev_loc:93100000,library +2326,East Flushing,40.75754568,-73.78430296,11358,Northern Boulevard,http://www.queenslibrary.org/branch/East-Flushing?filters=ev_loc:96200000,library +2327,Elmhurst
(Temporary location due to renovations),40.73830324,-73.87797366,11373,51 Avenue,http://www.queenslibrary.org/branch/Elmhurst?filters=ev_loc:93200000,library +2328,Far Rockaway,40.60431351,-73.75247942,11691,Central Avenue,http://www.queenslibrary.org/branch/Far-Rockaway?filters=ev_loc:91300000,library +2329,Flushing,40.75777407,-73.82888469,11355,Main Street,http://www.queenslibrary.org/branch/Flushing?filters=ev_loc:91400000,library +2330,Forest Hills,40.72214695,-73.843015,11375,71 Avenue,http://www.queenslibrary.org/branch/Forest-Hills?filters=ev_loc:91500000,library +2331,Fresh Meadows,40.74158266,-73.78228144,11365,Horace Harding Expressway,http://www.queenslibrary.org/branch/Fresh-Meadows?filters=ev_loc:91600000,library +2332,Glen Oaks,40.7451722,-73.7148458,11004,Union Turnpike,http://www.queenslibrary.org/branch/Glen-Oaks?filters=ev_loc:93300000,library +2333,Glendale,40.70258525,-73.87574435,11385,73 Place,http://www.queenslibrary.org/branch/Glendale?filters=ev_loc:93400000,library +2334,Hillcrest,40.72925482,-73.7819193,11366,Union Turnpike,http://www.queenslibrary.org/branch/Hillcrest?filters=ev_loc:96500000,library +2335,Hollis,40.72016654,-73.76232033,11423,Hillside Avenue,http://www.queenslibrary.org/branch/Hollis?filters=ev_loc:93500000,library +2336,Howard Beach,40.66381026,-73.84180222,11414,156 Avenue,http://www.queenslibrary.org/branch/Howard-Beach?filters=ev_loc:93600000,library +2337,Jackson Heights,40.75019609,-73.88506932,11372,81 Street,http://www.queenslibrary.org/branch/Jackson-Heights?filters=ev_loc:91700000,library +2338,Kew Gardens Hills
(Temporary location),40.72693697,-73.82226966,11367,Main Street,http://www.queenslibrary.org/branch/Kew-Gardens-Hills?filters=ev_loc:92200000,library +2339,Langston Hughes,40.7575773,-73.86819939,11368,Northern Boulevard,http://www.queenslibrary.org/branch/Langston-Hughes?filters=ev_loc:98200000,library +2340,Laurelton,40.67695273,-73.74567356,11413,225 Street,http://www.queenslibrary.org/branch/Laurelton?filters=ev_loc:91800000,library +2341,Lefferts,40.68690729,-73.8248297,11419,Lefferts Boulevard,http://www.queenslibrary.org/branch/Lefferts?filters=ev_loc:91000000,library +2342,Lefrak City,40.73743414,-73.86165593,11368,57 Avenue,http://www.queenslibrary.org/branch/Lefrak-City?filters=ev_loc:93700000,library +2343,Long Island City,40.75780343,-73.9393093,11101,21 Street,http://www.queenslibrary.org/branch/Long-Island-City?filters=ev_loc:97300000,library +2344,Maspeth,40.72699537,-73.89310456,11378,Grand Avenue,http://www.queenslibrary.org/branch/Maspeth?filters=ev_loc:93900000,library +2345,McGoldrick,40.76375032,-73.80983348,11354,Roosevelt Avenue,http://www.queenslibrary.org/branch/McGoldrick?filters=ev_loc:93800000,library +2346,Middle Village,40.71293388,-73.88085935,11379,Metropolitan Avenue,http://www.queenslibrary.org/branch/Middle-Village?filters=ev_loc:94000000,library +2347,Mitchell-Linden,40.76914153,-73.82694112,11354,Union Street,http://www.queenslibrary.org/branch/Mitchell-Linden?filters=ev_loc:94100000,library +2348,North Forest Park,40.71115686,-73.85367251,11375,Metropolitan Avenue,http://www.queenslibrary.org/branch/North-Forest-Park?filters=ev_loc:96800000,library +2349,North Hills,40.75925364,-73.73183792,11362,Marathon Parkway,http://www.queenslibrary.org/branch/North-Hills?filters=ev_loc:94200000,library +2350,Ozone Park
(Closed for renovations),40.68086718,-73.84648846,11417,Rockaway Boulevard,http://www.queenslibrary.org/branch/Ozone-Park?filters=ev_loc:94300000,library +2351,Peninsula,40.58586415,-73.81606503,11693,Rockaway Beach Boulevard,http://www.queenslibrary.org/branch/Peninsula?filters=ev_loc:94400000,library +2352,Pomonok,40.73292508,-73.81009489,11365,Jewel Avenue,http://www.queenslibrary.org/branch/Pomonok?filters=ev_loc:94500000,library +2353,Poppenhusen,40.7862131,-73.84601807,11356,14 Avenue,http://www.queenslibrary.org/branch/Poppenhusen?filters=ev_loc:94600000,library +2354,Queens Library for Teens,40.60239019,-73.75351241,11691,Cornaga Avenue,http://www.queenslibrary.org/branch/Queens-Library-for-Teens?filters=ev_loc:91309134,library +2355,Queens Village,40.71988833,-73.73904906,11428,217 Street,http://www.queenslibrary.org/branch/Queens-Village?filters=ev_loc:91900000,library +2356,Queensboro Hill,40.74293095,-73.82516996,11355,Main Street,http://www.queenslibrary.org/branch/Queensboro-Hill?filters=ev_loc:96900000,library +2357,Queensbridge
Now a Family Literacy Center,40.75507372,-73.94424079,11101,41 Avenue,http://www.queenslibrary.org/branch/Queensbridge?filters=ev_loc:94700000,library +2358,Ravenswood
Now a Family Literacy Center,40.76067995,-73.93640397,11106,21 Street,http://www.queenslibrary.org/branch/Ravenswood?filters=ev_loc:94800000,library +2359,Rego Park,40.72731656,-73.86450283,11374,63 Drive,http://www.queenslibrary.org/branch/Rego-Park?filters=ev_loc:92000000,library +2360,Richmond Hill,40.7007972,-73.83164233,11418,Hillside Avenue,http://www.queenslibrary.org/branch/Richmond-Hill?filters=ev_loc:94900000,library +2361,Ridgewood,40.70522689,-73.90258828,11385,Madison Street,http://www.queenslibrary.org/branch/Ridgewood?filters=ev_loc:92100000,library +2362,Rochdale Village,40.6728752,-73.77059022,11434,137 Avenue,http://www.queenslibrary.org/branch/Rochdale-Village?filters=ev_loc:95000000,library +2363,Rosedale,40.65996362,-73.73991101,11422,243 Street,http://www.queenslibrary.org/branch/Rosedale?filters=ev_loc:95100000,library +2364,Seaside,40.57940488,-73.83774701,11694,Rockaway Beach Boulevard,http://www.queenslibrary.org/branch/Seaside?filters=ev_loc:96300000,library +2365,South Hollis,40.70700391,-73.7537974,11412,Hollis Avenue,http://www.queenslibrary.org/branch/South-Hollis?filters=ev_loc:95300000,library +2366,South Jamaica,40.69561112,-73.79021187,11433,Guy R. Brewer Boulevard,http://www.queenslibrary.org/branch/South-Jamaica?filters=ev_loc:95400000,library +2367,South Ozone Park,40.67478395,-73.80926183,11420,Rockaway Boulevard,http://www.queenslibrary.org/branch/South-Ozone-Park?filters=ev_loc:95500000,library +2368,St.Albans,40.69249997,-73.76007289,11412,Linden Boulevard,http://www.queenslibrary.org/branch/St.Albans?filters=ev_loc:95200000,library +2369,Steinway,40.77682707,-73.90945659,11105,31 Street,http://www.queenslibrary.org/branch/Steinway?filters=ev_loc:95600000,library +2370,Sunnyside,40.7408467,-73.92166803,11104,Greenpoint Avenue,http://www.queenslibrary.org/branch/Sunnyside?filters=ev_loc:95700000,library +2371,Whitestone,40.78854019,-73.81070184,11357,14 Road,http://www.queenslibrary.org/branch/Whitestone?filters=ev_loc:95800000,library +2372,Windsor Park,40.73450483,-73.75561942,11364,Bell Boulevard,http://www.queenslibrary.org/branch/Windsor-Park?filters=ev_loc:95900000,library +2373,Woodhaven,40.69453115,-73.86145742,11421,Forest Parkway,http://www.queenslibrary.org/branch/Woodhaven?filters=ev_loc:96000000,library +2374,Woodside,40.74534171,-73.90979374,11377,Skillman Avenue,http://www.queenslibrary.org/branch/Woodside?filters=ev_loc:96100000,library +2375,Challenge Playground,40.7560520947,-73.72738293199147,11362,251 St. bet. 61 Ave. and 63 Ave.,http://www.nycgovparks.org/parks/Q346/,park +2376,Sunset Cove Park,40.59892072358,-73.82218300936414,11693,W. 19 Rd. bet Jamaica Bay and Cross Bay Blvd.,http://www.nycgovparks.org/parks/Q498/,park +2377,Archie Spigner Park,40.69252911744,-73.77836915150323,11433,"169 St., Merrick Blvd., Marne Pl. bet. Linden Blvd., Sayres Ave., and 111 Rd.",http://www.nycgovparks.org/parks/Q051/,park +2378,Watson Gleason Playground,40.82942792625,-73.86905996294475,10472,"Gleason Ave., Watson Ave. bet. Noble Ave., and Rosedale Ave.",http://www.nycgovparks.org/parks/X124/,park +2379,Beach 17 Playground,40.59495632537,-73.74596075957648,11691,Seagirt Blvd bet. B. 17 St. and B. 12 St.,http://www.nycgovparks.org/parks/Q162J/,park +2380,Bayview Terrace Park,40.52696026269,-74.16185588015657,10312,Bayview Ter. from Barclay Ave. to Harold Ave.,http://www.nycgovparks.org/parks/R137/,park +2381,Randall's Island Park,40.79081801536,-73.92596611446989,10035,East River and Harlem River,http://www.nycgovparks.org/parks/M104/,park +2382,Nassau Mall,40.76442908266,-73.72513450444242,11362,"Horace Harding Exwy. Sr. Rd. N., Little Neck Pkwy., Nassau Blvd.",http://www.nycgovparks.org/parks/Q357I/,park +2383,Shiloh Garden,40.68617686121,-73.94519019107632,11216,Monroe St. between Tompkins Ave. and Marcy Ave.,http://www.nycgovparks.org/parks/B502/,park +2384,St. Nicholas - Powers St. Garden,40.71260106123,-73.9396631946347,11211,Powers St. between Judge St. and Olive St.,http://www.nycgovparks.org/parks/B426/,park +2385,Brinkerhoff Mall,40.69547846891,-73.7818354714279,11433,"Merrick Blvd., 171 Pl. bet. 110 Ave. and 110 Rd.",http://www.nycgovparks.org/parks/Q447/,park +2386,Vernon Mall,40.74202958324,-73.95422946374332,11101,Vernon Blvd. bet. 50 Ave. and 51 Ave.,http://www.nycgovparks.org/parks/Q435/,park +2387,Ashmead Park,40.70280531389,-73.79042152693965,11433,Liberty Ave. bet. 168 St. and 168 Pl.,http://www.nycgovparks.org/parks/Q003/,park +2388,Hunts Point Riverside Park,40.81810754284,-73.88140651341904,10474,Lafayette Av bet. Edgewater Rd and the Bronx River,http://www.nycgovparks.org/parks/X336/,park +2389,Motor Parkway,40.73637164883,-73.75543638382298,11364,Cloverdale Blvd. bet. 77 Ave. and Kingsbury Ave. and 210 St. bet. 75 Ave. and Richland Ave.,http://www.nycgovparks.org/parks/Q130/,park +2390,Green Valley Garden,40.65808337297,-73.90176447842659,11212,"New Lots Ave. bet. Sackman St., Powell St. and Junius St.",http://www.nycgovparks.org/parks/B486/,park +2391,Sutter Ballfields,40.67067035382,-73.88708824273517,11207,Belmont Ave. to Sutter Ave. between Schenck Ave. and Barbey St.,http://www.nycgovparks.org/parks/B419/,park +2392,Bayswater Park,40.60036281086,-73.7711620019294,11691,"Dwight Ave., Seagirt Blvd. bet. Beach 38 St. and Bay 32 St.",http://www.nycgovparks.org/parks/Q007/,park +2393,Barnhill Square,40.86801678694,-73.89959001936431,10468,W. Kingsbridge Ave at Reservoir Ave.,http://www.nycgovparks.org/parks/X001B/,park +2394,O'Sullivan Plaza,40.76371788238,-73.880962574864,11369,"Astoria Blvd., 25 Ave., 88 St.",http://www.nycgovparks.org/parks/Q160/,park +2395,Garden,40.52676026717,-74.16368474386724,10312,Bayview Ter. bet. Holdridge Ave. and Bennett Pl.,http://www.nycgovparks.org/parks/R137A/,park +2396,Louis Armstrong Playground,40.75523613533,-73.85515938562745,11368,37 Av bet. 112 and 113 Sts,http://www.nycgovparks.org/parks/Q415/,park +2397,Tompkinsville Park,40.63704575779,-74.07633812079823,10301,"Bay St., Victory Blvd.",http://www.nycgovparks.org/parks/R024/,park +2398,Melrose Playground,40.82068530417,-73.91805349469043,10451,Courtlandt Av bet. E 154 St and E 155 St,http://www.nycgovparks.org/parks/X154/,park +2399,St. Gregory's Playground,40.78931792033,-73.97196443282706,10024,W. 90 St. bet. Amsterdam Ave. and Columbus Ave.,http://www.nycgovparks.org/parks/M301/,park +2400,Colden Playground,40.7700217052,-73.8267029343887,11354,Union St. bet. 31 Rd. and 31 Dr.,http://www.nycgovparks.org/parks/Q347/,park +2401,Horsebrook Island,40.73592692924,-73.87240187835147,11373,"Justice Ave., 90 St., 56 Ave.",http://www.nycgovparks.org/parks/Q152/,park +2402,North 5th Street Pier and Park,40.72138362497,-73.96367808982842,11211,Kent Ave. bet. N. 4 St. and N. 7 St.,http://www.nycgovparks.org/parks/B536/,park +2403,Louis Pl Friends,40.6774240029,-73.91687127666702,11233,Louis Pl. between Herkimer St. and Atlantic Ave.,http://www.nycgovparks.org/parks/B498/,park +2404,Flynn Playground,40.82122716003,-73.91147878525365,10451,Brook Av to 3 Av bet. E 157 St and E 158 St,http://www.nycgovparks.org/parks/X146/,park +2405,Garden Of Happiness,40.84832690761,-73.88483505705288,10460,Prospect Av bet. E 181 St and E 182 St,http://www.nycgovparks.org/parks/X293/,park +2406,Bathgate Playground,40.85349559821,-73.89368590039986,10457,Washington to Bathgate Av bet. W 181 St and E 183 St,http://www.nycgovparks.org/parks/X252/,park +2407,Angie Lee Gonzales Garden,40.83656695396,-73.8845285251959,10460,Bryant Ave. at E. 174 St.,http://www.nycgovparks.org/parks/X339/,park +2408,Udall's Park Preserve,40.7801409047,-73.74645122415272,11363,"Northern Blvd., 244 St. to 247 St., Douglas Rd., Little Neck Bay",http://www.nycgovparks.org/parks/Q452/,park +2409,Travis Triangle,40.76631221709,-73.8130687716547,11354,"Murray La., Murray St. bet. 34 Ave. and 35 Ave.",http://www.nycgovparks.org/parks/Q246/,park +2410,Norelli-Hargreaves Memorial Triangle,40.69575003179,-73.80520991162142,11435,"Liberty Ave., 101 Ave. bet. Waltham St. and 146 St.",http://www.nycgovparks.org/parks/Q243/,park +2411,Sergeant Colyer Square,40.67497041692,-73.80556769476696,11420,"Rockaway Blvd., 120 Ave. bet. 132 St. and 133 St.",http://www.nycgovparks.org/parks/Q231/,park +2412,Preston Community Garden,40.6719010156,-73.92066064540502,11233,Park Pl. between Howard Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B487/,park +2413,Mall Forty Two XLII,40.76199355833,-73.77450857177826,11361,"42 Av, Bell Bl To Francis Lewis Bl",http://www.nycgovparks.org/parks/Q178/,park +2414,Utopia Playground,40.73038994658,-73.79254236598904,11365,"73 Ave., Jewel Ave. bet. Utopia Pkwy. and 179 St.",http://www.nycgovparks.org/parks/Q294/,park +2415,Linnaeus Park,40.75323734017,-73.75130284730585,11364,230 St. bet. 57 Ave. and 57 Rd.,http://www.nycgovparks.org/parks/Q388/,park +2416,Plaut Triangle,40.75831183737,-73.79682635846903,11358,"Northern Blvd., 43 Ave. bet. 169 St. and 170 St.",http://www.nycgovparks.org/parks/Q073/,park +2417,Mall Eighteen,40.78324844821,-73.84142459671561,11356,18 Ave. bet. 126 St. and 127 St.,http://www.nycgovparks.org/parks/Q033/,park +2418,Bowne Playground,40.75859589597,-73.82488070831846,11355,Union St. bet. Barclay Ave. and Sanford Ave.,http://www.nycgovparks.org/parks/Q308/,park +2419,Ruoff Triangle,40.68252297194,-73.85252681394502,11416,"Rockaway Blvd., 101 Ave., 87 St.",http://www.nycgovparks.org/parks/Q147/,park +2420,Baybridge Green,40.78534237856,-73.78648217550897,11360,Clearview Exwy. bet. Lori Dr. and 15 Dr.,http://www.nycgovparks.org/parks/Q387E/,park +2421,Clearview Park Golf Course,40.77900671345,-73.78505941869885,11360,"202 St., Clearview Exwy., bet. Cross Island Pkwy. and 23 Ave.",http://www.nycgovparks.org/parks/Q010/,park +2422,Daniel Carter Beard Mall,40.76291121072,-73.831653936784,11354,Northern Blvd. bet. Main St. and Linden Pl.,http://www.nycgovparks.org/parks/Q100A/,park +2423,Sabba Park,40.74272865155,-73.91510277360271,11377,"Queens Blvd. bet. 48 St., Greenpoint Ave. and 50 St.",http://www.nycgovparks.org/parks/Q034/,park +2424,Doughboy Park,40.74614586167,-73.90825521100632,11377,Woodside Ave. bet. 54 St. and 56 St.,http://www.nycgovparks.org/parks/Q031A/,park +2425,William F Moore Park,40.74382007101,-73.8553609608765,11368,"108 St., Corona Ave. bet. 51 Ave. and 52 Ave.",http://www.nycgovparks.org/parks/Q029/,park +2426,Mentone Playground,40.66635351316,-73.74058264316812,11413,N. Conduit Ave. bet. 230 Pl. and the Belt Pkwy.,http://www.nycgovparks.org/parks/Q096C/,park +2427,Richmond Terrace Cemetery,40.63948244108,-74.12099740656076,10310,Richmond Ter. bet. Tompkins Ct. and Alaska St.,http://www.nycgovparks.org/parks/R154/,park +2428,Bell Malls,40.75531289053,-73.76696059493914,11364,Bell Blvd. bet. 48 Ave. and Horace Harding Exwy. Sr. Rd. N.,http://www.nycgovparks.org/parks/Q268/,park +2429,Laurelton Playground,40.6706159703,-73.7357248182306,11422,Brookville Blvd. bet. 136 Ave. 137 Ave.,http://www.nycgovparks.org/parks/Q108/,park +2430,Catharine Turner Richardson Park,40.7680309838,-73.74700351200937,11363,"Douglaston Pkwy., 240 St. bet. 42 Ave. and 43 Ave.",http://www.nycgovparks.org/parks/Q059/,park +2431,Park Avenue Malls,40.74713978428,-73.98126898270925,10016,E 34 St To E 39 St and Park Av,http://www.nycgovparks.org/parks/M060B/,park +2432,Playground 115,40.78504971441,-73.85278020879076,11356,115 St. bet. 14 Ave. and 14 Rd.,http://www.nycgovparks.org/parks/Q136/,park +2433,Raymond O’Connor Park,40.77089482393,-73.77907145592283,11361,"32 Ave., 33 Ave. bet. Corporal Kennedy St. and 210 St.",http://www.nycgovparks.org/parks/Q103/,park +2434,Marcus Garvey Tenant's Assoc. Garden,40.66927372409,-73.91598050092,11212,Strauss St. bet. E. New York Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B510/,park +2435,Staten Island Industrial Park,40.60884592987,-74.17026427795108,10314,"SI Expwy., W. Shore Expwy., Graham Ave., South Ave.",http://www.nycgovparks.org/parks/R143/,park +2436,Gordon Triangle,40.74861897826,-73.95202629912528,11101,"10 St., Vernon Blvd. bet. 44 Rd. and 45 Ave.",http://www.nycgovparks.org/parks/Q018/,park +2437,Carlton Park,40.55154292911,-74.18450548068519,10312,Carlton Blvd. and Crown Ave.,http://www.nycgovparks.org/parks/R152/,park +2438,Sobel Court Park,40.61534649036,-74.08425895306115,10304,"Bowen St., Vanderbilt Ave., Targee St.",http://www.nycgovparks.org/parks/R144/,park +2439,Ketchum Triangle,40.60553161172,-73.98222274690765,11223,"Quentin Rd., Kings Hwy., W. 9 St.",http://www.nycgovparks.org/parks/B160/,park +2440,Soundview Park,40.81679170396,-73.86982410310259,10473,"Bronx River, Bronx River Ave. bet. Lafayette Ave., Surf Dr.",http://www.nycgovparks.org/parks/X118/,park +2441,Eibs Pond Park,40.61275432288,-74.07826630071021,10304,"Mosel Ave., Palma Dr., Hanover Ave.",http://www.nycgovparks.org/parks/R124/,park +2442,Linwood Playground,40.66658896311,-73.88055188537409,11208,Linwood St. bet. New Lots Ave. and Hegeman Ave.,http://www.nycgovparks.org/parks/B149B/,park +2443,Ida Court,40.53810092915,-74.18723267552771,10312,"Drumgoole Rd. E., N. Railroad St., Ida Ct.",http://www.nycgovparks.org/parks/R097/,park +2444,Mohegan Triangle,40.84435629218,-73.88457250288049,10460,"Mohegan Ave., Crotona Pkwy., E. 179 St.",http://www.nycgovparks.org/parks/X334/,park +2445,Bell Tower Park,40.88916697957,-73.90834756788522,10471,"Riverdale Ave., Henery hudson Pkwy., W. 239 St.",http://www.nycgovparks.org/parks/X110D/,park +2446,Madison Square Park,40.74275844273,-73.98677782187565,10010,"Broadway, Madison Ave. bet. E. 23 St. and E. 26 St.",http://www.nycgovparks.org/parks/M052/,park +2447,O'Neill Triangle,40.8238942529,-73.91093749024229,10451,Elton Av bet. E 161 St and E 162 St,http://www.nycgovparks.org/parks/X053/,park +2448,Alben Square,40.63949791746,-73.99452972094957,11219,"46 St., 11 Ave., New Utrecht Ave.",http://www.nycgovparks.org/parks/B123/,park +2449,Sparrow's Nest Community Garden,40.74040394157,-73.85895173410294,11368,Lewis Ave. bet. 101 St. and 102 St.,http://www.nycgovparks.org/parks/Q473/,park +2450,Park at Beach 108 Street,40.5836943265,-73.83222939679193,11694,Beach Channel Dr. bet. Beach 116 St. and Beach 108 St.,http://www.nycgovparks.org/parks/Q496/,park +2451,Walt Whitman Park,40.69886003874,-73.98890532672436,11201,"Cadman Plaza East, Adams St. bet. Red Cross Pl. and Tillary St.",http://www.nycgovparks.org/parks/B113E/,park +2452,Scarangella Park,40.59375660721,-73.98379553233681,11223,"W. 13 St., Stillwell Ave. bet. Ave. U and Ave. V",http://www.nycgovparks.org/parks/B106A/,park +2453,Clove's Tail,40.61253196802,-74.11414704137226,10314,Little Clove Rd. bet. Windsor Rd. and Victory Blvd.,http://www.nycgovparks.org/parks/R070/,park +2454,Great Kills Veterans Playground,40.54734500156,-74.15150605682912,10308,"Hillcrest Ave., N/o Highmount Rd.",http://www.nycgovparks.org/parks/R071/,park +2455,Howard Malls,40.66405367418,-73.91979846532999,11212,"Blake Ave., Tapscott St., Howard Ave.",http://www.nycgovparks.org/parks/B182/,park +2456,Sgt. Joyce Kilmer Square,40.60784928743,-73.96082329434068,11229,"E. 12 St., Kings Hwy., Quentin Rd.",http://www.nycgovparks.org/parks/B094/,park +2457,Christopher J. Igneri Playground,40.60840423437,-74.11942364990158,10314,"Schmidts La., Manor Rd. and Laguardia Ave.",http://www.nycgovparks.org/parks/R064/,park +2458,Lowry Triangle,40.68085420022,-73.96449054790244,11238,"Pacific St., Washington Ave., Underhill Ave.",http://www.nycgovparks.org/parks/B089/,park +2459,Kaltenmeier Playground,40.61494574661,-74.06851662959531,10305,Virginia Ave. and Anderson St.,http://www.nycgovparks.org/parks/R042/,park +2460,Schiff Mall,40.71999727261,-73.99303393306414,10002,Delancey St bet. Bowery and Essex St,http://www.nycgovparks.org/parks/M080/,park +2461,De Matti Park,40.61421874356,-74.07413817418916,10305,"Tompkins Ave., bet. Chestnut St. and Shaughnessy La.",http://www.nycgovparks.org/parks/R035/,park +2462,Austin J. McDonald Playground,40.62953500735,-74.11490620094182,10310,"Forest Ave., Myrtle Ave., Broadway, N. Burgher Ave.",http://www.nycgovparks.org/parks/R034/,park +2463,Owl's Head Park,40.6396891505,-74.03051362651304,11220,"Shore Rd., 68 St., Colonial Rd.",http://www.nycgovparks.org/parks/B066/,park +2464,Gravesend Park,40.62439683282,-73.98472205000172,11204,"18 Ave., 19 Ave., bet. 55 St. and 58 St.",http://www.nycgovparks.org/parks/B042/,park +2465,Levy Playground,40.6337200818,-74.12876980301016,10302,Jewett Ave. and Castleton Ave.,http://www.nycgovparks.org/parks/R033/,park +2466,Kwame Ture Recreation Center,40.84473943458,-73.91856320847853,10452,Jesup Av bet. W 172 St and Cross Bronx Exwy,http://www.nycgovparks.org/parks/X261/,park +2467,Mariners Marsh Park,40.63768187359,-74.17170330510054,10303,Richmond Terrace bet. Catherine Pl. and Holland Ave.,http://www.nycgovparks.org/parks/R142/,park +2468,Maple Woods,40.61131085033,-74.08805627971647,10304,Richmond Rd. bet. Pierce St. and Steuben St.,http://www.nycgovparks.org/parks/R032/,park +2469,Staats Circle,40.59904381283,-74.07226981038929,10305,Hylan Blvd. at Sand La.,http://www.nycgovparks.org/parks/R010/,park +2470,Barrett Triangle,40.64195599346,-74.07558896216143,10301,"Hyatt St., Bay St., Stuyvesant Pl. and Richmond Ter.",http://www.nycgovparks.org/parks/R004/,park +2471,Tappen Park,40.62671723237,-74.0758098373344,10304,"Canal St., Water St., Bay St.",http://www.nycgovparks.org/parks/R028/,park +2472,Peaceful Valley Garden,40.80042702693,-73.94399726618308,10035,Madison Ave. bet. E. 116 St. and E. 117 St.,http://www.nycgovparks.org/parks/M367/,park +2473,Lower East Side Playground,40.72924585938,-73.98347493415832,10009,"E. 12 St., E. 11 St. bet. 1 Ave. and Ave. A",http://www.nycgovparks.org/parks/M321A/,park +2474,Queensboro Oval,40.75879964348,-73.95982612972409,10022,"West of York Ave., E 59 St. To E 60 St.",http://www.nycgovparks.org/parks/M070/,park +2475,Bryant Park,40.7529710288,-73.9834069537809,10018,"bet. 5 and 6 Av, W 40 St and W 42 St",http://www.nycgovparks.org/parks/M008/,park +2476,Livonia Park,40.66372269703,-73.90157017222514,11212,Livonia Ave. between Powell St. and Junius St.,http://www.nycgovparks.org/parks/B367/,park +2477,Duke Park,40.6667685124,-73.89305577658025,11207,New Jersey Ave. between Blake Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B366/,park +2478,Hawkins Park,40.84665149994,-73.78641186601298,10464,City Island Ave. bet. Fordham St. and Hawkins St.,http://www.nycgovparks.org/parks/X107/,park +2479,Haviland Playground,40.82881037886,-73.85824334399335,10472,"Haviland Ave., Watson Ave. bet. Virginia Ave. and Pugsley Ave.",http://www.nycgovparks.org/parks/X208/,park +2480,Gouverneur Playground,40.83613415114,-73.90291956363713,10456,3 Av bet. E 170 St and St Paul's Pl,http://www.nycgovparks.org/parks/X222/,park +2481,Samuel Goldberg Triangle,40.61118875265,-73.97729201429463,11204,"65 St., Ave. O, W. 3 St.",http://www.nycgovparks.org/parks/B231/,park +2482,Gonzalo Plasencia Playground,40.65270676028,-74.00797877099313,11232,3 Ave. bet. 40 St. and 41 St.,http://www.nycgovparks.org/parks/B210I/,park +2483,Corporal Wiltshire Square,40.61087826967,-73.95341010192851,11229,"Ave. P, Kings Hwy., Ocean Ave.",http://www.nycgovparks.org/parks/B205/,park +2484,Fort Hamilton Athletic Field,40.62703729873,-74.03616436902067,11209,83 St. to 85 St. bet. Colonial Rd. and Narrows Ave.,http://www.nycgovparks.org/parks/B192A/,park +2485,Greenwood Playground,40.64941819646,-73.97611731681965,11218,"Ft Hamilton Pkwy., Prospect Ave., Greenwood Ave.",http://www.nycgovparks.org/parks/B130/,park +2486,Gaeta Park,40.6104219384,-74.15046757766655,10314,"N. Gannon Ave., Willow Road E., Victory Blvd., Wyona Ave.",http://www.nycgovparks.org/parks/R126/,park +2487,Cooper Park,40.71665736875,-73.93636813561982,11211,"Maspeth Ave., Sharon St. bet. Olive St. and Morgan Ave.",http://www.nycgovparks.org/parks/B025/,park +2488,Grand Army Plaza,40.76383486434,-73.9735944822208,10019,"5 Av, W 58 St To W 59 St",http://www.nycgovparks.org/parks/M062/,park +2489,Barry Plaza,40.84284985051,-73.9048767558845,10457,E 173 St bet. Clay Av and Anthony Av,http://www.nycgovparks.org/parks/X130/,park +2490,Bowling Green,40.70480770767,-74.01337738570275,10004,Broadway and Whitehall St.,http://www.nycgovparks.org/parks/M007/,park +2491,Throgs Neck Park,40.83394494888,-73.82768098151953,10461,Meyers St. bet. Haskin St. and Bruckner Blvd.,http://www.nycgovparks.org/parks/X050/,park +2492,El Sol Brilliante Jr,40.72843924649,-73.97958800019131,10009,E. 12 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M339/,park +2493,Neighbors Of Vega Baja,40.79208120707,-73.94010438496912,10029,E. 109 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M338/,park +2494,Beattie Square,40.69641092056,-73.93448055059585,11221,"Broadway, Stuyvesant Ave., Vernon Ave.",http://www.nycgovparks.org/parks/B006/,park +2495,Sarah J.S. Tompkins Garnet Playground,40.70068373177,-73.95485764775498,11206,"Lynch St., Middleton St. bet. Lee Ave. and Bedford Ave.",http://www.nycgovparks.org/parks/B022/,park +2496,Detective Keith L Williams Park,40.70144023736,-73.78353936174929,11433,Liberty Ave. bet. 172 St. and 173 St.,http://www.nycgovparks.org/parks/Q121/,park +2497,Campos Garden,40.72709316677,-73.97758303889856,10009,E. 12 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M359/,park +2498,Sugar Hill Garden,40.82623766663,-73.9420996730531,10031,Edgecombe Ave. and W. 150 St.,http://www.nycgovparks.org/parks/M319A/,park +2499,Miele Park,40.83472913042,-73.82595389583385,10461,Bruckner Blvd bet. Hollywood Ave. and Crosby Ave.,http://www.nycgovparks.org/parks/X149A/,park +2500,Earth People,40.72522889577,-73.97875922976267,10009,E. 8 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M324/,park +2501,City Line Park,40.67925550438,-73.87409161778498,11208,Atlantic Ave. bet. Fountain Ave. and N. Conduit Ave.,http://www.nycgovparks.org/parks/B141/,park +2502,Bushwick Inlet Park,40.72531094574,-73.96022626634527,11211,Kent Ave. bet. Quay St. and N 9 St.,http://www.nycgovparks.org/parks/B529/,park +2503,Ramon Aponte Park,40.76127607104,-73.98931963848251,10036,47 St. bet. 8 Ave. and 9 Ave.,http://www.nycgovparks.org/parks/M288/,park +2504,Battery Park City,40.71222180074,-74.01772017027533,10280,bet. Hudson River and South End Ave. S/o Liberty St.,http://www.nycgovparks.org/parks/M283A/,park +2505,Asser Levy Park,40.57444185255,-73.9715454448973,11224,"Boardwalk, Surf Ave., Sea Breeze Ave., Ocean Parkway",http://www.nycgovparks.org/parks/B080/,park +2506,Todd Triangle,40.67223341785,-74.00869209569818,11231,Halleck St. at Columbia St.,http://www.nycgovparks.org/parks/B126A/,park +2507,Triboro Plaza,40.80153894491,-73.93158050831211,10035,"1 Ave. To 2 Ave., bet. E. 124 St. and E. 126 St.",http://www.nycgovparks.org/parks/M108F/,park +2508,Brevoort Playground,40.6799536361,-73.9228061443153,11233,Ralph Ave. bet. Chauncey St. and Sumpter St.,http://www.nycgovparks.org/parks/B258/,park +2509,American Veterans Memorial Pier,40.63939244038,-74.03657087851596,11220,"Bay Ridge Ave., Shore Rd., Upper Bay",http://www.nycgovparks.org/parks/B432/,park +2510,B.C.C.A. Mini-park and Garden,40.68322604652,-73.79198379030511,11434,115 Dr. bet. Sutphin Blvd. and 155 St.,http://www.nycgovparks.org/parks/Q486/,park +2511,Breukelen Ballfields,40.65186766257,-73.89214609005658,11207,"Louisiana Ave., Stanley Ave., Flatlands Ave., Williams Ave.",http://www.nycgovparks.org/parks/B247/,park +2512,Lafayette Gardens Playground,40.68930956406,-73.95734169044692,11205,Lafayette Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B317/,park +2513,South Beach Wetlands,40.58693503262,-74.0721115411988,10305,"Qunitard St., Pearsall St., Frank Capodanno Blvd.",http://www.nycgovparks.org/parks/R147/,park +2514,Seth Low Playground/ Bealin Square,40.60741900577,-73.986906922506,11204,W. 12 St. bet. Bay Pkwy. and Ave. P,http://www.nycgovparks.org/parks/B100/,park +2515,Laguardia Landing Lights,40.76621676079,-73.88770328810776,11370,23 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/Q393G/,park +2516,St. James Park,40.8658040788,-73.8961123248121,10468,"Jerome Ave., E. 193 St., Creston Ave., E",http://www.nycgovparks.org/parks/X044/,park +2517,Mill Pond Park,40.82469561551,-73.93129436278943,10451,Major Deegan Exwy bet. E. 150 St and E. 153 St,http://www.nycgovparks.org/parks/X344/,park +2518,Meredith Woods,40.59899377221,-74.19340377072457,10314,"Meredith Ave., W. Shore Exwy., Chelsea Creek",http://www.nycgovparks.org/parks/R163/,park +2519,Freeman Garden,40.82957277049,-73.89124453722863,10459,Hoe Ave. bet. Home St. and Freeman St.,http://www.nycgovparks.org/parks/X270/,park +2520,Old Place Creek Park,40.63282829287,-74.19312590958035,10314,"Gulf Ave., Goethals Br. Appr. bet. Western Ave. and Arthur Kill",http://www.nycgovparks.org/parks/R159/,park +2521,Peters Field,40.70528115835,-73.77433588525628,11423,Liberty Ave. bet. 183 St. and 183 Pl.,http://www.nycgovparks.org/parks/Q351/,park +2522,Cambria Playground,40.6887265945,-73.74195624852997,11411,"Francis Lewis Blvd., 121 Ave. bet. 219 St. and 222 St.",http://www.nycgovparks.org/parks/Q339/,park +2523,Hollis Veterans Square,40.71026597791,-73.77142843518415,11423,"Jamaica Ave., Hollis Ave., 187 Pl.",http://www.nycgovparks.org/parks/Q245/,park +2524,Midland Malls,40.71646381514,-73.78431284394776,11432,Midland Pkwy. bet. Surrey Place and Hillside Ave.,http://www.nycgovparks.org/parks/Q030/,park +2525,Grand Slope,40.73494084348,-73.88223700674277,11373,"Kneeland Ave., Grand Ave. bet. Manilla St. and Haspel St.",http://www.nycgovparks.org/parks/Q151/,park +2526,Alameda Malls,40.76409724954,-73.74453299244061,11362,"Alameda Ave. bet. Northern Blvd., Hanford St. and Northern Blvd., 247 St.",http://www.nycgovparks.org/parks/Q262/,park +2527,Reiff Playground,40.71808784171,-73.9012446434414,11378,59 Dr. bet. Fresh Pond Rd. and 63 St.,http://www.nycgovparks.org/parks/Q423/,park +2528,Collyer Brothers Park,40.80846787933,-73.94095712590331,10027,"5 Ave., E. 128 St.",http://www.nycgovparks.org/parks/M305/,park +2529,General Hart Playground,40.74852816886,-73.89688169607504,11377,"Broadway, 37 Ave. bet. 65 St. and 69 St.",http://www.nycgovparks.org/parks/Q067A/,park +2530,Pigeon Paradise,40.74855683901,-73.89662832487748,11377,"Broadway, 69 St., 37 Ave.",http://www.nycgovparks.org/parks/Q067/,park +2531,Heritage Park,40.64098801434,-74.12087634791477,10310,"Richmond Ter. at Tompkins Ct., Kill Van Kull",http://www.nycgovparks.org/parks/R160/,park +2532,Playground 52 LII,40.81512411781,-73.90158526597187,10455,Kelly St bet. Av St John and Leggett Av,http://www.nycgovparks.org/parks/X179/,park +2533,Steinmann Triangle,40.74517218272,-73.90881041140518,11377,"Skillman Ave., Roosevelt Ave. bet. 55 St. and 56 St.",http://www.nycgovparks.org/parks/Q061/,park +2534,Sohncke Square,40.74548706019,-73.90610144080462,11377,"Woodside Ave., 58 St., Roosevelt Ave.",http://www.nycgovparks.org/parks/Q057/,park +2535,Veteran's Square,40.74764513252,-73.86333322632865,11368,"National St., 42 Ave., 102 St.",http://www.nycgovparks.org/parks/Q055/,park +2536,Graniteville Quarry Park,40.6250348695,-74.15301081589939,10303,"Forest Ave. Wilcox Ave., bet. Van Name Ave. and Eunice Pl.",http://www.nycgovparks.org/parks/R150/,park +2537,Major Mark Park,40.71142084762,-73.78813103765194,11432,Hillside Ave. bet. 173 St. and 175 St.,http://www.nycgovparks.org/parks/Q025/,park +2538,Garlinge Triangle,40.72834405034,-73.89082774316519,11378,"Grand Ave., 57 Ave. bet. 72 Pl and Mazeau St.",http://www.nycgovparks.org/parks/Q019/,park +2539,The Queen Elizabeth II September 11th Garden,40.70462457109,-74.00943849246845,10005,"Hanover Sq., Pearl St. and Stone St.",http://www.nycgovparks.org/parks/M212/,park +2540,Abe Lebewohl Park,40.73012511025,-73.98676157203775,10003,E. 10 St. and 2 Ave.,http://www.nycgovparks.org/parks/M188/,park +2541,Harlem River Park,40.80802669412,-73.93460087596726,10037,"Lexington Ave., E. 130 St. to E. 131 St.",http://www.nycgovparks.org/parks/M208C/,park +2542,Allen Street Malls,40.72173502261,-73.9891531845691,10002,"E Houston St, E Broadway",http://www.nycgovparks.org/parks/M004/,park +2543,Playground One,40.71208655598,-73.99771196925718,10038,Madison St. bet. Catherine St. and Oliver St.,http://www.nycgovparks.org/parks/M196/,park +2544,Vito Locascio Field,40.66930591177,-73.84272246194284,11417,"N. Conduit Ave., 149 Ave., Cross Bay Blvd.",http://www.nycgovparks.org/parks/Q095/,park +2545,Woodrow Wilson Triangle,40.81341857528,-73.85803031053408,10473,"Soundview Ave., Underhill Ave., Patterson Ave.",http://www.nycgovparks.org/parks/X065/,park +2546,Fraser Square,40.61968255821,-73.94137651923477,11234,"Kings Highway, Ave. M, E. 34 St. to E. 35 St.",http://www.nycgovparks.org/parks/B173/,park +2547,Greenpoint Playground,40.73562462109,-73.95866350643134,11222,Franklin St. bet. Commerical St. and Dupoint St.,http://www.nycgovparks.org/parks/B043/,park +2548,Butterfly Gardens,40.65986369289,-73.98626727270292,11215,7 Ave. bet. 18 St. and 17 St.,http://www.nycgovparks.org/parks/B255G/,park +2549,Dodgers Triangle,40.61469434675,-74.11954154017475,10314,Dongan Ave. at Hodges Pl.,http://www.nycgovparks.org/parks/R060/,park +2550,Bar and Grill Park,40.70112994803,-73.98780325605382,11201,"York St., through BQE bet. Adams St. and Pearl St.",http://www.nycgovparks.org/parks/B223IB/,park +2551,Sitting Area,40.65100436835,-73.97592445668391,11218,N/B Prospect Exwy. bet. Seeley St. and Greenwood Ave.,http://www.nycgovparks.org/parks/B255K/,park +2552,McKinley Park,40.62677547751,-74.01524018623753,11228,"73 St., Ft. Hamilton Pkwy., 7 Ave.",http://www.nycgovparks.org/parks/B060/,park +2553,Lithuania Square,40.70882816293,-73.95093027922123,11211,"Stagg St., Hewes St., Union Ave.",http://www.nycgovparks.org/parks/B202/,park +2554,Sheridan Triangle,40.90499905761,-73.89660809459158,10471,"Mosholu Ave., Broadway, David Sheridan Plaza",http://www.nycgovparks.org/parks/X060/,park +2555,Pearl St Playground,40.7079386719,-74.00374111207715,10038,Pearl St. bet. Fulton St. and Beekman St.,http://www.nycgovparks.org/parks/M378/,park +2556,Classon Triangle,40.69911344669,-73.96143279695747,11211,"Kent Ave., Classon Ave., Wallabout St.",http://www.nycgovparks.org/parks/B223NB/,park +2557,Turtle Playground,40.74196319087,-73.8269338587308,11367,"Horace Harding Exwy. Sr. Rd. S., 138 St., 61 Rd.",http://www.nycgovparks.org/parks/Q357G/,park +2558,Devanney Triangle,40.85264460181,-73.90465323644139,10453,E. Burnside Ave. bet. Creston Ave. and G,http://www.nycgovparks.org/parks/X129/,park +2559,South Gate Mall,40.67313316052,-73.75866543638791,11413,Southgate Plaza bet. 140 Ave. and 139 Ave.,http://www.nycgovparks.org/parks/Q277/,park +2560,Plaza Lafayette,40.8513754141,-73.94136391242778,10033,"Riverside Dr., W. 181 St. To Haven Ave.",http://www.nycgovparks.org/parks/M061/,park +2561,El Flamboyan Garden,40.81389362141,-73.90578096495109,10455,"Tinton Av, E 150th St and Union Av",http://www.nycgovparks.org/parks/X233A/,park +2562,O'Brien Oval,40.84772733576,-73.90114994571947,10457,E. Tremont Ave. at Valentine Ave. bet. Carter Ave.,http://www.nycgovparks.org/parks/X037/,park +2563,Seaside Wildlife Nature Park,40.54219614399,-74.14227319856263,10308,"Nelson Ave., Tennyson Dr. and Bulkhead Line",http://www.nycgovparks.org/parks/R145/,park +2564,Catherine Slip Malls,40.70927192537,-73.99612263083613,10038,Catherine Slip bet. Cherry St. and South St.,http://www.nycgovparks.org/parks/M178/,park +2565,Abingdon Square,40.73708349257,-74.00558016086472,10014,"Hudson St, 8 Av, W 12 St",http://www.nycgovparks.org/parks/M001/,park +2566,Egbert Triangle,40.62503329193,-74.14487883457547,10302,"Richmond Ave., Forest Ave., and Willowbrook Rd.",http://www.nycgovparks.org/parks/R020/,park +2567,Barone Triangle,40.61993364201,-73.90744345023798,11234,"Ave. U, E. 71 St., Veterans Ave.",http://www.nycgovparks.org/parks/B190/,park +2568,Flatbush Mall,40.62948162876,-73.960276674296,11230,"E. 17 St., South of Ave. H",http://www.nycgovparks.org/parks/B180/,park +2569,Garden Party,40.67396672899,-73.88736814737095,11207,Jerome St. and Glenmore Ave.,http://www.nycgovparks.org/parks/B522/,park +2570,Ewen Park,40.88135997074,-73.90965644470499,10463,"Johnson Av, W 232 St, Riverdale Av",http://www.nycgovparks.org/parks/X019/,park +2571,Joseph Manna Park,40.62590099484,-74.17614474609623,10303,"Forest Ave., Goethals Rd. N., Meeker Ave.",http://www.nycgovparks.org/parks/R127/,park +2572,St. Nicholas - Olive St. Garden,40.71323418861,-73.93893539617332,11211,Olive St. between Powers St. and Devoe St.,http://www.nycgovparks.org/parks/B425/,park +2573,MacLaughlin Playground,40.88815910755,-73.90512615406934,10471,Greystone Av bet. W 236 St and W 240 St,http://www.nycgovparks.org/parks/X224/,park +2574,Flatbush Malls,40.63413885163,-73.96116055481573,11230,E. 17 St. bet. Foster Ave. and Ave. H,http://www.nycgovparks.org/parks/B179/,park +2575,Henry Hudson Park,40.88058808696,-73.91974259523117,10463,"Palisade Av, Kappock St, Independence A",http://www.nycgovparks.org/parks/X080/,park +2576,Estella Diggs Park,40.82906999202,-73.90565830783797,10456,3 Av to Fulton Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X243/,park +2577,Van Cortlandt's Tail,40.88636486559,-73.899431783064,10463,Broadway bet. W 239 St and Van Cortlandt Pa,http://www.nycgovparks.org/parks/X150L/,park +2578,Dahill Triangle,40.61298877568,-73.97493871387397,11204,"Dahill Rd., 24 Ave., 62 St.",http://www.nycgovparks.org/parks/B175/,park +2579,Gouverneur Morris Triangle,40.80461244398,-73.91284574336954,10454,"Bruckner Blvd., Jackson Ave., E. 138 St.",http://www.nycgovparks.org/parks/X139/,park +2580,Phyllis Post Goodman Park,40.88051959022,-73.9170937251771,10463,Kappock St at the Henry Hudson Pkwy,http://www.nycgovparks.org/parks/X110B/,park +2581,Ahearn Park,40.71471132298,-73.98365299179076,10002,"Grand St, E Broadway and Willet St",http://www.nycgovparks.org/parks/M002/,park +2582,Walton Walk,40.84535191291,-73.91193267835364,10453,Cross Bronx Exwy bet. Townsend Av and Walton Av,http://www.nycgovparks.org/parks/X148C6/,park +2583,Harris Park,40.87692228882,-73.88995334913588,10468,Paul Ave. - Goulden Ave. bet. Bedford Par,http://www.nycgovparks.org/parks/X136/,park +2584,Broad Channel Veteran's Park,40.61024670641,-73.8188135085339,11693,Cross Bay Blvd. bet. E. 4 Rd. and E. 6 Rd.,http://www.nycgovparks.org/parks/Q225/,park +2585,Tudor Malls,40.67426760352,-73.85048341833254,11417,133 Ave. bet. 82 St. and 86 St.,http://www.nycgovparks.org/parks/Q177/,park +2586,Drumm Triangle,40.6992367164,-73.88830572126575,11385,"Cypress Hills St., Cooper Ave., 65 Pl.",http://www.nycgovparks.org/parks/Q139/,park +2587,Lefferts Playground,40.66515811335,-73.8207699164176,11420,N. Conduit Ave. bet. Lefferts Blvd. and 122 St.,http://www.nycgovparks.org/parks/Q096E/,park +2588,Clemens Triangle,40.70009250663,-73.90583003293663,11385,"Myrtle Ave., Cypress Ave., Cornelia St.",http://www.nycgovparks.org/parks/Q056/,park +2589,Steuben Playground,40.69695233754,-73.96344411176511,11205,"Flushing Ave., Steuben St., Williamsburg Pl.",http://www.nycgovparks.org/parks/B221/,park +2590,Calvary Monument,40.73090468938,-73.92969252236846,11101,"First Calvery, Greenpoint Ave., Gale St.",http://www.nycgovparks.org/parks/Q224/,park +2591,Macri Triangle,40.71418132145,-73.95178383710152,11211,"Metropolitan, Union, Meeker Avs",http://www.nycgovparks.org/parks/B223S/,park +2592,Gasoline Alley,40.86026357032,-73.91441859001917,10468,"Major Deegan Exwy, Cedar Ave., W. Fordha",http://www.nycgovparks.org/parks/X150D/,park +2593,Townsend Walk,40.84584198115,-73.91265543859022,10453,Cross Bronx Exwy bet. Townsend Av and Jerome Av,http://www.nycgovparks.org/parks/X148C4/,park +2594,Featherbenches,40.8453405335,-73.91423095187697,10452,Fetherbed La bet. Davidson Av and Jerome Av,http://www.nycgovparks.org/parks/X148C1/,park +2595,Goble Playground,40.84379729532,-73.91668649863304,10452,Goble Pl bet. Inwood Av and Macombs Rd,http://www.nycgovparks.org/parks/X114/,park +2596,Hancock Park,40.80968275422,-73.95326774429552,10027,"St Nicholas Av, Manhattan Av, W 123 St",http://www.nycgovparks.org/parks/M034/,park +2597,Hoe Garden,40.82250148389,-73.89026548247787,10459,Hoe Ave. bet. Aldus St. and Bruckner Blvd.,http://www.nycgovparks.org/parks/X241/,park +2598,Isle Of Meadows,40.57959078792,-74.20254412410371,10314,Arthur Kills Near Fresh Kills Landfill,http://www.nycgovparks.org/parks/R151/,park +2599,Evergreen Park,40.69829949197,-73.89624285318602,11385,St Felix Ave. bet. Seneca Ave. and 60 Pl.,http://www.nycgovparks.org/parks/Q302/,park +2600,Kingdom Pond Park,40.5263301732,-74.18464800270051,10312,Kingdom Ave. bet. Hylan Blvd. and Jansen St.,http://www.nycgovparks.org/parks/R138/,park +2601,Shooters Island,40.64163985783,-74.15511140866296,10303,Kill Van Kull and Newark Bay,http://www.nycgovparks.org/parks/R128/,park +2602,Bath Beach Park,40.60245783222,-74.0101718475332,11214,Shore Pkwy. bet. Bay 14 St. and Bay 16 St.,http://www.nycgovparks.org/parks/B164/,park +2603,Jerome Playground South,40.84489616478,-73.91372888545921,10452,S/s Cross Bronx Exwy bet. Townsend Av and Jerome Av,http://www.nycgovparks.org/parks/X148C7/,park +2604,Triangle,40.66870147269,-73.87748842605443,11208,"New Lots Ave., Dumont Ave., Atkins Ave.",http://www.nycgovparks.org/parks/B155/,park +2605,Elton Playground,40.66549117563,-73.88041233354778,11208,Elton St. bet. New Lots Ave. and Hegeman Ave.,http://www.nycgovparks.org/parks/B149A/,park +2606,Siedenburg Park,40.55774428094,-74.14344557288587,10308,"Greaves Ave., Dewey Ave. and Evergreen St.",http://www.nycgovparks.org/parks/R121/,park +2607,Hutton Triangle,40.85220651379,-73.89008304568574,10457,E. 182 St. at Quarry Rd. and Arthur Ave.,http://www.nycgovparks.org/parks/X069/,park +2608,Lot,40.70028973896,-73.98966309745681,11201,"Adam St., Cadman Plaza East bet. Prospect St. and Red Cross Pl.",http://www.nycgovparks.org/parks/B113D/,park +2609,New Dorp Park,40.56943233466,-74.11814392710342,10306,"8 St., bet. Allison Ave. and Beach Ave.",http://www.nycgovparks.org/parks/R107/,park +2610,Decatur Playground,40.68122671769,-73.93612549033715,11233,"Decatur St., Macdonough St. bet. Lewis Ave. and Marcus Garvey Blvd.",http://www.nycgovparks.org/parks/B215/,park +2611,Gravesend Triangle,40.59513685085,-73.96929270370008,11223,"Gravesend Neck Rd., E. 2 St., Ave. V",http://www.nycgovparks.org/parks/B213/,park +2612,North Shore Esplanade,40.64693816076,-74.08901242966652,10301,Richmond Ter. to Bank St. at Jersey St.,http://www.nycgovparks.org/parks/R083/,park +2613,Harmony Triangle,40.70338691773,-73.95039079809928,11206,"Middleton St., Harrison Ave., Union Ave.",http://www.nycgovparks.org/parks/B194/,park +2614,Sixteen Lindens Triangle,40.58455382562,-73.95264083168026,11235,"E. 16 St., Shore Pkwy., Bay Ct.",http://www.nycgovparks.org/parks/B166E/,park +2615,Annadale Green,40.54165463938,-74.17754923637835,10312,"Annadale Rd., Jefferson Blvd., N. Railroad St.",http://www.nycgovparks.org/parks/R080/,park +2616,Zion Triangle,40.66866387643,-73.91838568724249,11212,"Pitkin Ave., E. New York Ave. bet. Crafton St. and Legon St.",http://www.nycgovparks.org/parks/B116/,park +2617,Cohn Triangle,40.70742374152,-73.96454467846301,11211,Bedford Ave. at Division Ave.,http://www.nycgovparks.org/parks/B115/,park +2618,Bradys Pond Park,40.60412847635,-74.07791983658133,10305,"SI Expressway, Hylan Blvd., Narrows Rd. S.",http://www.nycgovparks.org/parks/R075G/,park +2619,Von Briesen Park,40.60787505046,-74.05679295042127,10305,"Tompkins Ave., Bay St. bet. School Rd., North Rd.",http://www.nycgovparks.org/parks/R059/,park +2620,Liotti Ikefugi Playground,40.63860535599,-74.08391388491677,10301,"Winter Ave., bet. Bismark Ave. and Westervelt Ave.",http://www.nycgovparks.org/parks/R037/,park +2621,Bobbie Lewis Jr. Playground,40.63669457748,-74.16025193367476,10303,Harbor Rd. at Richmond Terr.,http://www.nycgovparks.org/parks/R036/,park +2622,Memorial Gore,40.71480680679,-73.94226119795081,11211,"Metropolitan Ave., Maspeth Ave., bet. Humbolt St. and Bushwick Ave.",http://www.nycgovparks.org/parks/B062/,park +2623,Ciccarone Park,40.8560640561,-73.88624423732497,10458,E 188 St bet. Arthur Av and Hughes Av,http://www.nycgovparks.org/parks/X102/,park +2624,Murphy Triangle,40.85108692291,-73.89349875550805,10457,E. 181 St. at Third Ave. and Quarry Rd.,http://www.nycgovparks.org/parks/X036/,park +2625,Chief Dennis L. Devlin Park,40.83215036213,-73.85437304470948,10462,"Olmstead Av, Ellis Av, N/B Cross Bronx Exwy Service Rd",http://www.nycgovparks.org/parks/X148M/,park +2626,John E. White Park,40.6071995549,-74.06327332141916,10305,"High St., Lyman Ave., Bay St. and Summer St.",http://www.nycgovparks.org/parks/R012/,park +2627,Hero Park,40.63030556437,-74.08694360178286,10301,"Victory Blvd., Louis St., Howard Ave.",http://www.nycgovparks.org/parks/R011/,park +2628,Planeview Park,40.76707424544,-73.88472344576967,10021,23 Ave. bet. 85 St. and Ditmars Blvd.,http://www.nycgovparks.org/parks/Q393I/,park +2629,Pugsley Creek Park,40.81615351856,-73.8516848947621,10473,"White Plains Rd, Lacombe & Soundview Aves, Pugsley Creek",http://www.nycgovparks.org/parks/X088/,park +2630,Brooklyn Museum,40.67187988961,-73.96451485138267,11238,Eastern Pkwy. at Washington Ave.,http://www.nycgovparks.org/parks/B048/,park +2631,John Paul Jones Park,40.61181455603,-74.03430375819211,11209,"101 St., Shore Pkwy. bet. 4 Ave. and Ft. Hamilton Pkwy.",http://www.nycgovparks.org/parks/B035/,park +2632,Edgemere Urban Renewal Park,40.59468753015,-73.77653112491065,11691,Beach Channel Dr. bet. Beach 46 St. and Beach 45 St.,http://www.nycgovparks.org/parks/Q484/,park +2633,Leonard Square,40.76407499649,-73.80954401692945,11354,"Northern Blvd., Roosevelt Ave. bet. 155 St. and 156 St.",http://www.nycgovparks.org/parks/Q214/,park +2634,Richmond Terrace Park,40.63932354665,-74.15291632841455,10303,Richmond Ter. bet. Van Pelt Ave. and Van Name Ave.,http://www.nycgovparks.org/parks/R167/,park +2635,Westwood Park,40.60563524047,-74.14285371089184,10314,"SI Expressway, Woodward Ave., Wooley Ave. and Westwood Ave.",http://www.nycgovparks.org/parks/R075B/,park +2636,Keltch Park,40.84038831454,-73.91775629334222,10452,Jerome Av bet. Macombs Rd and Elliot Pl,http://www.nycgovparks.org/parks/X058/,park +2637,North Shore Esplanade,40.64688214735,-74.07921196252838,10301,Richmond Terr. from St Peter's Pl. to Stuyvesant Pl.,http://www.nycgovparks.org/parks/R066/,park +2638,Veterans Triangle,40.65691905912,-73.90371887405493,11212,"Hegeman Ave., New Lots Ave. bet. Watkins St. and Mother Gaston Blvd.",http://www.nycgovparks.org/parks/B027/,park +2639,Cuyler Gore Park,40.6859597297,-73.97153804240897,11238,"Carlton Ave., Fulton St., Green Ave.",http://www.nycgovparks.org/parks/B026/,park +2640,William Simmons Community Garden Club,40.70173682842,-73.78272509216917,11433,173 St. bet. 106 Ave. and 107 Ave.,http://www.nycgovparks.org/parks/Q121A/,park +2641,Johnny Hartman Square,40.82406373902,-73.94865741277704,10031,"Amsterdam Av, W 143 St and Hamilton Pl",http://www.nycgovparks.org/parks/M040/,park +2642,La Perla Garden,40.79808703869,-73.96324214187145,10025,W. 105 St. bet. Columbus Ave. and Manhattan Ave.,http://www.nycgovparks.org/parks/M373/,park +2643,Dias Y Flores,40.72918418956,-73.9797664556247,10009,E. 13 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M337/,park +2644,Bradhurst Ave Garden,40.82754905791,-73.93920001356994,10039,Bradhurst Ave. and W. 152 St.,http://www.nycgovparks.org/parks/M333/,park +2645,Harris Garden,40.82988751339,-73.94194196115289,10032,W. 153 St. and St Nicholas Ave.,http://www.nycgovparks.org/parks/M322/,park +2646,Fort Hill Park,40.64079988036,-74.08140685797821,10301,Sherman Ave. bet. Fort Pl. and Hendricks Ave.,http://www.nycgovparks.org/parks/R158/,park +2647,Laredo Avenue Parcel,40.54900442798,-74.17349351132376,10312,"Annadale Rd. bet. Laredo Ave. and Lamoka Ave., Memphis Ave.",http://www.nycgovparks.org/parks/R161/,park +2648,Olmsted-Beil House Park,40.53167426421,-74.15777288781393,10312,Orchard La. S. bet. King St. and Hylan Blvd.,http://www.nycgovparks.org/parks/R162/,park +2649,Schneider Sampson Square,40.83623968406,-73.82566950303566,10461,Baisley Ave. bet. Hollywood Ave. and Bruckner Blvd.,http://www.nycgovparks.org/parks/X049/,park +2650,Edgecombe Park,40.82654626189,-73.94187403533974,10031,Edgecombe Ave. and W. 150 St.,http://www.nycgovparks.org/parks/M319B/,park +2651,The Creative Little Garden,40.7245169645,-73.98263473606178,10009,"E. 6 St., bet. Ave. A and Ave. B",http://www.nycgovparks.org/parks/M315/,park +2652,5th St Slope Garden,40.72372542312,-73.98077545284994,10009,E. 5 St. at Ave. C,http://www.nycgovparks.org/parks/M313A/,park +2653,6BC Botanical Garden,40.72391227886,-73.9804655535945,10009,"E. 5 St. and E. 6 St., Ave. B and Ave. C",http://www.nycgovparks.org/parks/M313/,park +2654,Green Oasis and Gilbert's Garden,40.72400364666,-73.97698288808616,10009,E. 8 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M311/,park +2655,Firemen's Memorial Garden,40.72433152752,-73.97776205372425,10009,E. 8 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M310/,park +2656,Margrichante Garden,40.81357871395,-73.9434157261838,10030,W. 133 St. bet. Lenox Ave. and Adam C Powell Blvd.,http://www.nycgovparks.org/parks/M297A/,park +2657,East River Esplanade,40.74669767209,-73.9688026206353,10016,FDR Dr. bet. E. 36 St. and E. 41 St.,http://www.nycgovparks.org/parks/M289/,park +2658,Sheridan Square Viewing Garden,40.7329662078,-74.00192654219055,10014,"Washington Pl., W. 4 St., Barrow St.",http://www.nycgovparks.org/parks/M287/,park +2659,Clinton Community Garden,40.76275832903,-73.99205855629361,10036,"W. 47 St., W. 48 St., 9 Ave., 10 Ave.",http://www.nycgovparks.org/parks/M281/,park +2660,Tramway Plaza,40.7607049914,-73.96443525493703,10022,Second Ave. bet. E. 59 St. to E. 60 St.,http://www.nycgovparks.org/parks/M280/,park +2661,Duarte Square,40.72210890708,-74.0055067518635,10013,"Ave. Of Americas, Canal St. and Grand St.",http://www.nycgovparks.org/parks/M279/,park +2662,Thomas J. Cuite Park,40.65426367445,-73.97846772524686,11218,19 St. bet. 11 Ave. and Seeley St.,http://www.nycgovparks.org/parks/B255H/,park +2663,Seeley Park,40.65342464182,-73.97774350618626,11218,S/B Prospect Exwy. bet. Seeley St. and Vanderbilt St.,http://www.nycgovparks.org/parks/B255J/,park +2664,97th Street Block Association,40.75620091065,-73.87126192104036,11368,97 St. bet. Northern Blvd. and 34 Ave.,http://www.nycgovparks.org/parks/Q495/,park +2665,Carlos R. Lillo Park,40.77056367328,-73.89338129903841,11370,"21 Ave., 20 Ave., bet. 76 St. and 77 St.",http://www.nycgovparks.org/parks/Q491/,park +2666,Locust Manor Civic Association,40.6835520048,-73.77361044340488,11434,"120 Ave., Victoria Dr. bet. 171 St. and 171 St.",http://www.nycgovparks.org/parks/Q490/,park +2667,George Eagle Carr Community Garden,40.70369716598,-73.80684379147954,11435,148 St. bet. 89 Ave. and 90 Ave.,http://www.nycgovparks.org/parks/Q488/,park +2668,Block Association #81,40.69081387844,-73.80368540246127,11435,Inwood St. bet. Shore Ave. and Lakewood Ave.,http://www.nycgovparks.org/parks/Q487/,park +2669,Corona Health Sanctuary,40.74388692642,-73.85822959385838,11368,"Corona Ave. bet. 104 St. and 106 St., 50 Av.",http://www.nycgovparks.org/parks/Q483/,park +2670,Manuel De Dios Unanue Triangle,40.74766640756,-73.88270284965012,11373,"Roosevelt Ave., 83 St., Baxter Ave.",http://www.nycgovparks.org/parks/Q462/,park +2671,Kimlau Square,40.71325478355,-73.99803558081696,10038,"Chatham Sq., Oliver St. and E. Broadway",http://www.nycgovparks.org/parks/M246/,park +2672,Clark Playground,40.81338504348,-73.92103020994116,10454,"3 Ave. bet. E, 145 St. and E. 144 St.",http://www.nycgovparks.org/parks/X200/,park +2673,Anchorage Plaza,40.70143730614,-73.98979119127117,11201,"Fulton St., York St., Washington St. and Prospect St.; Brooklyn Bridge",http://www.nycgovparks.org/parks/B223I/,park +2674,Samuel H. Young Park,40.84143531302,-73.83858247623101,10461,Westchester Ave. bet. Waters Ave. and E. Tremont Ave.,http://www.nycgovparks.org/parks/X101A/,park +2675,LaGuardia Landing Lights,40.76569365693,-73.88751791493587,11370,Astoria Blvd. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/Q393F/,park +2676,Ditmars Playground,40.77190779694,-73.90652123357675,11105,Steinway St. bet. 23 Ave. and Ditmars Blvd.,http://www.nycgovparks.org/parks/Q385/,park +2677,Freedom Square Playground,40.72294653442,-73.82002243372929,11367,"Vleigh Pl., Main St. bet. 73 Ter. and 76 Ave.",http://www.nycgovparks.org/parks/Q370/,park +2678,Barrier Playground,40.73633998435,-73.85406291417208,11375,"Horace Harding Exwy. Sr. Rd. S., 62 Ave. bet. 102 St. and Yellowstone Blvd.",http://www.nycgovparks.org/parks/Q357B01/,park +2679,Strippoli Square,40.75708917875,-73.90748556731788,11377,"31 Ave., 51 St., 54 St.",http://www.nycgovparks.org/parks/Q355/,park +2680,Redfern Playground,40.61118451042,-73.7487021771888,11691,"Beach 12 St., Redfern Ave.",http://www.nycgovparks.org/parks/Q345/,park +2681,Crosson Park,40.74284649598,-73.89579162165538,11377,"Woodside Ave., 69 St., the BQE",http://www.nycgovparks.org/parks/Q341F/,park +2682,Sherry Dog Run,40.74114745457,-73.89895098255093,11377,Queens Blvd. bet. 65 Pl. and the BQE,http://www.nycgovparks.org/parks/Q341C/,park +2683,Maurice A FitzGerald Playground,40.69025646677,-73.83911008399201,11416,106 St. bet. Atlantic Ave. and 94 Ave.,http://www.nycgovparks.org/parks/Q337/,park +2684,Judge Moses Weinstein Playground,40.7174843374,-73.82144926696974,11367,"Union Turnpike, Vleigh Pl., 141 St.",http://www.nycgovparks.org/parks/Q336/,park +2685,Gladys Warren Triangle,40.70740390906,-73.76415523695596,11412,"Hollis Ave., 104 Ave., 194 St.",http://www.nycgovparks.org/parks/Q325/,park +2686,Ehrenreich-Austin Playground,40.7150872966,-73.8361202683802,11375,Austin St. bet. 76 Ave. and 76 Dr.,http://www.nycgovparks.org/parks/Q304/,park +2687,Lt. Frank McConnell Park,40.69403411998,-73.82697299551421,11419,"94 Ave., Atlantic Ave. bet. Leffers Blvd. and 120 St.",http://www.nycgovparks.org/parks/Q217/,park +2688,Patricia A. Brackley Park,40.58125567462,-73.84586790695418,11694,"Beach Channel Dr., Cronston Ave., Beach 124 St.",http://www.nycgovparks.org/parks/Q275/,park +2689,Fresh Meadows Park,40.74069383131,-73.78458815683106,11365,Horace Harding Exwy. Sr. Rd. S. bet. 188 St. and 190 St.,http://www.nycgovparks.org/parks/Q223/,park +2690,Hoover - Manton Playgrounds,40.7124164135,-73.8226115068259,11435,"Manton St. bet. 83 Ave., 134 St. and Main St.",http://www.nycgovparks.org/parks/Q220G/,park +2691,Maple Grove Park,40.71163830369,-73.82356817380042,11415,Hoover Ave. bet. Queens Blvd. and 132 St.,http://www.nycgovparks.org/parks/Q220F/,park +2692,Playground One Forty,40.67588444978,-73.80158258970917,11436,"Van Wyck Exwy. Sr. Rd. E., 140 St. bet. 120 Ave. and Rockaway Blvd.",http://www.nycgovparks.org/parks/Q220E/,park +2693,Dr. Charles R. Drew Park,40.68017001748,-73.8018725240209,11436,"Van Wyck Exwy. Sr. Rd. E., 140 St. bet. 115 Ave. and 116 Ave.",http://www.nycgovparks.org/parks/Q220C/,park +2694,Lawrence Triangle,40.75605171401,-73.81569375848434,11355,"Parsons Blvd., 147 St. bet. Elm Ave. and 45 Ave.",http://www.nycgovparks.org/parks/Q209/,park +2695,Jackson Mill Green,40.76617992201,-73.87562696383199,11369,"94 St., Jackson Mill Rd. bet. 23 Ave. and 24 Ave.",http://www.nycgovparks.org/parks/Q186/,park +2696,Grand Canal Court,40.72236375079,-74.00485666946543,10013,"Thompson St., Canal St., Ave. of the Americas",http://www.nycgovparks.org/parks/M222/,park +2697,George Washington Carver Botanical Garden,40.69251673437,-73.79439428703527,11433,156 St. bet. 109 Ave. and 110 Ave.,http://www.nycgovparks.org/parks/Q489/,park +2698,Myrtle Avenue Clemens Triangle,40.70015098122,-73.90671445236775,11385,"Myrtle Ave., Cypress Ave., Putnam Ave.",http://www.nycgovparks.org/parks/Q124/,park +2699,One Room Schoolhouse Park,40.76310986966,-73.87953588633374,11369,Astoria Blvd. bet. 90 St. and 89 St.,http://www.nycgovparks.org/parks/Q116/,park +2700,Flushing Greens,40.7634381672,-73.82979219391672,11354,Northern Blvd Bet. Linden Pl. and Union St.,http://www.nycgovparks.org/parks/Q100/,park +2701,Notorious LIC Park,40.74174182262,-73.95139649191465,11101,50 Ave. bet. 11 St. and 11 Pl.,http://www.nycgovparks.org/parks/Q360U/,park +2702,Gemini Fields,40.67049381576,-73.84954704782143,11414,"S. Conduit Ave., Linden Blvd., 149 Ave., bet. 79 St. and 85 St.",http://www.nycgovparks.org/parks/Q094D/,park +2703,Veterans Plaza,40.75870545123,-73.87465994738922,11369,"Jackson Mill Rd., 32 Ave. bet. 93 St. and 94 St.",http://www.nycgovparks.org/parks/Q080/,park +2704,Short Triangle,40.74609783391,-73.9453269448861,11101,"Jackson Ave., 45 Rd., 23 St.",http://www.nycgovparks.org/parks/Q072/,park +2705,Triangle 90,40.74828456468,-73.87643341122411,11373,"Elmhurst Ave., Roosevelt Ave., 90 St., Case St.",http://www.nycgovparks.org/parks/Q068/,park +2706,Chappetto Square,40.77487724673,-73.92192580261036,11102,Hoyt Ave. bet. 21 St. and 23 St.,http://www.nycgovparks.org/parks/Q066H/,park +2707,Sitting Area,40.7756080534,-73.92296655250053,11102,Hoyt Ave. bet. 19 St. and 21 St.,http://www.nycgovparks.org/parks/Q066G/,park +2708,Hoyt Playground,40.77164916253,-73.91639421872728,11102,Hoyt Ave. North bet. 29 St. and 31 St.,http://www.nycgovparks.org/parks/Q066F/,park +2709,Triborough Bridge Playground E,40.77291990289,-73.92048217790372,11102,"Hoyt Ave., bet. Crescent St. and 26 St.",http://www.nycgovparks.org/parks/Q066E/,park +2710,Triborough Bridge Playground C,40.77401856926,-73.92203078403303,11102,Hoyt Ave. bet. 23 St. and 24 St.,http://www.nycgovparks.org/parks/Q066C/,park +2711,Studley Triangle,40.76233553387,-73.80384370023768,11358,"162 St., Northern Blvd., Crocheron Ave.,",http://www.nycgovparks.org/parks/Q213/,park +2712,Rainey Park,40.76750232546,-73.94052498544892,11106,Vernon Blvd. bet. 33 Rd. and 34 Ave.,http://www.nycgovparks.org/parks/Q048/,park +2713,Proctor-Hopson Circle,40.69778693452,-73.78617328376548,11433,"Merrick Blvd., 169 Pl., 108 Rd.",http://www.nycgovparks.org/parks/Q043/,park +2714,Wegener Park,40.55188875193,-74.17552907030266,10312,"Drumgoole Rd. E., Annadale Rd., Genesee Ave.",http://www.nycgovparks.org/parks/R101/,park +2715,Ocean Breeze Park,40.57954208877,-74.07780510132841,10305,"Quintard St. and Mason Ave, Seaside Blvd., (Father Capodanno Blvd.)",http://www.nycgovparks.org/parks/R149/,park +2716,Blake Hobbs Playground,40.7892644795,-73.94364304666648,10029,E. 102 St. To E. 104 St. and 2 Ave.,http://www.nycgovparks.org/parks/M214/,park +2717,Beach Channel Park,40.58267325542,-73.8391326129929,11694,Beach Channel Dr. bet. B. 117 St. and B. 124 St.,http://www.nycgovparks.org/parks/Q028/,park +2718,Nautilus Playground,40.57161058975,-73.99511484462207,11224,"Public Beach, W. 29 St. and W. 32 St.",http://www.nycgovparks.org/parks/B268/,park +2719,John V. Lindsay East River Park,40.71055222263,-73.98037777399468,10002,"Montgomery St. To E. 12 St., FDR Drive",http://www.nycgovparks.org/parks/M144/,park +2720,Bill Bojangles Robinson Playground,40.82535683101,-73.93708260848376,10039,"W. 150 St., W/s 7 Ave.",http://www.nycgovparks.org/parks/M138/,park +2721,David J O'Connell Square,40.67664238384,-73.82052879394212,11420,"Rockaway Blvd., 115 Ave. bet. 117 St. and 118 St.",http://www.nycgovparks.org/parks/Q203/,park +2722,Harlem River Park,40.80352366731,-73.93085595061291,10035,E. 127 St. and Harlem River Drive,http://www.nycgovparks.org/parks/M208G/,park +2723,Harlem River Park,40.80384752985,-73.93127291047392,10035,"E. 127 St., 2 Ave., and Harlem River Drive",http://www.nycgovparks.org/parks/M208F/,park +2724,Crack Is Wack Playground,40.80491104723,-73.9319261246103,10035,"E. 127 St., 2 Ave., and Harlem River Drive",http://www.nycgovparks.org/parks/M208E/,park +2725,Martin Luther King Triangle,40.81094598295,-73.9029487010649,10455,Austin Pl. at E. 149 St.,http://www.nycgovparks.org/parks/X063/,park +2726,Ryan Triangle,40.81552347556,-73.92453850603883,10451,"E. 144 St., E. 143 St., Morris Ave.",http://www.nycgovparks.org/parks/X043/,park +2727,Wald Playground,40.71940900765,-73.9767598668579,10009,E. Houston St. and FDR Dr.,http://www.nycgovparks.org/parks/M201/,park +2728,Abraham Lincoln Playground,40.81184552631,-73.93682693707335,10037,5 Ave. and E. 135 St.,http://www.nycgovparks.org/parks/M193/,park +2729,Police Officer Edward Byrne Park,40.6671762521,-73.80549146937769,11420,"N. Conduit Ave., 135 Ave. bet. 130 Pl. and 134 St.",http://www.nycgovparks.org/parks/Q092/,park +2730,Washington Square Park,40.72966821434,-73.99660685351029,10011,"5 Ave, Waverly Pl., W. 4 St. and Macdougal St.",http://www.nycgovparks.org/parks/M098/,park +2731,Allison Pond Park,40.63827197904,-74.10187657079348,10301,"Prospect Ave., N Randall Ave. and Brentwood Ave.",http://www.nycgovparks.org/parks/R052/,park +2732,Lt. Wm. Tighe Triangle,40.86568705246,-73.92774226568335,10034,"Riverside Dr., Dyckman St. and Seaman Ave.",http://www.nycgovparks.org/parks/M180/,park +2733,City Island Wetlands,40.84752306408,-73.79154584261555,10464,"Bay St, Tier St, Echester Bay",http://www.nycgovparks.org/parks/X279/,park +2734,Major General John R Brown Triangle,40.8694892827,-73.90436610153623,10463,W. Kingsbridge Rd. and Sedgwick Ave.,http://www.nycgovparks.org/parks/X079/,park +2735,Cherry Clinton Playground,40.71112717378,-73.98655499326335,10002,Corner of Cherry St. and Clinton St.,http://www.nycgovparks.org/parks/M171/,park +2736,Fred Samuel Playground,40.81729786641,-73.93881087687468,10030,"Lenox Ave., W. 139 St. To W. 140 St.",http://www.nycgovparks.org/parks/M160/,park +2737,Hot Spot Tot Lot,40.63068157909,-73.9567450925584,11210,Campus Rd. bet. E. 21 St. and Ocean Ave.,http://www.nycgovparks.org/parks/B212/,park +2738,Heckscher Playground,40.69537230166,-73.91761203826853,11221,Linden St. bet. Central Ave. and Wilson Ave.,http://www.nycgovparks.org/parks/B139/,park +2739,Clumber Corner,40.70140111396,-73.98958343495762,11201,"BQE, Prospect St. bet. Washington St. and Adams St.",http://www.nycgovparks.org/parks/B223IA/,park +2740,Vernam Barbadoes Peninsula,40.59226697736,-73.80399504512003,11692,"Amstel Blvd., Jamaica Bay",http://www.nycgovparks.org/parks/Q472/,park +2741,Brooklyn Heights Promenade,40.69554257163,-73.99807135309169,11201,BQE bet. Remsen St. and Montague St.,http://www.nycgovparks.org/parks/B233DD/,park +2742,Mt. Carmel Triangle,40.7158919458,-73.95183615887888,11211,"Union Ave., Meeker Ave., Jackson St.",http://www.nycgovparks.org/parks/B226/,park +2743,Forest Mall,40.6307630621,-74.09055170652667,10301,Forest Ave. bet. Haven Esplanade and Duer La.,http://www.nycgovparks.org/parks/R021/,park +2744,Avenue R Mall,40.60495375985,-73.96524813808884,11223,Ave. R from E. 7 St. To Coney Island Ave.,http://www.nycgovparks.org/parks/B184/,park +2745,Arbor Place,40.69602817787,-73.98043580838919,11201,"Tillary St., Park Ave., Navy St.",http://www.nycgovparks.org/parks/B223MA/,park +2746,Catholic War Veterans Square,40.67588080814,-73.81617350716965,11420,"Rockaway Blvd. 116 Ave., 122 St.",http://www.nycgovparks.org/parks/Q148/,park +2747,Pvt. Sonsire Triangle,40.71828618172,-73.95241848162225,11211,"Union Ave., N. 11 St. and Roebling St.",http://www.nycgovparks.org/parks/B196/,park +2748,Badame Sessa Triangle,40.71715135024,-73.94825476732194,11211,"Leonard St., Withers St., Meeker Ave.",http://www.nycgovparks.org/parks/B223V/,park +2749,Taylor-Soundview Block Assoc. Garden,40.81710361026,-73.86141310757226,10473,Randal Ave. bet. Soundview Ave. and Thieriot Ave.,http://www.nycgovparks.org/parks/X325/,park +2750,Miracle Garden,40.84268088206,-73.88749752664867,10460,Marmion Av bet. Fairmount Pl and Elsmere Pl,http://www.nycgovparks.org/parks/X329/,park +2751,Claremont Park,40.83722932758,-73.90826820373813,10457,"Clay Ave., Anthony Ave. bet. Mount Eden Pkwy. and E. 170 St",http://www.nycgovparks.org/parks/X008/,park +2752,Vietnam Veterans Plaza,40.70216497414,-74.00998903119358,10004,N/S South St bet. Broad St and Old Slip,http://www.nycgovparks.org/parks/M046/,park +2753,James Forten Playground,40.67648312083,-73.9654948142079,11238,Underhill Ave. bet. Prospect Pl. and Park Pl.,http://www.nycgovparks.org/parks/B161/,park +2754,Sixteen Oaks Grove,40.7582180783,-73.93853846452424,11101,"37 Ave., 14 St., 21 St.",http://www.nycgovparks.org/parks/Q284/,park +2755,American Triangle,40.7483089603,-73.8633642537271,11368,"41 Av, 102 St, National Av",http://www.nycgovparks.org/parks/Q173/,park +2756,MacDonald Park,40.7216936272,-73.84528369921858,11375,Queens Blvd. bet. Yellowstone Blvd. and 70 Rd.,http://www.nycgovparks.org/parks/Q207/,park +2757,Colonel David Marcus Playground,40.60937433005,-73.96917560100601,11230,Ave. P bet. E. 4 St. and Ocean Pkwy.,http://www.nycgovparks.org/parks/B128/,park +2758,Amundsen Circle,40.56433545065,-74.13092210196606,10306,"Amboy Rd., Clarke Ave., and Savoy St.",http://www.nycgovparks.org/parks/R009/,park +2759,Abe Lebewohl Triangle,40.73005920292,-73.98785628567128,10003,E. 10 St. and Stuyvesant Pl.,http://www.nycgovparks.org/parks/M188A/,park +2760,Vidalia Park,40.84386799816,-73.88061462489688,10460,E. 180 St. bet. Daly Ave. and Vyse Ave.,http://www.nycgovparks.org/parks/X266/,park +2761,Mosaic Success Garden,40.84025023969,-73.92537678297309,10452,Ogden Av bet. W 169 St and W 170 St,http://www.nycgovparks.org/parks/X275/,park +2762,Merriam Playground,40.8403991689,-73.92643967756395,10452,W. 168 St. bet. Dr. MLK Jr. Blvd. and Merriam Ave.,http://www.nycgovparks.org/parks/X153/,park +2763,McLaughlin Park,40.69672526852,-73.98514060716049,11201,"Jay St., Bridge St. bet. Tillary St. and Cathedral Pl.",http://www.nycgovparks.org/parks/B061/,park +2764,Kelly Park Playground,40.60362571763,-73.95692550408418,11229,Ave. S bet. E. 14 St. and E. 15 St.,http://www.nycgovparks.org/parks/B051/,park +2765,Brower Park,40.67471537488,-73.9429028809978,11213,"St. Mark's Ave., Park Pl. bet. Brooklyn Ave. and Kingston Ave.",http://www.nycgovparks.org/parks/B012/,park +2766,Betsy Head Park,40.6622214108,-73.91189056137189,11212,"Livonia,Dumont,Hopkinson,Blake Aves, Strauss St",http://www.nycgovparks.org/parks/B008/,park +2767,Kelly Park Playground,40.60491330351,-73.95671380774951,11229,"Ave. S, Moore Pl. bet. E. 16 St. and E. 17 St.",http://www.nycgovparks.org/parks/B157/,park +2768,Astoria Health Playground,40.76795838129,-73.93241824208202,11106,14 St. bet. 31 Ave. and 31 Dr.,http://www.nycgovparks.org/parks/Q123/,park +2769,Veterans Grove,40.74295556376,-73.87763050790115,11373,"Whitney Ave., 43 Ave., bet. Judge St. and Ketcham St.",http://www.nycgovparks.org/parks/Q013/,park +2770,Spuyten Duyvil Shorefront Park,40.8789441761,-73.9210386034602,10463,"Palisade Av, Johnson Av, Edsall Ave",http://www.nycgovparks.org/parks/X090/,park +2771,Cooper Triangle,40.728476397,-73.99089146557496,10003,"3 Av To 4 Av, E 6 St To E 7 St",http://www.nycgovparks.org/parks/M016/,park +2772,El Batey Borincano Garden,40.82064732335,-73.90953685282669,10456,Eagle Av bet. E 158 St and E 159 St,http://www.nycgovparks.org/parks/X313/,park +2773,Dunbar Playground,40.82325372408,-73.9059191265952,10456,"E 161 St, Trinity Av, E 163 St, Cauldwel",http://www.nycgovparks.org/parks/X185/,park +2774,Fordham Landing Playground,40.86354167789,-73.90973408946118,10468,"Landing Rd., Major Deegan Exwy., Bailey",http://www.nycgovparks.org/parks/X150E/,park +2775,Morris Mesa,40.84539041578,-73.90946965429053,10457,N/s Cross Bronx Exwy bet. Morris Av and Grand Concourse,http://www.nycgovparks.org/parks/X148D1/,park +2776,I-Am-Park,40.81146245301,-73.90982839101922,10455,Jackson Av bet. E 147 St and E 145 St,http://www.nycgovparks.org/parks/X228/,park +2777,Stockton Playground,40.69763239571,-73.94844467761502,11206,"Park Ave., Martin Luther King Pl., Marcy Ave.",http://www.nycgovparks.org/parks/B298/,park +2778,Corlears Hook Park,40.71108804282,-73.98030413929077,10002,"Jackson St, Cherry St, FDR Drive",http://www.nycgovparks.org/parks/M017/,park +2779,Givan Square,40.86761829624,-73.84300675794019,10469,E. Gunhill Rd. and Eastchester Rd. bet. Arnow Ave. and Adee Ave..,http://www.nycgovparks.org/parks/X187/,park +2780,Fidler-Wyckoff House Park,40.64396895337,-73.92097520289201,11203,"E. 59 St.,Ditmas Ave., Clarendon Rd., Ralph Ave.",http://www.nycgovparks.org/parks/B376/,park +2781,Richman (Echo) Park,40.85000382919,-73.90091895909708,10457,Valentine Av bet. E Tremont Av and E Burnside Ave,http://www.nycgovparks.org/parks/X017/,park +2782,Inwood Park,40.84485802998,-73.91501374144904,10452,W Mount Eden Av bet. Inwood and Jerome Av,http://www.nycgovparks.org/parks/X148C3/,park +2783,Plimpton Playground,40.84433179817,-73.92195465030149,10452,Plimpton Ave. bet. W. 172 St. and Edward L Grant Hwy.,http://www.nycgovparks.org/parks/X148A2/,park +2784,Featherbed Triangle,40.84653454501,-73.92075565632062,10453,Dr. MLK Jr. Blvd and Featherbed La.,http://www.nycgovparks.org/parks/X077/,park +2785,Clintonville Playground,40.78318743933,-73.80749720834113,11357,Clintonville St. bet. 17 Ave. and 17 Rd.,http://www.nycgovparks.org/parks/Q390/,park +2786,Harold Schneiderman Playground,40.66471345573,-73.85008171907853,11414,155 Ave. bet. 83 St. and 84 St.,http://www.nycgovparks.org/parks/Q408/,park +2787,University Malls,40.84835935605,-73.91832844898371,10453,University Av bet. W 174 St and W Tremont Av,http://www.nycgovparks.org/parks/X082/,park +2788,Underbridge Dog Run,40.73360194885,-73.84511898846291,11375,Grand Central Pkwy. Sr. Rd. W. bet. 64 Ave. and 64 Rd.,http://www.nycgovparks.org/parks/Q451/,park +2789,Bridge Park,40.70143550361,-73.98559911557679,11201,"Prospect St., York St. bet. Jay St. and Bridge St.",http://www.nycgovparks.org/parks/B223JB/,park +2790,225 Street Malls,40.67451835886,-73.7467664861949,11413,225 St. bet. 135 Ave. and 141 Ave.,http://www.nycgovparks.org/parks/Q283/,park +2791,Lewis H Latimer House,40.7661617326,-73.83000460700457,11354,137th St. and Leavitt St.,http://www.nycgovparks.org/parks/Q497/,park +2792,Bay Terrace Playground,40.78197357501,-73.77767041639785,11360,23 Ave. bet. 212 St. and Bell Blvd.,http://www.nycgovparks.org/parks/Q399/,park +2793,Beanstalk Playground,40.85357397894,-73.91670534798169,10453,Billingsley Ter bet. Phelan Pl and Sedwick Av,http://www.nycgovparks.org/parks/X283/,park +2794,Cedar Playground,40.85481428011,-73.91697310271871,10453,W 179 St bet. Cedar Av and Sedgwick Av,http://www.nycgovparks.org/parks/X111/,park +2795,Donnellan Square,40.82691909838,-73.94283754855454,10031,"St Nicholas Av, W 150 St To St Nicholas Av",http://www.nycgovparks.org/parks/M023/,park +2796,Mott Playground,40.83089220265,-73.91458888811981,10456,Morris Av bet. Mc Clellan St and E 166 St,http://www.nycgovparks.org/parks/X115/,park +2797,Martin Luther King Triangle,40.83819716279,-73.92331891257689,10452,Shakespeare Av at W 168 St and Wodycrest Av,http://www.nycgovparks.org/parks/X067/,park +2798,Joyce Kilmer Park,40.82717885077,-73.92296438335553,10451,Grand Concourse to Walton Av bet. E 161 St and E 164 St,http://www.nycgovparks.org/parks/X028/,park +2799,Montefiore Square,40.82122637435,-73.953952321884,10031,"Broadway, Hamilton Pl., W. 138 St.",http://www.nycgovparks.org/parks/M055/,park +2800,Prall Playground,40.62884539052,-74.1172168256577,10310,"Elizabeth St., Forest Ave., Broadway, Clove Lake Pl.",http://www.nycgovparks.org/parks/R105/,park +2801,Great Kills Park,40.56434413765,-74.0975552717075,10306,"Hylan Blvd., Old Mill Rd., Cedar Grove Ave. bet. Hopkins Ave. and New Dorp La.",http://www.nycgovparks.org/parks/R016/,park +2802,Palmer Inlet,40.84431023404,-73.81725095998262,10465,"bet. Outlook Ave and Library Ave., Griswold Ave. and Lucerne St.",http://www.nycgovparks.org/parks/X294/,park +2803,West Farms Soldiers Cemetery,40.84376663284,-73.87880008486053,10460,E. 180 St. bet. Vyse Ave. and Boston Rd.,http://www.nycgovparks.org/parks/X311/,park +2804,Admiral Farragut Playground,40.84342954995,-73.89199831529538,10457,S/S E 176 St bet. Crotona Av and Prospect Av,http://www.nycgovparks.org/parks/X148H/,park +2805,Harris Brothers Park,40.53297363576,-74.20159027370717,10309,"Foste Rd., Carlton Ave., Drumgoole Rd. W.",http://www.nycgovparks.org/parks/R053/,park +2806,Nathan Straus Playground,40.71941221294,-73.98384053517334,10002,Rivington St. and Attorney St. bet. Clinton St. and Ridge St.,http://www.nycgovparks.org/parks/M241/,park +2807,Bellaire Playground,40.72142334261,-73.75758753049627,11427,Hillside Ave. bet. 207 St. and 208 St.,http://www.nycgovparks.org/parks/Q322/,park +2808,Annadale Playground,40.73098861415,-73.85130987345896,11375,Yellowstone Blvd. bet. 64 Rd. and 65 Ave.,http://www.nycgovparks.org/parks/Q319/,park +2809,Nakks Malls,40.70849392663,-73.74135815925747,11429,110 Ave. bet. 213 St. and 217 St.,http://www.nycgovparks.org/parks/Q281/,park +2810,Andries Playground,40.62340014307,-73.94637406393018,11210,Nostrand Ave. between Ave. L and Ave. K,http://www.nycgovparks.org/parks/B287/,park +2811,Wood Park,40.83526042099,-73.86514430707692,10460,"Thieriot Av, Wood Av, N/B Cross Bronx Exwy Service Rd",http://www.nycgovparks.org/parks/X148K3/,park +2812,Havemeyer Playground,40.83008304197,-73.84759253643051,10462,"N/B Cross Bronx Exwy Service Rd, Watson Av, Havemeyer Ave",http://www.nycgovparks.org/parks/X148M1/,park +2813,Virginia Playground,40.83443550794,-73.861930260025,10462,McGraw Av bet. White Plains Rd and Virginia Av,http://www.nycgovparks.org/parks/X148L/,park +2814,Admiral Playground,40.77106299259,-73.7372493205531,11363,Little Neck Pkwy. bet. 42 Ave. and 43 Ave.,http://www.nycgovparks.org/parks/Q338/,park +2815,Beatty Plaza,40.83148953028,-73.90157502622878,10456,E. 169 St and Franklin Ave,http://www.nycgovparks.org/parks/X062/,park +2816,McKinley Square,40.8309896258,-73.90080882118195,10456,"E. 169 St., Boston Rd., Clinton Ave.",http://www.nycgovparks.org/parks/X031/,park +2817,Model T Senior Citizen's Garden,40.83093467746,-73.89365609249225,10459,Rev. James Polite Ave. bet. Bristow St. and Intervale Ave.,http://www.nycgovparks.org/parks/X342/,park +2818,Freeman Triangle,40.82934410012,-73.88782042303264,10459,"Freeman St, Longfellow Av, W Farms Rd",http://www.nycgovparks.org/parks/X134/,park +2819,Franklin Triangle,40.82715605029,-73.90723047893958,10456,3 Ave. at Franklin Ave.,http://www.nycgovparks.org/parks/X078/,park +2820,Franklin Memorial Garden,40.82623449265,-73.90505397494762,10456,Cauldwell Av bet. E 166 St and E 165 St,http://www.nycgovparks.org/parks/X318/,park +2821,Benjamin Gladstone Square,40.82524839248,-73.89108161224057,10459,"Hoe Ave., Westchster Ave., W. Farms Rd.",http://www.nycgovparks.org/parks/X022/,park +2822,Lyons Square Playground,40.82261165255,-73.88767965403368,10459,Aldus St to Bruckner Blvd bet. Bryant Av and Longfellow Av,http://www.nycgovparks.org/parks/X029/,park +2823,Bryant Triangle,40.82667385355,-73.888342708587,10459,"Bryant Ave., Westchester Ave., Longfellow Ave.",http://www.nycgovparks.org/parks/X064/,park +2824,Railroad Park,40.82520777883,-73.91487359497532,10451,Coutlandt Av bet. E 161 St and E 162 St,http://www.nycgovparks.org/parks/X032/,park +2825,Pontiac Playground,40.81453218126,-73.90808901928128,10455,Jackson Ave. bet. E. 151 St. and E. 149,http://www.nycgovparks.org/parks/X207/,park +2826,Bill Rainey Park,40.81887169354,-73.89623462374813,10459,Beck St bet. Interval Av and Longwood Av,http://www.nycgovparks.org/parks/X255/,park +2827,Dawson Playground,40.81957074901,-73.89799326873303,10459,Rogers Pl. at Dawson St.,http://www.nycgovparks.org/parks/X164/,park +2828,Schomberg Academy Garden,40.82332051379,-73.89910115669812,10459,Rev James Polite Av bet. E 164 St and E 165 St,http://www.nycgovparks.org/parks/X332/,park +2829,Colucci Playground,40.85434255339,-73.83397453352568,10461,Hutchinson River Pkwy. E. bet. Wilkinson Ave. and E. 197 St.,http://www.nycgovparks.org/parks/X122/,park +2830,Clearview Park,40.77768427367,-73.78505572091082,11360,Clearview Exwy. bet. 26 Ave. and 23 Ave.,http://www.nycgovparks.org/parks/Q387B/,park +2831,Skyline Playground,40.63923754089,-74.08921817939083,10301,Arnold St. to Prospect Ave. bet. Harvard Ave and Clyde Pl.,http://www.nycgovparks.org/parks/R123/,park +2832,Colgate Close,40.82480807645,-73.88162513303396,10472,N/B Bruckner Blvd bet. Colgate Ave. and Close Ave.,http://www.nycgovparks.org/parks/X195A/,park +2833,La Finca del Sur Community Garden,40.8127536104,-73.92991139574492,10451,E. 138 St. at Grand Concourse,http://www.nycgovparks.org/parks/X145/,park +2834,Grove Hill Playground,40.82006508732,-73.90830549202809,10455,E 158 st bet. Eagle Av and Caildwell Av,http://www.nycgovparks.org/parks/X235/,park +2835,Lozada Playground,40.80801552471,-73.92442434586505,10454,E 135 St bet. Alexander Av and Willis Av,http://www.nycgovparks.org/parks/X131/,park +2836,Sakura Park,40.81239369455,-73.96215820728446,10027,"Riverside Dr., Claremont Ave. To W. 122 St.",http://www.nycgovparks.org/parks/M087/,park +2837,Father Duffy Square,40.75882972887,-73.98509027731775,10036,"Broadway, W. 46 St. To W. 47 St., 7 Ave.",http://www.nycgovparks.org/parks/M093/,park +2838,Haven Avenue,40.84745053312,-73.94288174658638,10032,Riverside Dr. bet. W 176 St. and W 178 St.,http://www.nycgovparks.org/parks/M092A/,park +2839,Playground One Thirty Four CXXXIV,40.80246062214,-73.91676430531,10454,E. 133 St. and Bruckner Blvd. bet. St Ann's Pl. and Cypress Ave.,http://www.nycgovparks.org/parks/X138/,park +2840,Granja Farm OTF,40.81584660561,-73.91120276756345,10455,Westchester Av bet. St Ann's Av and Eagle Ave,http://www.nycgovparks.org/parks/X276/,park +2841,Evelina Antonetty Playground,40.81737974927,-73.92806879840799,10451,E 146 St bet. Walton Av and Grand Concourse,http://www.nycgovparks.org/parks/X106/,park +2842,Graham Triangle,40.81067298719,-73.92740449391798,10451,"Lincoln Av, Third Av, bet. E 137 St and E 138 St",http://www.nycgovparks.org/parks/X023/,park +2843,138th St. Community Garden,40.80538934245,-73.9152042383218,10454,E. 138 St. bet. Cypress Ave. and St Ann's Ave.,http://www.nycgovparks.org/parks/X277/,park +2844,Saw Mill Playground,40.80902538205,-73.91888645045692,10454,E. 139 St. bet. Brook Ave. and Willis Ave.,http://www.nycgovparks.org/parks/X238/,park +2845,Pulaski Park,40.80480308843,-73.92398827049517,10454,Bruckner Blvd. bet. Willis Ave. and Brown Pl.,http://www.nycgovparks.org/parks/X041/,park +2846,Williamsbridge Square,40.87746371229,-73.8663734574437,10467,White Plains Rd. bet. E. 212 St. and Magenta St.,http://www.nycgovparks.org/parks/X095/,park +2847,Givans Creek Woods,40.88131734275,-73.82843918961844,10475,New England Thruway bet. Co-op City Blvd. and Rombouts Ave,http://www.nycgovparks.org/parks/X268/,park +2848,Seton Falls Park,40.88875869583,-73.83650402909664,10466,E. 233 St. bet. Seton Ave. and Baychester Ave.,http://www.nycgovparks.org/parks/X046/,park +2849,Edenwald Playground,40.88537507708,-73.84383398063672,10466,Schieffelin Ave. bet. E. 266 Dr. and E. 229 St.,http://www.nycgovparks.org/parks/X165/,park +2850,Bicentennial Veterans Memorial Park,40.8239085114,-73.81337955821465,10465,Throgg's Neck Exwy at Pennyfield Ave. and Elisworth Ave.,http://www.nycgovparks.org/parks/X191A/,park +2851,Captain William Harry Thompson Playground,40.83443508719,-73.87722976016437,10472,E. 174 St. bet. Bronx River Ave. and E. 173 St.,http://www.nycgovparks.org/parks/X159/,park +2852,Sutton Place Park,40.75690506635,-73.95995782993347,10022,E. River bet. E. 56 St. and E. 57 St.,http://www.nycgovparks.org/parks/M108R/,park +2853,Bushman Steps,40.83222617107,-73.94028372866029,10032,"Edgecombe Ave., W. 157 St.",http://www.nycgovparks.org/parks/M127/,park +2854,Peretz Square,40.72273833277,-73.98739691311997,10003,"E. 1 St., E. Houston St., 1 Ave. and Allen St.",http://www.nycgovparks.org/parks/M123/,park +2855,Beach 59th St Playground,40.58891736763,-73.788719836308,11692,Rockaway Boardwalk bet. B. 60 St. and B. 59 St.,http://www.nycgovparks.org/parks/Q162E/,park +2856,Beach 30th Street Playground,40.59309939532,-73.76298443748682,11691,Rockaway Boardwalk bet. B. 32 St and B. 28 St.,http://www.nycgovparks.org/parks/Q162H/,park +2857,Dubos Point Wildlife Sanctuary,40.60042192513,-73.78842482253641,11692,"Decosta Ave, B 63 St, Bayfield Ave, Barbadoes Dr",http://www.nycgovparks.org/parks/Q459/,park +2858,Jerry and The Senior Gents,40.67228304378,-73.88824009681908,11207,Schenck Ave. between Belmont Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B478/,park +2859,Rockaway Beach and Boardwalk,40.59256149543,-73.75345339632301,11691,Rockaway Boardwalk bet. Crest Rd. and B. 17 St.,http://www.nycgovparks.org/parks/Q162I/,park +2860,Beach 9 Playground,40.59591223591,-73.74410140695663,11691,Seagirt Blvd bet. B. 12 St. and B. 9 St.,http://www.nycgovparks.org/parks/Q162J01/,park +2861,Brant Point Wildlife Sanctuary,40.59981097791,-73.80138728806727,11692,Beach 72 St. bet. Bayfields Ave. and Hillmeyer Ave.,http://www.nycgovparks.org/parks/Q464/,park +2862,Hamilton Fish Park,40.72006798974,-73.97977396106187,10002,"E Houston St, Stanton St, Sheriff St, Pitt St",http://www.nycgovparks.org/parks/M033/,park +2863,Luke J. Lang Square,40.71858302202,-73.90241204737778,11378,"Fresh Pond Rd., 59 Rd. and 61 St.",http://www.nycgovparks.org/parks/Q063/,park +2864,Peck Slip,40.70746262758,-74.00115016345597,10038,Peck Slip bet. South St. and Front St.,http://www.nycgovparks.org/parks/M167/,park +2865,Sergeant Collins Triangle,40.7516702261,-73.90283417331659,11377,"Broadway, 59 St., 34 Ave.",http://www.nycgovparks.org/parks/Q501/,park +2866,Sitting Area,40.72834665234,-73.88701305337115,11373,74 St. at 57 Ave.,http://www.nycgovparks.org/parks/Q360T/,park +2867,Quick Brown Fox Triangle,40.72758364334,-73.8886184234385,11378,"73 St., 57 Rd., Queens - Mid-Town Exwy. Sr. Rd. N.",http://www.nycgovparks.org/parks/Q360S/,park +2868,Sitting Area 127 CXXVII,40.72510382073,-73.89182024903091,11378,"69 Ln., 58 Rd., Queens - Mid-Town Exwy. Sr. Rd. S.",http://www.nycgovparks.org/parks/Q360Q/,park +2869,Sitting Area,40.72625010567,-73.88892977366065,11378,"58 Ave., 73 St., Queens - Mid-Town Exwy. Sr. Rd. S.",http://www.nycgovparks.org/parks/Q360R/,park +2870,Park Slope,40.72565813616,-73.90373377830954,11378,Behind overpass at 61 St. and Borden Ave.,http://www.nycgovparks.org/parks/Q360P/,park +2871,South Brother Island,40.79637706344,-73.89508086970636,10021,East River,http://www.nycgovparks.org/parks/X309/,park +2872,Frontera Park,40.72417811847,-73.89569888902945,11378,58 Ave. bet. Brown Pl. and 69 St.,http://www.nycgovparks.org/parks/Q360M/,park +2873,Peter Chahales Park,40.72490858806,-73.89408639642924,11378,"69 St., 58 Ave., Queens - Mid-Town Exwy. Svc. Rd. S.",http://www.nycgovparks.org/parks/Q360H/,park +2874,Crowley Playground,40.72932985545,-73.87929076244706,11373,"Queens Midtown Exwy., 57 Ave. bet. 84 St. and 82 St.",http://www.nycgovparks.org/parks/Q360J/,park +2875,Eastchester Playground,40.86955442811,-73.85224130463885,10469,Adee Ave. at Tenboeck Ave.,http://www.nycgovparks.org/parks/X156/,park +2876,Zimmerman Playground,40.8665162707,-73.86842992438828,10467,Britton St. bet. Olinville Ave. and Barker Ave.,http://www.nycgovparks.org/parks/X087/,park +2877,Monsignor Raul Del Valle Square,40.82086741241,-73.89099225601258,10459,"Hunts Point Av, Bruckner Blvd, E 163 St",http://www.nycgovparks.org/parks/X009/,park +2878,Wellbrock Triangle,40.67890316516,-73.83355278732994,11417,"109 Ave., 106 St., Rockaway Blvd.",http://www.nycgovparks.org/parks/Q079/,park +2879,Parkside Playground,40.86875404061,-73.86776530558117,10467,Arnow Ave. bet. Olinville Ave. and White Plains Rd.,http://www.nycgovparks.org/parks/X162/,park +2880,Gwen Ifill Park,40.6797878205,-73.76742864923779,11434,129 Ave. bet. 172 St. and 176 St.,http://www.nycgovparks.org/parks/Q412/,park +2881,Matthews Muliner Playground,40.84673077285,-73.86105361973188,10462,Mathews Ave. bet. Morris Park Ave. and Rhinelander Ave.,http://www.nycgovparks.org/parks/X178/,park +2882,Ferris Family Burial Plot,40.83876745051,-73.84209590015743,10461,Commerce Ave. bet. Butler Pl. and Westchester Ave.,http://www.nycgovparks.org/parks/X312/,park +2883,McKenna Square,40.83805812749,-73.93869677362001,10032,"W. 165 St., Amsterdam Ave. To Audubon Ave.",http://www.nycgovparks.org/parks/M156/,park +2884,Father Giorgio Triangle,40.7162768642,-73.94979522061585,11211,"Jackson St., Lorimer St., Meeker Ave.",http://www.nycgovparks.org/parks/B223T/,park +2885,Green Central Knoll,40.70240650234,-73.93295568846695,11206,"Flushing Ave., Central Ave., Noll St., Evergreen Ave.",http://www.nycgovparks.org/parks/B395/,park +2886,Glendale Veterans Triangle,40.70187052773,-73.88077891196528,11385,"Myrtle Ave., Cooper Ave., 70 St.",http://www.nycgovparks.org/parks/Q075/,park +2887,Adam Yauch Park,40.6916501429,-73.99836965458,11201,"Atlantic Ave., Columbia Pl., State St.",http://www.nycgovparks.org/parks/B223D/,park +2888,Poppa and Momma Jones Historical Garden,40.671589288,-73.88955575337522,11207,Belmont Ave. and Van Siclen Ave.,http://www.nycgovparks.org/parks/B509/,park +2889,Hinton Park,40.75503424872,-73.85450464212849,11368,"114 St., 113 St. bet. 34 Ave. and 37 Ave.",http://www.nycgovparks.org/parks/Q410/,park +2890,St. John's Park,40.67351549297,-73.93362978017846,11213,"Troy Ave., Bergen St., Prospect Pl., Schenectady Ave.",http://www.nycgovparks.org/parks/B245/,park +2891,Murray Playground,40.74730949818,-73.94777056105885,11101,"45 Ave., 45 Rd. bet. 11 St. and 21 St.",http://www.nycgovparks.org/parks/Q141/,park +2892,"Phil ""Scooter"" Rizzuto Park",40.69414104233,-73.82129785507047,11419,"Atlantic Ave., 95 Ave. bet. 127 St. and 125 St.",http://www.nycgovparks.org/parks/Q129/,park +2893,Junction Playground,40.7544274104,-73.87186279350361,11372,34 Ave. bet. 96 St. and Junction Blvd.,http://www.nycgovparks.org/parks/Q122/,park +2894,Lawrence Virgilio Playground,40.74719606455,-73.90944231152876,11377,"52 St., Woodside Ave. bet. 39 Rd. and 39 Dr.",http://www.nycgovparks.org/parks/Q031/,park +2895,Grover Cleveland Playground,40.71062902462,-73.91056836793909,11385,Stanhope St. bet. Fairvier Ave. and Grandview Ave.,http://www.nycgovparks.org/parks/Q002/,park +2896,De Hostos Playground,40.70264963912,-73.94880364308555,11206,Harrison Ave. between Walton St. and Lorimer St.,http://www.nycgovparks.org/parks/B358/,park +2897,Fleetwood Triangle,40.72278901395,-73.86719167967253,11374,"Woodhaven Blvd., 63 Dr., Penelope Ave.",http://www.nycgovparks.org/parks/Q062/,park +2898,South Pacific Playground,40.67590575594,-73.91943970833157,11233,Howard Ave. bet. Pacific St. and Dean St.,http://www.nycgovparks.org/parks/B153/,park +2899,Dome Playground,40.63823177061,-73.97975987534619,11218,Dahill Rd. bet. 37 St. and 38 St.,http://www.nycgovparks.org/parks/B151/,park +2900,Kolbert Playground,40.62060660331,-73.95771811717395,11230,Ave. L bet. E. 17 St. and E. 18 St.,http://www.nycgovparks.org/parks/B150/,park +2901,Rolph Henry Playground,40.65594388677,-73.94734787442285,11226,"Clarkson Ave., New York Ave.",http://www.nycgovparks.org/parks/B148/,park +2902,Ocean Hill Playground,40.67469364968,-73.91157450661304,11233,"Dean St., Bergen St. bet. Rockaway Ave.and Hopkinson Ave.",http://www.nycgovparks.org/parks/B144/,park +2903,Banneker Playground,40.69015204677,-73.9497527460619,11216,Macy Ave. bet. Lafayette Ave. and Kosciuszko St.,http://www.nycgovparks.org/parks/B140/,park +2904,Sixteen Sycamores Playground,40.6869474539,-73.9811229077025,11217,Schermerhorn St. bet. Nevins St. and 3 Ave.,http://www.nycgovparks.org/parks/B137/,park +2905,Gilbert Ramirez Park,40.70586979292,-73.93418260743378,11206,Mc Kibbin St. bet. White St. and Bogart St.,http://www.nycgovparks.org/parks/B132/,park +2906,Paerdegat Park,40.63702433934,-73.93765819876536,11203,"Albany Ave., E. 40 St. bet. Farragut Rd. and Foster Ave.",http://www.nycgovparks.org/parks/B218/,park +2907,Raymond Bush Playground,40.68617147348,-73.93879492875358,11221,Marcus Garvey Blvd. bet. Monore St. and Madison St.,http://www.nycgovparks.org/parks/B216/,park +2908,Cough Triangle,40.67452973076,-73.99980509221093,11231,"Hamilton Ave., Court St. Garnet St.",http://www.nycgovparks.org/parks/B210C/,park +2909,Admiral Triangle,40.67701179612,-74.00083742049672,11231,"Hamilton Ave., Nelson St. Clinton St.",http://www.nycgovparks.org/parks/B210F/,park +2910,Welcome Home Garden,40.68499408562,-73.92538383288867,11233,Halsey St. bet. Patchen Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B538/,park +2911,Sam Leggio Triangle,40.68514586869,-73.88200852229791,11208,"Highland Pl. at Etna St., Forcetube Ave.",http://www.nycgovparks.org/parks/B278/,park +2912,811 Family and Friends Garden,40.8230537692,-73.91654082204063,10451,Courtlandt Ave. bet. E. 158 St. and E. 159 St.,http://www.nycgovparks.org/parks/X351/,park +2913,Melrose Commons Park,40.82509984689,-73.91232998469353,10451,Melrose Ave. bet. E. 162 St. and E. 163 St.,http://www.nycgovparks.org/parks/X350/,park +2914,D'Emic Playground,40.65584018563,-74.00468042094083,11232,3 Ave. bet. 35 St. and 34 St.,http://www.nycgovparks.org/parks/B210B/,park +2915,William Sheridan Playground,40.71534674227,-73.96361355028422,11211,Wythe Ave. bet. Grand St. and S. 1 St.,http://www.nycgovparks.org/parks/B124/,park +2916,Msgr. McGolrick Park,40.72335166735,-73.9423351968039,11222,"Russell St., Monitor St. bet. Nassau Ave. and Driggs Ave.",http://www.nycgovparks.org/parks/B114/,park +2917,Cadman Plaza Park,40.70039331312,-73.98985510323615,11201,"Cadman Plaza West, Cadman Plaza East bet. BQE and Tillary St.",http://www.nycgovparks.org/parks/B113A/,park +2918,Lion's Pride Playground,40.66248135013,-73.89931143742706,11207,Riverdale Ave. bet. Van Sinderen Ave. and Snediker Ave.,http://www.nycgovparks.org/parks/B107/,park +2919,El Shabazz Playground,40.68313095117,-73.93101016219778,11233,Macdonough St. between Malcolm X Blvd. and Stuyvesant Ave.,http://www.nycgovparks.org/parks/B313/,park +2920,Taaffe Playground,40.69416123181,-73.96055325306662,11205,Taaffe Pl. bet. Park Ave. and Myrtle Ave.,http://www.nycgovparks.org/parks/B105/,park +2921,Lt. Joseph Petrosino Park,40.61915544765,-73.99802401748894,11228,"16 Ave., New Utrecht Ave. bet. 70 St. and 71 St.",http://www.nycgovparks.org/parks/B099/,park +2922,Martin Luther Playground,40.64582903053,-74.01923281094766,11220,2 Ave. bet. 55 St. and 56 St.,http://www.nycgovparks.org/parks/B098/,park +2923,Ennis Playground,40.67057586455,-73.99424820391394,11215,"11 St., 12 St. bet. 2 Ave. and 3 Ave.",http://www.nycgovparks.org/parks/B095/,park +2924,Coffey Park,40.67794843261,-74.0069323017119,11231,Verona St. bet. Richard St. and Dwight St.,http://www.nycgovparks.org/parks/B077/,park +2925,Westbourne Playground,40.60756528726,-73.76441329525404,11691,"Mott Ave., Westbourne Ave. bet. Bay 28 St. and Bay 25 St.",http://www.nycgovparks.org/parks/Q266/,park +2926,Benninger Playground,40.70702714522,-73.89779650733226,11385,Madison St. bet. 60 Pl. and Fresh Pond Rd.,http://www.nycgovparks.org/parks/Q038/,park +2927,Park Of The Americas,40.74833219081,-73.8610437236353,11368,"41 Ave., 42 Ave. bet. 103 St. and 104 St.",http://www.nycgovparks.org/parks/Q026/,park +2928,Rufus King Park,40.70512111113,-73.80364542149252,11432,"Jamaica Ave., 89 Ave. bet. 150 St. and 153 St.",http://www.nycgovparks.org/parks/Q023/,park +2929,Seven Gables Playground,40.7436464675,-73.76604641836396,11364,"210 St., Oceania St. bet. the Long Island Exwy. and 64 Ave.",http://www.nycgovparks.org/parks/Q021C/,park +2930,Paul Raimonda Playground,40.77289183296,-73.89683255958211,11105,20 Ave. bet. 47 St. and 48 St.,http://www.nycgovparks.org/parks/Q298/,park +2931,Fidelity Triangle,40.72182905389,-73.94188146679365,11222,Monitor St. bet. Engert Ave. and Meeker Ave.,http://www.nycgovparks.org/parks/B031/,park +2932,Albert Capsouto Park,40.72228864543,-74.0061927210609,10013,"Laight St., Canal St., and Varick St.",http://www.nycgovparks.org/parks/M145/,park +2933,Garibaldi Playground,40.60910288178,-73.99972930716017,11214,18 Ave. bet. 83 St. and 82 St.,http://www.nycgovparks.org/parks/B158/,park +2934,St. Mary's Park,40.67600876309,-73.9972876730406,11231,Smith St. bet. Nelson St. and Huntington St.,http://www.nycgovparks.org/parks/B118B/,park +2935,St. Mary's Park,40.67665744104,-73.99697310394723,11231,Smith St. bet. Luquer St. and Nelson St.,http://www.nycgovparks.org/parks/B118A/,park +2936,Lindsay Triangle,40.70409579595,-73.94807708003248,11206,"Throop Ave., Lormer St., Broadway",http://www.nycgovparks.org/parks/B117/,park +2937,Patrick O'Rourke Playground,40.61929874343,-74.01418137250747,11228,"80 St. To 81 St., 11 Ave. To 12 Ave.",http://www.nycgovparks.org/parks/B282/,park +2938,Washington Park,40.67381484602,-73.98558138430056,11215,"3 St., 4 St. bet. 4 Ave. and 5 Ave.",http://www.nycgovparks.org/parks/B111/,park +2939,Saratoga Park,40.68484680316,-73.91770512122248,11233,Halsey St. bet. Howard Ave. and Saratoga Ave.,http://www.nycgovparks.org/parks/B079/,park +2940,Milestone Park,40.60965032195,-73.99912364548912,11214,18 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/B063/,park +2941,Sternberg Park,40.70568896256,-73.94641731127383,11206,Lorimer St. bet. Montrose Ave. and Boerum St.,http://www.nycgovparks.org/parks/B055/,park +2942,Dodger Playground,40.66469396736,-73.95255596792327,11225,Sullican Pl. bet. Rogers Ave. and Nostrand Ave.,http://www.nycgovparks.org/parks/B121/,park +2943,Owen F. Dolen Park,40.83999046816,-73.84301209090562,10461,"Lane Ave., E. Tremont Ave., Westchester Ave.",http://www.nycgovparks.org/parks/X016/,park +2944,Bailey Playground,40.88148164459,-73.90018389322712,10463,Bailey Av bet. W 234 St and W 237 St,http://www.nycgovparks.org/parks/X150J/,park +2945,Rienzi Playground,40.88777834546,-73.85801299970566,10466,E. 226 St. bet. White Plains Rd. and Barnes Ave.,http://www.nycgovparks.org/parks/X141/,park +2946,Brooklyn Heights Promenade,40.69436222465,-73.99871657392515,11201,BQE bet. Joralemon St. and Grace Ct.,http://www.nycgovparks.org/parks/B223DB/,park +2947,Michel Triangle,40.83855450553,-73.90607424555895,10456,Clay Av bet. E 171 St and Claremont Pkwy,http://www.nycgovparks.org/parks/X057/,park +2948,Washington Hall Park,40.69507857114,-73.96671934960324,11205,Park Ave. bet. Washington Ave. and Hall St.,http://www.nycgovparks.org/parks/B220/,park +2949,Magenta Playground,40.87397750631,-73.8676358281836,10467,Olinville Ave. at Rosewood St.,http://www.nycgovparks.org/parks/X214/,park +2950,West Farms Rapids,40.84148743292,-73.8774569429821,10460,Bronx River bet. E 180 St and E Tremont Av,http://www.nycgovparks.org/parks/X288/,park +2951,Imagination Playground,40.70591428189,-74.00382704252628,10038,"Front St., John St., and South St.",http://www.nycgovparks.org/parks/M386/,park +2952,Cpl Fischer Park,40.84041021588,-73.9225101872722,10452,W. 170 St. bet. Nelson Ave. and Shakespeare Ave.,http://www.nycgovparks.org/parks/X269/,park +2953,Willowbrook Park,40.60609448147,-74.15439872286494,10314,"Richmond Ave., Victory Blvd., Ashworth Ave., and Forest Hill Rd.",http://www.nycgovparks.org/parks/R030/,park +2954,Albemarle Playground,40.64579614353,-73.98018320691112,11218,"Albemarle Rd., Dahill Rd., Mcdonald Ave.",http://www.nycgovparks.org/parks/B297/,park +2955,Queens Village Veterans Plaza,40.71788113273,-73.73618265220543,11429,Springfield Blvd. bet. Jamaica Ave. and Amboy La.,http://www.nycgovparks.org/parks/Q047/,park +2956,Boerum Park,40.68477945476,-73.98983909685951,11201,Warren St. to Baltic St. between Hoyt St. and Smith St.,http://www.nycgovparks.org/parks/B361/,park +2957,The Cyclone,40.57350904574,-73.97769957953619,11224,W. 10 St. between Surf Ave. and Public Beach,http://www.nycgovparks.org/parks/B368/,park +2958,Richmond Terrace Storehouse,40.6378931066,-74.1216524045854,10310,Richmond Ter. bet. Alaska St. and Taylor St.,http://www.nycgovparks.org/parks/R134/,park +2959,Brooklyn Academy Of Music,40.68679934118,-73.97750679306391,11217,Lafayette Ave between St Felix St. and Ashland Pl.,http://www.nycgovparks.org/parks/B256/,park +2960,Dutch Kills Playground,40.75738914528,-73.93253754465057,11106,"28 St., Crescent St. bet. 37 Ave. and 36 Ave.",http://www.nycgovparks.org/parks/Q218/,park +2961,Long Island Mews,40.73604776862,-73.88965660125358,11373,"51 Ave., 51 Rd., 72 Pl.",http://www.nycgovparks.org/parks/Q434/,park +2962,Devoe Park,40.86409852176,-73.90427478405705,10468,W. Fordham Rd. bet. Sedgwick Ave. and Un,http://www.nycgovparks.org/parks/X013/,park +2963,Roy Wilkins Recreation Center,40.68952978838,-73.77137903477231,11434,"Merrick Blvd. bet. 115 Ave., 116 Ave., and Baisley Blvd.",http://www.nycgovparks.org/parks/Q448/,park +2964,Remsen Family Cemetery,40.71252483608,-73.85834289923423,11374,"Trotting Course La., Alderton St.",http://www.nycgovparks.org/parks/Q480/,park +2965,Hybrid Oak Woods Park,40.50248602336,-74.23543971206398,10307,Joline Ave. bet. Hylan Blvd. to Surf Ave.,http://www.nycgovparks.org/parks/R136/,park +2966,Frank Golden Park,40.78552182722,-73.8336318916601,11356,14 Rd. bet. 132 St. and 138 St.,http://www.nycgovparks.org/parks/Q445/,park +2967,Athens Square,40.76801998963,-73.92172736045354,11102,30 Ave. bet. 29 St. and 30 St.,http://www.nycgovparks.org/parks/Q436/,park +2968,Spirit Playground,40.76132336146,-73.94094711111056,11106,36 Ave bet. 9 St. and 10 St.,http://www.nycgovparks.org/parks/Q429/,park +2969,Rosemary's Playground,40.70423981423,-73.90398972982707,11385,"Woodbine St., Madison St. bet. Woodward Ave. and Fairview Ave.",http://www.nycgovparks.org/parks/Q398/,park +2970,Conch Playground,40.59616802782,-73.7801984327566,11691,Beach 49 St. bet. Elizabeth Ave. and Beach Channel Dr.,http://www.nycgovparks.org/parks/Q394/,park +2971,Joseph Austin Playground,40.71596003427,-73.79991304979274,11432,164 Pl. bet. Grand Central Pkwy. Sr. Rd. S. and 84 Ave.,http://www.nycgovparks.org/parks/Q391/,park +2972,Bayside Playground,40.58452481306,-73.82502453424574,11694,Beach Channel Dr. bet. Beach 104 St. and Seaside Ave.,http://www.nycgovparks.org/parks/Q389/,park +2973,Francis Lewis Playground,40.76042694999,-73.7836542778031,11361,"Francis Lewis Blvd., 201 St. bet. 42 Ave. and Station Rd.",http://www.nycgovparks.org/parks/Q381/,park +2974,Ampere Playground,40.68144071717,-73.85632486549325,11416,101 Ave. bet. 92 St. and 83 St.,http://www.nycgovparks.org/parks/Q378/,park +2975,Playground Sixty Two LXII,40.73648677478,-73.85303918043705,11375,62 Rd. bet. Yellowstone Blvd. and108 St.,http://www.nycgovparks.org/parks/Q377/,park +2976,Willets Point Playground,40.78359363987,-73.79690259219424,11357,166 St. bet. 16 Ave. and 16 Rd.,http://www.nycgovparks.org/parks/Q375/,park +2977,Horace Harding Playground,40.73306387835,-73.8600480997644,11374,62 Dr. bet. 97 Pl. and 98 St.,http://www.nycgovparks.org/parks/Q428/,park +2978,South Rochdale Playground,40.67384617645,-73.76876080360424,11434,134 Rd. and 173 St.,http://www.nycgovparks.org/parks/Q427/,park +2979,North Rochdale Playground,40.67974949232,-73.77468422849846,11434,Baisley Blvd. 168 St. and Bedell St.,http://www.nycgovparks.org/parks/Q426/,park +2980,Seaside Playground,40.58061974522,-73.83033877057792,11694,Rockaway Beach Blvd. bet. Beach 110 St. and Beach 109 St.,http://www.nycgovparks.org/parks/Q422/,park +2981,Walter Ward Playground,40.65722833315,-73.84339592195943,11414,160 Ave. bet. 88 St. and 89 St.,http://www.nycgovparks.org/parks/Q421/,park +2982,Hart Playground,40.77439967314,-73.81935512255222,11354,147 St. bet. 26 Ave. and 27 Ave.,http://www.nycgovparks.org/parks/Q419/,park +2983,Lanett Playground,40.59972561349,-73.74395257250316,11691,Lanett Ave. bet. Beach 9 St. and Beach 8 St.,http://www.nycgovparks.org/parks/Q407/,park +2984,Springfield Park North,40.66419957187,-73.7592563977784,11413,145 Rd. bet. Arthur St. and Springfield Blvd.,http://www.nycgovparks.org/parks/Q406/,park +2985,Hollis Playground,40.70630822435,-73.75264707467772,11412,Hollis Ave. bet. 204 St. and 205 St.,http://www.nycgovparks.org/parks/Q405/,park +2986,Latimer Playground,40.6968581455,-73.78641454837448,11433,167 St. bet. 108 Dr. and 109 Ave.,http://www.nycgovparks.org/parks/Q402/,park +2987,Oakland Gardens,40.75293499979,-73.75990571560354,11364,Springfield Blvd. bet. 53 Ave. and 56 Ave.,http://www.nycgovparks.org/parks/Q400/,park +2988,Playground Seventy Five,40.72668827456,-73.80815869562873,11366,160 St. bet. 75 Ave. and 75 Rd.,http://www.nycgovparks.org/parks/Q354/,park +2989,Grassmere Playground,40.5987721762,-73.75874581450415,11691,"Grassmere Terr., Briar Pl. bet. Hanson Ct. and Brookhaven Ave.",http://www.nycgovparks.org/parks/Q353/,park +2990,Russell Sage Playground,40.72382445031,-73.85099096991074,11375,Booth St. bet. 68 Ave. and 68 Dr.,http://www.nycgovparks.org/parks/Q335/,park +2991,Locust Manor Playground,40.68560974331,-73.75625201068374,11413,121 Ave. bet. Lucas St. and 192 St.,http://www.nycgovparks.org/parks/Q330/,park +2992,Van Alst Playground,40.77096048504,-73.9284640958145,11102,21 St. bet. 29 Ave. and 30 Ave.,http://www.nycgovparks.org/parks/Q321/,park +2993,Galapo Playground,40.59786981101,-73.94636121718139,11229,"Bedford Ave., Gravesend Neck Rd., Ave. V, E. 24 St.",http://www.nycgovparks.org/parks/B209/,park +2994,Hamilton Metz Field,40.66232209782,-73.94009836206811,11203,"Albany Ave., E. New York Ave., Lefferts Ave.",http://www.nycgovparks.org/parks/B193/,park +2995,Russell Pedersen Playground,40.62693370704,-74.03571621333731,11209,Colonial Rd. from 83 St. to 85 St.,http://www.nycgovparks.org/parks/B192/,park +2996,Continental Army Plaza,40.71034749277,-73.96030604864147,11211,S. 4 St. bet. S. 5 Pl. and Roebling St.,http://www.nycgovparks.org/parks/B168/,park +2997,Jackie Robinson Playground,40.66599371346,-73.95877550406918,11225,Montgomery St. between Franklin Ave. and McKeever Pl.,http://www.nycgovparks.org/parks/B357/,park +2998,Clearview's Tail,40.72452458093,-73.75535912566508,11427,Clearview Exwy at Whitehall Terr.,http://www.nycgovparks.org/parks/Q387D/,park +2999,Blood Root Valley,40.58951378738,-74.12782385221055,10314,"Rockland Ave., Manor Ave., Brielle Ave., Forest Hill Rd.",http://www.nycgovparks.org/parks/R129/,park +3000,Flushing Fields,40.77595871614,-73.81586731266746,11354,"149 St. bet. 25 Ave. and 26 Ave., 29 Ave. and Bayside Ave.",http://www.nycgovparks.org/parks/Q086/,park +3001,Berry Playground,40.71267695765,-73.96319254851623,11211,S. 3 St. bet. Berry St. and Bedford Ave.,http://www.nycgovparks.org/parks/B154/,park +3002,Playground of the Americas,40.72798141804,-74.0026158828559,10014,"S/s W. Houston St., Ave. of Americas",http://www.nycgovparks.org/parks/M120B/,park +3003,Lafayette Playground,40.5951606243,-73.98513006001589,11214,"Stillwell Ave., Benson Ave., Bay 43 St.",http://www.nycgovparks.org/parks/B106B/,park +3004,Nellie Bly Park,40.59039681491,-73.99390724820346,11214,S/s Shore Pkwy between 25 Ave. and Bay 41 St.,http://www.nycgovparks.org/parks/B280/,park +3005,Tottenville Pool,40.50551793647,-74.23475728414512,10307,Hylan Blvd. bet. Joline Ave. and Sprague Ave.,http://www.nycgovparks.org/parks/R110/,park +3006,Harlem River Park,40.80742548038,-73.93430532603055,10035,"E. 128 St., 2 Ave., 3 Ave., Harlem River Drive",http://www.nycgovparks.org/parks/M208D/,park +3007,Bryant Hill Garden,40.81970462363,-73.88736572860253,10474,Bryant Av bet. Seneca Av and Garrison Ave,http://www.nycgovparks.org/parks/X315/,park +3008,Neponsit Mall,40.57137043016,-73.85912321414128,11694,Rockaway Beach Blvd. bet. Beach 149 St. and Beach 142 St.,http://www.nycgovparks.org/parks/Q037/,park +3009,Hunts Point Playground,40.81384928456,-73.88619730395624,10474,Spofford Av bet. Faile St and Hunts Point Av,http://www.nycgovparks.org/parks/X113/,park +3010,Bildersee Playground,40.63574338163,-73.91170043126046,11236,Flatlands Ave. between E. 81 St. and E. 82 St.,http://www.nycgovparks.org/parks/B335/,park +3011,Playground Eighty LXXX,40.74468920451,-73.70921435272733,11004,80 Ave. bet. 261 St. and 262 St.,http://www.nycgovparks.org/parks/Q318/,park +3012,Rafferty Triangle,40.74758079295,-73.94328104323746,11101,"44 Dr., Hunter St. Crescent St.",http://www.nycgovparks.org/parks/Q036A/,park +3013,Elizabeth Stroud Playground,40.67958281599,-73.93088845016617,11233,Stuyvesant Ave. and Fulton St.,http://www.nycgovparks.org/parks/B200/,park +3014,Hoffman Park,40.7325681438,-73.8716073628971,11373,Hoffman Dr. bet. 58 Ave. and Woodhaven Blvd.,http://www.nycgovparks.org/parks/Q360N/,park +3015,Heffernan Triangle,40.64586087634,-73.99473152714648,11219,"New Utrecht Ave., 9 Ave., 39 St.",http://www.nycgovparks.org/parks/B172/,park +3016,Linden Sitting Area,40.65388237392,-73.91846674587376,11236,"Linden Blvd., Church Ave., E. 92 St.",http://www.nycgovparks.org/parks/B171/,park +3017,Tall Oak Playground,40.74572137298,-73.75764301047239,11364,64 Ave. bet. 218 St. and 219 St.,http://www.nycgovparks.org/parks/Q317/,park +3018,Saul Weprin Playground,40.74772280172,-73.77587394026898,11364,56 Ave. bet. 201 St. and 202 St.,http://www.nycgovparks.org/parks/Q293/,park +3019,Fort Totten Park,40.79633624368,-73.77622835118328,11359,Cross Island Pkwy. bet. Totten Ave. and 15 Rd.,http://www.nycgovparks.org/parks/Q458/,park +3020,Douglaston Park Golf Course,40.7544496283,-73.73320415943988,11362,"61 Ave. bet. Marathon Pkwy., Commonwealth Blvd. and 242 St.",http://www.nycgovparks.org/parks/Q411/,park +3021,Louis Pasteur Park,40.76171141229,-73.73453593160808,11362,248 St. bet. Van Zandt Ave. and 52 Ave.,http://www.nycgovparks.org/parks/Q369/,park +3022,Marie Curie Playground,40.75654902581,-73.77182519637729,11361,"46 Ave., 46 Rd. bet. Oceania St. and 211 St.",http://www.nycgovparks.org/parks/Q364/,park +3023,Hillside Playground,40.74156103682,-73.71326879448377,11004,82 Ave. bet. 256 St. and 257 St.,http://www.nycgovparks.org/parks/Q352/,park +3024,Farm Playground,40.73664896742,-73.77712625830974,11365,73 Ave. bet. 195 St. and 196 Pl.,http://www.nycgovparks.org/parks/Q221/,park +3025,Poppenhusen Playground,40.78091352726,-73.84423329988674,11356,"20 Ave., 21 Ave. bet. 123 St. and 124 St.",http://www.nycgovparks.org/parks/Q011/,park +3026,McLaughlin Playground,40.72549572952,-73.76598994603171,11423,McLaughlin Ave. bet. Sutro St. and Francis Lewis Blvd.,http://www.nycgovparks.org/parks/Q021B/,park +3027,Glen Oaks Oval,40.74896585483,-73.71534734971091,11004,"74 Ave., 260 St.",http://www.nycgovparks.org/parks/Q310/,park +3028,Kissena Park,40.74495423475,-73.80418278438971,11365,"Underhill, Oak, Rose, Booth Memorial Aves, Kissena Blvd, Fresh Meadow Ln",http://www.nycgovparks.org/parks/Q024/,park +3029,James A. Bland Playground,40.75828239234,-73.83067260046143,11354,40 Rd. bet. Prince St. and Main St.,http://www.nycgovparks.org/parks/Q326/,park +3030,Playground Twenty One,40.77848029756,-73.7978571869964,11357,166 St. bet. 21 Rd. and 21 Ave.,http://www.nycgovparks.org/parks/Q334/,park +3031,Breininger Park,40.72524468137,-73.72814639331546,11426,240 St. bet. Braddock Ave. and Fairbury Ave.,http://www.nycgovparks.org/parks/Q134/,park +3032,Julio Carballo Fields,40.81643989984,-73.8890124322292,10474,Manida St bet. Spofford Av and Lafayette Av,http://www.nycgovparks.org/parks/X260/,park +3033,Sunrise Playground,40.65238075147,-73.73595423266357,11422,253 St. bet. 149 Ave. and 149 Rd.,http://www.nycgovparks.org/parks/Q430/,park +3034,Barretto Park,40.81275394275,-73.8887947119048,10474,Barretto St bet. Randall Av and Spoffard Av,http://www.nycgovparks.org/parks/X248/,park +3035,Noble Playground,40.83804065615,-73.87181306646414,10460,Noble Ave. bet. Bronx River Av and E 177 St,http://www.nycgovparks.org/parks/X123/,park +3036,Alexander Grey Triangle,40.79521144497,-73.81368720720675,11357,"Clintonville St., 7 Ave. and 151 St,",http://www.nycgovparks.org/parks/Q168/,park +3037,Bridge Park 3,40.69999117579,-73.98499135832654,11201,"Sands St., Prospect St. bet. Bridge St. and Manh. Bridge",http://www.nycgovparks.org/parks/B223JC/,park +3038,Prophecy Garden,40.65917724781,-73.89485957920876,11207,Malta St. between New Lots Ave. and Hegeman Ave.,http://www.nycgovparks.org/parks/B506/,park +3039,400 Montauk Av Block Assn,40.66850600146,-73.87675015169391,11208,Montauk Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B535/,park +3040,Abib Newborn Garden,40.65967641046,-73.90614212686357,11212,Newport St. and Osborn St.,http://www.nycgovparks.org/parks/B533/,park +3041,F.A.R.R. Community Garden,40.67830472548,-73.9266626881803,11233,Herkimer St. and Suydam Pl.,http://www.nycgovparks.org/parks/B532/,park +3042,Garden of Plenty,40.67766485263,-73.92820281198452,11233,Hunterfly Pl. between Herkimer St. and Atlantic Ave.,http://www.nycgovparks.org/parks/B531/,park +3043,Seasons of Vision,40.67882424635,-73.92689817063305,11233,Rochester Ave. between Fulton St. and Herkimer St.,http://www.nycgovparks.org/parks/B530/,park +3044,Howard Av Block Association,40.66353755913,-73.91936272445108,11212,Howard Ave. to Tapscott St. between Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B528/,park +3045,United Community Centers - E New York Farms Project,40.66077634969,-73.89572969728754,11207,"Alabama Ave., Newport St., Georgia Ave., New Lots Ave.",http://www.nycgovparks.org/parks/B527/,park +3046,Cleveland Street Vegetable Garden,40.67413419296,-73.88388289260618,11208,Cleveland St. between Pitkin Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B526/,park +3047,Mw United Orient Grand Lodge,40.67364335688,-73.8876577611677,11207,Jerome St. to Barbey St. between Pitkin Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B521/,park +3048,Spencer St Block Association,40.6914041277,-73.95499939126604,11205,Spencer St. between De Kalb Ave. and Willoughby Ave.,http://www.nycgovparks.org/parks/B519/,park +3049,Victory Garden's Group,40.68895314726,-73.9275699875039,11221,Gates Ave. between Malcolm X Blvd. and Patchen Ave.,http://www.nycgovparks.org/parks/B518/,park +3050,"Saratoga Square Urban Renewal Area, Site 164",40.67866155247,-73.91118717548993,11233,"Somers St., Rockaway Ave. and Fulton St.",http://www.nycgovparks.org/parks/B517/,park +3051,Nehemiah Ten Garden,40.66860086341,-73.88599740284238,11207,Barbey St. to Jerome St. between Blake Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B514/,park +3052,Vernon New Harvest,40.6941115093,-73.95037939681437,11206,Vernon Ave. between Nostrand Ave. and Marcy Ave.,http://www.nycgovparks.org/parks/B508/,park +3053,A Better Community Garden,40.67794867986,-73.92795541171245,11233,Hunterfly Pl. between Herkimer St. and Atlantic Ave.,http://www.nycgovparks.org/parks/B507/,park +3054,Sterling Community Group,40.67136116029,-73.92203480919704,11233,Ralph Ave. and Sterling Pl.,http://www.nycgovparks.org/parks/B505/,park +3055,Stars Of Hope,40.68480000685,-73.95063493868432,11216,Corner of Nostrand Ave. and Madison St.,http://www.nycgovparks.org/parks/B503/,park +3056,St. Mark's Block Association,40.67330448321,-73.92171592645872,11233,St Mark's Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B501/,park +3057,Patrick Van Doren Pocket Park,40.68943311073,-73.92991960191655,11221,Malcolm X Blvd. and Quincy St.,http://www.nycgovparks.org/parks/B500/,park +3058,Madison Community Greenthumb,40.68765103599,-73.92183130698453,11221,Madison St. between Ralph Ave. and Howard Ave.,http://www.nycgovparks.org/parks/B499/,park +3059,Victory Garden,40.66657630313,-73.88736565007737,11207,Hendrix St. between Livonia Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B496/,park +3060,Vernon Tandt Block Association,40.69484270168,-73.94400736457072,11206,Vernon Ave. between Tompkins Ave. and Throop Ave.,http://www.nycgovparks.org/parks/B494/,park +3061,Upon This Rock Comm Garden,40.6742032665,-73.87770626594677,11208,Pitkin Ave. and Montauk Ave.,http://www.nycgovparks.org/parks/B493/,park +3062,St. John Cantius Parish,40.66738402238,-73.89380602334118,11207,New Jersey Ave. between Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B492/,park +3063,Shield Of Faith,40.67745132554,-73.87829126928358,11208,79-85 Montauk St,http://www.nycgovparks.org/parks/B491/,park +3064,Red Shed Garden,40.71592634049,-73.94015605780575,11211,Kingsland Ave. between Skillman Ave. and Maspeth Ave.,http://www.nycgovparks.org/parks/B489/,park +3065,Red Gate Garden,40.69368164538,-73.94899005831826,11206,Marcy Ave. and Willoughby Ave.,http://www.nycgovparks.org/parks/B488/,park +3066,P.S. 53,40.666029839,-73.89059698784907,11207,Bradford St. between Dumont Ave. and Livonia Ave.,http://www.nycgovparks.org/parks/B485/,park +3067,Gregory's Garden,40.67258554884,-73.8857302501398,11207,Warwick St. between Pitkin Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B484/,park +3068,Manley's Pl,40.67475246355,-73.87857041022092,11208,Montauk Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B483/,park +3069,Madison Street Block Association,40.68378359516,-73.95546463890517,11216,Madison St. between Franklin Ave. and Bedford Ave.,http://www.nycgovparks.org/parks/B482/,park +3070,Madison Square Garden Association,40.69468356973,-73.912872970857,11221,Madison St. between Wilson Ave. and Knickerbocker Ave.,http://www.nycgovparks.org/parks/B481/,park +3071,Lefferts Pl Block Association,40.68052141751,-73.95752709071726,11238,Lefferts Pl. between Classon Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B479/,park +3072,Jerome Gardens,40.67059337671,-73.88595789178665,11207,Jerome St. and Sutter Ave.,http://www.nycgovparks.org/parks/B477/,park +3073,Sh'ma Yisrael,40.67570857551,-73.91592305902948,11233,Pacific St. between Saratoga Ave. and Hopkinson Ave.,http://www.nycgovparks.org/parks/B476/,park +3074,Herbal Garden,40.67394429893,-73.88842820740602,11207,Schenck Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B475/,park +3075,Hancock T and T,40.68296413192,-73.94302730985119,11216,Hancock St. between Tompkins Ave. and Throop Ave.,http://www.nycgovparks.org/parks/B473/,park +3076,Greene Av United Neighbors Association Inc,40.68801079609,-73.95129259401246,11216,Nostrand Ave. and Greene Ave.,http://www.nycgovparks.org/parks/B472/,park +3077,Good Shepherds Garden,40.67069490485,-73.8794633710015,11208,Shepherd Ave. between Blake Ave. and Sutter Ave.,http://www.nycgovparks.org/parks/B469/,park +3078,Escape To Nature,40.67417293127,-73.88984162827091,11207,Glenmore Ave. and Hendrix St.,http://www.nycgovparks.org/parks/B468/,park +3079,Floral Vineyard,40.67367452191,-73.88453421649129,11207,Pitkin Ave. and Cleveland St.,http://www.nycgovparks.org/parks/B467/,park +3080,First Quincy St Block Association,40.68777739195,-73.94432155536188,11221,Quincy St. between Throop Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B465/,park +3081,Farmers Garden,40.67475654627,-73.91821811405532,11233,Bergen St. between Saratoga Ave. and Howard Ave.,http://www.nycgovparks.org/parks/B464/,park +3082,Fantasy Garden,40.66421617124,-73.91666512979006,11212,Legion St. and Blake Ave.,http://www.nycgovparks.org/parks/B463/,park +3083,Elton St Block Association,40.66862578891,-73.8816660797557,11208,Elton St. between Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B460/,park +3084,East End Community Garden,40.67354702201,-73.89062840207225,11207,Glenmore Ave. and Van Siclen Ave.,http://www.nycgovparks.org/parks/B458/,park +3085,Walt L Shemal Garden,40.67753826466,-73.95348165085545,11216,Dean St. between Bedford Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B456/,park +3086,Concerned Residents of Montauk Avenue,40.67383253897,-73.87796280492904,11208,Montauk Ave. between Pitkin Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B453/,park +3087,Clifton Pl Memorial Park and Garden,40.68845462818,-73.95445132734469,11216,Clifton Pl. and Bedford Ave.,http://www.nycgovparks.org/parks/B451/,park +3088,Clara's Garden,40.67427611731,-73.88914361443666,11207,Glenmore Ave. between Schenck Ave. and Hendrix St.,http://www.nycgovparks.org/parks/B450/,park +3089,New Vision Garden,40.66592256841,-73.88680853686338,11207,Livonia Ave. between Hendrix St. and Schenck Ave.,http://www.nycgovparks.org/parks/B449/,park +3090,Causa Festival Garden,40.66822727085,-73.88962569102848,11207,Blake Ave. and Van Siclen Ave.,http://www.nycgovparks.org/parks/B447/,park +3091,Ten Eyck Houses Garden,40.7096624916,-73.95011661796708,11206,Ten Eyck St. between Union Ave. and Lorminer St.,http://www.nycgovparks.org/parks/B445/,park +3092,Berry Street Garden,40.71347816529,-73.96370564320826,11211,Berry St. between S. 3 St. and S. 2 St.,http://www.nycgovparks.org/parks/B444/,park +3093,P.S. 149 Artsy Bloom Community Garden,40.66964512815,-73.89225784074365,11207,Sutter Ave. between Wyona St. and Bradford St.,http://www.nycgovparks.org/parks/B442/,park +3094,American Heart,40.69304236997,-73.94662637040156,11206,Hart St. between Marcy Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B441/,park +3095,Amboy Neighborhood Center,40.66508824511,-73.91394888499298,11212,Blake Ave. between Herzl St. and Amboy St.,http://www.nycgovparks.org/parks/B440/,park +3096,Gethsemane Garden,40.65888700541,-73.90957411598448,11212,Newport St. between Bristol St. and Chester St.,http://www.nycgovparks.org/parks/B436/,park +3097,Old Gravesend Cemetery,40.59520494392,-73.97395740186487,11223,Van Sicklen St. to McDonald Ave. between Village Rd. and Gravesend Neck Rd.,http://www.nycgovparks.org/parks/B434/,park +3098,Hendrick I. Lott House,40.61015741465,-73.93246287843549,11234,E. 35 St. to E. 36 St. between Fillmore Ave. and Ave. S,http://www.nycgovparks.org/parks/B433/,park +3099,Lewis Playground,40.69528104558,-73.93772992401196,11206,Willoughby Ave. between Lewis Ave. and Marcus Garvey Blvd.,http://www.nycgovparks.org/parks/B430/,park +3100,Hope Ballfield,40.69704845653,-73.9171135097753,11237,Knickerbocker Ave. between Grove St. and Menahan St.,http://www.nycgovparks.org/parks/B429/,park +3101,Goodwin Gardens,40.69114331703,-73.9231967515498,11221,Goodwin Pl. and Grove St.,http://www.nycgovparks.org/parks/B428/,park +3102,Sunshine Community Garden,40.70515125933,-73.94398552984758,11206,McKibbin St. between Manhattan Ave. and Graham Ave.,http://www.nycgovparks.org/parks/B427/,park +3103,Earth Spirit Garden,40.71260596271,-73.95918713448903,11211,S. 2 St. between Driggs Ave. and Roebling St.,http://www.nycgovparks.org/parks/B424/,park +3104,Project Roots,40.70260474253,-73.94793687808215,11206,Walton St. between Harrison Ave. and Throop Ave.,http://www.nycgovparks.org/parks/B423/,park +3105,Umoja Garden,40.6877496328,-73.91921765713865,11221,Broadway and Putnam Ave.,http://www.nycgovparks.org/parks/B420/,park +3106,P.S. 4 Paradise Garden,40.67451570902,-73.88512436772514,11207,Glenmore Ave. between Ashford St. and Cleveland St.,http://www.nycgovparks.org/parks/B417/,park +3107,TLC Sculpture Park Garden,40.67257748897,-73.90065656214513,11207,Glenmore Ave. and Hinsdale Ave.,http://www.nycgovparks.org/parks/B416/,park +3108,Georgia Ave Garden,40.66092218914,-73.89433215225341,11207,Georgia Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B415/,park +3109,Powell Street Livonia Garden,40.66322864212,-73.90180943768125,11212,Livonia Ave. between Powell St. and Junius St.,http://www.nycgovparks.org/parks/B516/,park +3110,Hull Street Garden,40.67998662829,-73.90778572603568,11233,Hull St. between Mother Gaston Blvd. and Broadway,http://www.nycgovparks.org/parks/B413/,park +3111,Summit Street Community Garden,40.68248704425,-74.00344509328919,11231,Summit St. bet. Columbia St. and Hicks St.,http://www.nycgovparks.org/parks/B411/,park +3112,The Backyard,40.68316722605,-74.00533072358304,11231,"Hamilton Ave., Van Brunt St., Summit St.",http://www.nycgovparks.org/parks/B410/,park +3113,The Amazing Garden,40.68307352411,-74.0032176416544,11231,Carroll St. and Columbia St.,http://www.nycgovparks.org/parks/B409/,park +3114,Human Compass Garden,40.68482218374,-74.00230389555124,11231,Sackett St. and Columbia St.,http://www.nycgovparks.org/parks/B408/,park +3115,Epiphany Playground,40.70875417955,-73.96518869215083,11211,Berry St. between S. 9 St. and S. 10 St.,http://www.nycgovparks.org/parks/B405/,park +3116,George Walker Jr. Park,40.67844850534,-73.89507279816732,11207,Wyona St. to Vermont St. between Fulton St. and Jamaica Ave.,http://www.nycgovparks.org/parks/B402/,park +3117,Carter G. Woodson Children's Park,40.66791120732,-73.9057030555809,11212,Christopher Ave. between Sutter Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B397/,park +3118,Diamante Garden,40.79793006639,-73.93613975446817,10035,E. 118 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M323/,park +3119,Cedar Tree Garden,40.68787902785,-73.95902859147257,11238,Greene Ave. between Classon Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/B448/,park +3120,Nehemiah Park,40.66226250493,-73.90548435927123,11212,"Watkins St., Mother Gaston Blvd., Livonia Ave., Riverdale Ave.",http://www.nycgovparks.org/parks/B396/,park +3121,Lt. Federico Narvaez Tot Lot,40.64016980833,-73.96579867120825,11226,Argyle Rd. and Cortelyou Rd.,http://www.nycgovparks.org/parks/B391/,park +3122,Mother Cabrini Park,40.68451930207,-74.00506496661217,11231,President St. and Van Brunt St.,http://www.nycgovparks.org/parks/B390/,park +3123,Umma Park,40.65347606284,-73.96181567904762,11226,Woodruff Ave. and Ocean Ave.,http://www.nycgovparks.org/parks/B389/,park +3124,Gateway Triangle,40.68409556676,-73.96817181919647,11238,"Vanderbilt Ave., Gates Ave. and Fulton St.",http://www.nycgovparks.org/parks/B388/,park +3125,Thomas Boyland Park,40.6822829845,-73.90793700460667,11207,Broadway between Granite St. and Aberdeen St.,http://www.nycgovparks.org/parks/B381/,park +3126,Robert E. Venable Park,40.67502509747,-73.86481937522672,11208,"Belmont Ave., Sutter Ave., Sheridan Ave. and Grant Ave.",http://www.nycgovparks.org/parks/B380/,park +3127,University Place,40.69183676087,-73.98152017138543,11201,Flatbush Ave. at Fleet St.,http://www.nycgovparks.org/parks/B378/,park +3128,Brooklyn Bears Rockwell Pl Garden,40.68682008266,-73.97916641297812,11217,"Flatbush Ave., Lafayette Ave., Rockwell Pl.",http://www.nycgovparks.org/parks/B422/,park +3129,Floyd Patterson Ballfields,40.66025275196,-73.90355315797022,11212,"Christopher Ave., Riverdale Ave., Newport St., Mother Gaston Blvd.",http://www.nycgovparks.org/parks/B377/,park +3130,Friends Field,40.61969433341,-73.97208388252155,11230,"Ave. L, E. 4 St., Mcdonald Ave., Ave. M",http://www.nycgovparks.org/parks/B372/,park +3131,Woods Playground,40.67433678402,-73.92843423606706,11213,"Bergen St., Utica Ave., Rochester Ave., St Mark's Ave.",http://www.nycgovparks.org/parks/B364/,park +3132,Houston Playground,40.67198442282,-73.904645369763,11212,Glenmore Ave. between Powell St. and Sackman St.,http://www.nycgovparks.org/parks/B363/,park +3133,Chester Playground,40.66911593883,-73.91163836305083,11212,Chester St. to Bristol St. between Sutter Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B362/,park +3134,Remsen Playground,40.64241773237,-73.90678996935625,11236,Remsen Ave. and Glenwood Rd.,http://www.nycgovparks.org/parks/B360/,park +3135,Eleanor Roosevelt Playground,40.69310815157,-73.935491161156,11221,Kosciuszko St. to Dekalb Ave. between Lewis Ave. and Stuyvesant Ave.,http://www.nycgovparks.org/parks/B359/,park +3136,North Pacific Playground,40.68533275168,-73.98195273092512,11217,Pacific St. between Nevins St. and 3 Ave.,http://www.nycgovparks.org/parks/B356/,park +3137,Bergen Beach Playground,40.6220338972,-73.90971174522873,11234,E. 71 St. between Ave. N and Ave. T,http://www.nycgovparks.org/parks/B353/,park +3138,Curtis Playground,40.6407281703,-73.91716451896379,11236,Foster Ave. between E. 81 St. and E. 82 St.,http://www.nycgovparks.org/parks/B352/,park +3139,Newtown Barge Playground,40.73694762976,-73.96063914629796,11222,"Commercial St., Dupont St.",http://www.nycgovparks.org/parks/B135/,park +3140,First Temple Of David,40.66662885184,-73.89111242963195,11207,Bradford St. and Dumont Ave.,http://www.nycgovparks.org/parks/B466/,park +3141,Hilltop Playground,40.67559976311,-73.91391316637994,11233,Hopkinson Ave. bet. Pacific St. and Dean St.,http://www.nycgovparks.org/parks/B387/,park +3142,Sylvan Grove Cemetery,40.59094959925,-74.19211976511588,10314,Victory Blvd. and Glen St.,http://www.nycgovparks.org/parks/R156/,park +3143,South Clove Road Cemetery,40.60871157083,-74.09126298048638,10304,South Clove Rd. and Richmond Rd.,http://www.nycgovparks.org/parks/R155/,park +3144,Pinocchio Playground,40.70510512196,-73.87498589510204,11385,"74 St., 75 St. bet. Cooper Ave. and 78 Ave.",http://www.nycgovparks.org/parks/Q289/,park +3145,Kosciuszko Pool,40.69105435001,-73.94845908753034,11216,Marcy Ave. between Kosciuszko St. and Dekalb Ave.,http://www.nycgovparks.org/parks/B351/,park +3146,Stroud Playground,40.67503406471,-73.96128703530192,11238,Sterling Pl. to Park Pl. between Classon Ave. and Washington Ave.,http://www.nycgovparks.org/parks/B350/,park +3147,Willoughby Playground,40.69480616929,-73.94681447373296,11206,"Tompkins Ave., Willoughby Ave., Vernon Ave.",http://www.nycgovparks.org/parks/B348/,park +3148,Carver Playground,40.68007507055,-73.9201019074223,11233,Sumpter St. to Marion St. between Howard Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B347/,park +3149,Ericsson Playground,40.72105062199,-73.9487268450287,11222,Manhattan Ave. and Leonard St.,http://www.nycgovparks.org/parks/B346/,park +3150,Green Gems,40.67660541522,-73.87521584825697,11208,Glenmore Ave. and Fountain Ave.,http://www.nycgovparks.org/parks/B471/,park +3151,Corona Golf Playground,40.74751639905,-73.85384748688088,11368,"109 St., 111 St. bet. 46 Ave. and 47 Ave.",http://www.nycgovparks.org/parks/Q450/,park +3152,Ethan Allen Playground,40.655383428,-73.8867684430967,11207,Wortman Ave. between Vermont St. and New Jersey Ave.,http://www.nycgovparks.org/parks/B345/,park +3153,100% Playground,40.6462549642,-73.89939837273964,11236,Glenwood Rd. between E. 100 St. and E. 101 St.,http://www.nycgovparks.org/parks/B342/,park +3154,Garden Playground,40.70109060447,-73.93774918226296,11206,Flushing Ave. between Beaver St. and Garden St.,http://www.nycgovparks.org/parks/B340/,park +3155,Century Playground,40.57741259024,-73.96957957675203,11224,W. Brighton Ave. between W. 2 St. and W. 3 St.,http://www.nycgovparks.org/parks/B337/,park +3156,Fermi Playground,40.70099004877,-73.92774827695386,11221,"Central Ave., Troutman St. and Starr St.",http://www.nycgovparks.org/parks/B334/,park +3157,Evergreen Playground,40.68614317116,-73.91025375126247,11207,Decatur St. to Schaefer St. between Bushwick Ave. and Evergreen Ave.,http://www.nycgovparks.org/parks/B332/,park +3158,Hickman Playground,40.62094894688,-73.91386363150042,11234,Veterans Ave. between E. 66 St. and E 68 St.,http://www.nycgovparks.org/parks/B330/,park +3159,Fish Playground,40.67834175444,-73.91400987432566,11233,Fulton St. between Saratoga Ave. and Hopkinson Ave.,http://www.nycgovparks.org/parks/B325/,park +3160,Jacob Joffe Fields,40.62443730655,-73.91954923285431,11234,Ave. K between E. 58 St. and E. 59 St.,http://www.nycgovparks.org/parks/B324/,park +3161,Hattie Carthan Playground,40.68538037999,-73.94563033934269,11216,Monroe St. to Madison St. between Marcy Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B323/,park +3162,Pulaski Playground,40.69339683589,-73.94110197570997,11206,Hart St. to Pulaski St. between Throop Ave. and Marcus Garvey Blvd.,http://www.nycgovparks.org/parks/B322/,park +3163,Whalen Playground,40.87442339238,-73.87740831572681,10467,Perry Ave. bet. E. 205 St. and E. 208 St,http://www.nycgovparks.org/parks/X180/,park +3164,Eugene McCabe Field,40.80251821365,-73.94122413701776,10035,"Park Ave., E. 120 St. To E. 121 St.",http://www.nycgovparks.org/parks/M243/,park +3165,Drumgoole Tot Lot,40.5493415445,-74.17974375571256,10312,"Drumgoole Rd. W., Grantwood Ave., Carlton Ave., Rathbun Ave.",http://www.nycgovparks.org/parks/R100/,park +3166,Edmonds Playground,40.68945696904,-73.97125377590508,11205,Dekalb Ave. between Adelphi St. and Carlton Ave.,http://www.nycgovparks.org/parks/B321/,park +3167,Park Slope Playground,40.6766307447,-73.97803688309779,11217,Berkeley Pl. and Lincoln Pl. between 5 Ave. and 6 Ave.,http://www.nycgovparks.org/parks/B320/,park +3168,DiGilio Playground,40.63310667218,-73.97711409680471,11218,Ave. F bet. McDonald Ave. and E. 2 St.,http://www.nycgovparks.org/parks/B316/,park +3169,Rainbow Garden,40.82341021408,-73.91479316702888,10451,E 159 St bet. Melrose Av and Courtlandt Av,http://www.nycgovparks.org/parks/X317/,park +3170,Woodruff Playground,40.66506652778,-73.86563875507731,11208,Stanley Ave. between Autumn Ave. and Hemlock St.,http://www.nycgovparks.org/parks/B312/,park +3171,Pink Playground,40.66634241452,-73.86220468901465,11208,Stanley Ave. and Eldert La.,http://www.nycgovparks.org/parks/B309/,park +3172,Yak Playground,40.59250991895,-73.93570590982004,11235,Ave. Y between Coyle St. and Batchelder St.,http://www.nycgovparks.org/parks/B308/,park +3173,Tiger Playground,40.68834738231,-73.91042429552446,11207,Evergreen Ave. between Eldert St. and Covert St.,http://www.nycgovparks.org/parks/B307/,park +3174,Playground 286,40.59057976569,-73.93812935209951,11235,Ave. Y between Brown St. and Haring St.,http://www.nycgovparks.org/parks/B306/,park +3175,Kennedy King Playground,40.65841590616,-73.92183500049609,11212,"E. 93 St. to E. 94 St., between Lenox Rd. and Clarkson Ave.",http://www.nycgovparks.org/parks/B304/,park +3176,Greene Playground,40.68572912115,-73.96546940837165,11238,Greene Ave. bet. Waverly Ave. and Washington Ave.,http://www.nycgovparks.org/parks/B301/,park +3177,Oracle Playground,40.69376112495,-73.97111544179398,11205,"Adelphi St., Myrtle Ave., Clermont Ave.",http://www.nycgovparks.org/parks/B300/,park +3178,Luna Playground,40.57645485639,-73.97804478843902,11224,Surf Ave. between W. 12 St. and W. 8 St.,http://www.nycgovparks.org/parks/B296/,park +3179,Oxport Playground,40.69711945257,-73.97606754205428,11205,Flushing Ave. between N. Portland Ave. and N. Oxford St.,http://www.nycgovparks.org/parks/B295/,park +3180,Classon Playground,40.68903658432,-73.96015298653518,11205,Lafayette Ave. and Classon Ave.,http://www.nycgovparks.org/parks/B293/,park +3181,Pratt Playground,40.69240572065,-73.96211619080259,11205,Willoughby Ave. between Stuben St. and Emerson Pl.,http://www.nycgovparks.org/parks/B292/,park +3182,Power Playground,40.61747305224,-73.92688097964339,11234,Ave. N between E. 49 St. and Utica Ave.,http://www.nycgovparks.org/parks/B291/,park +3183,Harry Maze Playground,40.64263670163,-73.9234266846367,11203,"Ave. D, Ditmas Ave. bet. E. 56 St. and E. 57 St.",http://www.nycgovparks.org/parks/B285/,park +3184,Corporal Frank F. Fagan Sq.,40.75605610337,-73.91243016359473,11377,"48 St., Newtown Rd., Broadway",http://www.nycgovparks.org/parks/Q254/,park +3185,Marc And Jason's Playground,40.66384643331,-73.94982718962258,11225,"Sterling St., Empire Blvd., New York Ave., Nostrand Ave.",http://www.nycgovparks.org/parks/B284/,park +3186,Ranaqua Playground,40.80690756995,-73.92191988464064,10454,E. 136 St. bet. Brown Pl. and Willis Ave.,http://www.nycgovparks.org/parks/X272/,park +3187,Grady Playground,40.58233322595,-73.96437357512889,11235,"Shore Pkwy., Brighton 3 St., Brighton 4 St.",http://www.nycgovparks.org/parks/B275/,park +3188,Bayview Playground,40.6351837143,-73.88605616693891,11236,Seaview Ave. between E. 99 St. and E. 101 St.,http://www.nycgovparks.org/parks/B274/,park +3189,Starr Playground,40.70982592368,-73.91730797173041,11385,Onderdonk Ave. bet. Starr St. and Willoughby Ave.,http://www.nycgovparks.org/parks/Q291/,park +3190,Corporal Ruoff Square,40.68038895023,-73.8448450163566,11417,"Liberty Ave., Rockaway Blvd. bet. 94 St., Cross Bay Blvd. and 95 St.",http://www.nycgovparks.org/parks/Q190/,park +3191,Brownsville Playground,40.6556117604,-73.90300876514156,11212,"Hegeman Ave., Linden Blvd. bet. Powell St. and Mother Gaston Blvd.",http://www.nycgovparks.org/parks/B270/,park +3192,Winthrop Playground,40.65637220979,-73.95446701497883,11225,Winthrop St. between Rogers Ave. and Bedford Ave.,http://www.nycgovparks.org/parks/B267/,park +3193,Star Spangled Playground,40.69242615564,-73.95770989246813,11205,Franklin Ave. between Willoughby Ave. and Dekalb Ave.,http://www.nycgovparks.org/parks/B266/,park +3194,Rainbow Playground,40.64067349105,-74.01069911177859,11220,6 Ave. bet. 55 St. and 56 St.,http://www.nycgovparks.org/parks/B265/,park +3195,Roebling Playground,40.70647158614,-73.9609452576999,11211,Lee Ave. between Wilson St. and Taylor St.,http://www.nycgovparks.org/parks/B264/,park +3196,Potomac Playground,40.68173690927,-73.94476149765043,11216,Tompkins Ave. between Halsey St. and Macon St.,http://www.nycgovparks.org/parks/B262/,park +3197,Howard Playground,40.67199200489,-73.90760273049897,11212,Mother Gaston Blvd. and Glenmore Ave.,http://www.nycgovparks.org/parks/B260/,park +3198,Wingate Park,40.6596919687,-73.94420747204322,11203,"Winthrop St., Brooklyn Ave., Rutland Rd.",http://www.nycgovparks.org/parks/B254/,park +3199,Nostrand Playground,40.63861773199,-73.94644652231321,11210,Nostrand Ave. between Foster Ave. and Farragut Pl.,http://www.nycgovparks.org/parks/B250/,park +3200,McDonald Playground,40.60148673645,-73.97182711049231,11223,Mcdonald Ave. between Ave. S and Ave. T,http://www.nycgovparks.org/parks/B244/,park +3201,Sheepshead Playground,40.5894526578,-73.9399536627248,11235,Ave. Z between Nostrand Ave. and E. 29 St.,http://www.nycgovparks.org/parks/B239/,park +3202,Herman Dolgon Playground,40.59785956405,-73.9404721735751,11229,Ave. V between Nostrand Ave. and Batchelder St.,http://www.nycgovparks.org/parks/B235/,park +3203,Seward Park,40.71426208449,-73.9888296647971,10002,"Canal St, Essex St, Jefferson St and E Broadway",http://www.nycgovparks.org/parks/M082/,park +3204,St. Andrew's Playground,40.67816967074,-73.94148303666111,11216,"Atlantic Ave., Herkimer St., Kingston Ave., St Andrew's Pl.",http://www.nycgovparks.org/parks/B225/,park +3205,Queens Valley Playground,40.72171901355,-73.82316609851492,11367,137 St. bet. 76 Ave. and 76 Rd.,http://www.nycgovparks.org/parks/Q212/,park +3206,Squibb Park,40.70104213259,-73.9950993695748,11201,Middagh St. between Columbia Heights & Furman St.,http://www.nycgovparks.org/parks/B223F/,park +3207,Jennie Jerome Playground,40.84558496661,-73.91327313915222,10453,Jerome Av bet. E 174 St and the Cross Bronx Exwy Entrance Ramp,http://www.nycgovparks.org/parks/X148C5/,park +3208,Federalist Triangle,40.72683274077,-73.90050056269719,11378,"55 Ave., Jay Ave., 65 Pl.",http://www.nycgovparks.org/parks/Q090/,park +3209,Legion Triangle,40.68653797831,-73.86682928835789,11421,"Rockaway Blvd., Eldert La.",http://www.nycgovparks.org/parks/Q076/,park +3210,Trolley Car Triangle,40.76231431071,-73.87232106968362,11369,"Astoria Blvd., 97 St. and Jackson Mill Rd.",http://www.nycgovparks.org/parks/Q070/,park +3211,Middleburgh Triangle,40.74131862834,-73.87502053287322,11373,"Corona Ave., 90 St., 48 Ave.",http://www.nycgovparks.org/parks/Q069/,park +3212,John Vincent Daniels Jr. Square,40.74392521321,-73.91362408531764,11377,"43 Ave., Roosevelt Ave. bet. 50 St., 51 St. and 52 St.",http://www.nycgovparks.org/parks/Q065/,park +3213,Rochdale Park,40.67524298933,-73.77295885791341,11434,Guy R. Brewer Blvd. bet. 130 Ave. and 137 Ave.,http://www.nycgovparks.org/parks/Q413/,park +3214,Dunningham Triangle,40.74635179869,-73.88357183968009,11373,"82 St., Ithaca St., Baxter Ave.",http://www.nycgovparks.org/parks/Q058/,park +3215,Mae Grant Playground,40.7926628468,-73.94895711388925,10029,"N/s E. 104 St., Madison Ave. and Park Ave.",http://www.nycgovparks.org/parks/M213/,park +3216,Van Voorhees Playground,40.69019032643,-73.99922892592204,11201,"Columbia St., Hicks St. bet. Congress St. and Atlantic Ave.",http://www.nycgovparks.org/parks/B050/,park +3217,Mary O'Connor Playground,40.74957908731,-73.97052783690923,10017,E. 42 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M203D/,park +3218,Columbus Square,40.76999975481,-73.91742404027441,11103,"Astoria Blvd S., Hoyt Ave. S. bet. 31 St. and 32 St.",http://www.nycgovparks.org/parks/Q137/,park +3219,Broadway Malls,40.83846673927,-73.94162339331957,10032,"Broadway, W 156 St To W 168 St",http://www.nycgovparks.org/parks/M095A/,park +3220,Brizzi Playground,40.64269087997,-73.99441233975762,11219,"10 Ave., New Utrecht Ave. bet. 43 St. and 42 St.",http://www.nycgovparks.org/parks/B162/,park +3221,Mapes Park,40.84731526863,-73.88506332614014,10460,"Mapes Ave., Prospect Ave. bet. E. 180 St. and E. 181 St.",http://www.nycgovparks.org/parks/X289/,park +3222,Lyons Pool,40.63763524739,-74.07494471814765,10301,Murray Julbert Ave. bet. Victory Blvd. and Hannah St.,http://www.nycgovparks.org/parks/R043/,park +3223,Saw Mill Creek Marsh,40.61122646035,-74.18776095396163,10314,West Shore Exwy. to Kill Van Kull from River Rd. to South Ave.,http://www.nycgovparks.org/parks/R130/,park +3224,Mapes Pool,40.84650628414,-73.88575715253079,10460,E 180 St bet. Prospect Av and Mapes Av,http://www.nycgovparks.org/parks/X236/,park +3225,Garden Of Eden,40.84358400882,-73.90720560327286,10457,E 173 St bet. Weeks Av and Monroe Av,http://www.nycgovparks.org/parks/X297/,park +3226,Locust Point Marina,40.81610194891,-73.80459102744793,10465,Longstreet Ave. bet. Harding Ave. and Giegerich Pl.,http://www.nycgovparks.org/parks/X310/,park +3227,Alexander's Alley,40.81159902717,-73.92306430570771,10454,E. 141 St. bet. Willis Ave. and Alexander Ave.,http://www.nycgovparks.org/parks/X119/,park +3228,110th Street Block Association Garden,40.7962497377,-73.94742443828993,10029,E. 110 St. bet. Madison Ave. and Park Ave.,http://www.nycgovparks.org/parks/M382/,park +3229,Huguenot Ponds Park,40.53017030149,-74.18977570007709,10312,Billiou St. and Comely St. bet. Huguenot Ave. and Kingdom Ave.,http://www.nycgovparks.org/parks/R131/,park +3230,Jackie Robinson Park,40.82824916353,-73.9394109472362,10039,"Bradhurst Av and Edgecombe Av, W 145 St To",http://www.nycgovparks.org/parks/M014/,park +3231,Chelsea Park,40.75069828559,-74.00177474199378,10001,"9 Av To 10 Av, W 27 St To W 28 St",http://www.nycgovparks.org/parks/M011/,park +3232,Bennett Park,40.85223814809,-73.93792999681882,10033,"Ft Washington Av, W 183 St, Pinehurst Av",http://www.nycgovparks.org/parks/M009/,park +3233,Columbus Park,40.71518119983,-73.99974544634283,10013,"Baxter St, Mulberry St, Bayard St and Park",http://www.nycgovparks.org/parks/M015/,park +3234,Cooney Grauer Field,40.88049716004,-73.90087367611189,10463,Bailey Ave. bet. W. 233 St. and W. 234 S,http://www.nycgovparks.org/parks/X150I/,park +3235,Sutton Parks,40.75543914166,-73.96187594075163,10022,"E. 53 St. to E. 54 St. at Sutton Pl.; Foot of E. 55 St., E. 56 St., E. 57 St.",http://www.nycgovparks.org/parks/M108P/,park +3236,Valentino Pier,40.67889715901,-74.01821884592034,11231,Ferris St. between Coffey St. and Van Dyke St.,http://www.nycgovparks.org/parks/B418/,park +3237,Juniper Valley Park,40.71920859897,-73.88081129246667,11379,"Juniper Blvd. bet. Lutheran Ave., 71 St. and Dry Harbor Rd.",http://www.nycgovparks.org/parks/Q102/,park +3238,Hilton Holiday Gardens,40.66822491036,-73.7951244556081,11436,"133 Ave., 135 Ave. bet. 143 St. and 145 St.",http://www.nycgovparks.org/parks/Q440/,park +3239,Weeksville Playground,40.67709959137,-73.9193215298684,11233,Howard Ave. bet. Atlantic Ave. and Herkimer St.,http://www.nycgovparks.org/parks/B093/,park +3240,Whitey Ford Field,40.77825100367,-73.93371718774772,11102,"26 Ave., bet. 1 St. and 2 St.",http://www.nycgovparks.org/parks/Q215/,park +3241,Captain Tilly Park,40.71281217248,-73.79827338424522,11432,"Highland Ave., 85 Ave. bet. 165 St. and Chapin Pkwy.",http://www.nycgovparks.org/parks/Q052/,park +3242,Trinity Park,40.69848030416,-73.98333289232065,11201,"Nassau St., Sands St. bet. Manh. Bridge and Gold St.",http://www.nycgovparks.org/parks/B223K/,park +3243,Police Officer Nicholas Demutiis Park,40.68148243301,-73.83893707403772,11417,Liberty Ave. bet. 101 St. and 102 St.,http://www.nycgovparks.org/parks/Q118/,park +3244,Springfield Park,40.66033865512,-73.76139575823794,11413,"149 Av, Springfield Bl, 145 Rd, 184 St",http://www.nycgovparks.org/parks/Q107/,park +3245,Brooklyn Heights Promenade,40.69842958658,-73.99681516426283,11201,BQE bet. Clark St. and Pierrepoint St.,http://www.nycgovparks.org/parks/B223DG/,park +3246,Dimattina Playground,40.68062529686,-74.00178411679866,11231,Hicks St. bet. Woodhull St. and Rapelye St.,http://www.nycgovparks.org/parks/B223B/,park +3247,Newtown Playground,40.73619628364,-73.86903336958271,11373,"56 Ave., 92 St.",http://www.nycgovparks.org/parks/Q041/,park +3248,Pfc Norton Playground,40.61426202301,-73.94503487027522,11229,Nostrand Ave. bet. Kings Hwy. and Ave. P,http://www.nycgovparks.org/parks/B208/,park +3249,Sunners Playground,40.63239670833,-73.92943855562463,11234,Avenue H bet. Kings Hwy. and E. 49 St.,http://www.nycgovparks.org/parks/B206/,park +3250,Mellett Playground,40.59670553538,-73.95704055316381,11229,Avenue V bet. E. 13 St. and E. 14 St.,http://www.nycgovparks.org/parks/B197/,park +3251,John Hancock Playground,40.68242790004,-73.95386934152293,11216,"Bedford Ave., Hancock St., Jefferson Ave.",http://www.nycgovparks.org/parks/B237/,park +3252,P.S. 125 Playground,40.66516627688,-73.90940657813228,11212,Rockaway Ave. bet. Blake Ave. and Dumont Ave.,http://www.nycgovparks.org/parks/B227/,park +3253,Dr. Green Playground,40.66757157691,-73.90651756610914,11212,Mother Gaston Blvd. and Sutter Ave.,http://www.nycgovparks.org/parks/B228/,park +3254,Baisley Pond Park,40.67917896073,-73.78439768325394,11434,"N. Conduit Ave., 116 Ave. bet. 150 St., Suptin Blvd., and Baisley Blvd. S.",http://www.nycgovparks.org/parks/Q005/,park +3255,Joe Holzka Community Garden,40.63481924555,-74.12158675820055,10310,Barker St. bet. Castleton Ave. and Taylor Ct.,http://www.nycgovparks.org/parks/R146/,park +3256,La Guardia Playground,40.70964031186,-73.95892335421298,11211,"S. 5 St., Broadway, Havemeyer St.",http://www.nycgovparks.org/parks/B167A/,park +3257,Thomas Greene Playground,40.6802174719,-73.98430020422195,11217,"Nevins St., 3 Ave., bet. De Graw St. and Douglas St.",http://www.nycgovparks.org/parks/B145/,park +3258,Martinez Playground,40.70890968807,-73.94418229453073,11206,Scholes St. bet. Manhattan Ave. and Graham Ave.,http://www.nycgovparks.org/parks/B127/,park +3259,Dyckman House Museum,40.86718368506,-73.92305320407046,10034,Broadway and W. 204 St.,http://www.nycgovparks.org/parks/M026/,park +3260,CPL. Thompson Park,40.63686354103,-74.11861893340144,10310,"Broadway, Henderson Ave., Chappell St.",http://www.nycgovparks.org/parks/R109/,park +3261,Bloomingdale Park,40.53031875178,-74.2112474349049,10309,"Richmond Pkwy., West Shore Expw., Lenevar Ave., Ramona Ave.",http://www.nycgovparks.org/parks/R106/,park +3262,Marcy Playground,40.69584110591,-73.9506131078259,11206,Myrtle Ave. bet. Nostrand Ave. and Marcy Ave.,http://www.nycgovparks.org/parks/B217/,park +3263,John Allen Payne Playground,40.64019324746,-74.02359665349556,11220,3 Ave. bet. 64 St. and 65 St.,http://www.nycgovparks.org/parks/B210A/,park +3264,Dongan Playground,40.58231860205,-74.08859687032225,10305,Mason Ave. bet. Buel Ave. and Dongan Hills Ave.,http://www.nycgovparks.org/parks/R087/,park +3265,Sledge Playground,40.63841294286,-73.89784646903031,11236,E. 95 St. bet. Ave. L and Ave. K,http://www.nycgovparks.org/parks/B097/,park +3266,Davis Playground,40.64206115916,-74.08538230221099,10301,"Jersey St., Crescent Ave., Layton Ave., Beechwood Ave.",http://www.nycgovparks.org/parks/R086/,park +3267,E.M.T. Christopher J. Prescott Playground,40.5222924396,-74.18557299612219,10312,Edith Ave. at Irvington St.,http://www.nycgovparks.org/parks/R085/,park +3268,Harold Ickes Playground,40.68289588017,-74.00576643156036,11231,Hamitlon Ave. ber. Van Brunt St. and Woodull St.,http://www.nycgovparks.org/parks/B210H/,park +3269,Latinos Unidos Garden,40.82166324449,-73.91397269643996,10451,E. 157 St. bet. Melrose Ave and Elton Ave.,http://www.nycgovparks.org/parks/X337/,park +3270,Northerleigh Park,40.62328730672,-74.13366975802703,10302,Burnside Ave. to North Ave. at Shaw Pl. and Eldridge Ave.,http://www.nycgovparks.org/parks/R078/,park +3271,Markham Playground,40.62340561265,-74.14513986569457,10302,"Willowbrook Pkwy., Forest Ave. to Houston St.",http://www.nycgovparks.org/parks/R076/,park +3272,Clawson Playground,40.56108399698,-74.12480224365221,10306,"Adelaide Ave., Clawson St.",http://www.nycgovparks.org/parks/R072/,park +3273,Columbus Park,40.69492270712,-73.98911885717008,11201,"Adam St., Court St., Cadman Plaza West bet. Johnson St. and Fulton St.",http://www.nycgovparks.org/parks/B113C/,park +3274,Korean War Veterans Plaza,40.69513965387,-73.99033676948099,11201,"Cadman Plaza West, Cadman Plaza East bet. Tillary St. and Johnson St.",http://www.nycgovparks.org/parks/B113B/,park +3275,Crispus Attucks Playground,40.6816534502,-73.95869140419849,11238,Classon Ave. bet. Fulton St. and Lefferts Pl.,http://www.nycgovparks.org/parks/B102/,park +3276,Terrace Playground,40.61353155076,-74.0981168771601,10301,"Foote Ave., Howard Ave., Martha St., Clove Rd.",http://www.nycgovparks.org/parks/R069/,park +3277,Old Town Playground,40.59514394693,-74.08082911468377,10305,Parkinson Ave. at Kramer St.,http://www.nycgovparks.org/parks/R063/,park +3278,Arrochar Playground,40.5974265945,-74.07090104369,10305,"Sand La., Major Ave. and Mcfarland Ave.",http://www.nycgovparks.org/parks/R062/,park +3279,Rev. Dr. Maggie Howard Playground,40.62267293285,-74.07874711255248,10304,"Tompkins Ave., Broad St. and Hill St.",http://www.nycgovparks.org/parks/R061/,park +3280,Midland Field,40.57676504137,-74.09842046438315,10306,"Midland Ave., Mason Ave., Bedford Ave., Boundary Ave.",http://www.nycgovparks.org/parks/R038A/,park +3281,Midland Playground,40.5742396953,-74.09877666294912,10306,"Lincoln Ave., Mason Ave., Midland Ave., Poultney St.",http://www.nycgovparks.org/parks/R038/,park +3282,Sunset Park,40.64749905614,-74.0009059513263,11232,"41 St., 44 St., bet. 5 Ave. and 7 Ave.",http://www.nycgovparks.org/parks/B087/,park +3283,Lost Battalion Hall Recreation Center,40.73283560424,-73.86443248551073,11374,Queens Blvd. bet. 62 Ave. and 62 Rd.,http://www.nycgovparks.org/parks/Q401/,park +3284,Big Red Garden,40.66873180328,-73.8894045650259,11207,Van Siclen Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B446/,park +3285,Martin Luther King Jr. Playground,40.66706529016,-73.88989700237092,11207,"Dumont Ave., Blake Ave. bet. Bradford St. and Miller Ave.",http://www.nycgovparks.org/parks/B056/,park +3286,Highland Park Childrens Garden,40.68299624341,-73.88747057995819,11207,Jamaica Ave. bet. Warwick St. to Ashford St.,http://www.nycgovparks.org/parks/B047A/,park +3287,Sperandeo Brothers Playground,40.67633180405,-73.88406137452317,11208,"Atlantic Ave., Cleveland St. and Liberty Ave.",http://www.nycgovparks.org/parks/B163/,park +3288,Irving Square Park,40.692930635,-73.90823475719237,11207,"Wilson Ave., Knickerbocker Ave., bet. Halsey St. and Weirfield St.",http://www.nycgovparks.org/parks/B049/,park +3289,Gerard P. Dugan Playground,40.56117067102,-74.10968203132582,10306,Mill Rd. to Weed Ave. bet. Tysens La. and Isernia Ave.,http://www.nycgovparks.org/parks/R026/,park +3290,Mahoney Playground,40.64292595416,-74.08581316998756,10301,"Beechwood Ave., Crescent Ave. and Jersey St.",http://www.nycgovparks.org/parks/R025/,park +3291,Silver Lake Park,40.62183259706,-74.09734236135799,10301,"Victory Blvd., Clove Rd., Forest Ave.",http://www.nycgovparks.org/parks/R022/,park +3292,Walker Park,40.64266112915,-74.11035013703814,10310,"Delafield Pl., Bard Ave., and Davis Ave.",http://www.nycgovparks.org/parks/R015/,park +3293,Barrett Park,40.62461067899,-74.11418956708948,10310,Glenwood Pl. bet. Clove Rd. and Broadway,http://www.nycgovparks.org/parks/R003/,park +3294,Brooklyn Botanic Garden,40.67215243584,-73.96535651528673,11238,"Washington Ave., Flatbush Ave. bet. Eastern Pkwy. and Empire Blvd.",http://www.nycgovparks.org/parks/B010/,park +3295,Heisser Triangle,40.69877822338,-73.91777998309018,11237,"Knickerbocker Ave., Myrtle Ave., Bleecker St.",http://www.nycgovparks.org/parks/B045/,park +3296,Story Playground,40.82359378977,-73.86262163118082,10473,Story Ave. bet. Taylor Ave. and Thieriot Ave.,http://www.nycgovparks.org/parks/X204/,park +3297,Printers Park,40.82391695232,-73.89059014547541,10459,Hoe Av bet. Aldus St and Westchester Av,http://www.nycgovparks.org/parks/X284/,park +3298,Longfellow Playground,40.82587678326,-73.8874305585425,10459,"Longfellow Ave., Lowell St., E. 165 St.",http://www.nycgovparks.org/parks/X290/,park +3299,Field Of Dreams Court,40.82668573181,-73.8920824638161,10459,E 167 St bet. Southern Blvd and Simpson St,http://www.nycgovparks.org/parks/X264/,park +3300,Carroll Park,40.68097488253,-73.99448698908022,11231,"Court St., Smith St., bet. Carroll St. and President St.",http://www.nycgovparks.org/parks/B019/,park +3301,Bushwick Playground,40.69653597818,-73.91204660623697,11237,Knickerbocker Ave. bet. Woodbine St. and Putnam Ave.,http://www.nycgovparks.org/parks/B017/,park +3302,Amersfort Park,40.62761792705,-73.93854175927676,11210,"E. 38 St., E. 38 St. bet. Ave. I and Ave. J",http://www.nycgovparks.org/parks/B002/,park +3303,American Playground,40.72852976621,-73.95749594420685,11222,Franklin St. bet. Milton St. and Noble St.,http://www.nycgovparks.org/parks/B001/,park +3304,Marion Hopkinson Playground,40.68184391773,-73.91374895281301,11233,Hopkinson Ave. bet. Marion St. and Chauncey St.,http://www.nycgovparks.org/parks/B110/,park +3305,Two Coves Community Garden,40.77209429321,-73.93204581404675,11102,"Astoria Blvd., 30 Ave. bet. Main Ave. and 8 St.",http://www.nycgovparks.org/parks/Q477/,park +3306,Simeone Park,40.7411662673,-73.85976396232935,11368,"Lewis Ave., Radcliff Ave. bet. 101 St. and 102 St.",http://www.nycgovparks.org/parks/Q474/,park +3307,Corona Taxpayers Association,40.74161199876,-73.8597496702838,11368,102 St. bet. Radcliff Ave. and Strong Ave.,http://www.nycgovparks.org/parks/Q474A/,park +3308,Lafayette Playground,40.69246363108,-73.92963488062917,11221,Lafayette Ave. bet. Malcolm X Blvd. and Patch Ave.,http://www.nycgovparks.org/parks/B023/,park +3309,Andrews Grove,40.74344294572,-73.95437824599685,11101,49 Ave. bet. 5 St. and Vernon Blvd.,http://www.nycgovparks.org/parks/Q045/,park +3310,Tompkins Square Park,40.72518209047,-73.9812564536158,10009,"Ave. A To Ave. B, E. 7 St. To E. 10 St.",http://www.nycgovparks.org/parks/M088/,park +3311,St. George Park,40.64443133748,-74.07793439662545,10301,Stuyvesant Pl. bet. Wall St. and Hamilton Ave.,http://www.nycgovparks.org/parks/R077/,park +3312,Hart To Hart,40.69295205842,-73.94741273033296,11206,Hart St. bet. Marcy Ave. and Tompkins Ave.,http://www.nycgovparks.org/parks/B474/,park +3313,Robert L. Clinkscales Playground and Community Garden,40.8226887193,-73.93969486089213,10039,W. 146 St. bet. Fredrick Douglass Blvd. and Adam Clayton Powell Blvd.,http://www.nycgovparks.org/parks/M355/,park +3314,Fort Tryon Park,40.85972020674,-73.93135505855416,10040,"Riverside Dr To Broadway, W 192 St To Dyckman St",http://www.nycgovparks.org/parks/M029/,park +3315,Pueble Unido Garden,40.7964933635,-73.94724522871344,10029,Madison Ave. bet. E. 110 St. and E. 111 St.,http://www.nycgovparks.org/parks/M384/,park +3316,La Cuevita Garden,40.79923127148,-73.94416361727798,10029,E. 115 St. bet. Park Ave. and Madison Ave.,http://www.nycgovparks.org/parks/M383/,park +3317,United Block Association Garden,40.81079888905,-73.94110416163524,10037,W. 131 St. bet. 5 Ave. and Lenox Ave.,http://www.nycgovparks.org/parks/M380/,park +3318,Pleasant Park Garden,40.79426108391,-73.93432908751741,10029,E. 114 St. bet. 1 Ave. and Pleasant Ave.,http://www.nycgovparks.org/parks/M375/,park +3319,Our Little Green Acre/garden Eight,40.80829663882,-73.95192635084753,10027,W. 122 St. bet. Frederick Douglass Blvd. and Adam C. Powell Blvd.,http://www.nycgovparks.org/parks/M365/,park +3320,Jackie Robinson Community Garden,40.8031905364,-73.93964584301888,10035,E. 122 St. bet. Park Ave. and Lexington Ave.,http://www.nycgovparks.org/parks/M364/,park +3321,W 124th Street Community Garden,40.80716175258,-73.94515009314163,10027,W. 124 St. bet. Lenox Ave. and 5 Ave.,http://www.nycgovparks.org/parks/M362/,park +3322,Lower East Side Ecology Center,40.72448463963,-73.97961759777417,10009,E. 7 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M361/,park +3323,First Street Garden,40.72386474148,-73.98963948581685,10003,E. 1 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M358/,park +3324,Los Amigos Garden,40.7223800789,-73.98207398041201,10009,"E. 3 St., bet. Ave. B and Ave. C",http://www.nycgovparks.org/parks/M357/,park +3325,P.S. 76 Garden,40.80608522859,-73.95115536768618,10027,W. 120 St. bet. Adam Clayton Powell Blvd. and St Nicholas Ave.,http://www.nycgovparks.org/parks/M356/,park +3326,Yu Suen Garden,40.72844258818,-73.97824962169392,10009,Ave. B and E. 13 St.,http://www.nycgovparks.org/parks/M352/,park +3327,Peachtree Garden,40.72149581326,-73.9819962025476,10009,E. 2 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M350/,park +3328,New 123rd St Block Association Garden,40.80676964129,-73.94735171527196,10027,W. 123 St. bet. Lenox Ave. and Adam C Powell Blvd.,http://www.nycgovparks.org/parks/M349/,park +3329,Morris-Jumel Ecological Education Garden,40.83560421941,-73.9391576797723,10032,W. 162 St. bet. Amsterdam Ave. and Edgecombe Ave.,http://www.nycgovparks.org/parks/M348/,park +3330,Mobilization For Change,40.79968890396,-73.96203692828661,10025,Columbus Ave. and W. 107 St.,http://www.nycgovparks.org/parks/M347/,park +3331,Life Spire Garden,40.8025545658,-73.93833661623387,10035,Lexington Ave. bet. E. 122 St. and E. 123 St.,http://www.nycgovparks.org/parks/M346/,park +3332,Kenkeleba House Garden,40.72207358623,-73.98257998337623,10009,E. 2 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M345/,park +3333,Humacao Community Garden,40.79144347341,-73.9393568469474,10029,E. 108 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M344/,park +3334,Community Garden Association,40.72834481006,-73.97893754532485,10009,Ave. B bet. E. 12 St. and E. 13 St.,http://www.nycgovparks.org/parks/M342/,park +3335,Garden Of Love,40.8043309655,-73.95605540656489,10026,W. 116 St. bet. Manhattan Ave. and Fred Douglass Blvd.,http://www.nycgovparks.org/parks/M341/,park +3336,Elizabeth Langley Memorial Garden,40.81621660031,-73.94087199179819,10030,W. 137 St. bet. Lenox Ave. and Adam C Powell Blvd.,http://www.nycgovparks.org/parks/M340/,park +3337,De Colores Community Yard and Cultural Center,40.72533585411,-73.97974062578366,10009,E. 8 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M336/,park +3338,Brisas Del Caribe,40.72217927211,-73.98159775544,10009,E. 3 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M334/,park +3339,The Secret Garden,40.72240368422,-73.98023261302485,10009,E. 4 St. and Ave C.,http://www.nycgovparks.org/parks/M332/,park +3340,117th St Community Garden,40.7989257637,-73.94043823738292,10035,E. 117 St. bet. Lexington Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M331/,park +3341,Family Community Garden,40.79523159713,-73.94366336049531,10029,E. 111 St. bet. Lexington Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M330/,park +3342,Generation X,40.72241789806,-73.98142360703135,10009,E. 4 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M329/,park +3343,William B. Washington Memorial Garden,40.81129824765,-73.9515561700332,10027,W. 126 St. bet. St Nicholas Ave. and Frederick Douglas Blvd.,http://www.nycgovparks.org/parks/M328/,park +3344,Liz Christy Garden,40.72406974355,-73.9915495407541,10003,"E. Houston, bet. Bowery and 2 Ave.",http://www.nycgovparks.org/parks/M326/,park +3345,La Plaza Cultural,40.72526435365,-73.97812609359605,10009,E. 9 St. bet. Ave. B and Ave. C,http://www.nycgovparks.org/parks/M325/,park +3346,Merchant's House Museum,40.72757234194,-73.99236371147707,10003,E. 4 St. bet. Bowery and Lafayette St.,http://www.nycgovparks.org/parks/M318/,park +3347,Frank White Memorial Garden,40.82409314653,-73.9498918427289,10031,W. 143 St. bet. Hamilton Pl. and Broadway,http://www.nycgovparks.org/parks/M317/,park +3348,Miracle Garden,40.72251216406,-73.98353466849754,10009,"E. 3 St., bet. Ave. A and Ave. B",http://www.nycgovparks.org/parks/M314/,park +3349,Court Square Park,40.74630419399,-73.94306677581775,11101,Jackson Ave. bet. Court Sq. and Thomson Ave.,http://www.nycgovparks.org/parks/Q267/,park +3350,9th St Community Garden Park,40.72569023309,-73.97752231492504,10009,E. 9. St. and Ave. C,http://www.nycgovparks.org/parks/M312/,park +3351,W 104th Street Garden,40.79690258082,-73.96157941135702,10025,"W. 104 St., Manhattan Ave., Central Park W.",http://www.nycgovparks.org/parks/M306/,park +3352,West 186th Street Basketball Court,40.85197590537,-73.93075663162118,10033,"W. 186 St., Audubon Ave., St Nicholas Ave.",http://www.nycgovparks.org/parks/M304/,park +3353,Detective Omar Edwards Park,40.80254121752,-73.93495122934803,10035,E. 124 St.bet. 2 Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M302/,park +3354,Santos White Garden,40.57591467,-73.9882759795244,11224,Mermaid Ave. between W. 21 St. and W. 22 St.,http://www.nycgovparks.org/parks/B490/,park +3355,Jefferson Market Garden,40.73431535995,-73.99925426415518,10011,W. 9 St. Ave. Of Americas and Greenwich Ave.,http://www.nycgovparks.org/parks/M278/,park +3356,Parks Council Success Garden,40.81361237654,-73.9427285671402,10030,"W. 134 St., Lenox Ave., Adam C Powell Blvd.",http://www.nycgovparks.org/parks/M297/,park +3357,Sunshine Playground,40.78854994221,-73.9475961405579,10029,E. 101 St. bet. 3 Ave. and Lexington Ave.,http://www.nycgovparks.org/parks/M292/,park +3358,Fishbridge Garden,40.70932680472,-74.0016459156729,10038,Dover St. bet. Pearl St. and Water St.,http://www.nycgovparks.org/parks/M291/,park +3359,Dr. Ronald E. McNair Playground,40.80241440664,-73.93787523556922,10035,Lexington Ave. bet. E. 122 St. and 123 St.,http://www.nycgovparks.org/parks/M285/,park +3360,Convent Garden,40.82817842692,-73.94263311848547,10031,"Convent Ave., 151 St. and St. Nicholas Ave.",http://www.nycgovparks.org/parks/M284/,park +3361,Hell's Kitchen Park,40.7628909875,-73.99237523495403,10036,10 Ave. bet. W. 47 St. and W. 48 St.,http://www.nycgovparks.org/parks/M277/,park +3362,Dry Dock Playground,40.72499386973,-73.97524106885247,10009,"Szold Pl., E. 10 St., Ave. D",http://www.nycgovparks.org/parks/M270/,park +3363,El Jardin Del Paraiso Park,40.72214898251,-73.97892875271094,10009,"E. 4 St. to E. 5 St., Ave. C, Ave. D",http://www.nycgovparks.org/parks/M268/,park +3364,Playground Eighty Nine LXXXIX,40.78840436586,-73.97170273649769,10024,"W. 89 St., Amsterdam Ave. and Columbus Ave.",http://www.nycgovparks.org/parks/M264/,park +3365,Harlem Rose Garden,40.80861658672,-73.93979408651596,10035,E. 129 St. bet. 5 Ave. and Madison Ave.,http://www.nycgovparks.org/parks/M363/,park +3366,West 111th St. People's Garden,40.80391061179,-73.96338200344834,10025,Amsterdam Ave. bet. W. 111 St. and W. 112 St.,http://www.nycgovparks.org/parks/M368/,park +3367,CEP Community Garden,40.81103751559,-73.95073552024594,10027,W. 126 St. and Frederick Douglass Blvd.,http://www.nycgovparks.org/parks/M374/,park +3368,Discovery Garden,40.69486716988,-73.79062942451517,11433,"109 Ave. bet. 160 St., Unionhall St., and Guy R. Brewer Blvd.",http://www.nycgovparks.org/parks/Q493/,park +3369,Louis Armstrong Community Center,40.75710823967,-73.86100123257201,11368,"107 St., 108 St. bet. Northern Blvd. and 34 Ave.",http://www.nycgovparks.org/parks/Q468/,park +3370,Gene Gray Playground,40.6061043437,-73.81909434125097,11693,Cross Bay Blvd. bet. E 9 Rd. and E 10 Rd.,http://www.nycgovparks.org/parks/Q456/,park +3371,Private William Gray Playground,40.75785503838,-73.87064527999523,11369,98 St. bet. Northern Blvd. and 32 Ave.,http://www.nycgovparks.org/parks/Q439/,park +3372,Yellowstone Park,40.72620621932,-73.84676314926931,11375,Yellowstone Blvd. bet. 68 Ave. and 68 Rd.,http://www.nycgovparks.org/parks/Q425/,park +3373,Chelsea Recreation Center,40.74830574047,-74.00186615276677,10001,"W. 25 St., 9 Ave. To 10 Ave.",http://www.nycgovparks.org/parks/M260/,park +3374,McKinley Playground,40.72417079663,-73.98558059554601,10009,"Ave. A, E. 3 St. to E. 4 St.",http://www.nycgovparks.org/parks/M259/,park +3375,Clement Clarke Moore Park,40.74660718418,-74.0038770189828,10011,W. 22 St. and 10 Ave.,http://www.nycgovparks.org/parks/M257/,park +3376,Bleecker Playground,40.73668990786,-74.00542601073961,10014,"Hudson St., Bleecker St. and 8 Ave.",http://www.nycgovparks.org/parks/M251/,park +3377,Penn South Playground,40.74760581781,-73.99826871504614,10001,"W. 26 St., 8 Ave. To 9 Ave.",http://www.nycgovparks.org/parks/M249/,park +3378,St. James Triangle,40.71267570545,-73.99842801890317,10038,St James Pl. and Oliver St.,http://www.nycgovparks.org/parks/M247/,park +3379,Renaissance Playground,40.8213446724,-73.94139664225519,10030,"7 Ave. To 8 Ave., W. 143 St. To W. 144 St.",http://www.nycgovparks.org/parks/M245/,park +3380,Sol Bloom Playground,40.78926268735,-73.96866126614377,10025,"Columbus Ave., W. 91 St. To W. 92 St., Central Park W.",http://www.nycgovparks.org/parks/M244/,park +3381,Norelli-Hargreaves Playground,40.69002892017,-73.80811002560128,11435,"Van Wyck Exwy. Sr. Rd. E., 142 St., 106 Ave.",http://www.nycgovparks.org/parks/Q220B/,park +3382,Collect Pond Park,40.71592674601,-74.0017068596393,10013,Leonard St. bet. Centre St. and Lafayette St.,http://www.nycgovparks.org/parks/M242/,park +3383,P.S. 155 Playground,40.79744009784,-73.93497779661237,10035,"E. 117 St. To E. 118 St., 1 Ave. To 2 Ave.",http://www.nycgovparks.org/parks/M239/,park +3384,Bloomingdale Playground,40.79937024735,-73.96611214505947,10025,"Amsterdam Ave., W. 104 St. and W. 105 St.",http://www.nycgovparks.org/parks/M238/,park +3385,Corporal John A. Seravalli Playground,40.73882103763,-74.00430982349425,10014,Hudson St. bet. Gansevoort St. and Horatio St.,http://www.nycgovparks.org/parks/M237/,park +3386,Samuel Seabury Playground,40.78523527423,-73.95055588355632,10128,"Lexington Ave., E. 95 St. To E. 96 St.",http://www.nycgovparks.org/parks/M236/,park +3387,Sol Lain Plgd,40.71405476319,-73.98348653140829,10002,"E. Broadway, Henry St., Gouverneur St.",http://www.nycgovparks.org/parks/M235/,park +3388,Wright Brothers Playground,40.83164295123,-73.9413009606635,10032,St Nicholas Ave. and W. 156 St.,http://www.nycgovparks.org/parks/M234/,park +3389,Montbellier Park,40.67499399944,-73.75613313055041,11413,"Springfield Blvd., Sloan St. bet. 139 Ave. and Eastgate Plaza",http://www.nycgovparks.org/parks/Q396/,park +3390,Steinway Playground,40.77665013394,-73.90294481771772,11105,"37 St., 38 St., bet. 20 Rd. and 20 Ave.",http://www.nycgovparks.org/parks/Q395/,park +3391,LaGuardia Landing Lights,40.76447105196,-73.88737821384053,11370,24 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/Q393E/,park +3392,LaGuardia Landing Lights,40.76385530321,-73.88925772282207,11370,"79 St., 80 St. bet. 24 and 25 Ave.",http://www.nycgovparks.org/parks/Q393C/,park +3393,LaGuardia Landing Lights,40.76153113324,-73.88979035228844,11370,25 Ave. bet. 78 St. and 79 St.,http://www.nycgovparks.org/parks/Q393A/,park +3394,Matthew P. Sapolin Playground,40.77725371273,-73.98344684488977,10023,W. 70 St. bet. W. End Ave. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M233/,park +3395,Henry M. Jackson Playground,40.71378994141,-73.98195870073373,10002,"Jackson St., Madison St., Henry St.",http://www.nycgovparks.org/parks/M228/,park +3396,Peter's Field,40.73619466771,-73.9810875609532,10010,"E. 20 St. To E. 21 St., 1 Ave. To 2 Ave.",http://www.nycgovparks.org/parks/M227/,park +3397,Augustus St. Gaudens Playground,40.73545795259,-73.98184991028882,10003,"2 Ave., E. 19 St. To E. 20 St.",http://www.nycgovparks.org/parks/M226/,park +3398,Wagner Playground,40.79991968997,-73.93435786750481,10035,E. 120 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M225/,park +3399,Centreville Playground,40.67075778837,-73.8384015434683,11417,Albert Rd. bet. 96 St. and Centerville St.,http://www.nycgovparks.org/parks/Q386/,park +3400,Litchhult Square,40.71601393804,-73.74480569872354,11429,"Jamaica Ave., Hempstead Ave. bet. 212 Pl and 213 St.",http://www.nycgovparks.org/parks/Q208/,park +3401,Northern Playground,40.75553285595,-73.87476656738876,11372,Northern Blvd. bet. 93 St. and 94 St.,http://www.nycgovparks.org/parks/Q363/,park +3402,Playground Ninety,40.75698498259,-73.87815752485392,11369,"89 St., 90 St. bet. Northern Blvd. and Jackson Mill Rd.",http://www.nycgovparks.org/parks/Q362/,park +3403,Haggerty Park,40.71275178712,-73.7566373468171,11423,Jamaica Ave. bet. 202 St. and 204 St.,http://www.nycgovparks.org/parks/Q359/,park +3404,Real Good Playground,40.73569155224,-73.85629498777283,11374,"Horace Harding Exwy. Sr. Rd. S., 62 Ave. bet. 99 St. and 102 St.",http://www.nycgovparks.org/parks/Q357B/,park +3405,Electric Playground,40.73545512466,-73.80503278425257,11365,164 St. bet. 65 Ave. and 67 Ave.,http://www.nycgovparks.org/parks/Q342/,park +3406,Ravenswood Playground,40.76279815894,-73.9342530127425,11106,21 St. bet. 34 Ave. and 35 Ave.,http://www.nycgovparks.org/parks/Q333/,park +3407,Mafera Park,40.70543757971,-73.89112692091072,11385,65 Pl. bet. Shaler Ave. and the rail yards,http://www.nycgovparks.org/parks/Q305/,park +3408,Tribute Park,40.58182732889,-73.83864193945465,11694,Beach Channel Dr. bet. B. 116 St. and B. 117 St.,http://www.nycgovparks.org/parks/Q028A/,park +3409,Playground Thirty Five XXXV,40.75485491734,-73.92178354255603,11101,35 Ave. bet. Steinway St. and 41 St.,http://www.nycgovparks.org/parks/Q296/,park +3410,Maple Playground,40.75623230419,-73.82582804746403,11355,Kissena Blvd. bet. Maple Ave. and Franklin Ave.,http://www.nycgovparks.org/parks/Q211/,park +3411,Nathan Weidenbaum Playground,40.73840885183,-73.90189544299167,11377,"Laurel Hill Blvd., 48 Ave. bet. 63 St. and 64 St.",http://www.nycgovparks.org/parks/Q205B/,park +3412,Big Bush Playground,40.7404287433,-73.90240956921534,11377,Laurel Hill Blvd. bet. 61 St. and 64 St.,http://www.nycgovparks.org/parks/Q205A/,park +3413,St. Michael's Playground,40.75788231723,-73.9000219378635,11377,"30 Ave. To 31 Ave. and Boody St., BQE",http://www.nycgovparks.org/parks/Q174A/,park +3414,Jacob H. Schiff Playground,40.81971458884,-73.95184944016654,10031,Amsterdam Ave. bet. W. 136 St. and W. 138 St.,http://www.nycgovparks.org/parks/M223/,park +3415,Gutenberg Playground,40.76335587055,-73.98978681107555,10019,W. 49 St. bet. 9 Ave. and 10 Ave.,http://www.nycgovparks.org/parks/M221/,park +3416,Frederick Douglass Playground,40.79645344285,-73.96759302243127,10025,Amsterdam Ave bet. W. 100 St. and W 102 St.,http://www.nycgovparks.org/parks/M220/,park +3417,Tecumseh Playground,40.78200746697,-73.97854070956227,10024,W. 78 St. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M219/,park +3418,DeSalvio Playground,40.72172861267,-73.99588874233505,10012,Spring St. and Mulberry St.,http://www.nycgovparks.org/parks/M218/,park +3419,Frederick B. Judge Playground,40.68333654128,-73.80766036651043,11420,"134 St., 135 St., bet. 111 Ave. and Lincoln St., Linden Blvd",http://www.nycgovparks.org/parks/Q119/,park +3420,Daniel M. O'Connell Playground,40.69936009056,-73.75747795499024,11412,"197 St., 196 St. bet. 113 Ave. and Murdock Ave.",http://www.nycgovparks.org/parks/Q106/,park +3421,Howard Von Dohlen Playground,40.69914862873,-73.81245153921572,11435,"91 Ave., Archer Ave. bet. 138 Pl. and 138 St.",http://www.nycgovparks.org/parks/Q105/,park +3422,Cooper St Block Buster Association,40.68481610563,-73.91074780337563,11207,Cooper St. between Bushwick Ave. and Broadway,http://www.nycgovparks.org/parks/B454/,park +3423,Middle Village Playground,40.70983090721,-73.87343435566332,11379,79 St. bet. 68 Rd. and 69 Ave.,http://www.nycgovparks.org/parks/Q101/,park +3424,Josephine Caminiti Playground,40.74414481484,-73.86132955643444,11368,102 St. bet. Corona Ave. and Alstyne Ave.,http://www.nycgovparks.org/parks/Q046/,park +3425,Howard Bennett Playground,40.81371589836,-73.93798957464757,10037,"W. 135 St. To W. 136 St., Lenox Ave. To 5 Ave.",http://www.nycgovparks.org/parks/M217/,park +3426,Hoparkinson R&L Block Association Garden,40.66186604556,-73.91179808658565,11212,Livonia Ave. bet. Hopkinson Ave. and Amboy St.,http://www.nycgovparks.org/parks/B512/,park +3427,Maggie's Magic Garden,40.7889610894,-73.94934658346982,10029,Lexington Ave. bet. E. 100 St. and E. 101 St.,http://www.nycgovparks.org/parks/M327/,park +3428,East Flatbush Children's Playground,40.66328332339,-73.92677516724928,11212,E. 94 St. bet. Rutland Rd. and E. New York Ave.,http://www.nycgovparks.org/parks/B404/,park +3429,Brooklyn Heights Promenade,40.69966925208,-73.99615642689967,11201,BQE bet. Pineapple St. and Orange St.,http://www.nycgovparks.org/parks/B223DJ/,park +3430,Poppenhusen Park,40.78796240884,-73.84575702371716,11356,"College Pl., College Pt. Blvd., bet. 11 Ave. and 12 Ave.",http://www.nycgovparks.org/parks/Q042/,park +3431,Flight 587 Memorial Park,40.57807101643,-73.83609486995667,11694,"Beach 116 St., Ocean Promenade",http://www.nycgovparks.org/parks/Q494/,park +3432,Carl Schurz Park,40.77699912103,-73.94198090658357,10028,"East End Av To East River, E 84 St To E 90 St",http://www.nycgovparks.org/parks/M081/,park +3433,Harmony Park,40.67791854941,-73.93487583980645,11213,Troy Ave. to Schenectady Ave. between Atlantic Ave. and Herkimer St.,http://www.nycgovparks.org/parks/B403/,park +3434,Lott Park,40.64801768177,-73.95403188004711,11226,Albemarle Rd. between Bedford Ave. and Veronica Pl. at Lott St.,http://www.nycgovparks.org/parks/B392/,park +3435,Success Garden,40.66518067404,-73.89752469742209,11207,Livonia Ave. ber. Williams Ave. and Alabama Ave.,http://www.nycgovparks.org/parks/B383/,park +3436,Cobble Hill Park,40.68819380491,-73.9954797752875,11201,Clinton St. between Verandah Pl. and Congress St.,http://www.nycgovparks.org/parks/B326/,park +3437,Helen Marshall Playground,40.76626306964,-73.8702121052178,11369,"100 St., 98 St. bet. 24 Ave. and 25 Ave.",http://www.nycgovparks.org/parks/Q373/,park +3438,Langston Hughes Playground,40.81192212498,-73.94646185970547,10027,W/s 7 Ave. at W. 130 St.,http://www.nycgovparks.org/parks/M211B/,park +3439,St. Nicholas Playground South,40.81151028198,-73.94676240794124,10027,W/s 7 Ave. bet. W. 127 St. and W. 129 St.,http://www.nycgovparks.org/parks/M211A/,park +3440,Alice Kornegay Triangle,40.80601215771,-73.93496556044501,10035,"Lexington Ave., E. 128 St. to E. 129 St.",http://www.nycgovparks.org/parks/M208A/,park +3441,McKee Triangle,40.78734742328,-73.81603225350716,11357,"149 St., 15 Ave., Cross Island Pkwy.",http://www.nycgovparks.org/parks/Q135A/,park +3442,Lindower Park,40.61118290717,-73.91058279806741,11234,Strickland Ave. between Mill Ave. and E. 60 Pl.,http://www.nycgovparks.org/parks/B329/,park +3443,Playground One Twenty Five CXXV,40.81139255563,-73.95639650870265,10027,"Morningside Ave., W. 123 St. and W. 124 St.",http://www.nycgovparks.org/parks/M205/,park +3444,Moore Playground,40.80951499586,-73.93804386160019,10037,Madison Ave. bet. E. 130 St. and E. 131 St.,http://www.nycgovparks.org/parks/M204/,park +3445,Tudor Grove Playground,40.74900978349,-73.97138027879109,10017,E. 42 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M203E/,park +3446,Alfred E. Smith Playground,40.71072216855,-73.99740629942715,10038,"Catherine Slip, Madison St. and South St.",http://www.nycgovparks.org/parks/M194/,park +3447,Sheltering Arms Playground,40.81554977109,-73.95626156437389,10027,"W. 126 St. to W. 129 St., Amsterdam Ave. to Old Broadway",http://www.nycgovparks.org/parks/M190/,park +3448,Marx Brothers Playground,40.7843646967,-73.94548909480652,10029,"2 Ave., E. 96 St. to E. 97 St.",http://www.nycgovparks.org/parks/M187/,park +3449,Southside Burial Ground,40.67056207627,-73.84388490169677,11417,"Redding St, Albert Rd and 149th Av",http://www.nycgovparks.org/parks/Q481/,park +3450,Brigadier General Charles Young Playground,40.81814567943,-73.93439184815134,10037,"W. 145 St. to W. 143 St., Lenox Ave., and Harlem River",http://www.nycgovparks.org/parks/M186/,park +3451,Samuel N. Bennerson 2nd Playground,40.77396589185,-73.98652618484202,10023,"W. 64 St., bet. Amsterdam Ave. and West End Ave.",http://www.nycgovparks.org/parks/M184/,park +3452,Peter Minuit Playground,40.79440606945,-73.94713332007458,10029,Park Ave. bet. E 108 St. and E. 109 St.,http://www.nycgovparks.org/parks/M183/,park +3453,Waterfront Garden,40.80970456576,-73.85039849664399,10473,Gildersleeve Ave. bet. Husson Ave. and Betts Ave.,http://www.nycgovparks.org/parks/X088A/,park +3454,Bushwick Playground,40.70218709967,-73.93928519360402,11206,Flushing Ave. bet.. Beaver St. and Garden St.,http://www.nycgovparks.org/parks/B310/,park +3455,Public Place,40.67779942746,-73.86496754366642,11208,Eldert La. between Liberty Ave. and Glenmore Ave.,http://www.nycgovparks.org/parks/B290/,park +3456,Sankofa Park,40.66548173579,-73.88574276046141,11207,Livonia Ave. between Barbey St. and Schenck Ave.,http://www.nycgovparks.org/parks/B261/,park +3457,Underwood Park,40.68828641638,-73.96596041573984,11205,Lafayette Ave. bet. Waverly Ave. and Washington Ave.,http://www.nycgovparks.org/parks/B259/,park +3458,"Captain John McKenna, IV Park",40.65212301263,-73.9772696205897,11218,Vanderbilt St. bet. E. 4 St. and E. 5 St.,http://www.nycgovparks.org/parks/B255L/,park +3459,Baruch Playground,40.71662827233,-73.97674155822914,10002,Corner of Baruch Pl. and Mangin St.,http://www.nycgovparks.org/parks/M165/,park +3460,McCaffrey Playground,40.75921570262,-73.99144035341237,10036,W. 43 St. bet. 8 Ave. and 9 Ave.,http://www.nycgovparks.org/parks/M161/,park +3461,Linden Park,40.65958903252,-73.88558315149852,11207,Vermont St. bet. Linden Blvd. and Stanley Ave.,http://www.nycgovparks.org/parks/B214/,park +3462,Sarsfield Playground,40.62024407884,-73.93709036893884,11234,"E. 38 St., Ave. M, Flatlands Ave.",http://www.nycgovparks.org/parks/B207/,park +3463,Blue Playground,40.71077919361,-73.95525871029582,11211,"Borinquen Pl., Rodney St. and S. 1 St.",http://www.nycgovparks.org/parks/B223PE/,park +3464,Hillside Dog Park,40.70097390409,-73.99482484180102,11201,"Columbia Hts., Hicks St., bet. Middagh St. and Vine St.",http://www.nycgovparks.org/parks/B223G/,park +3465,Tony Dapolito Recreation Center,40.72977972684,-74.00547820643013,10014,"Carmine St. and Clarkson St., 7 Ave.",http://www.nycgovparks.org/parks/M103/,park +3466,Citizens For A Better Community,40.68780876591,-73.9269155842741,11221,Patchen Ave. between Monroe St. and Madison St.,http://www.nycgovparks.org/parks/B224A/,park +3467,Marcy Park South,40.7078932622,-73.95760351794146,11211,Marcy Ave. bet. S. 9 St. and Division St.,http://www.nycgovparks.org/parks/B223OB/,park +3468,Brooklyn Heights Promenade,40.69908659629,-73.99602077341382,11201,Pineapple St. bet. Columbia Heights and the BQE,http://www.nycgovparks.org/parks/B223DI/,park +3469,Raoul Wallenberg Forest,40.88735737068,-73.91692122568675,10471,"Palisade Av, Douglas Av bet. W 235 St and",http://www.nycgovparks.org/parks/X259/,park +3470,Spuyten Duyvil Playground,40.88688609065,-73.91482361169206,10463,Douglas Av bet. W 235 St and W 236 St,http://www.nycgovparks.org/parks/X171/,park +3471,Ralph Bunche Park,40.7490436147,-73.96998665551673,10017,"1 Ave., bet. E. 42 St. and E. 43 St.",http://www.nycgovparks.org/parks/M203B/,park +3472,London Planetree Playground,40.68568340493,-73.85277880723194,11416,"Atlantic Ave., 95 Ave. bet. 88 St., 89 St.",http://www.nycgovparks.org/parks/Q128/,park +3473,Daly Ave Garden,40.84414375873,-73.8832590421756,10460,E. 179 St. and Honeywell Ave.,http://www.nycgovparks.org/parks/X326/,park +3474,Annunciation Playground,40.81782527446,-73.9519755363393,10031,"Convent and Amsterdam Av, W 135 St",http://www.nycgovparks.org/parks/M003/,park +3475,Wave Hill,40.89621151072,-73.91192435701254,10471,"W 248 St, Independence Av , W 252 St , P",http://www.nycgovparks.org/parks/X209/,park +3476,Rita Ley Triangle,40.89911391391,-73.87305888235448,10470,"E 238 St, Oneida Av, Van Cortlandt Park E",http://www.nycgovparks.org/parks/X096/,park +3477,Washington's Walk,40.87436475618,-73.90044104098514,10468,Resevoir Av bet. Sedgwick Av and Goulden Av,http://www.nycgovparks.org/parks/X038/,park +3478,Lt. Clinton L .Whiting Square,40.68709140015,-73.85823915390347,11421,84 St. bet. 91 Ave. and 91 Ave.,http://www.nycgovparks.org/parks/Q257/,park +3479,Detective Joseph Mayrose Park,40.66200485501,-73.98781604228022,11215,"N/B Prospect Exwy., 17 St., bet. 6 Ave. and 7 Ave.",http://www.nycgovparks.org/parks/B255F/,park +3480,Poe Park,40.86442015397,-73.89441231340214,10458,Grand Concourse bet. E. 192 St. and E. K,http://www.nycgovparks.org/parks/X040/,park +3481,Judge Angelo Graci Triangle,40.67459732506,-73.85846452585056,11417,"N. Conduit Ave., Sutter Ave. bet. 77 St. and 78 St.",http://www.nycgovparks.org/parks/Q424/,park +3482,Williamsbridge Oval,40.87616201105,-73.87770412084713,10467,"Van Cortlandt Ave. East, Resevoir Oval E",http://www.nycgovparks.org/parks/X104/,park +3483,Valentine Varian House,40.87695553185,-73.8795093106913,10467,Bainbridge Ave. bet. Van Cortlandt Ave.,http://www.nycgovparks.org/parks/X215/,park +3484,Risse Street Park,40.87795830498,-73.88533890673247,10468,"Jerome Ave., Mosholu Pkwy, Grand Concour",http://www.nycgovparks.org/parks/X335/,park +3485,Margaret I. Carman Green - Weeping Beech,40.76400090553,-73.82381207175416,11354,37 Ave. bet. Bowne St. and Parsons Blvd.,http://www.nycgovparks.org/parks/Q022/,park +3486,Bryan Park,40.86220762766,-73.89406037944143,10458,E. Kingsbridge Rd. at E. Fordham Rd.,http://www.nycgovparks.org/parks/X005/,park +3487,Davidson Playground,40.85487400098,-73.90767549102084,10453,W. 180 St. bet. Davidson Ave. and Grand,http://www.nycgovparks.org/parks/X300/,park +3488,Walton Park,40.85550762674,-73.90517576592276,10453,E. 181 St. bet. Walton Ave. and Jerome A,http://www.nycgovparks.org/parks/X291/,park +3489,Mabel Hampton Playground,40.85478607958,-73.90354686121479,10453,E. 181 St. bet. Morris Ave. and Creston,http://www.nycgovparks.org/parks/X292/,park +3490,Townsend Garden,40.84693539962,-73.91079350398927,10453,E. 175th St. at Walton Ave.,http://www.nycgovparks.org/parks/X331/,park +3491,Cleopatra Playground,40.84529011394,-73.90401794992815,10457,Anthony Av bet. Prospect Pl and Ittner Pl,http://www.nycgovparks.org/parks/X258/,park +3492,Half-Nelson Playground,40.84689244616,-73.91884704666863,10453,Nelson Av bet. Featherbed La and W 174 St,http://www.nycgovparks.org/parks/X295/,park +3493,Galileo Playground,40.84850017842,-73.91533919084708,10453,Macombs Rd bet. W 176 St and W 175 St,http://www.nycgovparks.org/parks/X265/,park +3494,Mount Hope Playground,40.85055380683,-73.90921821127671,10453,E. 177 St. at Walton Ave.,http://www.nycgovparks.org/parks/X257/,park +3495,Downing Street Playground,40.73009066821,-74.0029299579995,10014,"Downing St to Carmine St, Av Of Americas",http://www.nycgovparks.org/parks/M027/,park +3496,Highbridge Park,40.84221575636,-73.92629817996828,10452,Dr. MLK Jr. Blvd. at W. 170 St.,http://www.nycgovparks.org/parks/X120/,park +3497,Claremont Neighborhood Garden,40.83418882125,-73.90997137091038,10456,E 169th St bet. Teller Av and Clay Av,http://www.nycgovparks.org/parks/X321/,park +3498,Greeley Square Park,40.74840363817,-73.98827506263977,10001,"Broadway, Av of the Americas, bet. W. 32 St. and W. 33 St.",http://www.nycgovparks.org/parks/M032/,park +3499,Herald Square,40.74990449647,-73.98781632794064,10001,"Broadway, Ave of the Americas, bet. W. 34 St. and W. 35 St.",http://www.nycgovparks.org/parks/M036/,park +3500,La Isla Garden,40.83175435427,-73.9292526192357,10452,W 163 St bet. Ogden Av and Woodycrest Av,http://www.nycgovparks.org/parks/X327/,park +3501,Taqwa Community Farm,40.83258987959,-73.92859281898026,10452,W 164 St and Nelson Av bet. Ogden Av and Woodycrest Ave,http://www.nycgovparks.org/parks/X296/,park +3502,Nelson Playground,40.8350200797,-73.92627795123586,10452,W 166 St bet. Woodycrest Av and Nelson Av,http://www.nycgovparks.org/parks/X168/,park +3503,Alexander Hamilton Playground,40.8231318409,-73.9507062319248,10031,"Hamilton Pl., W. 140 St. To W. 141 St.",http://www.nycgovparks.org/parks/M041/,park +3504,Woodycrest Community Garden,40.83127665851,-73.92916546985225,10452,W 162 St bet. Woodycrest Av and Ogden Av,http://www.nycgovparks.org/parks/X333/,park +3505,Lot,40.83159036204,-73.92265451859865,10452,River Ave. bet. E 164 St. and E. 165 St.,http://www.nycgovparks.org/parks/X254/,park +3506,Franz Sigel Park,40.82094193697,-73.92641794484334,10451,"NYCRR, Walton Ave, E 158 St, Grand Concourse",http://www.nycgovparks.org/parks/X047/,park +3507,D'Auria-Murphy Triangle,40.85335805363,-73.88884501236019,10458,Adams Pl bet. Cresent Av and E 183 St,http://www.nycgovparks.org/parks/X068/,park +3508,Washington Park,40.8559804486,-73.89315234839358,10458,E 183 St bet. Washington Av and Park Av,http://www.nycgovparks.org/parks/X280/,park +3509,Thorpe Family Playground,40.85632163085,-73.89474376384989,10458,E 183 St bet. Park Av and Webster Av,http://www.nycgovparks.org/parks/X302/,park +3510,Belmont Playground,40.85003709455,-73.88696663993288,10457,E 182 St bet. Belmont Av and Croton Av,http://www.nycgovparks.org/parks/X108/,park +3511,John Jay Park,40.76900910002,-73.94903734207423,10021,"FDR Dr., E 76 St. To E 78 St.",http://www.nycgovparks.org/parks/M045/,park +3512,Quarry Ballfields,40.85078795096,-73.88946905865616,10457,"E. 181 St., Oak Tree Pl. bet. Quarry Rd. and Hughes Ave.",http://www.nycgovparks.org/parks/X263/,park +3513,Thomas Jefferson Park,40.79229418446,-73.93489022711518,10029,"1 Ave., FDR Dr., bet. E. 111 St. and E. 114 St.",http://www.nycgovparks.org/parks/M047/,park +3514,Harlem RBI,40.78677182848,-73.94339642114842,10029,E. 100 St. to E. 101 St. bet. 2 Ave. and 1 Ave.,http://www.nycgovparks.org/parks/M271A/,park +3515,Elmhurst Park,40.72890922012,-73.88436854859785,11373,"Grand Ave., 57 Ave. bet. 74 St. and 80 St.",http://www.nycgovparks.org/parks/Q492/,park +3516,Richard Tucker Square,40.7733787371,-73.98194017160988,10023,"Broadway To Columbus Ave, W. 66 St.",http://www.nycgovparks.org/parks/M051/,park +3517,Tribeca Dog Run,40.71632572475,-74.01217155257838,10007,Warren St. bet. Greenwich St. and West St.,http://www.nycgovparks.org/parks/M366/,park +3518,Washington Market Park,40.71743817396,-74.0108808468182,10013,Chambers St. bet. Greenwich St. and West St.,http://www.nycgovparks.org/parks/M308/,park +3519,Prospect Playground,40.84329662262,-73.89006793021288,10457,Fairmount Pl bet. Clinton Av and Prospect Av,http://www.nycgovparks.org/parks/X148H1/,park +3520,Stop & Go Playground,40.84504048353,-73.89857993272076,10457,W 175 St bet. Washington Av and Bathgate Av,http://www.nycgovparks.org/parks/X281/,park +3521,El Batey de Doña Provi Garden,40.84769840174,-73.89621404497828,10457,E 178 St. bet. Bathgate and 3 Ave.,http://www.nycgovparks.org/parks/X323/,park +3522,Murphy Brothers Playground,40.72966769676,-73.97245221623079,10009,"Ave. C, FDR Dr., E. 17 St.",http://www.nycgovparks.org/parks/M059/,park +3523,Marcus Garvey Park,40.80390727753,-73.94591164848372,10027,"Madison Ave, E. 120 St. to E. 124 St.",http://www.nycgovparks.org/parks/M058/,park +3524,Mitchel Square,40.83968939477,-73.93998721317689,10032,"Broadway, St Nicholas Av, W 166 St To W 168 St",http://www.nycgovparks.org/parks/M054/,park +3525,Theodore Roosevelt Park,40.77967203384,-73.97361916110918,10024,"Central Park W, Columbus Av, W 77 To W 81 Sts",http://www.nycgovparks.org/parks/M053/,park +3526,Eae J Mitchell Park,40.83650290166,-73.88416649518459,10460,E 174 St bet. Bryant Av and Longfellow Av,http://www.nycgovparks.org/parks/X267/,park +3527,P.S. 186 Day Treatment Program,40.8318964417,-73.89820279062852,10456,Jennings St bet. Union Av and Prospect Av,http://www.nycgovparks.org/parks/X330/,park +3528,CS 134 Community Improvement Garden,40.83092268695,-73.89482119381759,10459,Bristow St bet. Jennings St and Freeman St,http://www.nycgovparks.org/parks/X340/,park +3529,Youth Village,40.82847250079,-73.90289209598981,10456,Home St bet. Boston Rd and Jackson Av,http://www.nycgovparks.org/parks/X242/,park +3530,Rev Lena Irons Unity Park,40.8311252296,-73.90636032010167,10456,E 168 St bet. Washington Av and 3 Av,http://www.nycgovparks.org/parks/X286/,park +3531,Little Claremont Playground,40.839018532,-73.90345266423574,10457,Claremont Pkwy bet. Park Av and Washington Av,http://www.nycgovparks.org/parks/X299/,park +3532,Jackie Robinson Park Playground,40.68056974193,-73.92725629404693,11233,Malcom X Blvd. between Chauncey St. and Marion St.,http://www.nycgovparks.org/parks/B294/,park +3533,Behagen Playground,40.82590522654,-73.90065552689464,10456,Tinton Av bet. E 166 St and E 165 St,http://www.nycgovparks.org/parks/X166/,park +3534,Jackson-Forest Community Garden,40.82812894376,-73.90216659017666,10456,Home St bet. Jackson Av and Forrest Av,http://www.nycgovparks.org/parks/X319/,park +3535,Jardin de la Roca,40.82289329846,-73.91312507377751,10451,Elton Ave. at E. 160 St.,http://www.nycgovparks.org/parks/X349/,park +3536,Edith Garden,40.82272951155,-73.91223538084505,10451,Elton Av bet. E 159 St and E 160 St,http://www.nycgovparks.org/parks/X341/,park +3537,James Madison Plaza,40.71164217397,-74.00006617589952,10038,"Pearl St., Madison St. and St James Pl.",http://www.nycgovparks.org/parks/M255/,park +3538,Rev J Polite Playground,40.82745647611,-73.89615856782297,10459,Rev James Polite Av to Interval Av bet. E 167 St and Home St,http://www.nycgovparks.org/parks/X116/,park +3539,Dr. Gertrude B. Kelly Playground,40.74134480344,-74.00197756530805,10011,"W. 17 St., 8 Ave. To 9 Ave.",http://www.nycgovparks.org/parks/M066/,park +3540,Luther Gulick Park,40.71546863725,-73.98121798902919,10002,"Columbia St, Delancey St and Bialystoker Pl",http://www.nycgovparks.org/parks/M065/,park +3541,Lillian D Wald Playground,40.71237532065,-73.98441469542125,10002,"Cherry St, Montgomery St and Gouverneur St",http://www.nycgovparks.org/parks/M064/,park +3542,Gertrude Ederle Recreation Center,40.77095008884,-73.98867250775429,10023,"W. 59 St., W. 60 St., bet. Amsterdam Ave. and W. End Ave.",http://www.nycgovparks.org/parks/M063/,park +3543,St. Catherine's Park,40.7647482438,-73.95841958165919,10065,"1 Ave., bet. E. 67 St. To E. 68 St.",http://www.nycgovparks.org/parks/M079/,park +3544,Arden Woods,40.56358354848,-74.18908028887722,10312,"Arthur Kill Rd., Arden Ave. and Halpin Ave.",http://www.nycgovparks.org/parks/R120/,park +3545,LaGuardia Landing Lights,40.76378791042,-73.88791784481427,11370,"80 St., 81 St. bet. 24 Ave. and 25 Ave.",http://www.nycgovparks.org/parks/Q393D/,park +3546,St. Vartan Park,40.74458614458,-73.973129156703,10016,"1 Ave.,2 Ave., bet. E. 35 St. and E. 36 St.",http://www.nycgovparks.org/parks/M076/,park +3547,Roger Morris Park,40.83415018948,-73.93831667659839,10032,"Jumel Terr To Edgecombe Av, W 160 St To W 162 St",http://www.nycgovparks.org/parks/M073/,park +3548,Vesuvio Playground,40.72498231393,-74.00263965850152,10012,Thompson St bet. Spring St and Prince St,http://www.nycgovparks.org/parks/M069/,park +3549,Horseshoe Playground,40.82393581311,-73.89752863835875,10459,E. 165 St. and Rogers Pl.,http://www.nycgovparks.org/parks/X014/,park +3550,Fox Park,40.81493886385,-73.89783962787203,10455,E 156 St bet. Fox St and Southern Blvd,http://www.nycgovparks.org/parks/X247/,park +3551,Charlton Garden,40.8248941033,-73.90682448199338,10456,E 164 St bet. Cauldwell Av and Boston Rd,http://www.nycgovparks.org/parks/X086/,park +3552,Lafayette Square,40.80357443921,-73.95803901771242,10026,"Manhattan Av, W 114 St, Morningside Av",http://www.nycgovparks.org/parks/M090/,park +3553,Stuyvesant Square,40.73387465415,-73.98284750488925,10003,"Rutherford Pl. To N D Perlman Pl., E 15 St. To E 17 St.",http://www.nycgovparks.org/parks/M086/,park +3554,Verdi Square,40.77929293162,-73.98134316753715,10023,"Broadway, Amsterdam Ave. and W. 73 St.",http://www.nycgovparks.org/parks/M097/,park +3555,Worth Square,40.74244069671,-73.98901995926714,10010,"Broadway, 5 Ave., W. 24 St. to W. 25 St.",http://www.nycgovparks.org/parks/M101/,park +3556,J. Hood Wright Park,40.84549904763,-73.94059870081793,10033,W. 173 St. bet. Haven Ave. and Ft. Washington Ave.,http://www.nycgovparks.org/parks/M099/,park +3557,Isla Verde Garden,40.81497253906,-73.90661105255664,10455,E 151 St bet. Concord Av and Wales Av,http://www.nycgovparks.org/parks/X314/,park +3558,Captain Rivera Playground,40.8181160785,-73.90645973171593,10455,E 156 St bet. Jackson Av and Forest Av,http://www.nycgovparks.org/parks/X194/,park +3559,Willis Playground,40.81107224309,-73.92374333032465,10454,E 141 St to E 140 St bet. Willis Av and Alexander Av,http://www.nycgovparks.org/parks/X217/,park +3560,Orchard Alley Garden,40.72136641723,-73.97820327222415,10009,E. 4 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M354/,park +3561,The Public Theater,40.72923342534,-73.99143693293948,10003,Lafayette St. bet. Astor Pl. and E. 4 St.,http://www.nycgovparks.org/parks/M276/,park +3562,United We Stand Garden,40.80538934245,-73.9152042383218,10454,E. 137 St. bet. Cypress Ave. and St. Ann's Ave.,http://www.nycgovparks.org/parks/X277A/,park +3563,Robert Moses Playground,40.74859984186,-73.96967801303215,10017,"1 Ave., bet. E. 41 St. and E. 42 St.",http://www.nycgovparks.org/parks/M158/,park +3564,Tanahey Playground,40.70986334565,-73.99601102624779,10002,"Cherry St. To Water St., W. Catherine Slip To Market Slip",http://www.nycgovparks.org/parks/M206/,park +3565,Sara D. Roosevelt Park,40.71998285531,-73.99218978765998,10002,E. Houston St. To Canal St. bet. Chrystie St. and Forsyth St.,http://www.nycgovparks.org/parks/M105/,park +3566,Agnes Haywood Playground,40.87994509303,-73.86160030527505,10467,Barnes Ave. bet. E. 216 St. and E. 215 St.,http://www.nycgovparks.org/parks/X169/,park +3567,Almeda Playground,40.59377784605,-73.79437779141547,11692,"Beach 65 St. to Beach 66 St., Beach Channel Dr.",http://www.nycgovparks.org/parks/Q443/,park +3568,Dag Hammarskjold Plaza,40.75289389826,-73.96978157624022,10017,E. 47 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M203C/,park +3569,Fisher Pool,40.75877123906,-73.8693318214911,11369,32 Ave. bet. 99 St. and 100 St.,http://www.nycgovparks.org/parks/Q441/,park +3570,MacArthur Playground,40.75223498849,-73.96492705722271,10017,"E. 48 St. To E. 49 St., FDR",http://www.nycgovparks.org/parks/M256/,park +3571,Bellevue South Park,40.74046709284,-73.97742211525204,10016,"E. 26 St. To E. 28 St., 2 Ave.",http://www.nycgovparks.org/parks/M263/,park +3572,Peter Detmold Park,40.75272089523,-73.96439338176133,10022,"E. 49 St. To E. 51 St., W/s FDR Dr.",http://www.nycgovparks.org/parks/M108N/,park +3573,Albert J. Parham Playground,40.68998446082,-73.97063986586979,11205,"Adelphi St., Clermont Ave., Dekalb Ave., Willoughby Ave.",http://www.nycgovparks.org/parks/B253/,park +3574,St. Michael's Park,40.76385949195,-73.89585313733565,11377,30 Ave to Astoria Blvd. on BQE,http://www.nycgovparks.org/parks/Q174/,park +3575,William F. Passannante Ballfield,40.72849670723,-74.0018714077467,10012,"W. Houston St., Ave. of Americas, Macdougal St.",http://www.nycgovparks.org/parks/M120A/,park +3576,Joseph C. Sauer Park,40.72811989352,-73.97937993443009,10009,E. 12 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M113/,park +3577,Charlton Plaza,40.72705655464,-74.00356750595179,10014,"Ave. of Americas, King St. and Charlton St.",http://www.nycgovparks.org/parks/M125E/,park +3578,Minetta Playground,40.73069711194,-74.00115974811168,10012,"Minetta Lane, W. 3 St. and Ave. of Americas",http://www.nycgovparks.org/parks/M125B/,park +3579,Minetta Green,40.73023996427,-74.00154712711851,10012,S/e Corner Minetta Lane and Ave. of Americas,http://www.nycgovparks.org/parks/M125A/,park +3580,First Park,40.72401752715,-73.9904178720097,10003,"Houston St., E. 1 St., 1 Ave.",http://www.nycgovparks.org/parks/M124/,park +3581,Captain Jacob Joseph Playground,40.71349250569,-73.98966020021557,10002,Rutgers St. and Henry St.,http://www.nycgovparks.org/parks/M122/,park +3582,Kosciuszko Street Garden,40.69211872767,-73.9390779758553,11221,Kosciuszko St. bet. Marcus Garvey Blvd. and Lewis Ave.,http://www.nycgovparks.org/parks/B398/,park +3583,Constance Baker Motley Recreation Center,40.75630883112,-73.96510179634521,10022,E. 54 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M130/,park +3584,Strawberry Playground,40.70991497361,-73.95564604448505,11211,"Rodney St., S. 3 St. and S. 4 St.",http://www.nycgovparks.org/parks/B223PC/,park +3585,Rodney Park North,40.70928636666,-73.95603390668552,11211,"Rodney St., S. 4 St. and S. 5 St.",http://www.nycgovparks.org/parks/B223PB/,park +3586,Rodney Park Center,40.70864112342,-73.95643659889264,11211,"Broadway, Rodney St., S. 5 St.","http://www.nycgovparks.org/parks/B223PA +/",park +3587,Marcy Green South,40.70886169396,-73.95709901414698,11211,"Broadway, Marcy Ave. and S. 5 St.",http://www.nycgovparks.org/parks/B223QA/,park +3588,Gustave Hartman Square,40.72056777195,-73.98024719483584,10009,"E. Houston St., Ave. C and E. 2 St.",http://www.nycgovparks.org/parks/M254/,park +3589,Hope Garden,40.72219525688,-73.98406015165793,10009,E. 2 St. bet. Ave. A and Ave. B,http://www.nycgovparks.org/parks/M371/,park +3590,Sorrentino Recreation Center,40.60228797966,-73.751590491967,11691,Cornaga Ave. bet. Beach 19 St. and Morse Ct.,http://www.nycgovparks.org/parks/Q446/,park +3591,Marcy Green North,40.71026986933,-73.95661676611525,11211,"Marcy Ave., S. 3 St. and S. 4 St.",http://www.nycgovparks.org/parks/B223QC/,park +3592,Marcy Green Center,40.70902438766,-73.95699805730628,11211,"Marcy Ave., S. 4 St. and S. 5 St.",http://www.nycgovparks.org/parks/B223QB/,park +3593,Commodore Barry Park,40.69801949359,-73.97760933302072,11201,"Nassau St., Park Ave., bet. Navy St. and N. Elliot Pl.",http://www.nycgovparks.org/parks/B021/,park +3594,Metropolitan Recreation Center,40.71503286934,-73.96003691649274,11211,Bedford Ave. bet. Metropolitan Ave. and N. 1 St.,http://www.nycgovparks.org/parks/B085/,park +3595,Allerton Playground,40.86647054105,-73.85014562237889,10469,Allerton Ave. bet. Throop Ave. and Bouck Ave.,http://www.nycgovparks.org/parks/X172/,park +3596,Mazzei Playground,40.86198943562,-73.85871873519501,10469,Mace Ave. bet. Pauldings Ave. and Williamsbridge Rd.,http://www.nycgovparks.org/parks/X157/,park +3597,Boston Garden,40.86580790312,-73.86172708468268,10467,"Boston Rd., Bronxwood Ave., Allerton Ave.",http://www.nycgovparks.org/parks/X278/,park +3598,A.R.R.O.W. Field House,40.75604544216,-73.92632038784268,11106,35th St. bet. 35 Ave. and 36 Ave.,http://www.nycgovparks.org/parks/Q470/,park +3599,Van Nest Park,40.84320222141,-73.86559547009844,10462,"White Plains Rd., Van Nest Ave., Unionport Rd.",http://www.nycgovparks.org/parks/X093/,park +3600,Little Flower Playground,40.71219812345,-73.98810282521463,10002,Madison St. bet. Clinton St. and Rutgers St.,http://www.nycgovparks.org/parks/M132/,park +3601,Louis Cuvillier Park,40.80130019314,-73.93049123888036,10035,"E.125 St., FDR Dr., 1 Ave., Paladino Ave.",http://www.nycgovparks.org/parks/M108A/,park +3602,ABC Playground,40.72185681012,-73.98567580944254,10002,"Essex St., Norfolk St. and Houston St.",http://www.nycgovparks.org/parks/M116/,park +3603,Courtney Callender Playground,40.81015473063,-73.94033555877915,10037,"5 Ave., W. 130 St. To .W 131 St.",http://www.nycgovparks.org/parks/M155/,park +3604,Mathews-Palmer Playground,40.76107926328,-73.9927469033595,10036,W. 45 St. bet. 9 Ave. and 10 Ave.,http://www.nycgovparks.org/parks/M154/,park +3605,White Playground,40.79175360042,-73.94547037883957,10029,E. 105 St. To E. 106 St. bet. Lexington Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M148/,park +3606,Fulton Park,40.68006035,-73.93160144190735,11233,Chauncey St. bet. Lewis Ave. and Stuyvesant Ave.,http://www.nycgovparks.org/parks/B038/,park +3607,Honey Locust Park,40.76013726622,-73.96245931414859,10022,"E. 59 St., bet. 1 Ave. and 2 Ave.",http://www.nycgovparks.org/parks/M177/,park +3608,Lentol Garden,40.72010374338,-73.9447823949202,11222,"Graham Ave., Meeker Ave., Humbolt St., BQE",http://www.nycgovparks.org/parks/B223U/,park +3609,Jaime Campiz Playground,40.71396250993,-73.95377718093302,11211,"Hope St., Marcy Ave., Metropolitan Ave.",http://www.nycgovparks.org/parks/B223R/,park +3610,Broad Channel American Park,40.59881280403,-73.82090383591581,11693,Cross Bay Blvd. bet. W. 20 Rd. and Beach Channel,http://www.nycgovparks.org/parks/Q467/,park +3611,P.S. 29 Ballfield,40.82143889853,-73.91665189609022,10451,E 157 St bet. Melrose Ave and Cortlandt Ave,http://www.nycgovparks.org/parks/X354/,park +3612,Sherman Creek,40.85586681987,-73.92209574056815,10040,10 Ave. bet. Academy St. and the Harlem River,http://www.nycgovparks.org/parks/M300/,park +3613,Abe Stark Skating Rink,40.57502060188,-73.9854448852634,11224,Surf Ave. to the Boardwalk between W. 19 St. and W. 20 St.,http://www.nycgovparks.org/parks/B336/,park +3614,Calvert Vaux Park,40.58665370706,-73.99176843871128,11214,"Gravesend Bay, Bay 44 St. to Bay 49 St., Shore Pkwy.",http://www.nycgovparks.org/parks/B125/,park +3615,Brighton Playground,40.57491015635,-73.96593741470511,11235,Brighton 2 St. bet. Brightwater Ct. and Boardwalk E.,http://www.nycgovparks.org/parks/B169A/,park +3616,Tottenville Shore Park,40.5117621387,-74.25442681695237,10307,"Bentley St. and Arthur Kill Rd., Hopping Ave. and Amboy Rd.",http://www.nycgovparks.org/parks/R139/,park +3617,Coney Island Boat Basin,40.583007446,-73.98881972964085,11214,W. 22 St. bet. Bay 56 St. and Shore Pkwy.,http://www.nycgovparks.org/parks/B166C/,park +3618,Purple Playground,40.66241300534,-73.98889582753861,11215,17 St. bet. 5 Ave. and 6 Ave.,http://www.nycgovparks.org/parks/B255C/,park +3619,Lemon Creek Park,40.51538548321,-74.19809191879783,10309,Hylan Blvd. from Sharrott Ave. to Seguine Ave.,http://www.nycgovparks.org/parks/R079/,park +3620,Hattie Carthan Community Garden,40.68951307615,-73.94877722234759,11216,Marcy Ave between Clifton Pl. and Lafayette Ave.,http://www.nycgovparks.org/parks/B400/,park +3621,Meucci Triangle,40.59579936034,-73.98320073051605,11223,"Ave U, 86 St. and W. 12 St.",http://www.nycgovparks.org/parks/B242/,park +3622,Jackson Square,40.73881065533,-74.00257386380441,10014,"8 Ave. To Greenwich Ave., Horatio St.",http://www.nycgovparks.org/parks/M044/,park +3623,Faber Pool and Park,40.64085319123,-74.13645632629526,10302,"Richmond Ter. To Kill Van Kull, Faber St.",http://www.nycgovparks.org/parks/R008/,park +3624,Kaiser Park,40.57776620035,-73.99727044739234,11224,"Neptune Ave., Bayview Ave.,W. 24 St. to W. 32 St.",http://www.nycgovparks.org/parks/B129/,park +3625,Frost Playground,40.7186374343,-73.93854335327208,11211,Frost St. bet. Debevoise Ave. and Kingsland Ave.,http://www.nycgovparks.org/parks/B257/,park +3626,Dwyer Square,40.75394075612,-73.91523783933494,11101,"Northern Blvd., 34 Ave. bet. 47 St. and 48 St.",http://www.nycgovparks.org/parks/Q232/,park +3627,176th Street Community Garden,40.84790862648,-73.90986756794135,10453,E. 176 St. bet. Walton Ave. and Morris Ave.,http://www.nycgovparks.org/parks/X324/,park +3628,City Hall Park,40.71176985232,-74.00749079377619,10007,"Broadway, Park Row and Chambers St",http://www.nycgovparks.org/parks/M013/,park +3629,Sheepshead Bay Piers,40.58362862191,-73.94153372288157,11235,Emmons Ave. bet. Ocean Ave. and E. 26 St.,http://www.nycgovparks.org/parks/B393/,park +3630,Tucker Place,40.5833140314,-73.94124833839845,11235,E. 27 St. and Emmons Ave.,http://www.nycgovparks.org/parks/B240/,park +3631,Broad Channel Park,40.60151600316,-73.81937749046988,11693,"Cross Bay Blvd., Channel Rd. bet. E. 16 Rd. and E. 18 Rd.",http://www.nycgovparks.org/parks/Q460/,park +3632,St. Lawrence Triangle,40.83495746397,-73.86756824667066,10472,"S/B Cross Bronx Exwy Service Rd, St Lawrence Av, E 174 St",http://www.nycgovparks.org/parks/X148K2/,park +3633,Prospect Park,40.67188946046,-73.96881026705002,11215,"Prospect Pk W, Flatbush, Parkside, Ocean Aves",http://www.nycgovparks.org/parks/B073/,park +3634,Sam and Sadie Koenig Garden,40.72420486495,-73.978211389293,10009,E. 7 St. bet. Ave. C and Ave. D,http://www.nycgovparks.org/parks/M370/,park +3635,Powell Playground,40.67161940409,-73.90454212975825,11212,Sackman To Powell Sts bet. Glenmore and Pit,http://www.nycgovparks.org/parks/B156/,park +3636,Garden,40.82849323503,-73.9060548664558,10456,Fulton Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X243/,park +3637,Marconi Park,40.69261278477,-73.79593975451517,11433,"157 St., 155 St. bet. 108 Ave. and 109 Ave.",http://www.nycgovparks.org/parks/Q127/,park +3638,Harding Park Beautification Project,40.80841378596,-73.85834953138522,10473,Bronx River Ave. bet. C St. and Cornell Ave.,http://www.nycgovparks.org/parks/X118A/,park +3639,Captain Dermody Triangle,40.75551957162,-73.76433926865728,11364,"216 St., 48 Ave.",http://www.nycgovparks.org/parks/Q316/,park +3640,Triangle,40.61658797605,-73.91665899207433,11234,"Ralph Ave., Ave. T and E. 61 St.",http://www.nycgovparks.org/parks/B229/,park +3641,Nassau Mall South,40.76275501673,-73.72649336739991,11362,"Horace Harding Exwy. Sr. Rd. S., 254 St., 57 Ave.",http://www.nycgovparks.org/parks/Q357J/,park +3642,Emerald Playground,40.7305450308,-73.80623159659328,11365,"Jewel Ave., 71 Ave. bet. 163 St. and 164 St.",http://www.nycgovparks.org/parks/Q344/,park +3643,Morningside Park,40.80298748969,-73.95845947997974,10026,"W 110 St To W 123 St, Manhattan Av To Morningside Av",http://www.nycgovparks.org/parks/M056/,park +3644,Travers Park,40.75457850502,-73.8890793602144,11372,34 Ave. bet. 77 St. and 78 St.,http://www.nycgovparks.org/parks/Q303/,park +3645,Fort Totten Park,40.79613861328,-73.77628552004614,11359,Cross Island Pkwy. bet. Totten Ave. and 15 Rd.,http://www.nycgovparks.org/parks/Q458/,park +3646,Eight Oaks Triangle,40.70731481074,-73.82708342453387,11415,"125 St., Austin St., 84 Dr.",http://www.nycgovparks.org/parks/Q206/,park +3647,Givan Square,40.86761829624,-73.84300675794019,10469,E. Gunhill Rd. and Eastchester Rd. bet. Arnow Ave. and Adee Ave..,http://www.nycgovparks.org/parks/X187/,park +3648,E 4th Street Garden,40.6482583633,-73.97693043384864,11218,E. 4 St. between Caton Ave. and Fort Hamilton Pkwy.,http://www.nycgovparks.org/parks/B414/,park +3649,Corona Plaza,40.74973583049,-73.86234428805405,11368,Roosevelt Ave. bet. National St. and 104 St.,http://www.nycgovparks.org/parks/Q172/,park +3650,Barclay Triangle,40.7613184985,-73.86704700165858,11369,102 St. bet. Astoria Blvd. and 31 Ave.,http://www.nycgovparks.org/parks/Q140/,park +3651,Tudor Park,40.67450185171,-73.85623427898487,11417,"N. Conduit Ave., 133 Ave. bet. 80 St. and 88 St.",http://www.nycgovparks.org/parks/Q094/,park +3652,Metro Triangle,40.70440237933,-73.82614136406448,11415,"125 St., 85 Ave., Metropolitan Ave.",http://www.nycgovparks.org/parks/Q157/,park +3653,Classon Playground,40.69828119698,-73.9619828057776,11211,"Flushing Ave, Williamsburg Pl, Classon & Kent Aves",http://www.nycgovparks.org/parks/B223NA/,park +3654,Last Chance Pond Park,40.5854753544,-74.09738777210076,10305,"Zoe St., Husson St., Naughton Ave., Seaver Ave.",http://www.nycgovparks.org/parks/R148/,park +3655,McKenna Triangle,40.74660100437,-73.9440476381809,11101,"Jackson Ave., Court Sq., 45 Ave.",http://www.nycgovparks.org/parks/Q032/,park +3656,Pralls Island,40.60085771496,-74.19894192131045,10314,Pralls River and Arthur Kill,http://www.nycgovparks.org/parks/R122/,park +3657,Father Reilly Square,40.72267578865,-73.73628053979716,11428,"Winchester Blvd., 93 Ave., 220 St.",http://www.nycgovparks.org/parks/Q159/,park +3658,Willow Lake Playground,40.72291359741,-73.83701365562236,11375,72 Ave. bet. 112 St. and Grand Central Parkway,http://www.nycgovparks.org/parks/Q348/,park +3659,Space Time Playground,40.82199019334,-73.85944191946082,10473,Lafayette Ave. bet. Bolton Ave. and Underhill Ave.,http://www.nycgovparks.org/parks/X221/,park +3660,Harvey Park,40.78241531404,-73.82307458131865,11357,"144 St., Whitestone Exwy. bet. 15 Ave. and 20 Ave.",http://www.nycgovparks.org/parks/Q089B/,park +3661,Frank Principe Park,40.72711206874,-73.90323384266392,11378,"Maurice Ave., 63 St. bet. 54 Ave. and Borden Ave.",http://www.nycgovparks.org/parks/Q131/,park +3662,Monsignor Crawford Field,40.61449471618,-73.91555962014412,11234,"Ave. U bet. E. 58 St., E. 59 St., and E. 60 St.",http://www.nycgovparks.org/parks/B147/,park +3663,Lopez Playground,40.61095090228,-74.08514293232253,10304,Palma Dr. bet. Targee St. and Oder Ave.,http://www.nycgovparks.org/parks/R125/,park +3664,Crocheron Park,40.77323174269,-73.76564327191497,11361,"214 Pl., 214 La., 215 Pl, Cross Island Pkwy. bet. 33 Ave. and 35 Ave.",http://www.nycgovparks.org/parks/Q012/,park +3665,Glenwood Landing,40.77496115173,-73.74025260251084,11363,"Glenwood St., 39 Rd.",http://www.nycgovparks.org/parks/Q222/,park +3666,Wards Island Park,40.78362827238,-73.9316174582867,10035,East River and Hell Gate,http://www.nycgovparks.org/parks/M107/,park +3667,Sleight Family Graveyard,40.55637255061,-74.21237838856243,10309,Rossvile Ave. and Arthur Kill Rd.,http://www.nycgovparks.org/parks/R157/,park +3668,Vinmont Veteran Park,40.90186976065,-73.90477399198286,10471,W. 254 St. bet. Riverdale Ave. and Mosholu Ave.,http://www.nycgovparks.org/parks/X152/,park +3669,Rudd Playground,40.6832042138,-73.90492726459235,11207,"Arberdeen St., Furman Ave. north of Bushwick Ave.",http://www.nycgovparks.org/parks/B131/,park +3670,Homecrest Playground,40.58548608224,-73.95680523104001,11235,"Belt Pkwy., Williams Court bet. E. 12 St. and Homecrest Ave",http://www.nycgovparks.org/parks/B166B/,park +3671,Blueberry Park,40.52882680167,-74.15994254988424,10312,Arden Ave. at Blueberry Lane,http://www.nycgovparks.org/parks/R165/,park +3672,Father Macris Park,40.61562726065,-74.15978309266148,10314,"S/s Of SI Expressway., Exit 6, Fahy Ave., Lamberts La.",http://www.nycgovparks.org/parks/R075A/,park +3673,Cypress Hills Playground,40.66989426562,-73.8707420946387,11208,Euclid Ave. bet. Dumont Ave. and Blake Ave.,http://www.nycgovparks.org/parks/B103/,park +3674,Schmul Park,40.58866624972,-74.18506786871878,10314,"Wild Ave., Pearson St., Melvin Ave.",http://www.nycgovparks.org/parks/R045/,park +3675,Sobel Playground,40.707188996,-73.96140283431592,11211,"Lee Ave., Division Ave., Roebling St.",http://www.nycgovparks.org/parks/B090/,park +3676,Bedford Green,40.61805709365,-74.08504603600146,10304,"Waverly Pl., Targee St.",http://www.nycgovparks.org/parks/R049/,park +3677,Westerleigh Park,40.61940161638,-74.13517001562607,10314,"Willard Ave., Springfield Ave., Maine Ave., Neal Dow Ave.",http://www.nycgovparks.org/parks/R029/,park +3678,Ingram Woods,40.60842986622,-74.13602320349565,10314,"SI Expressway, Warwick Ave., Purdy Ave., and Ingram Ave.",http://www.nycgovparks.org/parks/R075C/,park +3679,Veterans Park,40.63693843286,-74.1319134946225,10302,"Heberton Ave., Park Ave., Bennett St., Vreeland St.",http://www.nycgovparks.org/parks/R019/,park +3680,Bruckner Playground,40.82711407647,-73.82832690582798,10465,Brinsmade Ave. bet. Cross Bronx Ser. Rd. and Swinton Ave.,http://www.nycgovparks.org/parks/X183/,park +3681,Castle Hill Playground,40.83974426272,-73.8530137637704,10462,"Castle Hill Av, Parker St",http://www.nycgovparks.org/parks/X177/,park +3682,Caserta Playground,40.83719626453,-73.8535066027878,10462,St. Raymond's Ave. bet. Odell St. and Purdy St.,http://www.nycgovparks.org/parks/X160/,park +3683,Dr. Ronald McNair Park,40.67017458782,-73.96190900002155,11225,"Eastern Pkwy., Washington Ave., Classon Ave.",http://www.nycgovparks.org/parks/B044/,park +3684,Clinton Community Garden (LES),40.71986381844,-73.98448088352004,10002,Stanton St. and Clinton St.,http://www.nycgovparks.org/parks/M335/,park +3685,Ruppert Park,40.78057042929,-73.94997734022681,10128,Second Ave. bet. E. 90 St. and E. 91 St.,http://www.nycgovparks.org/parks/M294/,park +3686,W 87th Street Garden,40.78693837401,-73.97095460664923,10024,"W. 87 St., Columbus Ave., Central Park W.",http://www.nycgovparks.org/parks/M307/,park +3687,Orient Grove,40.71483456502,-73.94009513965999,11211,Metropolitan Ave. and Orient Ave.,http://www.nycgovparks.org/parks/B024/,park +3688,Laguardia Landing Lights,40.76271553541,-73.88902699972355,11370,25 Ave. bet. 79 St. and 80 St.,http://www.nycgovparks.org/parks/Q393B/,park +3689,Woodtree Playground,40.77793838025,-73.90235900334193,11105,20 Ave. bet. 37 St. and 38 St.,http://www.nycgovparks.org/parks/Q332/,park +3690,Foch Sitting Area,40.67780424677,-73.80235910794437,11436,"Van Wyck Exwy. Sr. Rd. E., 139 St., Fooch Blvd.",http://www.nycgovparks.org/parks/Q220D/,park +3691,Crosson Green,40.74229553065,-73.89661731302351,11377,"68 St., the BQE bet. Woodside Ave. and 43 Ave.",http://www.nycgovparks.org/parks/Q341E/,park +3692,Herbert Von King Park,40.68917698101,-73.94518639407613,11216,"Marcy Ave., Tompkins Ave., bet. Greene Ave. and Lafayette Ave.",http://www.nycgovparks.org/parks/B088/,park +3693,Triborough Bridge Playground D,40.77358194315,-73.9219522436241,11102,"Hoyt Ave., bet. 24 St. and Crescent St.",http://www.nycgovparks.org/parks/Q066D/,park +3694,Nine Heroes Plaza,40.74552046973,-73.88901229704497,11373,"Broadway, 41 Ave., 76 St.",http://www.nycgovparks.org/parks/Q060/,park +3695,Jacob Riis Triangle,40.70202209695,-73.83490784310472,11418,"Bessemer St., 116 St., 85 Ave.",http://www.nycgovparks.org/parks/Q142/,park +3696,Lady Moody Triangle,40.59676318874,-73.97420991818656,11223,"Village Rd. N., Ave. U bet. Van Sicklen St. and Lake St.",http://www.nycgovparks.org/parks/B211/,park +3697,Fort Hamilton Triangle,40.61627167978,-74.03082919834463,11209,"5 Ave., 4 Ave., 94 St.",http://www.nycgovparks.org/parks/B033/,park +3698,Sidney Hillman Playground,40.71498948647,-73.97963918741115,10002,Lewis St. bet. Delancey St. and Broome St.,http://www.nycgovparks.org/parks/M195/,park +3699,Brooklyn Heights Promenade,40.69508983998,-73.99837444732965,11201,BQE bet. Remsen St. and Grace Ct.,http://www.nycgovparks.org/parks/B223DC/,park +3700,United Community Centers Youth Farm,40.65964149458,-73.90767976392544,11212,Rockaway Ave. and Newport St.,http://www.nycgovparks.org/parks/B513/,park +3701,Mill Rock Park,40.77918519409,-73.93880185057095,10128,East River Opp E. 96 St.,http://www.nycgovparks.org/parks/M209/,park +3702,Locust Grove Civic Triangle,40.6664145575,-73.8232753447066,11420,N Conduit Av bet. 118 St and Lefferts Blvd,http://www.nycgovparks.org/parks/Q096A/,park +3703,Triborough Bridge Playground B,40.77441656432,-73.92250956021628,11102,Hoyt Ave. bet. 21 St. and 23 St.,http://www.nycgovparks.org/parks/Q066B/,park +3704,Echo Triangle,40.84979417266,-73.90611676721716,10453,"Echo Pl. E. Tremont Ave., Grand Concourse",http://www.nycgovparks.org/parks/X018/,park +3705,Church Triangle,40.82987556349,-73.85004438387472,10472,"Castlehill Ave., Watson Ave., Cross Bronx Exwy. Svc. Rd. S.",http://www.nycgovparks.org/parks/X012/,park +3706,Harlem Art Park,40.80105746904,-73.93847003371262,10035,E. 120 St. and Sylvan Pl.,http://www.nycgovparks.org/parks/M166/,park +3707,Derosa O'Boyle Triangle,40.82244415802,-73.81909067370539,10465,Dewey Ave. bet. E. Tremont Ave. and Edison Ave.,http://www.nycgovparks.org/parks/X133/,park +3708,Project Eden,40.71628582852,-73.85754269668996,11375,Kessel St. bet. Yellowstone Blvd. and Selfridge St.,http://www.nycgovparks.org/parks/Q475/,park +3709,Marlboro Playground,40.59081808801,-73.98053886906368,11223,W. 11 St. at Ave. W,http://www.nycgovparks.org/parks/B272/,park +3710,Seabury Playground,40.83636145063,-73.88775245883497,10460,Southern Blvd bet. E 174 St and E 173 St,http://www.nycgovparks.org/parks/X282/,park +3711,Father Demo Square,40.72996116861,-74.00216440065645,10014,"Ave. of Americas, Bleecker St. and Carmine St.",http://www.nycgovparks.org/parks/M191/,park +3712,The Olde Towne of Flushing Burial Ground,40.75533247738,-73.80194209409632,11358,46 Ave. bet. 164 St. and 165 St.,http://www.nycgovparks.org/parks/Q017/,park +3713,Samuel Marx Triangle,40.80262216166,-73.9527206629128,10026,"7 Ave., St. Nicholas Ave., W. 115 St.",http://www.nycgovparks.org/parks/M169/,park +3714,Manhattan Beach Park,40.57822482947,-73.9394434539579,11235,Oriental Blvd. between Ocean Ave. and Mackenzie St.,http://www.nycgovparks.org/parks/B251/,park +3715,Dan Ross Playground,40.6230458171,-74.02126458949637,11209,7 Ave. bet. 81 St. and 82 St.,http://www.nycgovparks.org/parks/B210P/,park +3716,Tepper Triangle,40.71881510231,-73.79124791809534,11432,"GCP Service Rd. South, 173 St., Homelawn St.",http://www.nycgovparks.org/parks/Q084B/,park +3717,Hermon A. MacNeil Park,40.79297782206,-73.8485241645034,11356,Poppenhusen Ave. bet. 115 St. and College Pl.,http://www.nycgovparks.org/parks/Q009/,park +3718,Graniteville Swamp Park,40.62584590547,-74.17562672676485,10303,"Goethals Rd. N., Meeker Ave., Morrow St.",http://www.nycgovparks.org/parks/R141/,park +3719,Aimee Triangle,40.61319274431,-73.94414048279089,11229,"Ave. P, Madison Pl., Nostrand Ave.",http://www.nycgovparks.org/parks/B273/,park +3720,Sherman Square,40.7772887549,-73.98227835291218,10023,Broadway and Amsterdam Ave. At W. 70 St.,http://www.nycgovparks.org/parks/M083/,park +3721,Lot,40.57321436074,-73.98810669954692,11224,Surf Ave. between W. 22 St. and W. 21 St.,http://www.nycgovparks.org/parks/B336A/,park +3722,Tiffany Playground,40.82505203078,-73.89436356116366,10459,Fox St to Tiffany St bet. E 167 St and E 165 St,http://www.nycgovparks.org/parks/X190/,park +3723,Straus Square,40.71413503905,-73.99001995402244,10002,"Canal St., Rutgers St. and E. Broadway",http://www.nycgovparks.org/parks/M224/,park +3724,Rockaway Beach,40.57925545175,-73.82996978266254,11694,"Ocean Promenade, bet. Beach 126 St. and Beach 110 St.",http://www.nycgovparks.org/parks/Q050/,park +3725,Mercer Playground,40.72780079024,-73.99605200976539,10012,Mercer St. bet. Houston St. and W. 4 St.,http://www.nycgovparks.org/parks/M295/,park +3726,Forest Grove,40.6272727065,-74.17362385294396,10303,"Forest Ave., Elizabet.h Grove Rd.",http://www.nycgovparks.org/parks/R050/,park +3727,McCarthy Square,40.73531491561,-74.00168485970386,10014,"7 Ave., Charles St. and Waverly Pl.",http://www.nycgovparks.org/parks/M172/,park +3728,Penn Triangle,40.70052569694,-73.9610834973556,11211,"Penn St., Wythe Ave., Williamsburg St. E.",http://www.nycgovparks.org/parks/B223NC/,park +3729,Canal Park,40.72569074073,-74.01078297167567,10013,Canal St. bet. West St. and Washington St.,http://www.nycgovparks.org/parks/M379/,park +3730,Castle Hill Park,40.81137193244,-73.84765476893402,10473,"Barrett Ave., Hart St. bet. Olmstead Ave. and Zerega Ave.",http://www.nycgovparks.org/parks/X007/,park +3731,Sedgwick Playground,40.84559172747,-73.92268112946196,10453,Cross Bronx Exwy. Sr. Ramp bet. Undercliff Ave. and Dr. MLK Jr. Blvd.,http://www.nycgovparks.org/parks/X158/,park +3732,Greenbelt Native Plant Center,40.59616019487,-74.18045654659832,10314,Victory Blvd. bet. Ridgeway Ave. and Travis Ave.,http://www.nycgovparks.org/parks/R017A/,park +3733,Lincoln Center Plaza,40.7732617687,-73.98307727476411,10023,"Columbus Ave., Amsterdam Ave., W. 63 St. and W. 65 St.",http://www.nycgovparks.org/parks/M232/,park +3734,Percy E. Sutton Playground,40.82520519724,-73.93466460250441,10039,"Harlem River Dr., W. 151 St. To W. 154 St.",http://www.nycgovparks.org/parks/M141/,park +3735,Middle Village Veterans Triangle,40.71438253883,-73.87725680873234,11379,"Gray St., 77 St., 66 Rd.",http://www.nycgovparks.org/parks/Q383/,park +3736,Southern Fields,40.66599969856,-73.82491051650112,11420,N Conduit Av-Belt Pkwy bet. 114 and 117 Sts,http://www.nycgovparks.org/parks/Q096B/,park +3737,Abigail Playground,40.81723051593,-73.90439763867242,10455,E 156 St bet. Tinton Av and Union Av,http://www.nycgovparks.org/parks/X216/,park +3738,Fountain Of Youth Playground,40.81443715607,-73.90481691032083,10455,Union Av bet. E 150 St and e 152 St,http://www.nycgovparks.org/parks/X233/,park +3739,Family Community Garden,40.66528802499,-73.88108260167456,11208,Cleveland St. between Hegeman Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B462/,park +3740,Crescent Park,40.87975778873,-73.90166312616562,10463,"Albany Crescent, W 233 St, Major Deegan",http://www.nycgovparks.org/parks/X150H/,park +3741,Euclid Garden,40.67379231871,-73.8718063661942,11208,Doscher St. - Euclid Ave. bet. Belmont Ave. and Sutter Ave.,http://www.nycgovparks.org/parks/B457/,park +3742,Jerome Park,40.88212802759,-73.8889360654048,10468,Goulden Av bet. W 205 St and Sedgwick Av,http://www.nycgovparks.org/parks/X137/,park +3743,Dante Park,40.77160234037,-73.98243756779853,10023,"Broadway, Columbus Av, W 63 St",http://www.nycgovparks.org/parks/M020/,park +3744,Dorrance Brooks Square,40.81802703527,-73.94740229194849,10030,"W 136 St To W 137 St, St Nicholas Av, Edgecom Av",http://www.nycgovparks.org/parks/M024/,park +3745,Muller Triangle,40.86246015243,-73.89806215955596,10468,"E. Fordham Rd., Creston Ave., E. 190 St.",http://www.nycgovparks.org/parks/X035/,park +3746,Freedom Triangle,40.6972708703,-73.93181660333437,11221,"Bushwick Ave., Myrtle Ave., Willoughby Ave.",http://www.nycgovparks.org/parks/B037/,park +3747,Bergen Triangle,40.85510378305,-73.90113020765544,10457,"E. 181 St., Anthony Ave., Grand Concourse",http://www.nycgovparks.org/parks/X006/,park +3748,Peace Park,40.84524919589,-73.9049142919392,10457,Cross Bronx Exwy Service Rd N bet. Topping Av and Clay Av,http://www.nycgovparks.org/parks/X148E/,park +3749,Aqueduct Walk,40.86394106084,-73.90294527819808,10468,Aqueduct Ave. W. bet. W. Fordham Rd. and W. Kingsbridge Rd.,http://www.nycgovparks.org/parks/X001/,park +3750,Machate Circle,40.65103372963,-73.9713040175594,11215,"Park Cir., Parkside Ave., Ocean Pkwy.",http://www.nycgovparks.org/parks/B070/,park +3751,Christopher Park,40.73344595067,-74.00253687676795,10014,"Christopher St, Grove St, W 4 St",http://www.nycgovparks.org/parks/M012/,park +3752,A Philip Randolph Square,40.80366735325,-73.95250303562699,10026,"7 Av, St Nicholas Av, W 117 St",http://www.nycgovparks.org/parks/M021/,park +3753,Garrison Park,40.82155760808,-73.88442504604235,10474,Edgewater Rd bet. Garrison Av and Bruckner Blvd,http://www.nycgovparks.org/parks/X306/,park +3754,Brigadier General Charles Young Triangle,40.82693309906,-73.93547590292454,10039,"7 Ave., Macombs Pl., At W. 153 St.",http://www.nycgovparks.org/parks/M035/,park +3755,Eastern Parkway Coalition,40.67012686327,-73.95915817899227,11225,Eastern Pkwy. to Union St. between Franklin Ave. and Classon Ave.,http://www.nycgovparks.org/parks/B459/,park +3756,Crystal Wells Block Association,40.67785481482,-73.87549349347607,11208,Wells St. and Crystal St.,http://www.nycgovparks.org/parks/B455/,park +3757,College Point Park,40.78536061727,-73.84620812420202,11356,14 Ave. bet. 121 St. and College Point Blvd.,http://www.nycgovparks.org/parks/Q457/,park +3758,Ogden Plimpton Playground,40.84195154445,-73.92348670255434,10452,"Ogden Av, Plimpton Av, W 170 St",http://www.nycgovparks.org/parks/X287/,park +3759,Amelia Gorman Park,40.85581255749,-73.93171714763652,10040,"Broadway To Wadsworth Terr, W 189 St To W 190 St",http://www.nycgovparks.org/parks/M031/,park +3760,Dimattina Playground,40.67943450792,-74.00300179905186,11231,"Rapelye St., Hicks St., Coles St.",http://www.nycgovparks.org/parks/B223A/,park +3761,Duane Park,40.71705513782,-74.00926104306279,10013,"Hudson St., Duane St.",http://www.nycgovparks.org/parks/M025/,park +3762,Las Casitas Community Garden,40.83540520531,-73.92531982971485,10452,Woodycrest Av bet. W 167 St and W 166 St,http://www.nycgovparks.org/parks/X328/,park +3763,Flood Triangle,40.85816904357,-73.8909566166126,10458,E. 188 St. at 3 Ave. and Washington Ave.,http://www.nycgovparks.org/parks/X061/,park +3764,Sergeant Johnson Triangle,40.8581025668,-73.88126790009846,10458,Dr Kazimiroff Blvd and Crotona Av at E Fordham Rd,http://www.nycgovparks.org/parks/X059/,park +3765,Whalen Grove,40.8509461061,-73.88586966839269,10457,Crotona Ave. at Grote St. and Garden St.,http://www.nycgovparks.org/parks/X071/,park +3766,Fairmount Playground,40.8426175484,-73.88907239384194,10460,Prospect Ave. bet. N/B Cross Bronx Exwy. and Fairmount Pl.,http://www.nycgovparks.org/parks/X148H2/,park +3767,Boone Slope,40.83716596539,-73.8822720700898,10460,N/B Cross Bronx Exwy Exit Ramp bet. Boone Av and W Farms Rd,http://www.nycgovparks.org/parks/X148J2/,park +3768,Rock Garden Park,40.83559520586,-73.88470939592784,10460,Longfellow Av bet. E 173 St and E 174 St,http://www.nycgovparks.org/parks/X273/,park +3769,Drew Playground,40.83327074447,-73.90282172309531,10456,Fulton Av bet. E 169 St and E 170 St,http://www.nycgovparks.org/parks/X021/,park +3770,Triangle Three Sixteen,40.66712579264,-73.99498803771627,11215,3 Ave. bet. Hamilton Ave. and 16 St.,http://www.nycgovparks.org/parks/B210G/,park +3771,Bradhurst Gardens Association,40.82735275944,-73.93916001222117,10039,W. 152 St. and Fredrick Douglas Blvd.,http://www.nycgovparks.org/parks/M377/,park +3772,Triangle,40.82458883497,-73.91074031455958,10451,"E 163 St, Washington Av and Brook Av",http://www.nycgovparks.org/parks/X052/,park +3773,Hines Park,40.82891214643,-73.9051856187144,10456,Fulton Av to Franklin Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X026/,park +3774,Co-op City Field,40.87604748368,-73.8230171563259,10475,Co-op City Blvd. and the Hutch. River bet. Carver Loop and Bellamy Loop,http://www.nycgovparks.org/parks/X251/,park +3775,Gen. Douglas MacArthur Park,40.587619202,-74.10016394203477,10306,Dongan Hills Ave. and Jefferson St.,http://www.nycgovparks.org/parks/R067/,park +3776,D'Onofrio Square,40.87987393965,-73.86503445987383,10467,White Plains Rd. bet. E. 213 St. and E. 215 St.,http://www.nycgovparks.org/parks/X084/,park +3777,Latham Park,40.74190921757,-73.89787411497055,11377,"43 Ave. bet. 66 St. and 67 St., BQE",http://www.nycgovparks.org/parks/Q341B/,park +3778,LaGuardia Landing Lights,40.76647408172,-73.88650853733353,11370,82 St. bet. Astoria Blvd. and 23 Ave.,http://www.nycgovparks.org/parks/Q393H/,park +3779,Jones Woods Park,40.63823557502,-74.08925952264646,10301,"Arnold St., Brighton Ave., Lafayette Ave.",http://www.nycgovparks.org/parks/R048/,park +3780,Minetta Triangle,40.72974587195,-74.00198570262627,10012,N/e Corner Ave. of Americas and Minetta St.,http://www.nycgovparks.org/parks/M125D/,park +3781,Allied Productions/Le Petit Versailles,40.72119552136,-73.98169431947319,10009,"E. 2 St., E. Houston St. bet. Ave. B and Ave. C",http://www.nycgovparks.org/parks/M372/,park +3782,Technical Sergeant Thomas J. Davey Triangle,40.72648509556,-73.90055277458494,11378,"Borden Ave., Hamilton Pl., Jay Ave.",http://www.nycgovparks.org/parks/Q360F/,park +3783,Hull Triangle,40.72547378176,-73.90123581004576,11378,"55 Dr., 64 St., Hull Ave.",http://www.nycgovparks.org/parks/Q360E/,park +3784,Burns Playground,40.86384297173,-73.83657995957529,10469,Mace Ave. bet. Lodovick Ave. and Gunther Ave.,http://www.nycgovparks.org/parks/X232/,park +3785,Moore Homestead Playground,40.74190332065,-73.88136169378862,11373,"Broadway., 82 St., 45 Ave.",http://www.nycgovparks.org/parks/Q361/,park +3786,Whitefish Triangle,40.72512780133,-73.89868804397167,11378,"55 Dr., Hamilton Pl., Perry Ave.",http://www.nycgovparks.org/parks/Q360G/,park +3787,Grant Gore,40.67658189042,-73.95277740492178,11216,"Bedford Ave., Rodgers Ave., Bergen St.",http://www.nycgovparks.org/parks/B041/,park +3788,University Woods,40.85827433237,-73.91595087391448,10468,"Cedar Ave., Sedgwick Ave. bet. Hall of Fame Ter. and W. 180 St.",http://www.nycgovparks.org/parks/X051/,park +3789,The Pearly Gates,40.83879396464,-73.8451142303648,10461,St. Peter's Ave. at Tratman Ave.,http://www.nycgovparks.org/parks/X170/,park +3790,Telephone Playground,40.73806629612,-73.75678292379457,11364,75 Ave. bet. Bell Blvd. and 217 St.,http://www.nycgovparks.org/parks/Q349/,park +3791,Rappaport Playground,40.63696137914,-74.00002850281535,11219,Ft. Hamilton Pkwy. bet. 52 St. and 53 St.,http://www.nycgovparks.org/parks/B152/,park +3792,Lieutenant John H. Martinson Playground,40.53696351046,-74.16197949628776,10312,Preston Ave. bet. Koch Blvd. and Osborne St.,http://www.nycgovparks.org/parks/R090/,park +3793,Sumpter Community Garden,40.6801773307,-73.91759480772673,11233,Sumpter St. bet. Howard Ave. and Saratoga Ave.,http://www.nycgovparks.org/parks/B525/,park +3794,Bill Brown Playground,40.59125201993,-73.94511518047662,11235,"Ave. Y, Ave. X bet. E. 24 St. and Bedford Ave.",http://www.nycgovparks.org/parks/B109/,park +3795,P.O. Serrano Playground,40.82326339095,-73.84993650085696,10473,Olmstead Ave. bet. Turnbull Ave. and Lafayetter Ave.,http://www.nycgovparks.org/parks/X151/,park +3796,TRUCE Garden,40.80461500632,-73.9529195300737,10026,St. Nicholas Ave. bet. W. 118 St. and W. 117 St.,http://www.nycgovparks.org/parks/M387/,park +3797,Louis C. Moser Playground,40.762606827,-73.8918483849886,11370,25 Ave. bet. 76 St. and 77 St.,http://www.nycgovparks.org/parks/Q366/,park +3798,L/CPL Thomas P. Noonan Jr. Playground,40.74093392883,-73.92213790719099,11104,"47 Ave., Greenpoint Ave. bet. 42 St. and 43 St.",http://www.nycgovparks.org/parks/Q044/,park +3799,Torsney Playground,40.74782152608,-73.92074727949363,11104,Skillman Ave. bet. 41 St. and 43 St.,http://www.nycgovparks.org/parks/Q340/,park +3800,Fort Stirling Park,40.69862069428,-73.9966593914142,11201,Clark St. at Columbia Heights and the Brooklyn-Queens Exwy.,http://www.nycgovparks.org/parks/B036/,park +3801,Bay Breeze Park,40.59125432639,-73.81386767939775,11693,Beach Channel Dr. bet. Beach 89 St. Old Beach 88 St.,http://www.nycgovparks.org/parks/Q499/,park +3802,Millbrook Playground,40.80436439922,-73.9160459192458,10454,E. 135 St. bet. Cypress Ave. and St Ann's Ave.,http://www.nycgovparks.org/parks/X182/,park +3803,DeLury Square,40.70927048285,-74.00507859354515,10038,Fulton St.bet. Ryders Alley and Gold St.,http://www.nycgovparks.org/parks/M385/,park +3804,Vogue Garden,40.82064165557,-73.9141092740645,10455,Elton Ave. at E. 156 St.,http://www.nycgovparks.org/parks/X347/,park +3805,South Oxford Park,40.6832960021,-73.97272645885994,11217,S. Oxford St. bet. Commos and Atlantic Ave.,http://www.nycgovparks.org/parks/B407/,park +3806,Fox Playground,40.63302799507,-73.92364807335066,11234,Ave. H between E. 54 St. to E. 55 St.,http://www.nycgovparks.org/parks/B248/,park +3807,Gun Hill Playground,40.87484133704,-73.86509137744432,10467,Magenta St. bet. Holland Ave. and Cruger Ave.,http://www.nycgovparks.org/parks/X161/,park +3808,Gorman Playground,40.76160916542,-73.88371746200323,11370,"30 Ave., 25 Ave. bet. 84 St. and 85 St.",http://www.nycgovparks.org/parks/Q085/,park +3809,Thomas Paine Park,40.71416768021,-74.00325136498869,10007,"Lafayette St., Centre St. bet. Worth St., Pearl St. and Duane St.",http://www.nycgovparks.org/parks/M030/,park +3810,Asser Levy Playground,40.73573350806,-73.97520910500639,10010,"E. 23 St. To E. 25 St., FDR Drive",http://www.nycgovparks.org/parks/M164/,park +3811,Isham Park,40.87205126799,-73.91987771815732,10034,"Broadway, Isham St, Inwood Pk",http://www.nycgovparks.org/parks/M043/,park +3812,Frank D. O'Connor Playground,40.74389837225,-73.88597836801559,11373,Broadway and Woodside Ave. bet. 77 St. and 79 St.,http://www.nycgovparks.org/parks/Q098/,park +3813,Sean's Place,40.76082984232,-73.91805175769134,11103,38 St. bet. 31 Ave. and Broadway,http://www.nycgovparks.org/parks/Q444/,park +3814,Jesse Owens Playground,40.69201807426,-73.93199110383165,11221,Lafayette Ave. bet. Stuyvesant Ave. and Malcom X Blvd.,http://www.nycgovparks.org/parks/B269/,park +3815,Auburndale Playground,40.76605619028,-73.7938787926504,11358,"171 St., 172 St. bet. 33 Ave. and 35 Ave.",http://www.nycgovparks.org/parks/Q397/,park +3816,Murray Hill Playground,40.76145949632,-73.81134737138704,11355,Murray St. bet. Barclay Ave. and Sanford Ave.,http://www.nycgovparks.org/parks/Q437/,park +3817,Pelham Bay Little League,40.84138412002,-73.8390052243046,10461,Westchester Ave. bet. Tan Pl. and Waters Ave.,http://www.nycgovparks.org/parks/X256/,park +3818,East Springfield Playground,40.6986702966,-73.73941752218502,11411,115 Rd. bet. 218 St. and 219 St.,http://www.nycgovparks.org/parks/Q404/,park +3819,Bellerose Playground,40.73256385013,-73.71748692011855,11426,85 Ave. bet. 248 St. and 249 St.,http://www.nycgovparks.org/parks/Q328/,park +3820,Vleigh Playground,40.72970511816,-73.81560317974835,11367,"70 Rd., 71 Ave. bet. 150 St. and Kissena Blvd.",http://www.nycgovparks.org/parks/Q320/,park +3821,Harvard Playground,40.70874815786,-73.78157988844221,11432,179 Pl. bet. 90 Ave. and Jamaica Ave.,http://www.nycgovparks.org/parks/Q120/,park +3822,Bayside Fields,40.77294911466,-73.78472799933617,11360,29 Ave. bet. 204 St. and Clearview Exwy. Sr. Rd. W.,http://www.nycgovparks.org/parks/Q387A/,park +3823,Bowne Park,40.77101044021,-73.80547989779006,11354,"29 Ave., 32 Ave. bet. 155 St. and 159 St.",http://www.nycgovparks.org/parks/Q006/,park +3824,Ponderosa Garden,40.64908720119,-73.8969728966756,11236,E. 105 St. between Farragut Rd. and Glenwood Rd.,http://www.nycgovparks.org/parks/B504/,park +3825,Lincoln Rd Block Association,40.66108684577,-73.95219075695849,11225,Lincoln Rd. between Rogers Ave. and Nostrand Ave.,http://www.nycgovparks.org/parks/B480/,park +3826,All People's Church of the Apostolic Faith Community Garden,40.69436616864,-73.94567279852019,11206,Tompkins Ave. and Willoughby Ave.,http://www.nycgovparks.org/parks/B439/,park +3827,700 Decatur St Block Association,40.68375192031,-73.91421720909678,11233,Hopkinson Ave. and Decatur St.,http://www.nycgovparks.org/parks/B438/,park +3828,Brooklyn Bears Carlton Ave Garden,40.68581476662,-73.97094993164195,11238,Carlton Ave. between Greene Ave. and Fulton St.,http://www.nycgovparks.org/parks/B421/,park +3829,Atkins Gardeners,40.6737822491,-73.8783312795067,11208,Atkins Ave. between Belmont Ave. and Pitkin Ave.,http://www.nycgovparks.org/parks/B443/,park +3830,Gardens Of Union,40.67700810251,-73.98229892793522,11215,Union St. between 4 Ave. and 5 Ave.,http://www.nycgovparks.org/parks/B399/,park +3831,Ten Eyck Plaza,40.70903710326,-73.94911565165785,11206,Ten Eyck St. to Stagg St. between Lorimer St. and Union Ave.,http://www.nycgovparks.org/parks/B386/,park +3832,Beach Channel Playground,40.5892243664,-73.80540028506893,11693,"B 80 St., B 79 St., Rockaway Beach Blvd., Beach Channel Dr.",http://www.nycgovparks.org/parks/Q403/,park +3833,Wilson Playground,40.64236543885,-73.89413337287988,11236,Ave. K between E. 100 St. and E. 101 St.,http://www.nycgovparks.org/parks/B279/,park +3834,Benson Playground,40.6022945914,-74.0020041747784,11214,Bath Ave. between Bay 22 St. and Bay 23 St.,http://www.nycgovparks.org/parks/B277/,park +3835,Sumner Playground,40.69779227335,-73.94292203708201,11206,Throop Ave. between Myrtle Ave. and Park Ave.,http://www.nycgovparks.org/parks/B263/,park +3836,P.O. Reinaldo Salgado Playground,40.68776000309,-73.92490016530772,11221,Monroe St. to Madison St. between Patchen Ave. and Ralph Ave.,http://www.nycgovparks.org/parks/B224/,park +3837,Rodney Playground Center,40.710422132,-73.9553329149497,11211,"Rodney St., S. 3 St., Borniquen Pl.",http://www.nycgovparks.org/parks/B223PD/,park +3838,Rockaway Garage,40.59133130379,-73.80273892755633,11692,Amstel Blvd. bet. Beach 75 St. and Beach 74 St.,http://www.nycgovparks.org/parks/Q455/,park +3839,Railroad Playground,40.6490960379,-73.91342067703167,11236,Ditmas Ave. bet. E. 92 St. and E. 91 St.,http://www.nycgovparks.org/parks/B271/,park +3840,Brooklyn Heights Promenade,40.69602978348,-73.9978368902687,11201,BQE at Montague St.,http://www.nycgovparks.org/parks/B223DF/,park +3841,West Playground,40.58761652185,-73.97014873022829,11223,Ave. Z between W. 1 St. and West St.,http://www.nycgovparks.org/parks/B252/,park +3842,Tilden Playground,40.64724642557,-73.93174011489194,11203,Tilden Ave. between E. 48 St. and E. 49 St.,http://www.nycgovparks.org/parks/B234/,park +3843,Nicholas Naquan Heyward Jr. Park,40.68421201029,-73.9874808027048,11217,Wyckoff St. between Hoyt St. and Bond St.,http://www.nycgovparks.org/parks/B230/,park +3844,Rodney Park South,40.70753243954,-73.95714285365467,11211,"Division Ave., Rodney St., S. 9 St.",http://www.nycgovparks.org/parks/B223OC/,park +3845,Harry Chapin Playground,40.70052351987,-73.99479706266717,11201,Columbia Hts. at Middagh St.,http://www.nycgovparks.org/parks/B223H/,park +3846,Jennifer's Playground,40.62023796183,-74.16248855636586,10314,"Jules Dr., Elson Ct., Regis Dr.",http://www.nycgovparks.org/parks/R114/,park +3847,United Community Center Garden,40.66513649319,-73.88660847294206,11207,Schenck Ave. bet. Livonia Ave. and New Lots Ave.,http://www.nycgovparks.org/parks/B515/,park +3848,Brooklyn Heights Promenade,40.69573873899,-73.9974135434037,11201,Montague St. bet. Montague Ter. and BQE,http://www.nycgovparks.org/parks/B223DF/,park +3849,Pierrepont Playground,40.69600575065,-73.99728632001353,11201,"bet. Pierrepont Pl., Pierrepont St. and the BQE",http://www.nycgovparks.org/parks/B222/,park +3850,Aesop Park,40.50952810782,-74.22924890046362,10309,Corner Of Bartow Ave. and Page Ave.,http://www.nycgovparks.org/parks/R027A/,park +3851,La Guardia Playground,40.71030022838,-73.96011017205772,11211,S. 4 St. bet. Roebling St. and Williamsburg Bridge Ramp,http://www.nycgovparks.org/parks/B167/,park +3852,Bedford Playground,40.70855957451,-73.96348799692701,11211,Bedford Ave. bet. S. 9 St. and Division Ave.,http://www.nycgovparks.org/parks/B142/,park +3853,Lt. Lia Playground,40.64375562007,-74.08041544162526,10301,Wall St. bet. St Marks Pl. and Belmont Pl.,http://www.nycgovparks.org/parks/R111/,park +3854,Greencroft Playground,40.55186119976,-74.13543274125965,10308,Greencroft Ave. bet. Ainsworth Ave. and Redgrave Ave.,http://www.nycgovparks.org/parks/R089/,park +3855,Sports Park,40.60921738617,-74.11867424407325,10314,"SI Expressway, Manor Rd. and Schmidts La.",http://www.nycgovparks.org/parks/R075D/,park +3856,Lot,40.71163139713,-73.96510672856029,11211,S. 5 St. bet. Wythe Ave. and Berry St.,http://www.nycgovparks.org/parks/B112/,park +3857,Vamos Sembrar,40.72829982483,-73.9789702893822,10009,Ave. B bet. E. 12 St. and E. 13 St.,http://www.nycgovparks.org/parks/M343/,park +3858,Old Croton Aqueduct Gatehouse,40.80862798918,-73.95955535979222,10027,Amsterdam Ave. bet. W. 118 St. and W. 119 St.,http://www.nycgovparks.org/parks/M320/,park +3859,Pleasant Village Community Garden,40.79669097298,-73.93144538061266,10035,"Pleasant Ave., bet. E. 118 St. and E. 119 St.",http://www.nycgovparks.org/parks/M299/,park +3860,Unity Gardens,40.80942764383,-73.94248043243698,10027,W. 128. St. bet. 5 Ave. and Lenox Ave.,http://www.nycgovparks.org/parks/M298/,park +3861,6th St and Ave B Community Garden,40.72422569792,-73.98194087171696,10009,Ave. B bet. E. 5 St. and E. 6 St.,http://www.nycgovparks.org/parks/M293/,park +3862,Abyssinian Tot Lot,40.81726604067,-73.9406885465869,10030,W. 139 St. bet. Adam C Powell Blvd. and Lenox Ave.,http://www.nycgovparks.org/parks/M303/,park +3863,East River Playground,40.78885176366,-73.93787392348952,10029,"FDR Dr., E. 106 St. To E. 107 St.",http://www.nycgovparks.org/parks/M258/,park +3864,Septuagesimo UNO,40.77873959951,-73.98422664225284,10023,71 St. bet. West End Ave. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M282/,park +3865,Poor Richard's Playground,40.79331732385,-73.94319197216295,10029,E. 109 St. bet. 2 Ave. and 3 Ave.,http://www.nycgovparks.org/parks/M230/,park +3866,Jacob's Ladder Playground,40.70484661344,-73.96653496005578,11211,Clymer St. to Morton St. between Kent Ave. and Wythe Ave.,http://www.nycgovparks.org/parks/B382B/,park +3867,Chiarantano Playground,40.63679878588,-73.93319466418113,11203,Farragut Rd. between E. 45 St. and E. 46 St.,http://www.nycgovparks.org/parks/B375/,park +3868,Trygve Lie Plaza,40.74884250487,-73.97023732560665,10017,"1 Ave., bet. E. 41 St. and E. 42 St.",http://www.nycgovparks.org/parks/M203A/,park +3869,Holcombe Rucker Park,40.82978399248,-73.93659161474059,10039,"W. 155 St., 8 Ave. To Harlem River Drive",http://www.nycgovparks.org/parks/M216/,park +3870,Cherry Tree Park,40.78685884929,-73.94706292181864,10029,"99 St. To 100 St., 3 Ave.",http://www.nycgovparks.org/parks/M215/,park +3871,Astoria Heights Playground,40.76076801709,-73.91101385359487,11103,30 Rd. bet. 45 St. and 46 St.,http://www.nycgovparks.org/parks/Q014/,park +3872,Jes Good Rewards Childeren's Garden,40.66677177717,-73.91343241065258,11212,Sutter Ave. and Amboy St.,http://www.nycgovparks.org/parks/B511/,park +3873,Vladeck Park,40.71150340209,-73.98181770672083,10002,Madison St. To Water St. bet. Jackson St. and Gouverneur St.,http://www.nycgovparks.org/parks/M182/,park +3874,Tom McDonald Triangle,40.62193629204,-74.02249206358081,11209,"Ft Hamilton Pkwy., 83 St., 6 Ave.",http://www.nycgovparks.org/parks/B338/,park +3875,Anibal Aviles Playground,40.80125912674,-73.96263452668934,10025,"W. 108 St. to W. 109 St., Columbus Ave. and Amsterdam Ave.",http://www.nycgovparks.org/parks/M200A/,park +3876,Booker T. Washington Playground,40.80095740462,-73.96310982046077,10025,"W. 107 St. to W. 108 St., Columbus Ave. and Amsterdam Ave.",http://www.nycgovparks.org/parks/M200/,park +3877,Fresh Meadows Playground,40.73448792987,-73.79577536207546,11365,67 Ave. bet. 173 St. and 174 St.,http://www.nycgovparks.org/parks/Q314/,park +3878,Harding Park,40.80924557141,-73.85639866166588,10473,Bolton Ave. bet. O'Brien Ave. and G St.,http://www.nycgovparks.org/parks/X262/,park +3879,Charlie's Place,40.69890669959,-73.94542600584076,11206,"Ellery St. at Delmonico Pl., Hopkinds St. bet. Tompkins Ave. and Throop Ave.",http://www.nycgovparks.org/parks/B302/,park +3880,Monsignor Kett Playground,40.86264738798,-73.9204737673532,10034,W. 204 St. bet. 10 Ave. and Nagle Ave.,http://www.nycgovparks.org/parks/M199/,park +3881,Prospect Cemetery,40.70104204723,-73.79906252718544,11433,Beaver Rd. bet. 158 St. and 159 St.,http://www.nycgovparks.org/parks/Q482/,park +3882,Washington Skate Park,40.67266943053,-73.98508748296607,11215,"5 St., 4 St. bet. 4 Ave. and 5 Ave.",http://www.nycgovparks.org/parks/B111A/,park +3883,Randall Playground,40.81901922236,-73.84922408877432,10473,Randall Ave. bet. Olmstead Ave. and Castle Hill Ave.,http://www.nycgovparks.org/parks/X203/,park +3884,Sgt. William Dougherty Playground,40.72354751067,-73.93670785540392,11222,Vandervoort Ave. bet. Cherry St. and Anthony St.,http://www.nycgovparks.org/parks/B096/,park +3885,Grace Playground,40.67128162686,-73.89384054415771,11207,Vermont St. bet. Pitkin Ave. and Belmont Ave.,http://www.nycgovparks.org/parks/B078/,park +3886,Glenwood Playground,40.63727383391,-73.91930427982197,11234,Ralph Ave. and Farragut Rd.,http://www.nycgovparks.org/parks/B236/,park +3887,John J Carty Park,40.6128415012,-74.0300932735937,11209,Ft. Hamilton Pkwy. bet. 94 St. and 101 St.,http://www.nycgovparks.org/parks/B210W/,park +3888,River Avenue Parks,40.82485894686,-73.92706900971802,10451,E 157 St bet. River Av and Gerard Av,http://www.nycgovparks.org/parks/X348/,park +3889,Dean Playground,40.68110166498,-73.97272908330662,11217,Dean St. to Bergen St. between 6 Ave. and Carlton Ave.,http://www.nycgovparks.org/parks/B232/,park +3890,Young Park,40.83979930052,-73.87088909330323,10460,Van Nest Ave. at E. 180 St. and E. Tremont Ave.,http://www.nycgovparks.org/parks/X073/,park +3891,Riverdale Playground,40.88740184698,-73.9140791234728,10463,Hudson Manor Ter bet. W 237 St and W 236 St,http://www.nycgovparks.org/parks/X186/,park +3892,Siren Slope,40.87644706341,-73.90397267745317,10463,"W 230 St, Bailey Av, Major Deegan Exwy",http://www.nycgovparks.org/parks/X150G/,park +3893,Kingsbridge Heights Community Center,40.87755774647,-73.90036065437914,10463,Kingsbridge Ter bet. Perot St and Summilt P,http://www.nycgovparks.org/parks/X250/,park +3894,Carmansville Playground,40.82885247172,-73.94423739439577,10031,"Amsterdam Av, W 151 St To W 152 St",http://www.nycgovparks.org/parks/M018/,park +3895,Davidson Ave. Community Gardeners Group,40.86419509373,-73.90064951635848,10468,Davidson Ave. at W. 190 St.,http://www.nycgovparks.org/parks/X343/,park +3896,Slattery Playground,40.85693358482,-73.89825077067158,10458,E. 183 St. bet. Valentine Ave. and Ryer,http://www.nycgovparks.org/parks/X085/,park +3897,Mount Hope Garden,40.85233186129,-73.9053260213287,10453,Creston Ave. bet. E. Burnside Ave. and E,http://www.nycgovparks.org/parks/X274/,park +3898,Hunter's Point South Park,40.74187176241,-73.96034144053077,11101,Center Blvd. bet. 50 Ave. and 2 St.,http://www.nycgovparks.org/parks/Q471/,park +3899,Jardin De Las Rosas,40.85797587884,-73.90482747559675,10453,Buchanan Pl. bet. Jerome Ave. and Davidso,http://www.nycgovparks.org/parks/X322/,park +3900,Grand Playground,40.85605373758,-73.90699859013269,10453,W. 181 St. bet. Grand Ave. and Davidson,http://www.nycgovparks.org/parks/X244/,park +3901,Coleman Playground,40.71079330523,-73.99316195276386,10002,"Cherry St, Pike St, Monroe St",http://www.nycgovparks.org/parks/M019/,park +3902,De Witt Clinton Park,40.76727280943,-73.99383726769912,10019,"W. 52 St. To W. 54 St., 11 Ave. To 12 Ave.",http://www.nycgovparks.org/parks/M022/,park +3903,Grant Park,40.83774812957,-73.91160011332084,10456,E 170 St bet. Sheridan Av and Morris Av,http://www.nycgovparks.org/parks/X271/,park +3904,Webster Playground,40.85937697353,-73.89239779472493,10458,E. 188 St. bet. Webster Ave. and Park Ave.,http://www.nycgovparks.org/parks/X174/,park +3905,Volky Garden & Flowers,40.84707387749,-73.88234391814649,10460,Hornaday Pl bet. Crotona Pkwy and Mohegan Av,http://www.nycgovparks.org/parks/X346/,park +3906,Daniel Boone Playground,40.82859551467,-73.88602063818213,10459,Boone Av bet. W Farms Rd and Freeman St,http://www.nycgovparks.org/parks/X147B/,park +3907,Genesis Park Community Garden,40.82959791799,-73.90440919267616,10456,Franklin Av bet. E 167 St and E 168 St,http://www.nycgovparks.org/parks/X316/,park +3908,Morgan Playground,40.83271828168,-73.90701799190813,10456,E 168 St bet. Park Av and Washington Av,http://www.nycgovparks.org/parks/X206/,park +3909,Jardin De La Familia,40.83802580491,-73.90324849746916,10457,E. 171 St. at Washington Ave.,http://www.nycgovparks.org/parks/X320/,park +3910,Sophie Irene Loeb,40.71360531673,-73.99442125447004,10002,"Henry St., Market St., E. Broadway",http://www.nycgovparks.org/parks/M067/,park +3911,Haffen Park,40.87331371221,-73.83763290069393,10469,Hammersley Ave. to Burke Ave. bet. Ely Ave. and Gunther Ave.,http://www.nycgovparks.org/parks/X196/,park +3912,Castle Hill Little League Field,40.83286426779,-73.84346594277106,10462,Zerega Av bet. Commerce Av and Gleason Av,http://www.nycgovparks.org/parks/X239/,park +3913,Straus Park,40.80159984818,-73.96812312780794,10025,"Broadway, W. 106 St., W. End Ave.",http://www.nycgovparks.org/parks/M085/,park +3914,James J Walker Park,40.73013812355,-74.00672402234832,10014,"Hudson St., St. Luke's Pl., Clarkson St., 7 Ave.",http://www.nycgovparks.org/parks/M038/,park +3915,Courtlandt Avenue Association Garden,40.82256846898,-73.91592928828673,10451,E 158 St bet. Melrose Av and Courtlandt Av,http://www.nycgovparks.org/parks/X338/,park +3916,St. Ann's Block Association Garden,40.8172326477,-73.91110273250362,10455,St Ann's Ave. at Rae St.,http://www.nycgovparks.org/parks/X345/,park +3917,Padre Plaza,40.80775150025,-73.91699019642044,10454,E. 139 St. and St Ann's Ave.,http://www.nycgovparks.org/parks/X285/,park +3918,Brook Park,40.80955496357,-73.91821137155662,10454,Brook Ave. bet. E. 141 St. and E. 140 St.,http://www.nycgovparks.org/parks/X246/,park +3919,People's Park,40.80987048321,-73.91732690349966,10454,E. 141 St. bet. Brook Ave. and St Ann's Ave.,http://www.nycgovparks.org/parks/X103/,park +3920,West 4th Street Courts,40.73090253445,-74.00092286126788,10012,"Ave. Of Americas, W. 3 St. and W. 4 St.",http://www.nycgovparks.org/parks/M125C/,park +3921,Loreto Playground,40.84863603391,-73.85136679666141,10461,Morris Park Ave. bet. Haight Ave. and Tomlinson Ave.,http://www.nycgovparks.org/parks/X163/,park +3922,James Weldon Johnson Playground,40.79692280504,-73.94157178085652,10029,E. 115 St. bet. 3 Ave. and Lexington Ave.,http://www.nycgovparks.org/parks/M111/,park +3923,William McCray Playground,40.81553449102,-73.93732949281154,10037,"W. 138 St., bet. Lenox Ave. and 5 Ave.",http://www.nycgovparks.org/parks/M110/,park +3924,Arverne Playground,40.5925020625,-73.78521573415489,11692,Arverne Blvd. bet. Beach 56 St. and Beach 54 St.,http://www.nycgovparks.org/parks/Q313/,park +3925,Twenty-Four Sycamores Park,40.75960193452,-73.95827002036043,10065,"FDR Dr., E. 60 St. To E. 61 St. and York Ave.",http://www.nycgovparks.org/parks/M108Q/,park +3926,Asphalt Green,40.77872759852,-73.94363368593727,10128,"E. 90 St., York Ave., FDR Dr.",http://www.nycgovparks.org/parks/M286/,park +3927,Children's Garden,40.72808245525,-73.97913710442276,10009,S/w Corner of E. 12 St. At Ave. B,http://www.nycgovparks.org/parks/M113A/,park +3928,Concerned Residents of Barbey Street,40.67405915528,-73.8876657055523,11207,Barbey St. and Glenmore Ave.,http://www.nycgovparks.org/parks/B452/,park +3929,Bufano Park,40.83783058967,-73.8304587458853,10461,Bradford Ave. bet. La Salle Ave. and Waterbury Ave.,http://www.nycgovparks.org/parks/X121/,park +3930,Steeplechase Park,40.57530722581,-73.98325414168744,11224,"Surf Ave. between W. 16 St. and W. 19 St., Public Beach",http://www.nycgovparks.org/parks/B369/,park +3931,Astoria Park,40.7825274375,-73.91996804286025,11105,19 St. bet. Astoria Park S. and Ditmars Blvd.,http://www.nycgovparks.org/parks/Q004/,park +3932,Francis Lewis Park,40.79563781596,-73.8260497433326,11357,3 Ave. bet. Parsons Blvd and 147 St.,http://www.nycgovparks.org/parks/Q126,park +3933,Thursby Basin Park,40.59534080136,-73.791081668037,11692,Beach 63 St. bet. Elizabeth Rd. and Thursby Ave.,http://www.nycgovparks.org/parks/Q479/,park +3934,Poseidon Playground,40.57176971595,-73.99150900764111,11224,"Surf Ave. bet. W. 25 St. to W. 27 St., Boardwalk",http://www.nycgovparks.org/parks/B169B/,park +3935,Pier 107 CVII,40.78894223346,-73.93611806830104,10029,FDR Dr. at E. 107 St.,http://www.nycgovparks.org/parks/M290/,park +3936,Red Hook Recreation Area,40.67179112362,-74.00342102840533,11231,"Halleck St., Bush St. bet. Otsego St. and Court St.",http://www.nycgovparks.org/parks/B126/,park +3937,Coney Island Creek Park,40.58103152317,-74.00413959028121,11224,Bay View Ave. between Sea Gate Ave. and W. 33 St.,http://www.nycgovparks.org/parks/B379/,park +3938,River Garden,40.84198786955,-73.87623969625949,10460,E 180 St bet. the Bronx River and Devoe Av,http://www.nycgovparks.org/parks/X245/,park +3939,Ambrosini Field,40.8440889832,-73.78243845176827,10464,City Island Ave bet. Centre St. and Winter St.,http://www.nycgovparks.org/parks/X253/,park +3940,Joseph Daniel Wilson Garden,40.80774069979,-73.95042032246141,10027,W. 122 St. bet. Fred Douglass Blvd. and Adam Clayton Powell Blvd.,http://www.nycgovparks.org/parks/M351/,park +3941,Frederick Johnson Playground,40.82460151284,-73.93462145633255,10039,7 Ave. bet. W. 150 St. and W. 151 St.,http://www.nycgovparks.org/parks/M159/,park +3942,Queensbridge Park,40.75589212431,-73.94806058617907,11101,"Queensboro Bridge, 41 Rd., 40 Ave. bet. The East River, Vernon Blvd., and 21 St.",http://www.nycgovparks.org/parks/Q104/,park +3943,Brooklyn Heights Promenade,40.69808464653,-73.99699305334475,11201,BQE over-hang bet. Remsen St. and Orange St.,http://www.nycgovparks.org/parks/B223DK/,park +3944,Memorial Circle,40.57872354339,-73.84088486382107,11694,Rockaway Beach Blvd. bet. Beach 120 St. and Beach 121 St.,http://www.nycgovparks.org/parks/Q259/,park +3945,Hempstead Ballfield,40.71027383581,-73.7287188787995,11429,Hempstead Ave. bet. Cross Is. Pkwy. and 225 St.,http://www.nycgovparks.org/parks/Q133A/,park +3946,Fruit Street Sitting Area,40.70059713694,-73.99530459994776,11201,Columbia Heights and Orange St. To Cranberry St.,http://www.nycgovparks.org/parks/B223E/,park +3947,Hackett Park,40.90111391915,-73.90559007025497,10471,"W 254 St, Riverdale Av, Henry Hudson Pkw",http://www.nycgovparks.org/parks/X110A/,park +3948,Alley Park,40.7472472492,-73.74439054688156,11364,67 Ave. bet. 230 St. and 233 St.,http://www.nycgovparks.org/parks/Q356/,park +3949,Barretto Point Park,40.80426974197,-73.88722954312396,10474,Viele Ave. bet. Tiffany St. and Barretto St.,http://www.nycgovparks.org/parks/X307/,park +3950,Rev. Linnette C Williamson Memorial Park,40.80987448255,-73.94277704284598,10027,E. 129 St. bet. Lenox Ave. and 5 Ave.,http://www.nycgovparks.org/parks/M316/,park +3951,Estella Diggs Park,40.82906999202,-73.90565830783797,10456,3 Av to Fulton Av bet. E 167 St and E 166 St,http://www.nycgovparks.org/parks/X243/,park +3952,Chelsea Green,40.74178064653,-73.99615101159142,10011,W. 20 St. bet. Ave. of the Americas and 7 Ave.,http://www.20thstreetpark.org/,park +3953,Cedar Grove Playground,40.73638556059,-73.82413760240924,11367,Gravett Rd. bet. Main St. and 149 St.,http://www.nycgovparks.org/parks/Q376/,park +3954,Whitestone Playground,40.79228486304,-73.80786502743729,11357,"11 Ave., 12 Ave. bet. 152 St. and 154 St.",http://www.nycgovparks.org/parks/Q343/,park +3955,Surf Playground,40.57404512057,-73.9919677686699,11224,Surf Ave. between W. 25 St. and W. 27 St.,http://www.nycgovparks.org/parks/B315/,park +3956,Bath Playground,40.5951813981,-73.99256961791514,11214,Bath Ave. between 24 Ave. and Bay 37 St.,http://www.nycgovparks.org/parks/B349/,park +3957,Golconda Playground,40.69756187748,-73.98158112112017,11201,Gold St. between Nassau St. and Concord St.,http://www.nycgovparks.org/parks/B243/,park +3958,Long Pond Park,40.51353637172,-74.22665486323866,10309,"Page Ave., Hylan Blvd., and Amboy Rd.",http://www.nycgovparks.org/parks/R027/,park +3959,Bunker Ponds Park,40.52369764252,-74.18164990647155,10312,"Hylan Blvd., Chester Ave., Arbutus Ave., Huguenot Ave.",http://www.nycgovparks.org/parks/R132/,park +3960,King Fisher Park,40.56084932764,-74.1518868875469,10308,"Miles Ave., Corbin Ave., Barlow Ave., Fairfield St.",http://www.nycgovparks.org/parks/R140/,park +3961,Blue Heron Park,40.53728220667,-74.17491195173616,10312,"Amboy Rd., Barclay Ave., Hylan Blvd. and Bertram Ave.",http://www.nycgovparks.org/parks/R119/,park +3962,Roosevelt Triangle,40.81132419344,-73.95423114697054,10027,W. 125 St. and Morningside Ave.,http://www.nycgovparks.org/parks/M189/,park +3963,Newport Playground,40.6606529482,-73.90661014690899,11212,Riverdale Ave. bet. Thatford Ave. and Osborn St.,http://www.nycgovparks.org/parks/B339/,park +3964,Garden Of Life,40.84338431351,-73.90779158232726,10457,E 173 St bet. Weeks Av and Eastburn Av,http://www.nycgovparks.org/parks/X298/,park +3965,Vernon/Throop Ave Block Association,40.69515265354,-73.94324227632016,11206,Throop Ave. and Vernon Ave.,http://www.nycgovparks.org/parks/B495/,park +3966,Granite St Block Association,40.68224533097,-73.90750653688438,11207,Granite St. between Broadway and Bushwick Ave.,http://www.nycgovparks.org/parks/B470/,park +3967,Walter Gladwin Park,40.84633610857,-73.89478193236265,10457,E 175 St to E Tremont Av bet. 3 Av and Arthur Ave,http://www.nycgovparks.org/parks/X010A/,park +3968,Hansborough Recreation Center,40.8126238564,-73.93920593381904,10037,"W. 134 St., Lenox Terrace Pl.",http://www.nycgovparks.org/parks/M131/,park +3969,Targee Street Triangle,40.60887033369,-74.08807252164642,10304,"De Kalb St., Targee St., Narrows Rd. N.",http://www.nycgovparks.org/parks/R164/,park +3970,Yolanda García Park,40.82322080828,-73.9132449912286,10451,Melrose Ave. bet. E. 160 St. and E. 159 St.,http://www.nycgovparks.org/parks/X353/,park +3971,Pleasant Plains Plaza,40.52390419722,-74.216345334665,10309,"Amboy Rd., Bloomingdale Rd.",http://www.nycgovparks.org/parks/R002/,park +3972,McGuire Fields,40.6055743753,-73.89906362004717,11234,"Ave Y., Bergen Ave. bet. Ave. V and Belt Pkwy.",http://www.nycgovparks.org/parks/B166D/,park +3973,Mount Prospect Park,40.67215243584,-73.96535651528673,11238,"Eastern Pkwy., Flatbush Ave. bet. Underhill Ave. and Washington Ave.",http://www.nycgovparks.org/parks/B159/,park +3974,Four Sparrow Marsh,40.60036548634,-73.90382941160448,11234,"Flatbush Ave., Belt Pkwy., Mill Basin",http://www.nycgovparks.org/parks/B394/,park +3975,Bensonhurst Park,40.59646464786,-74.00020282563159,11214,Cropsey Ave. bet. 21 Ave. and Bay Pkwy.,http://www.nycgovparks.org/parks/B007/,park +3976,Bridge Playground,40.84442971685,-73.92361869858321,10452,"Boscobel Pl, bet. Dr MLK Jr Blvd and Undercliff Av",http://www.nycgovparks.org/parks/X148A3/,park +3977,Joseph Rodman Drake Park & Enslaved African Burial Ground,40.80982262776,-73.88323029594491,10474,Oak Pt. Ave. bet. Hunts Pt. Ave. and Longfellow Ave.,http://www.nycgovparks.org/parks/X015/,park +3978,Playground 103 CIII,40.78737531943,-73.93879154414053,10029,FDR Dr. bet. E. 102 St. and E. 106 St.,http://www.nycgovparks.org/parks/M108G/,park +3979,Family Group Garden,40.8219468871,-73.91393735494913,10451,E. 158 St. bet. Melrose Ave. and Elton Ave.,http://www.nycgovparks.org/parks/X352/,park +3980,"Martin Luther King, Jr. Playground",40.79996367345,-73.95090138982894,10026,"Lenox Ave, W. 113 St. To W. 114 St.",http://www.nycgovparks.org/parks/M198/,park +3981,Brooklyn Heights Promenade,40.69886144497,-73.99652568050227,11201,BQE bet. Clark St. and Pineapple St.,http://www.nycgovparks.org/parks/B223DH/,park +3982,Howard Pool,40.67263053196,-73.90852481321426,11212,E. New York Ave. between Mother Gaston Blvd. and St. Mark's Ave.,http://www.nycgovparks.org/parks/B260A/,park +3983,Wagner Houses Pool,40.8014685355,-73.93163164085813,10035,E. 124 St. bet. 1 Ave. and 2 Ave.,http://www.nycgovparks.org/parks/M273/,park +3984,Slope Park Playground,40.66139567772,-73.98913202082416,11215,6 Ave. between 18 St. and 19 St.,http://www.nycgovparks.org/parks/B288/,park +3985,Vincent F. Albano Jr. Playground,40.74176941381,-73.97826651009748,10016,2 Ave. bet. E. 29 St. and E. 30 St.,http://www.nycgovparks.org/parks/M265/,park +3986,Van Dyke Playground,40.6641483856,-73.90349595172391,11212,Dumont Ave. between Powell St. and Mother Gaston Blvd.,http://www.nycgovparks.org/parks/B249/,park +3987,Cutinella Triangle,40.5917309332,-73.97677333958097,11223,"Ave. W, W. 6 St. and 86 St.",http://www.nycgovparks.org/parks/B289/,park +3988,Callahan-Kelly Playground,40.67860334852,-73.90369797331626,11233,"Fulton St., Truxton St., bet. Eastern Pkwy. and Van Sinderen Ave.",http://www.nycgovparks.org/parks/B219/,park +3989,Bartel-Pritchard Square,40.66142937714,-73.97984506009364,11215,"Prospect Park W., 15 St.",http://www.nycgovparks.org/parks/B003/,park +3990,Damrosch Park,40.77210130857,-73.98398490449247,10023,Amsterdam Ave. and W. 62 St.,http://www.nycgovparks.org/parks/M231/,park +3991,Petrosino Square,40.72159322733,-73.9974421394935,10012,"Kenmare St., Lafayette St., and Cleveland Pl.",http://www.nycgovparks.org/parks/M170/,park +3992,Ralph Demarco Park,40.78349954848,-73.91871011502643,11105,Shore Blvd. bet. Ditmars Blvd. and 20 Ave.,http://www.nycgovparks.org/parks/Q004A/,park +3993,Parade Ground,40.64951566082,-73.96849393627504,11226,"Parkside Ave., Caton Ave., bet. Parade Pl. and Coney Island Ave.",http://www.nycgovparks.org/parks/B068/,park +3994,Hempstead Bench Spread,40.71079468818,-73.7296558548861,11429,104 Ave. bet. 225 St. and 227 St.,http://www.nycgovparks.org/parks/Q133B/,park +3995,Quaker Parrot Park at the Dust Bowl,40.63259498089,-74.01276037951446,11220,8 Ave. bet. 65 St. and 66 St.,http://www.nycgovparks.org/parks/B146/,park +3996,Stars & Stripes Playground,40.88567381564,-73.83868117507936,10466,Crawford Ave. at Baychester Ave.,http://www.nycgovparks.org/parks/X193/,park +3997,Trust Triangle,40.61610274441,-73.92952044840865,11234,"Flatbush Ave., Schenctady Ave., Ave. O",http://www.nycgovparks.org/parks/B176/,park +3998,Rev. T. Wendell Foster Park and Recreation Center,40.83410517636,-73.92240136423838,10452,Jerome Av to River Av bet. E 164 St and McClellan St at Cromwell Ave,http://www.nycgovparks.org/parks/X034/,park +3999,Holy Cow Playground,40.74211419685,-73.77809413661085,11365,Peck Ave. bet. 61 Rd. and 67 Ave.,http://www.nycgovparks.org/parks/Q300B/,park +4000,The Big Park,40.63095323297,-74.16375018086438,10303,"Grandview Ave., at Continental Pl.",http://www.nycgovparks.org/parks/R068/,park +4001,Rose Hill Park,40.86280920791,-73.88957477260601,10458,Webster Ave. bet. E. Fordham Rd. and E. 194 St.,http://www.nycgovparks.org/parks/X042/,park +4002,Union Square Park,40.73516883702,-73.99022507209253,10003,"Broadway To 4 Ave., E 14 St. To E 17 St.",http://www.nycgovparks.org/parks/M089/,park +4003,Jerome Slope,40.83253481828,-73.92561018812562,10452,Jerome Ave. at E. 165 St.,http://www.nycgovparks.org/parks/X105/,park +4004,Kissena Corridor Park,40.75123430849,-73.82508501900409,11355,"Lawrence St,N Hempstead Tpk,Elder Ave,Kissena Blvd",http://www.nycgovparks.org/parks/Q300/,park +4005,Pat Williams Playground,40.71274659803,-73.72956246356631,11429,"Hempstead Ave., 225 St. and 224 St. Cross Island Parkway Exit at 225 St.",http://www.nycgovparks.org/parks/Q133/,park +4006,Alley Athletic Playground,40.73950576949,-73.73378358401631,11426,Winchester Blvd. bet. Union Tpke. and the Grand Central Pkwy.,http://www.nycgovparks.org/parks/Q001A/,park +4007,Queens Farm Park,40.74886592739,-73.72256641457663,11426,Little Neck Pkwy. bet. 73 Rd. and 74 Ave.,http://www.nycgovparks.org/parks/Q453/,park +4008,Castlewood Playground,40.74952421057,-73.72290873000276,11426,Little Neck Pkwy. bet. 72 Ave. and 73 Ave.,http://www.nycgovparks.org/parks/Q327/,park +4009,Tiffany Street Pier,40.80603380466,-73.89188625112085,10455,Tiffany St. at Viele Ave.,http://www.nycgovparks.org/parks/X304/,park +4010,Maritcha R. Lyons Park,40.70067130019,-73.98592558555639,11201,Prospect St. bet. Jay St. and the BQE,http://www.nycgovparks.org/parks/B223JB/,park +4011,Cornell Burial Ground,40.59998747783,-73.74925026011584,11691,Caffrey Ave. bet. New Haven Ave. and Davies Rd.,http://www.nycgovparks.org/parks/Q463/,park +4012,Ferry Point Park,40.82164238264,-73.82677155590329,10465,"Schley Ave., LI Sound bet. Westchester Creek and Balcom Ave.",http://www.nycgovparks.org/parks/X126/,park +4013,Susan Smith McKinney Steward Park,40.70143550361,-73.98559911557678,11201,"Bridge St., Jay St. bet. Prospect St. and York St.",http://www.nycgovparks.org/parks/B223JB/,park +4014,Fairview Park,40.53226533631,-74.22503674042603,10309,"Englewood Ave., W. Shore Expwy., Veterans Rd. W.",http://www.nycgovparks.org/parks/R153/,park +4015,North Brother Island,40.80005672074,-73.8965240595704,10474,East River,http://www.nycgovparks.org/parks/X308/,park +4016,Overlook Park,40.77058103057,-73.87146310607713,11369,"Ditmars Blvd., 22 Dr. bet. 97 St. and 100 St.",http://www.nycgovparks.org/parks/Q299/,park +4017,Tribeca Park,40.72034735287,-74.00529330188084,10013,"Walker St., Beach St. bet. St. John's La. and Ave. of the Americas",http://www.nycgovparks.org/parks/M006/,park +4018,Pomonok Playground,40.73543360911,-73.81383004192628,11367,"Kissena Blvd., 155 St. bet. 65 Ave. and Melbourne Ave.",http://www.nycgovparks.org/parks/Q329/,park +4019,Hammel Playground,40.58800862348,-73.80884104438482,11693,Rockaway Beach Blvd. bet. Beach 84 St. and Beach 81 St.,http://www.nycgovparks.org/parks/Q367/,park +4020,Audubon Playground,40.84163583646,-73.93767304280274,10032,"Audubon Ave., W. 169 St. and W. 170 St.",http://www.nycgovparks.org/parks/M240/,park +4021,Neptune Playground,40.57776125506,-73.98046369186403,11224,W. 12 St. between Neptune Ave. and Surf Ave.,http://www.nycgovparks.org/parks/B331/,park +4022,Cardozo Playground,40.59382346359,-73.78699442781044,11692,Arverne Blvd. bet. Beach 57 St. and Beach 56 St.,http://www.nycgovparks.org/parks/Q382/,park +4023,Stebbins Playground,40.8224933784,-73.89822232336533,10459,Rev James Polite Av bet. E 163 St and E 164 St,http://www.nycgovparks.org/parks/X211/,park +4024,FDNY-EMT Yadira Arroyo Playground,40.82869656123,-73.85790357598778,10472,"Watson Ave., Blackrock Ave. bet. Virginia Ave., Pugsley Ave.",http://www.nycgovparks.org/parks/X205/,park +4025,Taylor Playground,40.83937989252,-73.86586558950711,10460,Guerlain St. bet. Taylor Ave. and Thieriot Ave.,http://www.nycgovparks.org/parks/X176/,park +4026,Patterson Playground,40.81618195104,-73.92136690726105,10451,E. 148 St. bet. Morris Ave. and College Ave.,http://www.nycgovparks.org/parks/X155/,park +4027,Hilton White Playground,40.82307904034,-73.90706058519979,10456,Cauldwell Ave bet. E. 161 St and E. 163 St.,http://www.nycgovparks.org/parks/X112/,park +4028,Naples Playground,40.6023287488,-74.08928925467146,10304,"Targee St, Stanwich St. Rome Ave.",http://www.nycgovparks.org/parks/R073/,park +4029,Briarwood Playground,40.70995732656,-73.81068254111658,11435,148 St. bet. 85 Ave. and 85 Rd.,http://www.nycgovparks.org/parks/Q379/,park +4030,Delphin H. Greene Playground,40.68570029052,-73.72948435623373,11411,121 Ave. bet. 235 St. and 237 St.,http://www.nycgovparks.org/parks/Q307/,park +4031,The Painter's Playground,40.720446511,-73.86082992103245,11374,Alderton St. bet. Dieterle Cr. and Ellwell Cr.,http://www.nycgovparks.org/parks/Q306/,park +4032,Wayanda Park,40.71098620615,-73.73844359511142,11429,Robard La. bet. Hollis Ave. and Montery St.,http://www.nycgovparks.org/parks/Q082/,park +4033,Equity Playground,40.69076884676,-73.85309614373467,11421,88 Ave. to 89 Ave. at 90 St.,http://www.nycgovparks.org/parks/Q053/,park +4034,Happy Warrior Playground,40.7958824263,-73.9684607135703,10025,W. 97 St. and Amsterdam Ave.,http://www.nycgovparks.org/parks/M229/,park +4035,Ten Eyck Playground,40.70917933603,-73.93845318769564,11206,Scholes St bet. Bushwick Av and Waterbury St,http://www.nycgovparks.org/parks/B311/,park +4036,Osborn Playground,40.65556536068,-73.9056212034488,11212,"Linden Blvd., Osborn St., Rockaway Ave., Hegeman Ave.",http://www.nycgovparks.org/parks/B343/,park +4037,Belmont Playground,40.67534257507,-73.86263713398635,11208,Belmont Ave. between Forbell St. and Drew St.,http://www.nycgovparks.org/parks/B283/,park +4038,Jerome Playground,40.65887880678,-73.87914351679838,11207,Wortman Ave. between Jerome St. and Warwick St.,http://www.nycgovparks.org/parks/B246/,park +4039,Pena Herrera Playground,40.64910554894,-74.01202524585769,11220,3 Ave. bet. 47 St. and 46 St.,http://www.nycgovparks.org/parks/B210J/,park +4040,Arbutus Woods Park,40.52812626796,-74.18516662343932,10312,"Eylandt St., Stecher St. and Colon St.",http://www.nycgovparks.org/parks/R133/,park +4041,P.S. 279 Playground,40.64473418995,-73.89298461617551,11236,E. 103 St. to E. 104 St. between Ave. J and Ave. K,http://www.nycgovparks.org/parks/B305/,park +4042,"""Uncle"" Vito F. Maranzano Glendale Playground",40.70468616799,-73.88127775205633,11385,Central Ave. bet. 70 St. and 71 St.,http://www.nycgovparks.org/parks/Q290/,park +4043,Jamaica Playground,40.69359865212,-73.79100019817751,11433,"Union Hall St., 160 St. bet. 110 Ave. and 109 Ave.",http://www.nycgovparks.org/parks/Q301/,park +4044,Pier 42,40.7105735686,-73.98042162941599,10002,South Side of FDR Dr. at Gouverneur St.,http://www.nycgovparks.org/parks/M369/,park +4045,Al Stabile Playground,40.67708556692,-73.83555242063038,11417,Centreville St. bet. 133 Ave. and 103 St.,http://www.nycgovparks.org/parks/Q285/,park +4046,Bartlett Playground,40.70087509654,-73.94552970219333,11206,"Whipple St., Bartlett St., between Throop Ave. and Flushing Ave.",http://www.nycgovparks.org/parks/B286/,park +4047,Rocket Playground,40.67098522078,-73.84626606026997,11417,N Conduit Ave. and 149 Ave.bet. Whitelaw St. and Lafayette St.,http://www.nycgovparks.org/parks/Q414/,park +4048,Wakefield Playground,40.90187445885,-73.85415528855233,10470,Matilda Ave. to Carpenter Ave. bet. E. 239 St. and E. 240 St.,http://www.nycgovparks.org/parks/X188/,park +4049,Rockaway Beach,40.56993164931,-73.84557241051095,11694,Atlantic Ocean bet. B. 149 St. and B. 126 St.,http://www.nycgovparks.org/parks/Q164/,park +4050,Grand Ferry Park,40.71659130036,-73.96651183948478,11211,Grand St. at River St.,http://www.nycgovparks.org/parks/B401/,park +4051,Spargo Park,40.74113481189,-73.89721950602699,11377,BQE bet. 43 Ave. and Queens Blvd.,http://www.nycgovparks.org/parks/Q341D/,park +4052,WNYC Transmitter Park,40.73032004562,-73.96140516032709,11222,West St. bet. Kent St. and Greenpoint Ave.,http://www.nycgovparks.org/parks/B385/,park +4053,Socrates Sculpture Park,40.76881206596,-73.93799866513538,11106,Vernon Blvd. bet. Broadway and 30 Dr.,http://www.nycgovparks.org/parks/Q465/,park +4054,Maria Hernandez Park,40.70351339622,-73.92251220650344,11237,"Irving Ave., Knickerbocker Ave. bet. Starr St. and Suydam St.",http://www.nycgovparks.org/parks/B016/,park +4055,Crotona Parkway Malls,40.84470309713,-73.88496438272014,10460,Crotona Pkwy bet. Bronx Park South and E 175 St,http://www.nycgovparks.org/parks/X011/,park +4056,Roberto Clemente Ballfield,40.70580895476,-73.96761394640824,11211,Division Ave. between Wythe Ave. and Kent Ave.,http://www.nycgovparks.org/parks/B382A/,park diff --git a/location/admin.py b/location/admin.py index c3b19703..b3730fd6 100644 --- a/location/admin.py +++ b/location/admin.py @@ -3,4 +3,4 @@ # Register your models here. from .models import Location -admin.site.register(Location) \ No newline at end of file +admin.site.register(Location) diff --git a/location/apps.py b/location/apps.py index 50d4ad9b..e1be20ac 100644 --- a/location/apps.py +++ b/location/apps.py @@ -2,5 +2,5 @@ class LocationConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'location' + default_auto_field = "django.db.models.BigAutoField" + name = "location" diff --git a/location/management/commands/load_data.py b/location/management/commands/load_data.py index 868c2c93..2f62628c 100644 --- a/location/management/commands/load_data.py +++ b/location/management/commands/load_data.py @@ -4,22 +4,23 @@ from location.models import Location as locat from django.core.management.base import BaseCommand + class Command(BaseCommand): - help = 'Load data from a CSV file into the database' + help = "Load data from a CSV file into the database" def handle(self, *args, **options): - csv_file = r'C:\Users\dhire\OneDrive\Desktop\NYU\SE\Project\CheerUp\exported_data.csv' # Provide the path to your CSV file + csv_file = r"C:\Users\dhire\OneDrive\Desktop\NYU\SE\Project\CheerUp\exported_data.csv" # Provide the path to your CSV file - with open(csv_file, 'r', encoding='utf-8') as file: + with open(csv_file, "r", encoding="utf-8") as file: csv_reader = csv.reader(file) for row in csv_reader: locat.objects.create( - location_name = row[1], - latitude = row[2], - longitude = row[3], - zipcode = row[7], - address = row[4], - url = row[5], - category = row[6] + location_name=row[1], + latitude=row[2], + longitude=row[3], + zipcode=row[7], + address=row[4], + url=row[5], + category=row[6], ) - self.stdout.write(self.style.SUCCESS('Data loaded successfully')) \ No newline at end of file + self.stdout.write(self.style.SUCCESS("Data loaded successfully")) diff --git a/location/migrations/0001_initial.py b/location/migrations/0001_initial.py index a2db19d9..e596b40f 100644 --- a/location/migrations/0001_initial.py +++ b/location/migrations/0001_initial.py @@ -4,24 +4,36 @@ class Migration(migrations.Migration): - initial = True - dependencies = [ - ] + dependencies = [] operations = [ migrations.CreateModel( - name='Location', + name="Location", fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('location_name', models.CharField(default='Prospect Park', max_length=200)), - ('latitude', models.FloatField(default=0.0)), - ('longitude', models.FloatField(default=0.0)), - ('zipcode', models.IntegerField(default=0)), - ('address', models.CharField(default='Prospect Road', max_length=400)), - ('url', models.CharField(default='https://example.com', max_length=400)), - ('category', models.CharField(default='park', max_length=100)), + ( + "id", + models.BigAutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "location_name", + models.CharField(default="Prospect Park", max_length=200), + ), + ("latitude", models.FloatField(default=0.0)), + ("longitude", models.FloatField(default=0.0)), + ("zipcode", models.IntegerField(default=0)), + ("address", models.CharField(default="Prospect Road", max_length=400)), + ( + "url", + models.CharField(default="https://example.com", max_length=400), + ), + ("category", models.CharField(default="park", max_length=100)), ], ), ] diff --git a/location/models.py b/location/models.py index 134f107e..e30ddfb0 100644 --- a/location/models.py +++ b/location/models.py @@ -1,5 +1,6 @@ from django.db import models + # Create your models here. class Location(models.Model): location_name = models.CharField(max_length=200, default="Prospect Park") @@ -11,4 +12,4 @@ class Location(models.Model): category = models.CharField(max_length=100, default="park") def __str__(self): - return self.location_name \ No newline at end of file + return self.location_name diff --git a/location/tests.py b/location/tests.py index 7ce503c2..e69de29b 100644 --- a/location/tests.py +++ b/location/tests.py @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/location/urls.py b/location/urls.py index 24eb64ce..8f4e38c8 100644 --- a/location/urls.py +++ b/location/urls.py @@ -3,5 +3,5 @@ from .views import Location_autocomplete urlpatterns = [ - path('autocomplete/', Location_autocomplete, name='location-autocomplete'), + path("autocomplete/", Location_autocomplete, name="location-autocomplete"), ] diff --git a/location/views.py b/location/views.py index 1f5d4d0f..043754ef 100644 --- a/location/views.py +++ b/location/views.py @@ -1,9 +1,12 @@ -from django.shortcuts import render from django.http import JsonResponse from .models import Location + + def Location_autocomplete(request): - query = request.GET.get('term', '') - results = Location.objects.filter(location_name__icontains=query) # Adjust the filtering based on your model's fields + query = request.GET.get("term", "") + results = Location.objects.filter( + location_name__icontains=query + ) # Adjust the filtering based on your model's fields print(results) - data = [{'id': location.id, 'text': location.location_name} for location in results] + data = [{"id": location.id, "text": location.location_name} for location in results] return JsonResponse(data, safe=False) diff --git a/manage.py b/manage.py index 2ea3b5dc..652561a1 100644 --- a/manage.py +++ b/manage.py @@ -6,7 +6,7 @@ def main(): """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'CheerUp.settings') + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "CheerUp.settings") try: from django.core.management import execute_from_command_line except ImportError as exc: @@ -18,5 +18,5 @@ def main(): execute_from_command_line(sys.argv) -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/requirements.txt b/requirements.txt index a381548a..b167e8f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,6 @@ -Django>=4.2 \ No newline at end of file +Django>=4.2 +black>=23.10.0 +flake8>=6.1.0 +coverage>=6.5.0 +coveralls>=3.3.1 +python-coveralls>=2.9.3 \ No newline at end of file diff --git a/test.py b/test.py index 6eaba605..e4742f28 100644 --- a/test.py +++ b/test.py @@ -1,15 +1,15 @@ import sqlite3 import csv -conn = sqlite3.connect('db.sqlite3') +conn = sqlite3.connect("db.sqlite3") cursor = conn.cursor() -cursor.execute('SELECT * FROM location_location;') +cursor.execute("SELECT * FROM location_location;") data = cursor.fetchall() # Specify 'utf-8' encoding when writing to the CSV file -with open('exported_data.csv', 'w', newline='', encoding='utf-8') as csv_file: +with open("exported_data.csv", "w", newline="", encoding="utf-8") as csv_file: csv_writer = csv.writer(csv_file) csv_writer.writerows(data) -conn.close() \ No newline at end of file +conn.close()