diff --git a/examples/GeoJSONMarker.ipynb b/examples/GeoJSONMarker.ipynb
new file mode 100644
index 0000000000..ca9637f1ce
--- /dev/null
+++ b/examples/GeoJSONMarker.ipynb
@@ -0,0 +1,373 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Using GeoJSON Point Features with Markers"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import os\n",
+ "import folium\n",
+ "import geopandas as gpd"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "rootpath = os.path.abspath(os.getcwd())"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "gdf = gpd.read_file(os.path.join(rootpath, \"data\", \"subwaystations.geojson\"))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " name | \n",
+ " url | \n",
+ " line | \n",
+ " objectid | \n",
+ " notes | \n",
+ " geometry | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " Astor Pl | \n",
+ " http://web.mta.info/nyct/service/ | \n",
+ " 4-6-6 Express | \n",
+ " 1 | \n",
+ " 4 nights, 6-all times, 6 Express-weekdays AM s... | \n",
+ " POINT (-73.99107 40.73005) | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " Canal St | \n",
+ " http://web.mta.info/nyct/service/ | \n",
+ " 4-6-6 Express | \n",
+ " 2 | \n",
+ " 4 nights, 6-all times, 6 Express-weekdays AM s... | \n",
+ " POINT (-74.00019 40.71880) | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 50th St | \n",
+ " http://web.mta.info/nyct/service/ | \n",
+ " 1-2 | \n",
+ " 3 | \n",
+ " 1-all times, 2-nights | \n",
+ " POINT (-73.98385 40.76173) | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Bergen St | \n",
+ " http://web.mta.info/nyct/service/ | \n",
+ " 2-3-4 | \n",
+ " 4 | \n",
+ " 4-nights, 3-all other times, 2-all times | \n",
+ " POINT (-73.97500 40.68086) | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " Pennsylvania Ave | \n",
+ " http://web.mta.info/nyct/service/ | \n",
+ " 3-4 | \n",
+ " 5 | \n",
+ " 4-nights, 3-all other times | \n",
+ " POINT (-73.89489 40.66471) | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " name url line \\\n",
+ "0 Astor Pl http://web.mta.info/nyct/service/ 4-6-6 Express \n",
+ "1 Canal St http://web.mta.info/nyct/service/ 4-6-6 Express \n",
+ "2 50th St http://web.mta.info/nyct/service/ 1-2 \n",
+ "3 Bergen St http://web.mta.info/nyct/service/ 2-3-4 \n",
+ "4 Pennsylvania Ave http://web.mta.info/nyct/service/ 3-4 \n",
+ "\n",
+ " objectid notes \\\n",
+ "0 1 4 nights, 6-all times, 6 Express-weekdays AM s... \n",
+ "1 2 4 nights, 6-all times, 6 Express-weekdays AM s... \n",
+ "2 3 1-all times, 2-nights \n",
+ "3 4 4-nights, 3-all other times, 2-all times \n",
+ "4 5 4-nights, 3-all other times \n",
+ "\n",
+ " geometry \n",
+ "0 POINT (-73.99107 40.73005) \n",
+ "1 POINT (-74.00019 40.71880) \n",
+ "2 POINT (-73.98385 40.76173) \n",
+ "3 POINT (-73.97500 40.68086) \n",
+ "4 POINT (-73.89489 40.66471) "
+ ]
+ },
+ "execution_count": 25,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "gdf.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 26,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "gdf['href'] = '' + gdf.url + \"\"\n",
+ "gdf['service_level'] = gdf.notes.str.split(', ').apply(lambda x: len([v for v in x if \"all\" in v]))\n",
+ "gdf['lines_served'] = gdf.line.str.split('-').apply(lambda x: len(x))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[1, 2, 3, 0]"
+ ]
+ },
+ "execution_count": 27,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "service_levels = gdf.service_level.unique().tolist()\n",
+ "service_levels"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 28,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "colors = [\"orange\", \"yellow\", \"green\", \"blue\"]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Use a Circle as a Marker"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 32,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "Make this Notebook Trusted to load map: File -> Trust Notebook
"
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 32,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "m = folium.Map(location=[40.75, -73.95], zoom_start=13)\n",
+ "\n",
+ "folium.GeoJson(\n",
+ " gdf,\n",
+ " name=\"Subway Stations\",\n",
+ " marker=folium.Circle(radius=4, fill_color=\"orange\", fill_opacity=0.4, color=\"black\", weight=1),\n",
+ " tooltip=folium.GeoJsonTooltip(fields=[\"name\", \"line\", \"notes\"]),\n",
+ " popup=folium.GeoJsonPopup(fields=[\"name\", \"line\", \"href\", \"notes\"]),\n",
+ " style_function=lambda x: {\n",
+ " \"fillColor\": colors[x['properties']['service_level']],\n",
+ " \"radius\": (x['properties']['lines_served'])*30,\n",
+ " },\n",
+ " highlight_function=lambda x: {\"fillOpacity\": 0.8},\n",
+ " zoom_on_click=True,\n",
+ ").add_to(m)\n",
+ "\n",
+ "m"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Or use a DivIcon"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "Make this Notebook Trusted to load map: File -> Trust Notebook
"
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 30,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "m = folium.Map(location=[40.75, -73.95], zoom_start=13)\n",
+ "\n",
+ "\n",
+ "def style_function(feature):\n",
+ " props = feature.get('properties')\n",
+ " markup = f\"\"\"\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ " {props.get('name')}\n",
+ "
\n",
+ " \n",
+ " \"\"\"\n",
+ " return {\"html\": markup}\n",
+ "\n",
+ "\n",
+ "folium.GeoJson(\n",
+ " gdf,\n",
+ " name=\"Subway Stations\",\n",
+ " marker=folium.Marker(icon=folium.DivIcon()),\n",
+ " tooltip=folium.GeoJsonTooltip(fields=[\"name\", \"line\", \"notes\"]),\n",
+ " popup=folium.GeoJsonPopup(fields=[\"name\", \"line\", \"href\", \"notes\"]),\n",
+ " style_function=style_function,\n",
+ " zoom_on_click=True,\n",
+ ").add_to(m)\n",
+ "\n",
+ "m"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Use a Marker"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "metadata": {
+ "scrolled": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "Make this Notebook Trusted to load map: File -> Trust Notebook
"
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 36,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "m = folium.Map(location=[40.75, -73.95], zoom_start=13)\n",
+ "\n",
+ "marker_colors = [\"red\", \"orange\", \"green\", \"blue\"]\n",
+ "\n",
+ "folium.GeoJson(\n",
+ " gdf,\n",
+ " name=\"Subway Stations\",\n",
+ " zoom_on_click=True,\n",
+ " marker=folium.Marker(icon=folium.Icon(icon='star')),\n",
+ " tooltip=folium.GeoJsonTooltip(fields=[\"name\", \"line\", \"notes\"]),\n",
+ " popup=folium.GeoJsonPopup(fields=[\"name\", \"line\", \"href\", \"notes\"]),\n",
+ " style_function=lambda x: {\n",
+ " 'markerColor': marker_colors[x['properties']['service_level']],\n",
+ " },\n",
+ ").add_to(m)\n",
+ "\n",
+ "m"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.7.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/data/subwaystations.geojson b/examples/data/subwaystations.geojson
new file mode 100644
index 0000000000..207a6255cc
--- /dev/null
+++ b/examples/data/subwaystations.geojson
@@ -0,0 +1,6627 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Astor Pl",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "1",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99106999861966, 40.73005400028978]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "2",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00019299927328, 40.71880300107709]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "3",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98384899986625, 40.76172799961419]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bergen St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4",
+ "objectid": "4",
+ "notes": "4-nights, 3-all other times, 2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97499915116808, 40.68086213682956]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pennsylvania Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "5",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89488591154061, 40.66471445143568]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "238th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "6",
+ "notes": "1-all times, exit only northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90087000018522, 40.88466700064975]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cathedral Pkwy (110th St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "7",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95806670661364, 40.800581558114956]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingston - Throop Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "8",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94085899871263, 40.67991899941601]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "65th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "9",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8987883783301, 40.74971952935675]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "36th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "10",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92901818461539, 40.75196004401078]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Delancey St - Essex St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M-Z",
+ "objectid": "11",
+ "notes": "J-all times, M-all times exc nights, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98740940202974, 40.71830605618619]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Siclen Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "12",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89165772702445, 40.67802821447783]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Norwood Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "13",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87962599910783, 40.68152000045683]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "104th-102nd Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "14",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84443500029684, 40.69516599823373]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "DeKalb Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-N-Q-R",
+ "objectid": "15",
+ "notes": "B-weekdays and evenings, D-all other times, N-nights, R-all other times, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98177094440949, 40.690648119969794]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 105th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "16",
+ "notes": "A-rush hours AM northbound, PM southbound, S Broad Channel to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82758075034528, 40.58326843810286]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 90th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "17",
+ "notes": "A-rush hours AM northbound, PM southbound, S Broad Channel to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81365140419632, 40.58809156457325]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Freeman St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "18",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89175225349464, 40.829987446384116]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Intervale Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "19",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89661738461646, 40.822142131170786]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "182nd-183rd Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "20",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90074099998965, 40.85609299881864]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "174th-175th Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "21",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91013600050078, 40.84589999983414]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "167th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "22",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91843200082253, 40.83376899862797]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Mets - Willets Point",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "23",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8456249984179, 40.75462199881262]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Junction Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "24",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86952700103515, 40.74914499948836]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Flushing - Main St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "25",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83003000262508, 40.75959999915012]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Buhre Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "26",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83256900003744, 40.846809998885504]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "3rd Ave - 138th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "27",
+ "notes": "6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92613800014134, 40.81047600117261]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Castle Hill Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "28",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85122199961472, 40.83425499825462]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brooklyn Bridge - City Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "29",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0041310005885, 40.713064999433136]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Zerega Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "30",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8470359987544, 40.836488000608156]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Central - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "31",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9767132992584, 40.75180742981634]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "33rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "32",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98207600148947, 40.74608099909145]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "33",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9510700015425, 40.78567199998607]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "77th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "34",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95987399886047, 40.77362000074615]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chauncey St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "35",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91038357033376, 40.68285130087804]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "36",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98310999909673, 40.67731566735096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Elmhurst Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "37",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8820347465864, 40.74237007972169]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ralph Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "38",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92078599933306, 40.678822000873375]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pelham Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "39",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86748067850041, 40.8571924091606]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gun Hill Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "40",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86613410538703, 40.877839385172024]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nereid Ave (238 St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "41",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8543153107622, 40.898286515575286]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4-5",
+ "objectid": "42",
+ "notes": "2,4-all times, 3-all times exc nights, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9580997367769, 40.67076515344894]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Simpson St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "43",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89306639507903, 40.823976841237396]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bronx Park East",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "44",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86835609178098, 40.848768666338934]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Winthrop St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "45",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95007934590994, 40.65665931376077]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Siclen Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "46",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88940491730106, 40.665517963059635]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "149th St - Grand Concourse",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "47",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9273847542618, 40.81830344372315]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "161st St - Yankee Stadium",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "48",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92569199505733, 40.82823032742169]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "49",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9679670004732, 40.762526000304575]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 149th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "50",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90409799875945, 40.81211799827203]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Morrison Av - Soundview",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "51",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87451599929486, 40.82952100156747]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Whitlock Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "52",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8862829985325, 40.82652500055904]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "St Lawrence Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "53",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86761799923673, 40.8315090005233]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodside - 61st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "54",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90298400173006, 40.745630001138395]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Far Rockaway - Mott Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "55",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.75540499924732, 40.603995001687544]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "72nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "56",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.976336575218, 40.77551939729258]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "57",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96460245687166, 40.79161879767014]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "168th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "58",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93956099985425, 40.84071899990795]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingsbridge Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "59",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8935090000331, 40.86697799999945]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "42nd St - Bryant Pk",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "60",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98459099904711, 40.754184001312545]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prospect Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q-S",
+ "objectid": "61",
+ "notes": "B-weekdays and evenings, Q,S to Franklin Av-Fulton St-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96203130426609, 40.6616334551018]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "55th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "62",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99534882595742, 40.63147876093745]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jamaica - Van Wyck",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E",
+ "objectid": "63",
+ "notes": "E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81701287135405, 40.70289855287313]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kew Gardens - Union Tpke",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F",
+ "objectid": "64",
+ "notes": "E,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8303702709878, 40.714034819571026]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutphin Blvd - Archer Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-J-Z",
+ "objectid": "65",
+ "notes": "E,J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.80800471963833, 40.700382424235]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Court Sq - 23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M",
+ "objectid": "66",
+ "notes": "E-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94605470266329, 40.747768121414325]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "67th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "67",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85286048434907, 40.726505475813006]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Ave - Newtown",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "68",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87722085669182, 40.736813418197144]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ditmas Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "69",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97817199965161, 40.63611866666291]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Classon Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "70",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95999000137212, 40.68888900026455]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "71",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95031225606621, 40.706126576274166]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lorimer St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "72",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95024799996972, 40.71407200064717]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutter Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "73",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9019160004208, 40.66914500061398]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wilson Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "74",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90395860491864, 40.68886654246024]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Halsey St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "75",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9166388842194, 40.686415270704344]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lorimer St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M",
+ "objectid": "76",
+ "notes": "J-all times, skips weekdays AM westbound, PM eastbound, M-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94735499884204, 40.703844000042096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "8th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "77",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01151599772157, 40.634970999647166]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "36th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "78",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.929861999118, 40.7564420005104]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "79",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92582299919906, 40.761431998800546]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "80",
+ "notes": "N,Q-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98676800153976, 40.75461199851542]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Central - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "81",
+ "notes": "S to Times Sq-all times exc nights, closed nights-use 7"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97918899989101, 40.75276866674217]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Park Pl",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "82",
+ "notes": "S Franklin Av-Fulton St to Prospect Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95762400074634, 40.67477166685263]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "111th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "83",
+ "notes": "S Euclid Av to Ozone Park-Lefferts Blvd-nights, A-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83216299845388, 40.68433100001238]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "W 4th St - Washington Sq (Lower)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "84",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00030814755975, 40.732254493367876]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "51st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "85",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97192000069982, 40.75710699989316]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "86",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97621799859327, 40.78864400073892]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "233rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "87",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85736239521543, 40.89314324138378]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "66th St - Lincoln Ctr",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "88",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98220899995783, 40.77344000052039]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hunts Point Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "89",
+ "notes": "6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89054900017344, 40.82094799852307]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "90",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0062770001748, 40.72285399778783]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Middletown Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "91",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83632199755944, 40.84386300128381]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "92",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98659900207888, 40.739864000474604]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Court Sq",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "93",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94526400039679, 40.74702299889643]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "59th St - Columbus Circle",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "94",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98192900232715, 40.76824700063689]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hunters Point Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "95",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9489160009391, 40.74221599986316]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "96",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9956570016487, 40.74408099989751]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Houston St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "97",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00536700180581, 40.728251000730204]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "104th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "98",
+ "notes": "S Euclid Av to Ozone Park-Lefferts Blvd-nights, A-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83768300060997, 40.681711001091195]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broad Channel",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "99",
+ "notes": "A,S to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81583268782963, 40.60840218069683]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ocean Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "100",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96850099975177, 40.57631166708091]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Vernon Blvd - Jackson Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "101",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95358099875249, 40.74262599969749]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "68th St - Hunter College",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "102",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96387000158042, 40.76814100049679]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Queensboro Plz",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express-N-W",
+ "objectid": "103",
+ "notes": "7,N-all times, 7 Express-rush hours AM westbound, PM eastbound, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9401635351909, 40.750635651014804]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "104",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8438529979573, 40.680428999588415]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union Sq - 14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "105",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98995099881881, 40.734673000996125]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford - Nostrand Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "106",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95352200064022, 40.68962700158444]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "15th St - Prospect Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "107",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97973580592873, 40.66003568810021]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "7th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "108",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98025117900944, 40.66624469001985]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ft Hamilton Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "109",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97577599917474, 40.65078166803418]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Church Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "110",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97972116229084, 40.64427200012998]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beverly Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "111",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96435779623125, 40.64390459860419]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Church Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "112",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96288246192114, 40.65049324646484]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Newkirk Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "113",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96269486837261, 40.63514193733789]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Parkside Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "114",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96145343987648, 40.65507304163716]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Army Plaza",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4",
+ "objectid": "115",
+ "notes": "4-nights, 3-all other times, 2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9709563319228, 40.6752946951032]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Av - Barclay's Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4-5",
+ "objectid": "116",
+ "notes": "2,4-all times, 3-all times exc nights, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97754993539385, 40.68442016526762]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "117",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91194599726617, 40.678339999883505]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "118",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97537499833149, 40.68711899950771]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Clinton - Washington Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "119",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9667959986695, 40.68809400106055]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "7th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "120",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97285279191024, 40.67710217983294]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Av - Barclay's Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "121",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97678343963167, 40.684488323453685]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Av - Barclay's Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-Q-R",
+ "objectid": "122",
+ "notes": "D,N-all times, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97880999956767, 40.683665667279435]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Borough Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "123",
+ "notes": "4-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99015100090539, 40.692403999991036]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Aqueduct Racetrack",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "124",
+ "notes": "A-to Manhattan only, racing days only"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83591899965162, 40.672096999172844]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Morris Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "125",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86049500117254, 40.85436399966426]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pelham Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "126",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85535900043564, 40.858984999820116]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nostrand Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "127",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95042600099683, 40.68043800006226]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nevins St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4-5",
+ "objectid": "128",
+ "notes": "2,4-all times, 3-all times exc nights, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98040679874578, 40.68831058019022]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Eastern Pkwy - Bklyn Museum",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4",
+ "objectid": "129",
+ "notes": "4-nights, 3-all other times, 2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96422203748425, 40.67203223545925]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beverly Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "130",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94884798381702, 40.64512351894373]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Church Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "131",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94945514035334, 40.6508606878022]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Newkirk Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "132",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94829990822407, 40.63999124275311]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brooklyn College - Flatbush Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "133",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94754120734406, 40.63284240700742]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sterling St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "134",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95072891124937, 40.6627729934283]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Crown Hts - Utica Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "135",
+ "notes": "3-all times exc nights, 4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93293256081851, 40.66897831107809]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingston Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "136",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94215978392963, 40.66948144864978]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nassau Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "137",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95118300016523, 40.724479997808274]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Greenpoint Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "138",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95442500146235, 40.73126699971465]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Marcy Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M-Z",
+ "objectid": "139",
+ "notes": "J-all times, M-all times exc nights, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95783200075729, 40.708383000017925]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hewes St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M",
+ "objectid": "140",
+ "notes": "J-all times, skips weekdays AM westbound, PM eastbound, M-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95348800038457, 40.706889998054]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "138th St - Grand Concourse",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "141",
+ "notes": "4-all times, skips rush hours AM southbound, PM northbound, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92984899935611, 40.81322399958908]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "5th Ave - 53rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M",
+ "objectid": "142",
+ "notes": "E-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9752485052734, 40.76008683231326]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 53rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M",
+ "objectid": "143",
+ "notes": "E-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96907237490204, 40.75746830782865]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "28th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "144",
+ "notes": "N-all times, R-all times exc nights, part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98869800128737, 40.74545399979951]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Herald Sq - 34th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "145",
+ "notes": "N,Q-all times, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9879368338264, 40.74964456009442]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "1st Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "146",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98168087489128, 40.73097497580066]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "147",
+ "notes": "S to Grand Central-all times exc nights, closed nights-use 7"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98622899953202, 40.755983000570076]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Metropolitan Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "148",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9514239994525, 40.71277400073426]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "149",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94049699874644, 40.71157600064823]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Graham Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "150",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94394399869037, 40.714575998363635]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "151",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95666499806525, 40.71717399858899]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Montrose Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "152",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93979284713505, 40.70739106438455]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Long Island City - Court Sq",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "153",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94381559597835, 40.74630503357145]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "21st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "154",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9495999997552, 40.7441286664954]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "39th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "155",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93285137679598, 40.75276306140845]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "145th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "156",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95035999879713, 40.82655099962194]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "157th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "157",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94488999901047, 40.8340410001399]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "158",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97232299915696, 40.79391900121471]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "159",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96837899960818, 40.799446000334825]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Central Park North (110th St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "160",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95182200176913, 40.79907499977324]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "161",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96137008267617, 40.796060739904526]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "72nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "162",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98197000159583, 40.77845300068614]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "81st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "163",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97209794937208, 40.78134608418206]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "75th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F",
+ "objectid": "164",
+ "notes": "E-evenings, weekends, nights, F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83692369387158, 40.71804465348743]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "165",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96882849429672, 40.78582304678557]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cathedral Pkwy (110th St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "166",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9668470005456, 40.80396699961484]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St - Columbia University",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "167",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96410999757751, 40.807722001230864]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "168",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94549500011411, 40.807753999182815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "135th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "169",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94077000106708, 40.8142290003391]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "170",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94962500096905, 40.802097999133004]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Tremont Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "171",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90522700122354, 40.850409999510234]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "137th St - City College",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "172",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95367600087873, 40.82200799968475]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "145th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3",
+ "objectid": "173",
+ "notes": "3-all times, exit only northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93624499873299, 40.82042099969279]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "176th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "174",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91179399884471, 40.8484800012369]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Burnside Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "175",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9076840015997, 40.85345300155693]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "170th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "176",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91339999846983, 40.83930599964156]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "168th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "177",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94013299907257, 40.840555999148535]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "181st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "178",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9335959996056, 40.84950499974065]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "191st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "179",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92941199742039, 40.85522500175836]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "175th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "180",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93970399761596, 40.84739100072403]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 44th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "181",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.77601299999507, 40.59294299908617]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 60th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "182",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.7885219980118, 40.59237400121235]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 98th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "183",
+ "notes": "A-rush hours AM northbound, PM southbound, S Broad Channel to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82052058959523, 40.58538569133279]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Park - Beach 116 St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "184",
+ "notes": "A-rush hours AM northbound, PM southbound, S to Broad Channel-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83559008701239, 40.580955865573515]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 36th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "185",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.76817499939688, 40.59539800166876]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 25th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "186",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.76135299762073, 40.60006600105881]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Parsons Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "187",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.80328900021885, 40.707571999615695]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "169th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "188",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.79347419927721, 40.710517502784]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St - Corona Plaza",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "189",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86269999830412, 40.749865000555545]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "111th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "190",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85533399834884, 40.75172999941711]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "63rd Dr - Rego Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "191",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86161820097203, 40.729763972422425]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grant Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "192",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86504999877702, 40.67704400054478]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "79th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "193",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97991700056134, 40.78393399959032]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "194",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9030969995401, 40.67534466640805]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Christopher St - Sheridan Sq",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "195",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00290599855235, 40.73342200104225]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ozone Park - Lefferts Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "196",
+ "notes": "S to Euclid Av-nights, A-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82579799906613, 40.68595099878361]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "197",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98769099825152, 40.755477001982506]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "W 8th St - NY Aquarium",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-Q",
+ "objectid": "198",
+ "notes": "F,Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97595787413822, 40.576033818103646]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "28th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "199",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99336500134324, 40.74721499918219]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "28th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "200",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98426400110407, 40.743069999259035]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pelham Bay Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "201",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82812100059289, 40.85246199951662]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Westchester Sq - E Tremont Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "202",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84295199925012, 40.839892001013915]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "203",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99787100060406, 40.741039999802105]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Central - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "204",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97604100111508, 40.751431000286864]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 67th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "205",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.7969239998421, 40.59092700078133]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "W 4th St - Washington Sq (Upper)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "206",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00049500225435, 40.73233799774325]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "85th St - Forest Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "207",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86008700006875, 40.69242699966103]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodhaven Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "208",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85205199740794, 40.69370399880105]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "111th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "209",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83679338454697, 40.697114810696476]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "121st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "210",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82834900017954, 40.700481998515315]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Halsey St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "211",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90393400118631, 40.69551800114878]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle - Wyckoff Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "212",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9109757182647, 40.699471062427136]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "New Lots Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "213",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88411070800329, 40.6663149325969]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Siclen Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "214",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8903580002471, 40.67270999906104]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cleveland St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "215",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8851940021643, 40.679777998961164]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Livonia Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "216",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90056237226057, 40.66405727094644]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Junius St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "217",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90244864183562, 40.66358900181724]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "218",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90895833584449, 40.66261748815223]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canarsie - Rockaway Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "219",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90185000017287, 40.64665366739528]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 105th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "220",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89954769388724, 40.65046878544699]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Saratoga Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "221",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91633025007947, 40.6615297898075]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutter Ave - Rutland Road",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "222",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92252118536001, 40.66476678877493]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "New Lots Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "223",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89927796057142, 40.65891477368527]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway Junction",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "224",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90428999746412, 40.67936600147369]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Alabama Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "225",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89852600159652, 40.676998000003756]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Shepherd Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "226",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88074999747269, 40.6741300014559]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Crescent St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "227",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87392925215778, 40.68315265707736]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cypress Hills",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "228",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87332199882995, 40.689616000838754]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "75th St - Eldert Ln",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "229",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86728799944963, 40.691290001246735]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "69th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "230",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8964029993185, 40.746324999410284]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "74th St - Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "231",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8912051289911, 40.746867573829114]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodhaven Blvd - Queens Mall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "232",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86943208612348, 40.73309737380972]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle - Wyckoff Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "233",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91217899939602, 40.69945400090837]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Seneca Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "234",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90758199885423, 40.70291899894902]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "DeKalb Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "235",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91823200219723, 40.70369299961644]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "52nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "236",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91254899891254, 40.744149001021576]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "46th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "237",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91352174995538, 40.756316952608096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Northern Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "238",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90606508052358, 40.752824829236076]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "46th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "239",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91843500103973, 40.74313200060382]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "82nd St - Jackson Hts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "240",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88369700071884, 40.747658999559135]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "90th St - Elmhurst Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "241",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87661299986985, 40.74840800060913]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Howard Beach - JFK Airport",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "242",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83030100071032, 40.66047600004959]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Aqueduct - North Conduit Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "243",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83405799948723, 40.668234001699815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Briarwood - Van Wyck Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F",
+ "objectid": "244",
+ "notes": "E-evenings, weekends, nights, F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82069263637443, 40.70916181536946]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Forest Hills - 71st Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F-M-R",
+ "objectid": "245",
+ "notes": "E,F-all times, M-weekdays and evenings, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84451672012669, 40.72159430953587]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutphin Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "246",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81083299897232, 40.70541799906764]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jamaica Ctr - Parsons / Archer",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-J-Z",
+ "objectid": "247",
+ "notes": "E,J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.80109632298924, 40.70206737621188]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "225th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "248",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86021461772737, 40.88802825863786]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Elder Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "249",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87915899874777, 40.82858400108929]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Longwood Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "250",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89643499897414, 40.816103999972405]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Astoria Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "251",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91809500109238, 40.77003699949086]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Astoria - Ditmars Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "252",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9120340001031, 40.775035666523664]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jackson Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "253",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9077019387083, 40.81643746686396]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prospect Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "254",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90177778730917, 40.81948726483844]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cypress Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "255",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91404199994753, 40.8053680007636]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "174th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "256",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88769359812888, 40.837195550170605]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Allerton Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "257",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86723422851625, 40.86548337793927]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 143rd St - St Mary's St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "258",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90765699936489, 40.80871900090143]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingsbridge Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "259",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89717400101743, 40.867760000885795]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford Park Blvd - Lehman College",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "260",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89006400069478, 40.87341199980121]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Harlem - 148 St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3",
+ "objectid": "261",
+ "notes": "3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93647000005559, 40.82388000080457]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Mt Eden Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "262",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9146849986034, 40.84443400092679]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fordham Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "263",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89774900102401, 40.861295998683495]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "170th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "264",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91779099745928, 40.84007499993004]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford Park Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "265",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88713799889574, 40.87324399861646]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Marble Hill - 225th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "266",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90983099923551, 40.87456099941789]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "231st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "267",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90483400107873, 40.87885599817935]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "215th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "268",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91527899954356, 40.86944399946045]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "207th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "269",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91881900132312, 40.864614000525854]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Inwood - 207th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "270",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91989900100465, 40.86807199999737]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Cortlandt Park - 242nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "271",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89858300049647, 40.88924800011476]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "West Farms Sq - E Tremont Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "272",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87996127877184, 40.84020763241799]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "219th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "273",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8625097078866, 40.883887974625274]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Mosholu Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "274",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88465499988732, 40.87974999947229]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Norwood - 205th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "275",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87885499918691, 40.87481100011182]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Burke Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "276",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86705361747603, 40.87125880254771]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Baychester Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "277",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83859099802153, 40.87866300037311]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Eastchester - Dyre Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "278",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8308340021742, 40.88829999901007]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jamaica - 179th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "279",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.78381700176453, 40.712645666744045]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wakefield - 241st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2",
+ "objectid": "280",
+ "notes": "2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8506199987954, 40.903125000541245]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Botanic Garden",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "281",
+ "notes": "S Franklin Av-Fulton St to Prospect Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95924499945693, 40.670342666584396]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bushwick - Aberdeen",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "282",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90526176305106, 40.68286062551184]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway Junction",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "283",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90311757920684, 40.67845624842869]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gun Hill Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "284",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84638400151765, 40.86952599962676]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 180th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "285",
+ "notes": "2,5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87334609510884, 40.8418630412186]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Dyckman St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "286",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92553600006474, 40.86053100138796]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "287",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95837200097044, 40.815580999978934]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin Ave - Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "288",
+ "notes": "S to Prospect Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95582700110425, 40.68059566598263]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "149th St - Grand Concourse",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "289",
+ "notes": "2-all times, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92672247438611, 40.81833014409742]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "3rd Ave - 149th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "290",
+ "notes": "2-all times, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91779152760981, 40.816029252510006]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "167th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "291",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92139999784426, 40.83553699933672]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brook Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "292",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91923999909432, 40.80756599987699]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "33rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "293",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93099699953838, 40.74458699983993]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "40th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "294",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9240159984882, 40.74378100149132]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "145th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C-D",
+ "objectid": "295",
+ "notes": "A,D-all times, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94408792823116, 40.824766360871905]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "155th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "296",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93820899811622, 40.8301349999812]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "161st St - Yankee Stadium",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "297",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92565099775477, 40.827904998845845]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Utica Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "298",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93072899914027, 40.67936399950546]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Steinway St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "299",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9205264716827, 40.75698735912575]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kosciuszko St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "300",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92850899927413, 40.69317200129202]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gates Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "301",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92215600150752, 40.689583999013905]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Central Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "302",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92724299902838, 40.69787300011831]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Knickerbocker Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "303",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91972000188625, 40.69866000123805]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "30th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "304",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9214790001739, 40.76677866673298]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jefferson St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "305",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9229130000312, 40.706606665988716]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Morgan Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "306",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93314700024209, 40.70615166680729]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Queens Plz",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "307",
+ "notes": "E-all times, M-weekdays and evenings, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93713823965695, 40.74891771986323]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "308",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97697099965796, 40.62975466638584]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "77th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "309",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0255099996266, 40.629741666886915]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Ridge Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "310",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.02337699950728, 40.63496666682377]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "311",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9946587805514, 40.636260890961395]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ft Hamilton Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "312",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00535100046275, 40.63138566722445]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "25th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "313",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98682900011477, 40.59770366695856]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "314",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9936762000529, 40.601950461572315]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "20th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "315",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98452199846113, 40.617108999866005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "316",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99045399865993, 40.620686997680025]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Ridge - 95th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "317",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.03087600085765, 40.61662166725951]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "318",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0283979999864, 40.62268666715025]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "79th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "319",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00058287431507, 40.61315892569516]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "71st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "320",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99884094850685, 40.61925870977273]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "20th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "321",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99817432157568, 40.60467699816932]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "322",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00159259239406, 40.60773573171741]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "62nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "323",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99685724994863, 40.626224462922195]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "New Utrecht Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "324",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99635300025969, 40.62484166725887]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave U",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "325",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97337641974885, 40.59592482551748]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kings Hwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "326",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9723553085244, 40.603258405128265]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brighton Beach",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "327",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96135378598797, 40.577710196642435]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sheepshead Bay",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "328",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95405791257907, 40.58654754707536]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave U",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "329",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95581122316301, 40.59930895095475]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kings Hwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "330",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95760873538083, 40.608638645396006]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave U",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "331",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97908400099428, 40.597235999920436]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kings Hwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "332",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98037300229343, 40.60405899980493]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Neptune Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "333",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97459272818807, 40.580738758491464]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave X",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "334",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97426599968905, 40.589449666625285]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay 50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "335",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98376500045946, 40.58884066651933]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gravesend - 86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "336",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97818899936274, 40.59246500088859]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave P",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "337",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97300281528751, 40.608842808949916]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave N",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "338",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97404850873143, 40.61435671190883]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "339",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9752569782215, 40.62073162316788]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave M",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "340",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9592431052215, 40.617397744443736]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "341",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98178001069293, 40.61145578989005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave I",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "342",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97606933170925, 40.62501744019143]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave J",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "343",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96069316246925, 40.625022819915166]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave H",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "344",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96151793942495, 40.62920837758969]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Neck Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "345",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95507827493762, 40.59532169111695]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "21st St - Queensbridge",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "346",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94193761457447, 40.75373927087553]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "347",
+ "notes": "A-nights, C-all other times, E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98598400026407, 40.76245599925997]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "7th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-E",
+ "objectid": "348",
+ "notes": "D,E-all times, B-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98169782344476, 40.76297015245628]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "47th-50th Sts - Rockefeller Ctr",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "349",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98133100227702, 40.75864100159815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "57th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "350",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97736800085171, 40.76408500081713]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 63rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-Q",
+ "objectid": "351",
+ "notes": "F-all times, Q all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96608964413245, 40.76461809442373]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Roosevelt Island - Main St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "352",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95323499978866, 40.75917199967108]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "59th St - Columbus Circle",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C-D",
+ "objectid": "353",
+ "notes": "A,D-all times, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98164872301398, 40.768249531776064]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "49th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "354",
+ "notes": "N-all times, Q-all times exc weekends, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98420956591096, 40.759801973870694]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "57th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "355",
+ "notes": "N,Q-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98072973372128, 40.76456552501829]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "5th Ave - 59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R-W",
+ "objectid": "356",
+ "notes": "N-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97334700047045, 40.764810999755284]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R-W",
+ "objectid": "357",
+ "notes": "N-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96737501711436, 40.762708855394564]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "34th St - Penn Station",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "358",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99105699913983, 40.75037300003949]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "359",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98749500051885, 40.75528999995681]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "360",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00762309323994, 40.71016216530185]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chambers St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "361",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00858473570133, 40.714111000774025]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "42nd St - Port Authority Bus Term",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "362",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98973500085859, 40.757307998551504]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle-Willoughby Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "363",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94906699890156, 40.69461899903765]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Flushing Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "364",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9502340010257, 40.70037666622154]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-M",
+ "objectid": "365",
+ "notes": "F-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99276500471389, 40.742954317826005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Herald Sq - 34th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "366",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98777189072918, 40.74978939990011]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hoyt - Schermerhorn Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-G",
+ "objectid": "367",
+ "notes": "A,G-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98503624034139, 40.68840847580642]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jay St - MetroTech",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-F",
+ "objectid": "368",
+ "notes": "A,F-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98721815267317, 40.692470636847084]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "East Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "369",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99017700122197, 40.713855001020406]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Delancey St - Essex St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "370",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98807806807719, 40.71868074219453]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lower East Side - 2nd Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "371",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98993800003434, 40.72340166574911]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Flushing Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M",
+ "objectid": "372",
+ "notes": "J-all times, skips weekdays AM westbound, PM eastbound, M-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94137734838365, 40.70040440298112]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M-Z",
+ "objectid": "373",
+ "notes": "J,M-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9356230012996, 40.6971950005145]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "4th Av - 9th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "374",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98977899938897, 40.67027166728493]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Smith - 9th Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "375",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99589172790934, 40.67364106090412]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bergen St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "376",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99075649573565, 40.68611054725977]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jay St - MetroTech",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "377",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98605667854612, 40.69225539645323]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Court St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "378",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99181830901125, 40.694196480776995]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union Sq - 14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "379",
+ "notes": "N,Q-all times, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99053886181645, 40.73587226699812]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "380",
+ "notes": "N-all times, Q-nights, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98934400102907, 40.74130266729]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prospect Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "381",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99287200067424, 40.66541366712979]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "4th Av - 9th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "382",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98830199974512, 40.670846666842756]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "3rd Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "383",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98575000112093, 40.73269099971662]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union Sq - 14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "384",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99066976901818, 40.73476331217923]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Liberty Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "385",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89654800103929, 40.67454199987086]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway Junction",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "386",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90531600055341, 40.67833366608023]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "387",
+ "notes": "N,R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01788099953987, 40.6413616662838]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "45th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "388",
+ "notes": "N-nights, R-all times, skips nights northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01000600074939, 40.648938666612814]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "36th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "389",
+ "notes": "D,N,R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00354899951809, 40.65514366633887]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "9th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "390",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99444874451204, 40.64648407726636]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "53rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "391",
+ "notes": "N-nights, R-all times, skips nights northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01403399986317, 40.64506866735981]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ft Hamilton Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "392",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9942022375285, 40.640912711444656]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "25th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "393",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99809099974297, 40.66039666692321]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Carroll St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "394",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99494697998841, 40.68027335170176]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Spring St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "395",
+ "notes": "A-nights, C-all other times, E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00373899843763, 40.72622700129312]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "181st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "396",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93796900205011, 40.851694999744616]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "190th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "397",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93417999964333, 40.85902199892482]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "398",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95479778057312, 40.80505813344211]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C-D",
+ "objectid": "399",
+ "notes": "A,D-all times, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95224799734774, 40.811071672994565]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prince St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "400",
+ "notes": "N-all times, Q-nights, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99770200045987, 40.72432866597571]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "8th St - NYU",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "401",
+ "notes": "N-all times, Q-nights, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99250799849149, 40.73046499853991]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "402",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00657099970202, 40.70941599925865]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Park Pl",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "403",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00881099997359, 40.713050999077694]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chambers St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "404",
+ "notes": "1,2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00926600170112, 40.71547800011327]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hoyt St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "405",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98506379575646, 40.69054418535472]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Borough Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "406",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98999799960687, 40.693218999611084]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "183rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "407",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90387900151532, 40.85840700040842]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fordham Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "408",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90103399921699, 40.86280299988937]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "World Trade Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E",
+ "objectid": "409",
+ "notes": "E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00974461517701, 40.71256392680817]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St - Holland Tunnel",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "410",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0052290023424, 40.72082400007119]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "155th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "411",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94151400082208, 40.83051799929251]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "163rd St - Amsterdam Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "412",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93989200188344, 40.83601299923096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "413",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00793800110387, 40.71002266658424]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chambers St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "414",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00340673031336, 40.71323378962671]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "415",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99982638545937, 40.71817387697391]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "City Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "416",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00698581780337, 40.71327233111697]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "417",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0018260000577, 40.71946500105898]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "South Ferry",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "418",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01316895919258, 40.701730507574474]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bowling Green",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "419",
+ "notes": "4-all times, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01400799803432, 40.70491399928076]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wall St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "420",
+ "notes": "4-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01186199860112, 40.70755700086603]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Whitehall St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "421",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0130072374272, 40.703142373599135]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rector St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "422",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01297456253795, 40.707744756294474]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fresh Pond Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "423",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8958980017196, 40.70622599823048]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Middle Village - Metropolitan Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "424",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88957722978091, 40.711431305058255]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rector St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "425",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01378300119742, 40.707512999521775]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cortlandt St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "426",
+ "notes": "Temporarily closed"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01218800112292, 40.7118350008202]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "427",
+ "notes": "4-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00950899856461, 40.710367998822136]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broad St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "428",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01105599991755, 40.706476001106005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cortlandt St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "429",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01113196473266, 40.7105129841524]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wall St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "430",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00909999844257, 40.706820999753376]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Dyckman St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "431",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92727099960726, 40.865490998968916]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "432",
+ "notes": "B-weekdays and evenings, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99375299913589, 40.71826699954992]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway - Lafayette St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "433",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99620399876055, 40.725296998738045]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bowery",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "434",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99380690654237, 40.720246883147254]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q",
+ "objectid": "435",
+ "notes": "N-all times, Q-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00105471306033, 40.718814263587134]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "436",
+ "notes": "A-nights, C-all other times, E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99804100117201, 40.74590599939995]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "34th St - Penn Station",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "437",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99339099970578, 40.752287000775894]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jackson Hts - Roosevelt Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F-M-R",
+ "objectid": "438",
+ "notes": "E,F-all times, M-weekdays and evenings, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89129866519697, 40.74653969115889]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "439",
+ "notes": "1,2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00020100063497, 40.737825999728116]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "135th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "440",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94753480879213, 40.817905559212676]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-M",
+ "objectid": "441",
+ "notes": "F-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99620899921355, 40.73822799969515]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "6th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "442",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99775078874781, 40.73774146981052]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "8th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "443",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00257800104762, 40.73977666638199]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "444",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00168999937027, 40.740893000193296]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nostrand Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "445",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9504262489579, 40.66993815093054]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Clark St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "446",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99308599821961, 40.69746599996469]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "447",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95684800014614, 40.68137966658742]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Clinton - Washington Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "448",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96583799857275, 40.68326299912644]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Forest Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "449",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90307500005954, 40.70441200087814]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "110th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "450",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94424999687163, 40.795020000113105]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "451",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95558899985132, 40.77949199820952]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "York St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "452",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98688499993673, 40.699742667691574]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "High St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "453",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99053100065458, 40.69933699977884]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lafayette Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "454",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97394599849406, 40.68611300020567]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "President St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "455",
+ "notes": "2-all times, 5 weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95058920022207, 40.667883603536815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodlawn",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "456",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87875099990931, 40.886037000253324]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bleecker St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "457",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays PM"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99465900006331, 40.72591466682659]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "458",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94747800152219, 40.79060000008452]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Euclid Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-S",
+ "objectid": "459",
+ "notes": "S to Ozone Park-Lefferts Blvd-nights, C-all other times, A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87210600099675, 40.675376998239365]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "88th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "460",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85147000026086, 40.67984300135503]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cortelyou Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "461",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96379005505493, 40.6409401651401]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "462",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9416169983714, 40.7986290002001]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Parkchester",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "463",
+ "notes": "6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86081600108396, 40.83322599927859]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "464",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00688600277107, 40.719318001302135]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "80th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "465",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85899200206335, 40.67937100115432]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "5th Ave - Bryant Pk",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "466",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98196299856706, 40.75382100064824]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Spring St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "467",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99714100006673, 40.72230099999366]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "468",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93759400055725, 40.804138000587244]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Coney Island - Stillwell Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-F-N-Q",
+ "objectid": "469",
+ "notes": "D,F,N,Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9812359981396, 40.57728100006751]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "34th St - Hudson Yards",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "470",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00219709442206, 40.75544635961596]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "72nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "641",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95836178682246, 40.76880251014895]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "642",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95177090964917, 40.77786104333163]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "643",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9470660219183, 40.784236650177654]
+ }
+ }
+ ]
+}
diff --git a/folium/features.py b/folium/features.py
index 8e9f0bdbc0..ec995de61c 100644
--- a/folium/features.py
+++ b/folium/features.py
@@ -28,7 +28,7 @@
parse_options,
camelize
)
-from folium.vector_layers import PolyLine, path_options
+from folium.vector_layers import Circle, CircleMarker, PolyLine, path_options
from jinja2 import Template
@@ -343,6 +343,12 @@ class GeoJson(Layer):
tooltip: GeoJsonTooltip, Tooltip or str, default None
Display a text when hovering over the object. Can utilize the data,
see folium.GeoJsonTooltip for info on how to do that.
+ popup: GeoJsonPopup, optional
+ Show a different popup for each feature by passing a GeoJsonPopup object.
+ marker: Circle, CircleMarker or Marker, optional
+ If your data contains Point geometry, you can format the markers by passing a Cirle,
+ CircleMarker or Marker object with your wanted options. The `style_function` and
+ `highlight_function` will also target the marker object you passed.
embed: bool, default True
Whether to embed the data in the html file or not. Note that disabling
embedding is only supported if you provide a file link or URL.
@@ -393,14 +399,36 @@ class GeoJson(Layer):
}
}
{%- endif %}
+
+ {%- if this.marker %}
+ function {{ this.get_name() }}_pointToLayer(feature, latlng) {
+ var opts = {{ this.marker.options | tojson | safe }};
+ {% if this.marker._name == 'Marker' and this.marker.icon %}
+ const iconOptions = {{ this.marker.icon.options | tojson | safe }}
+ const iconRootAlias = L{%- if this.marker.icon._name == "Icon" %}.AwesomeMarkers{%- endif %}
+ opts.icon = new iconRootAlias.{{ this.marker.icon._name }}(iconOptions)
+ {% endif %}
+ {%- if this.style_function %}
+ let style = {{ this.get_name()}}_styler(feature)
+ Object.assign({%- if this.marker.icon -%}opts.icon.options{%- else -%} opts {%- endif -%}, style)
+ {% endif %}
+ return new L.{{this.marker._name}}(latlng, opts)
+ }
+ {%- endif %}
+
function {{this.get_name()}}_onEachFeature(feature, layer) {
layer.on({
{%- if this.highlight %}
mouseout: function(e) {
- {{ this.get_name() }}.resetStyle(e.target);
+ if(typeof e.target.setStyle === "function"){
+ {{ this.get_name() }}.resetStyle(e.target);
+ }
},
mouseover: function(e) {
- e.target.setStyle({{ this.get_name() }}_highlighter(e.target.feature));
+ if(typeof e.target.setStyle === "function"){
+ const highlightStyle = {{ this.get_name() }}_highlighter(e.target.feature)
+ e.target.setStyle(highlightStyle);
+ }
},
{%- endif %}
{%- if this.zoom_on_click %}
@@ -408,6 +436,11 @@ class GeoJson(Layer):
if (typeof e.target.getBounds === 'function') {
{{ this.parent_map.get_name() }}.fitBounds(e.target.getBounds());
}
+ else if (typeof e.target.getLatLng === 'function'){
+ let zoom = {{ this.parent_map.get_name() }}.getZoom()
+ zoom = zoom > 12 ? zoom : zoom + 1
+ {{ this.parent_map.get_name() }}.flyTo(e.target.getLatLng(), zoom)
+ }
}
{%- endif %}
});
@@ -420,6 +453,9 @@ class GeoJson(Layer):
{% if this.style %}
style: {{ this.get_name() }}_styler,
{%- endif %}
+ {%- if this.marker %}
+ pointToLayer: {{ this.get_name() }}_pointToLayer
+ {%- endif %}
});
function {{ this.get_name() }}_add (data) {
@@ -440,7 +476,7 @@ class GeoJson(Layer):
def __init__(self, data, style_function=None, highlight_function=None, # noqa
name=None, overlay=True, control=True, show=True,
smooth_factor=None, tooltip=None, embed=True, popup=None,
- zoom_on_click=False):
+ zoom_on_click=False, marker=None):
super(GeoJson, self).__init__(name=name, overlay=overlay,
control=control, show=show)
self._name = 'GeoJson'
@@ -452,6 +488,10 @@ def __init__(self, data, style_function=None, highlight_function=None, # noqa
self.style = style_function is not None
self.highlight = highlight_function is not None
self.zoom_on_click = zoom_on_click
+ if marker:
+ if not isinstance(marker, (Circle, CircleMarker, Marker)):
+ raise TypeError("Only Marker, Circle, and CircleMarker are supported as GeoJson marker types.")
+ self.marker = marker
self.data = self.process_data(data)
diff --git a/folium/map.py b/folium/map.py
index 38abf71a15..e337e47cbb 100644
--- a/folium/map.py
+++ b/folium/map.py
@@ -270,11 +270,11 @@ class Marker(MacroElement):
{% endmacro %}
""")
- def __init__(self, location, popup=None, tooltip=None, icon=None,
+ def __init__(self, location=None, popup=None, tooltip=None, icon=None,
draggable=False, **kwargs):
super(Marker, self).__init__()
self._name = 'Marker'
- self.location = validate_location(location)
+ self.location = validate_location(location) if location else None
self.options = parse_options(
draggable=draggable or None,
autoPan=draggable or None,
@@ -282,6 +282,7 @@ def __init__(self, location, popup=None, tooltip=None, icon=None,
)
if icon is not None:
self.add_child(icon)
+ self.icon = icon
if popup is not None:
self.add_child(popup if isinstance(popup, Popup)
else Popup(str(popup)))
@@ -296,6 +297,10 @@ def _get_self_bounds(self):
"""
return [self.location, self.location]
+ def render(self):
+ if self.location is None:
+ raise ValueError("{} location must be assigned when added directly to map.".format(self._name))
+ super(Marker, self).render()
class Popup(Element):
"""Create a Popup instance that can be linked to a Layer.
diff --git a/folium/vector_layers.py b/folium/vector_layers.py
index f50697337c..e75d1c6ea5 100644
--- a/folium/vector_layers.py
+++ b/folium/vector_layers.py
@@ -263,7 +263,7 @@ class Circle(Marker):
{% endmacro %}
""")
- def __init__(self, location, radius, popup=None, tooltip=None, **kwargs):
+ def __init__(self, location=None, radius=50, popup=None, tooltip=None, **kwargs):
super(Circle, self).__init__(location, popup=popup, tooltip=tooltip)
self._name = 'circle'
self.options = path_options(line=False, radius=radius, **kwargs)
@@ -300,7 +300,7 @@ class CircleMarker(Marker):
{% endmacro %}
""")
- def __init__(self, location, radius=10, popup=None, tooltip=None, **kwargs):
+ def __init__(self, location=None, radius=10, popup=None, tooltip=None, **kwargs):
super(CircleMarker, self).__init__(location, popup=popup,
tooltip=tooltip)
self._name = 'CircleMarker'
diff --git a/tests/subwaystations.geojson b/tests/subwaystations.geojson
new file mode 100644
index 0000000000..207a6255cc
--- /dev/null
+++ b/tests/subwaystations.geojson
@@ -0,0 +1,6627 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Astor Pl",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "1",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99106999861966, 40.73005400028978]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "2",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00019299927328, 40.71880300107709]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "3",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98384899986625, 40.76172799961419]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bergen St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4",
+ "objectid": "4",
+ "notes": "4-nights, 3-all other times, 2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97499915116808, 40.68086213682956]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pennsylvania Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "5",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89488591154061, 40.66471445143568]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "238th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "6",
+ "notes": "1-all times, exit only northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90087000018522, 40.88466700064975]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cathedral Pkwy (110th St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "7",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95806670661364, 40.800581558114956]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingston - Throop Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "8",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94085899871263, 40.67991899941601]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "65th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "9",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8987883783301, 40.74971952935675]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "36th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "10",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92901818461539, 40.75196004401078]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Delancey St - Essex St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M-Z",
+ "objectid": "11",
+ "notes": "J-all times, M-all times exc nights, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98740940202974, 40.71830605618619]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Siclen Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "12",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89165772702445, 40.67802821447783]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Norwood Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "13",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87962599910783, 40.68152000045683]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "104th-102nd Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "14",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84443500029684, 40.69516599823373]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "DeKalb Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-N-Q-R",
+ "objectid": "15",
+ "notes": "B-weekdays and evenings, D-all other times, N-nights, R-all other times, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98177094440949, 40.690648119969794]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 105th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "16",
+ "notes": "A-rush hours AM northbound, PM southbound, S Broad Channel to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82758075034528, 40.58326843810286]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 90th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "17",
+ "notes": "A-rush hours AM northbound, PM southbound, S Broad Channel to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81365140419632, 40.58809156457325]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Freeman St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "18",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89175225349464, 40.829987446384116]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Intervale Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "19",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89661738461646, 40.822142131170786]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "182nd-183rd Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "20",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90074099998965, 40.85609299881864]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "174th-175th Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "21",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91013600050078, 40.84589999983414]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "167th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "22",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91843200082253, 40.83376899862797]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Mets - Willets Point",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "23",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8456249984179, 40.75462199881262]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Junction Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "24",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86952700103515, 40.74914499948836]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Flushing - Main St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "25",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83003000262508, 40.75959999915012]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Buhre Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "26",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83256900003744, 40.846809998885504]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "3rd Ave - 138th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "27",
+ "notes": "6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92613800014134, 40.81047600117261]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Castle Hill Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "28",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85122199961472, 40.83425499825462]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brooklyn Bridge - City Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "29",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0041310005885, 40.713064999433136]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Zerega Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "30",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8470359987544, 40.836488000608156]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Central - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "31",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9767132992584, 40.75180742981634]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "33rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "32",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98207600148947, 40.74608099909145]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "33",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9510700015425, 40.78567199998607]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "77th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "34",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95987399886047, 40.77362000074615]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chauncey St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "35",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91038357033376, 40.68285130087804]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "36",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98310999909673, 40.67731566735096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Elmhurst Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "37",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8820347465864, 40.74237007972169]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ralph Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "38",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92078599933306, 40.678822000873375]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pelham Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "39",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86748067850041, 40.8571924091606]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gun Hill Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "40",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86613410538703, 40.877839385172024]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nereid Ave (238 St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "41",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8543153107622, 40.898286515575286]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4-5",
+ "objectid": "42",
+ "notes": "2,4-all times, 3-all times exc nights, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9580997367769, 40.67076515344894]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Simpson St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "43",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89306639507903, 40.823976841237396]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bronx Park East",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "44",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86835609178098, 40.848768666338934]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Winthrop St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "45",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95007934590994, 40.65665931376077]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Siclen Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "46",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88940491730106, 40.665517963059635]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "149th St - Grand Concourse",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "47",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9273847542618, 40.81830344372315]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "161st St - Yankee Stadium",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "48",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92569199505733, 40.82823032742169]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "49",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9679670004732, 40.762526000304575]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 149th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "50",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90409799875945, 40.81211799827203]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Morrison Av - Soundview",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "51",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87451599929486, 40.82952100156747]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Whitlock Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "52",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8862829985325, 40.82652500055904]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "St Lawrence Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "53",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86761799923673, 40.8315090005233]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodside - 61st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "54",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90298400173006, 40.745630001138395]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Far Rockaway - Mott Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "55",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.75540499924732, 40.603995001687544]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "72nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "56",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.976336575218, 40.77551939729258]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "57",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96460245687166, 40.79161879767014]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "168th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "58",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93956099985425, 40.84071899990795]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingsbridge Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "59",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8935090000331, 40.86697799999945]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "42nd St - Bryant Pk",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "60",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98459099904711, 40.754184001312545]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prospect Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q-S",
+ "objectid": "61",
+ "notes": "B-weekdays and evenings, Q,S to Franklin Av-Fulton St-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96203130426609, 40.6616334551018]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "55th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "62",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99534882595742, 40.63147876093745]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jamaica - Van Wyck",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E",
+ "objectid": "63",
+ "notes": "E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81701287135405, 40.70289855287313]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kew Gardens - Union Tpke",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F",
+ "objectid": "64",
+ "notes": "E,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8303702709878, 40.714034819571026]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutphin Blvd - Archer Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-J-Z",
+ "objectid": "65",
+ "notes": "E,J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.80800471963833, 40.700382424235]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Court Sq - 23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M",
+ "objectid": "66",
+ "notes": "E-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94605470266329, 40.747768121414325]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "67th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "67",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85286048434907, 40.726505475813006]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Ave - Newtown",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "68",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87722085669182, 40.736813418197144]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ditmas Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "69",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97817199965161, 40.63611866666291]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Classon Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "70",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95999000137212, 40.68888900026455]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "71",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95031225606621, 40.706126576274166]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lorimer St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "72",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95024799996972, 40.71407200064717]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutter Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "73",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9019160004208, 40.66914500061398]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wilson Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "74",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90395860491864, 40.68886654246024]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Halsey St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "75",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9166388842194, 40.686415270704344]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lorimer St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M",
+ "objectid": "76",
+ "notes": "J-all times, skips weekdays AM westbound, PM eastbound, M-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94735499884204, 40.703844000042096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "8th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "77",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01151599772157, 40.634970999647166]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "36th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "78",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.929861999118, 40.7564420005104]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "79",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92582299919906, 40.761431998800546]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "80",
+ "notes": "N,Q-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98676800153976, 40.75461199851542]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Central - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "81",
+ "notes": "S to Times Sq-all times exc nights, closed nights-use 7"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97918899989101, 40.75276866674217]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Park Pl",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "82",
+ "notes": "S Franklin Av-Fulton St to Prospect Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95762400074634, 40.67477166685263]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "111th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "83",
+ "notes": "S Euclid Av to Ozone Park-Lefferts Blvd-nights, A-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83216299845388, 40.68433100001238]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "W 4th St - Washington Sq (Lower)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "84",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00030814755975, 40.732254493367876]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "51st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "85",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97192000069982, 40.75710699989316]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "86",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97621799859327, 40.78864400073892]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "233rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "87",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85736239521543, 40.89314324138378]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "66th St - Lincoln Ctr",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "88",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98220899995783, 40.77344000052039]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hunts Point Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "89",
+ "notes": "6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89054900017344, 40.82094799852307]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "90",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0062770001748, 40.72285399778783]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Middletown Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "91",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83632199755944, 40.84386300128381]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "92",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98659900207888, 40.739864000474604]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Court Sq",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "93",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94526400039679, 40.74702299889643]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "59th St - Columbus Circle",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "94",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98192900232715, 40.76824700063689]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hunters Point Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "95",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9489160009391, 40.74221599986316]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "96",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9956570016487, 40.74408099989751]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Houston St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "97",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00536700180581, 40.728251000730204]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "104th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "98",
+ "notes": "S Euclid Av to Ozone Park-Lefferts Blvd-nights, A-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83768300060997, 40.681711001091195]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broad Channel",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "99",
+ "notes": "A,S to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81583268782963, 40.60840218069683]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ocean Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "100",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96850099975177, 40.57631166708091]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Vernon Blvd - Jackson Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "101",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95358099875249, 40.74262599969749]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "68th St - Hunter College",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "102",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96387000158042, 40.76814100049679]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Queensboro Plz",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express-N-W",
+ "objectid": "103",
+ "notes": "7,N-all times, 7 Express-rush hours AM westbound, PM eastbound, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9401635351909, 40.750635651014804]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "104",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8438529979573, 40.680428999588415]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union Sq - 14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "105",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98995099881881, 40.734673000996125]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford - Nostrand Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "106",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95352200064022, 40.68962700158444]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "15th St - Prospect Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "107",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97973580592873, 40.66003568810021]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "7th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "108",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98025117900944, 40.66624469001985]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ft Hamilton Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "109",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97577599917474, 40.65078166803418]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Church Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "110",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97972116229084, 40.64427200012998]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beverly Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "111",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96435779623125, 40.64390459860419]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Church Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "112",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96288246192114, 40.65049324646484]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Newkirk Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "113",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96269486837261, 40.63514193733789]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Parkside Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "114",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96145343987648, 40.65507304163716]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Army Plaza",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4",
+ "objectid": "115",
+ "notes": "4-nights, 3-all other times, 2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9709563319228, 40.6752946951032]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Av - Barclay's Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4-5",
+ "objectid": "116",
+ "notes": "2,4-all times, 3-all times exc nights, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97754993539385, 40.68442016526762]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "117",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91194599726617, 40.678339999883505]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "118",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97537499833149, 40.68711899950771]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Clinton - Washington Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "119",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9667959986695, 40.68809400106055]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "7th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "120",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97285279191024, 40.67710217983294]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Av - Barclay's Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "121",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97678343963167, 40.684488323453685]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Av - Barclay's Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-Q-R",
+ "objectid": "122",
+ "notes": "D,N-all times, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97880999956767, 40.683665667279435]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Borough Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "123",
+ "notes": "4-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99015100090539, 40.692403999991036]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Aqueduct Racetrack",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "124",
+ "notes": "A-to Manhattan only, racing days only"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83591899965162, 40.672096999172844]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Morris Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "125",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86049500117254, 40.85436399966426]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pelham Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "126",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85535900043564, 40.858984999820116]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nostrand Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "127",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95042600099683, 40.68043800006226]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nevins St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4-5",
+ "objectid": "128",
+ "notes": "2,4-all times, 3-all times exc nights, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98040679874578, 40.68831058019022]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Eastern Pkwy - Bklyn Museum",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3-4",
+ "objectid": "129",
+ "notes": "4-nights, 3-all other times, 2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96422203748425, 40.67203223545925]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beverly Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "130",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94884798381702, 40.64512351894373]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Church Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "131",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94945514035334, 40.6508606878022]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Newkirk Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "132",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94829990822407, 40.63999124275311]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brooklyn College - Flatbush Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "133",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94754120734406, 40.63284240700742]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sterling St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "134",
+ "notes": "2-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95072891124937, 40.6627729934283]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Crown Hts - Utica Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "135",
+ "notes": "3-all times exc nights, 4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93293256081851, 40.66897831107809]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingston Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "136",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94215978392963, 40.66948144864978]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nassau Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "137",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95118300016523, 40.724479997808274]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Greenpoint Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "138",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95442500146235, 40.73126699971465]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Marcy Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M-Z",
+ "objectid": "139",
+ "notes": "J-all times, M-all times exc nights, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95783200075729, 40.708383000017925]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hewes St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M",
+ "objectid": "140",
+ "notes": "J-all times, skips weekdays AM westbound, PM eastbound, M-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95348800038457, 40.706889998054]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "138th St - Grand Concourse",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "141",
+ "notes": "4-all times, skips rush hours AM southbound, PM northbound, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92984899935611, 40.81322399958908]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "5th Ave - 53rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M",
+ "objectid": "142",
+ "notes": "E-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9752485052734, 40.76008683231326]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 53rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M",
+ "objectid": "143",
+ "notes": "E-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96907237490204, 40.75746830782865]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "28th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "144",
+ "notes": "N-all times, R-all times exc nights, part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98869800128737, 40.74545399979951]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Herald Sq - 34th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "145",
+ "notes": "N,Q-all times, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9879368338264, 40.74964456009442]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "1st Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "146",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98168087489128, 40.73097497580066]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "147",
+ "notes": "S to Grand Central-all times exc nights, closed nights-use 7"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98622899953202, 40.755983000570076]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Metropolitan Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "148",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9514239994525, 40.71277400073426]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "149",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94049699874644, 40.71157600064823]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Graham Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "150",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94394399869037, 40.714575998363635]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "151",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95666499806525, 40.71717399858899]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Montrose Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "152",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93979284713505, 40.70739106438455]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Long Island City - Court Sq",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "153",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94381559597835, 40.74630503357145]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "21st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "154",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9495999997552, 40.7441286664954]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "39th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "155",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93285137679598, 40.75276306140845]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "145th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "156",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95035999879713, 40.82655099962194]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "157th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "157",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94488999901047, 40.8340410001399]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "158",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97232299915696, 40.79391900121471]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "159",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96837899960818, 40.799446000334825]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Central Park North (110th St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "160",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95182200176913, 40.79907499977324]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "161",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96137008267617, 40.796060739904526]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "72nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "162",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98197000159583, 40.77845300068614]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "81st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "163",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97209794937208, 40.78134608418206]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "75th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F",
+ "objectid": "164",
+ "notes": "E-evenings, weekends, nights, F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83692369387158, 40.71804465348743]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "165",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96882849429672, 40.78582304678557]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cathedral Pkwy (110th St)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "166",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9668470005456, 40.80396699961484]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St - Columbia University",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "167",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96410999757751, 40.807722001230864]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "168",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94549500011411, 40.807753999182815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "135th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "169",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94077000106708, 40.8142290003391]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "170",
+ "notes": "2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94962500096905, 40.802097999133004]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Tremont Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "171",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90522700122354, 40.850409999510234]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "137th St - City College",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "172",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95367600087873, 40.82200799968475]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "145th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3",
+ "objectid": "173",
+ "notes": "3-all times, exit only northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93624499873299, 40.82042099969279]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "176th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "174",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91179399884471, 40.8484800012369]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Burnside Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "175",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9076840015997, 40.85345300155693]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "170th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "176",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91339999846983, 40.83930599964156]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "168th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "177",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94013299907257, 40.840555999148535]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "181st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "178",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9335959996056, 40.84950499974065]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "191st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "179",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92941199742039, 40.85522500175836]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "175th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "180",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93970399761596, 40.84739100072403]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 44th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "181",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.77601299999507, 40.59294299908617]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 60th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "182",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.7885219980118, 40.59237400121235]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 98th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "183",
+ "notes": "A-rush hours AM northbound, PM southbound, S Broad Channel to Rockaway Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82052058959523, 40.58538569133279]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Park - Beach 116 St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "184",
+ "notes": "A-rush hours AM northbound, PM southbound, S to Broad Channel-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83559008701239, 40.580955865573515]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 36th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "185",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.76817499939688, 40.59539800166876]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 25th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "186",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.76135299762073, 40.60006600105881]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Parsons Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "187",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.80328900021885, 40.707571999615695]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "169th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "188",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.79347419927721, 40.710517502784]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St - Corona Plaza",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "189",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86269999830412, 40.749865000555545]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "111th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "190",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85533399834884, 40.75172999941711]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "63rd Dr - Rego Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "191",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86161820097203, 40.729763972422425]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grant Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "192",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86504999877702, 40.67704400054478]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "79th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "193",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97991700056134, 40.78393399959032]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Atlantic Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "194",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9030969995401, 40.67534466640805]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Christopher St - Sheridan Sq",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "195",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00290599855235, 40.73342200104225]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ozone Park - Lefferts Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "196",
+ "notes": "S to Euclid Av-nights, A-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82579799906613, 40.68595099878361]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "197",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98769099825152, 40.755477001982506]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "W 8th St - NY Aquarium",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-Q",
+ "objectid": "198",
+ "notes": "F,Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97595787413822, 40.576033818103646]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "28th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "199",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99336500134324, 40.74721499918219]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "28th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "200",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98426400110407, 40.743069999259035]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Pelham Bay Park",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "201",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82812100059289, 40.85246199951662]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Westchester Sq - E Tremont Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "202",
+ "notes": "6 Express-weekdays AM southbound, PM northbound, 6-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84295199925012, 40.839892001013915]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "203",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99787100060406, 40.741039999802105]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand Central - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "204",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97604100111508, 40.751431000286864]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Beach 67th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "205",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.7969239998421, 40.59092700078133]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "W 4th St - Washington Sq (Upper)",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "206",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00049500225435, 40.73233799774325]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "85th St - Forest Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "207",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86008700006875, 40.69242699966103]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodhaven Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "208",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85205199740794, 40.69370399880105]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "111th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "209",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83679338454697, 40.697114810696476]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "121st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "210",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82834900017954, 40.700481998515315]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Halsey St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "211",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90393400118631, 40.69551800114878]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle - Wyckoff Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "212",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9109757182647, 40.699471062427136]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "New Lots Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "213",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88411070800329, 40.6663149325969]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Siclen Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "214",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8903580002471, 40.67270999906104]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cleveland St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "215",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8851940021643, 40.679777998961164]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Livonia Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "216",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90056237226057, 40.66405727094644]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Junius St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "217",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90244864183562, 40.66358900181724]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rockaway Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "218",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90895833584449, 40.66261748815223]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canarsie - Rockaway Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "219",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90185000017287, 40.64665366739528]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 105th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "220",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89954769388724, 40.65046878544699]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Saratoga Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "221",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91633025007947, 40.6615297898075]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutter Ave - Rutland Road",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "222",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92252118536001, 40.66476678877493]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "New Lots Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "223",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89927796057142, 40.65891477368527]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway Junction",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "224",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90428999746412, 40.67936600147369]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Alabama Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "225",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89852600159652, 40.676998000003756]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Shepherd Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "226",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88074999747269, 40.6741300014559]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Crescent St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "227",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87392925215778, 40.68315265707736]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cypress Hills",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "228",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87332199882995, 40.689616000838754]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "75th St - Eldert Ln",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "229",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86728799944963, 40.691290001246735]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "69th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "230",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8964029993185, 40.746324999410284]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "74th St - Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "231",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8912051289911, 40.746867573829114]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodhaven Blvd - Queens Mall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "232",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86943208612348, 40.73309737380972]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle - Wyckoff Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "233",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91217899939602, 40.69945400090837]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Seneca Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "234",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90758199885423, 40.70291899894902]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "DeKalb Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "235",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91823200219723, 40.70369299961644]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "52nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "236",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91254899891254, 40.744149001021576]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "46th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "237",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91352174995538, 40.756316952608096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Northern Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "238",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90606508052358, 40.752824829236076]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "46th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "239",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91843500103973, 40.74313200060382]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "82nd St - Jackson Hts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "240",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88369700071884, 40.747658999559135]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "90th St - Elmhurst Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "241",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87661299986985, 40.74840800060913]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Howard Beach - JFK Airport",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "242",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83030100071032, 40.66047600004959]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Aqueduct - North Conduit Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "243",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83405799948723, 40.668234001699815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Briarwood - Van Wyck Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F",
+ "objectid": "244",
+ "notes": "E-evenings, weekends, nights, F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.82069263637443, 40.70916181536946]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Forest Hills - 71st Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F-M-R",
+ "objectid": "245",
+ "notes": "E,F-all times, M-weekdays and evenings, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84451672012669, 40.72159430953587]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sutphin Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "246",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.81083299897232, 40.70541799906764]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jamaica Ctr - Parsons / Archer",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-J-Z",
+ "objectid": "247",
+ "notes": "E,J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.80109632298924, 40.70206737621188]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "225th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "248",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86021461772737, 40.88802825863786]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Elder Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "249",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87915899874777, 40.82858400108929]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Longwood Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "250",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89643499897414, 40.816103999972405]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Astoria Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "251",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91809500109238, 40.77003699949086]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Astoria - Ditmars Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "252",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9120340001031, 40.775035666523664]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jackson Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "253",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9077019387083, 40.81643746686396]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prospect Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "254",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90177778730917, 40.81948726483844]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cypress Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "255",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91404199994753, 40.8053680007636]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "174th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "256",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88769359812888, 40.837195550170605]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Allerton Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "257",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86723422851625, 40.86548337793927]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 143rd St - St Mary's St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "258",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90765699936489, 40.80871900090143]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kingsbridge Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "259",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89717400101743, 40.867760000885795]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford Park Blvd - Lehman College",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "260",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89006400069478, 40.87341199980121]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Harlem - 148 St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3",
+ "objectid": "261",
+ "notes": "3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93647000005559, 40.82388000080457]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Mt Eden Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "262",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9146849986034, 40.84443400092679]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fordham Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "263",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89774900102401, 40.861295998683495]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "170th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "264",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91779099745928, 40.84007499993004]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bedford Park Blvd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "265",
+ "notes": "B-rush hours, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88713799889574, 40.87324399861646]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Marble Hill - 225th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "266",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90983099923551, 40.87456099941789]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "231st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "267",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90483400107873, 40.87885599817935]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "215th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "268",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91527899954356, 40.86944399946045]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "207th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "269",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91881900132312, 40.864614000525854]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Inwood - 207th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "270",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91989900100465, 40.86807199999737]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Van Cortlandt Park - 242nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "271",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89858300049647, 40.88924800011476]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "West Farms Sq - E Tremont Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "272",
+ "notes": "2-all times, 5-all times exc nights, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87996127877184, 40.84020763241799]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "219th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "273",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8625097078866, 40.883887974625274]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Mosholu Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "274",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88465499988732, 40.87974999947229]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Norwood - 205th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "275",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87885499918691, 40.87481100011182]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Burke Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "276",
+ "notes": "2-all times, 5-rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86705361747603, 40.87125880254771]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Baychester Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "277",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.83859099802153, 40.87866300037311]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Eastchester - Dyre Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "278",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8308340021742, 40.88829999901007]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jamaica - 179th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "279",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.78381700176453, 40.712645666744045]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wakefield - 241st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2",
+ "objectid": "280",
+ "notes": "2-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8506199987954, 40.903125000541245]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Botanic Garden",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "281",
+ "notes": "S Franklin Av-Fulton St to Prospect Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95924499945693, 40.670342666584396]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bushwick - Aberdeen",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "282",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90526176305106, 40.68286062551184]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway Junction",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "283",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90311757920684, 40.67845624842869]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gun Hill Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "5",
+ "objectid": "284",
+ "notes": "5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.84638400151765, 40.86952599962676]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "E 180th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "285",
+ "notes": "2,5-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87334609510884, 40.8418630412186]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Dyckman St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "286",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92553600006474, 40.86053100138796]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "287",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95837200097044, 40.815580999978934]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin Ave - Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "S",
+ "objectid": "288",
+ "notes": "S to Prospect Park-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95582700110425, 40.68059566598263]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "149th St - Grand Concourse",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "289",
+ "notes": "2-all times, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92672247438611, 40.81833014409742]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "3rd Ave - 149th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "290",
+ "notes": "2-all times, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91779152760981, 40.816029252510006]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "167th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "291",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92139999784426, 40.83553699933672]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brook Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6",
+ "objectid": "292",
+ "notes": "6-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91923999909432, 40.80756599987699]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "33rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "293",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93099699953838, 40.74458699983993]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "40th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7",
+ "objectid": "294",
+ "notes": "7-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9240159984882, 40.74378100149132]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "145th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C-D",
+ "objectid": "295",
+ "notes": "A,D-all times, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94408792823116, 40.824766360871905]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "155th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "296",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93820899811622, 40.8301349999812]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "161st St - Yankee Stadium",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "297",
+ "notes": "B-rush hours, D-all times, skips rush hours AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92565099775477, 40.827904998845845]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Utica Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "298",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93072899914027, 40.67936399950546]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Steinway St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "299",
+ "notes": "E-nights, R-all other times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9205264716827, 40.75698735912575]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kosciuszko St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J",
+ "objectid": "300",
+ "notes": "J-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92850899927413, 40.69317200129202]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gates Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "301",
+ "notes": "Z-rush hours AM westbound, PM eastbound, J-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92215600150752, 40.689583999013905]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Central Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "302",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92724299902838, 40.69787300011831]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Knickerbocker Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "303",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.91972000188625, 40.69866000123805]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "30th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-W",
+ "objectid": "304",
+ "notes": "N-all times, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9214790001739, 40.76677866673298]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jefferson St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "305",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9229130000312, 40.706606665988716]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Morgan Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "306",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93314700024209, 40.70615166680729]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Queens Plz",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-M-R",
+ "objectid": "307",
+ "notes": "E-all times, M-weekdays and evenings, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93713823965695, 40.74891771986323]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "308",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97697099965796, 40.62975466638584]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "77th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "309",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0255099996266, 40.629741666886915]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Ridge Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "310",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.02337699950728, 40.63496666682377]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "311",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9946587805514, 40.636260890961395]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ft Hamilton Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "312",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00535100046275, 40.63138566722445]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "25th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "313",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98682900011477, 40.59770366695856]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "314",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9936762000529, 40.601950461572315]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "20th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "315",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98452199846113, 40.617108999866005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "316",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99045399865993, 40.620686997680025]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Ridge - 95th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "317",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.03087600085765, 40.61662166725951]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R",
+ "objectid": "318",
+ "notes": "R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0283979999864, 40.62268666715025]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "79th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "319",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00058287431507, 40.61315892569516]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "71st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "320",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99884094850685, 40.61925870977273]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "20th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "321",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99817432157568, 40.60467699816932]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "18th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "322",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00159259239406, 40.60773573171741]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "62nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "323",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99685724994863, 40.626224462922195]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "New Utrecht Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "324",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99635300025969, 40.62484166725887]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave U",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "325",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97337641974885, 40.59592482551748]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kings Hwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "326",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9723553085244, 40.603258405128265]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Brighton Beach",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "327",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96135378598797, 40.577710196642435]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Sheepshead Bay",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "328",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95405791257907, 40.58654754707536]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave U",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "329",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95581122316301, 40.59930895095475]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kings Hwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-Q",
+ "objectid": "330",
+ "notes": "B-weekdays and evenings, Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95760873538083, 40.608638645396006]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave U",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "331",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97908400099428, 40.597235999920436]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Kings Hwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "332",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98037300229343, 40.60405899980493]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Neptune Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "333",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97459272818807, 40.580738758491464]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave X",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "334",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97426599968905, 40.589449666625285]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay 50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "335",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98376500045946, 40.58884066651933]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Gravesend - 86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "336",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97818899936274, 40.59246500088859]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave P",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "337",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97300281528751, 40.608842808949916]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave N",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "338",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97404850873143, 40.61435671190883]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "339",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9752569782215, 40.62073162316788]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave M",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "340",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9592431052215, 40.617397744443736]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bay Pky",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N",
+ "objectid": "341",
+ "notes": "N-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98178001069293, 40.61145578989005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave I",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "342",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97606933170925, 40.62501744019143]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave J",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "343",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96069316246925, 40.625022819915166]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ave H",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "344",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96151793942495, 40.62920837758969]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Neck Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "345",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95507827493762, 40.59532169111695]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "21st St - Queensbridge",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "346",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94193761457447, 40.75373927087553]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "50th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "347",
+ "notes": "A-nights, C-all other times, E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98598400026407, 40.76245599925997]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "7th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-E",
+ "objectid": "348",
+ "notes": "D,E-all times, B-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98169782344476, 40.76297015245628]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "47th-50th Sts - Rockefeller Ctr",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "349",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98133100227702, 40.75864100159815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "57th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "350",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97736800085171, 40.76408500081713]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 63rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-Q",
+ "objectid": "351",
+ "notes": "F-all times, Q all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96608964413245, 40.76461809442373]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Roosevelt Island - Main St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "352",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95323499978866, 40.75917199967108]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "59th St - Columbus Circle",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C-D",
+ "objectid": "353",
+ "notes": "A,D-all times, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98164872301398, 40.768249531776064]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "49th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "354",
+ "notes": "N-all times, Q-all times exc weekends, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98420956591096, 40.759801973870694]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "57th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "355",
+ "notes": "N,Q-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98072973372128, 40.76456552501829]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "5th Ave - 59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R-W",
+ "objectid": "356",
+ "notes": "N-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97334700047045, 40.764810999755284]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lexington Ave - 59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R-W",
+ "objectid": "357",
+ "notes": "N-all times, R-all times exc nights, W part time"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96737501711436, 40.762708855394564]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "34th St - Penn Station",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "358",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99105699913983, 40.75037300003949]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Times Sq - 42nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "359",
+ "notes": "1,2,3-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98749500051885, 40.75528999995681]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "360",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00762309323994, 40.71016216530185]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chambers St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "361",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00858473570133, 40.714111000774025]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "42nd St - Port Authority Bus Term",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "362",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98973500085859, 40.757307998551504]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle-Willoughby Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "363",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94906699890156, 40.69461899903765]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Flushing Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "G",
+ "objectid": "364",
+ "notes": "G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9502340010257, 40.70037666622154]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-M",
+ "objectid": "365",
+ "notes": "F-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99276500471389, 40.742954317826005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Herald Sq - 34th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "366",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98777189072918, 40.74978939990011]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hoyt - Schermerhorn Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-G",
+ "objectid": "367",
+ "notes": "A,G-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98503624034139, 40.68840847580642]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jay St - MetroTech",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-F",
+ "objectid": "368",
+ "notes": "A,F-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98721815267317, 40.692470636847084]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "East Broadway",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "369",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99017700122197, 40.713855001020406]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Delancey St - Essex St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "370",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98807806807719, 40.71868074219453]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lower East Side - 2nd Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "371",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98993800003434, 40.72340166574911]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Flushing Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M",
+ "objectid": "372",
+ "notes": "J-all times, skips weekdays AM westbound, PM eastbound, M-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94137734838365, 40.70040440298112]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Myrtle Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-M-Z",
+ "objectid": "373",
+ "notes": "J,M-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9356230012996, 40.6971950005145]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "4th Av - 9th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "374",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98977899938897, 40.67027166728493]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Smith - 9th Sts",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "375",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99589172790934, 40.67364106090412]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bergen St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "376",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99075649573565, 40.68611054725977]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jay St - MetroTech",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "377",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98605667854612, 40.69225539645323]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Court St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "378",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99181830901125, 40.694196480776995]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union Sq - 14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "379",
+ "notes": "N,Q-all times, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99053886181645, 40.73587226699812]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "380",
+ "notes": "N-all times, Q-nights, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98934400102907, 40.74130266729]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prospect Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "381",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99287200067424, 40.66541366712979]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "4th Av - 9th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "382",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98830199974512, 40.670846666842756]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "3rd Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "383",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98575000112093, 40.73269099971662]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Union Sq - 14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "384",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99066976901818, 40.73476331217923]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Liberty Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "385",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89654800103929, 40.67454199987086]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway Junction",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "386",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90531600055341, 40.67833366608023]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "59th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "387",
+ "notes": "N,R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01788099953987, 40.6413616662838]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "45th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "388",
+ "notes": "N-nights, R-all times, skips nights northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01000600074939, 40.648938666612814]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "36th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "389",
+ "notes": "D,N,R-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00354899951809, 40.65514366633887]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "9th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "390",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99444874451204, 40.64648407726636]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "53rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-R",
+ "objectid": "391",
+ "notes": "N-nights, R-all times, skips nights northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01403399986317, 40.64506866735981]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Ft Hamilton Pkwy",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D",
+ "objectid": "392",
+ "notes": "D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9942022375285, 40.640912711444656]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "25th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-N-R",
+ "objectid": "393",
+ "notes": "D,N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99809099974297, 40.66039666692321]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Carroll St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-G",
+ "objectid": "394",
+ "notes": "F,G-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99494697998841, 40.68027335170176]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Spring St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "395",
+ "notes": "A-nights, C-all other times, E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00373899843763, 40.72622700129312]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "181st St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "396",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93796900205011, 40.851694999744616]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "190th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "397",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93417999964333, 40.85902199892482]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "398",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95479778057312, 40.80505813344211]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C-D",
+ "objectid": "399",
+ "notes": "A,D-all times, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95224799734774, 40.811071672994565]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Prince St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "400",
+ "notes": "N-all times, Q-nights, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99770200045987, 40.72432866597571]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "8th St - NYU",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q-R-W",
+ "objectid": "401",
+ "notes": "N-all times, Q-nights, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99250799849149, 40.73046499853991]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "402",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00657099970202, 40.70941599925865]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Park Pl",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "403",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00881099997359, 40.713050999077694]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chambers St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "404",
+ "notes": "1,2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00926600170112, 40.71547800011327]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Hoyt St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "405",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98506379575646, 40.69054418535472]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Borough Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "406",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98999799960687, 40.693218999611084]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "183rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "407",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90387900151532, 40.85840700040842]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fordham Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "408",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90103399921699, 40.86280299988937]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "World Trade Center",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E",
+ "objectid": "409",
+ "notes": "E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00974461517701, 40.71256392680817]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St - Holland Tunnel",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "410",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0052290023424, 40.72082400007119]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "155th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "411",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94151400082208, 40.83051799929251]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "163rd St - Amsterdam Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "412",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93989200188344, 40.83601299923096]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "413",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00793800110387, 40.71002266658424]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Chambers St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "414",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00340673031336, 40.71323378962671]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "415",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99982638545937, 40.71817387697391]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "City Hall",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "416",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00698581780337, 40.71327233111697]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "417",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0018260000577, 40.71946500105898]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "South Ferry",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "418",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01316895919258, 40.701730507574474]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bowling Green",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "419",
+ "notes": "4-all times, 5-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01400799803432, 40.70491399928076]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wall St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "420",
+ "notes": "4-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01186199860112, 40.70755700086603]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Whitehall St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "421",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.0130072374272, 40.703142373599135]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rector St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "422",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01297456253795, 40.707744756294474]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fresh Pond Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "423",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.8958980017196, 40.70622599823048]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Middle Village - Metropolitan Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "424",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.88957722978091, 40.711431305058255]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Rector St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "425",
+ "notes": "1-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01378300119742, 40.707512999521775]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cortlandt St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1",
+ "objectid": "426",
+ "notes": "Temporarily closed"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01218800112292, 40.7118350008202]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Fulton St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5",
+ "objectid": "427",
+ "notes": "4-all times, 5-weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00950899856461, 40.710367998822136]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broad St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "428",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01105599991755, 40.706476001106005]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cortlandt St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "R-W",
+ "objectid": "429",
+ "notes": "N-nights, R-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.01113196473266, 40.7105129841524]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Wall St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "430",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00909999844257, 40.706820999753376]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Dyckman St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A",
+ "objectid": "431",
+ "notes": "A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.92727099960726, 40.865490998968916]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Grand St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D",
+ "objectid": "432",
+ "notes": "B-weekdays and evenings, D-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99375299913589, 40.71826699954992]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Broadway - Lafayette St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "B-D-F-M",
+ "objectid": "433",
+ "notes": "B,M-weekdays and evenings, D,F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99620399876055, 40.725296998738045]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bowery",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "J-Z",
+ "objectid": "434",
+ "notes": "J-all times, Z-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99380690654237, 40.720246883147254]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Canal St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "N-Q",
+ "objectid": "435",
+ "notes": "N-all times, Q-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00105471306033, 40.718814263587134]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "23rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "436",
+ "notes": "A-nights, C-all other times, E-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99804100117201, 40.74590599939995]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "34th St - Penn Station",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "437",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99339099970578, 40.752287000775894]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Jackson Hts - Roosevelt Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "E-F-M-R",
+ "objectid": "438",
+ "notes": "E,F-all times, M-weekdays and evenings, R-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.89129866519697, 40.74653969115889]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2-3",
+ "objectid": "439",
+ "notes": "1,2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00020100063497, 40.737825999728116]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "135th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-B-C",
+ "objectid": "440",
+ "notes": "A-nights, B-weekdays and evenings, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94753480879213, 40.817905559212676]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F-M",
+ "objectid": "441",
+ "notes": "F-all times, M-weekdays and evenings"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99620899921355, 40.73822799969515]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "6th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "442",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99775078874781, 40.73774146981052]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "8th Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "L",
+ "objectid": "443",
+ "notes": "L-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00257800104762, 40.73977666638199]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "14th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-E",
+ "objectid": "444",
+ "notes": "A,E-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00168999937027, 40.740893000193296]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Nostrand Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "3-4",
+ "objectid": "445",
+ "notes": "4-nights, 3-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9504262489579, 40.66993815093054]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Clark St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-3",
+ "objectid": "446",
+ "notes": "2-all times, 3-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99308599821961, 40.69746599996469]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "447",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95684800014614, 40.68137966658742]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Clinton - Washington Aves",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "448",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96583799857275, 40.68326299912644]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Forest Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "M",
+ "objectid": "449",
+ "notes": "M-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.90307500005954, 40.70441200087814]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "110th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "450",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94424999687163, 40.795020000113105]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "451",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95558899985132, 40.77949199820952]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "York St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "F",
+ "objectid": "452",
+ "notes": "F-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98688499993673, 40.699742667691574]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "High St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "453",
+ "notes": "A-all times, C-all times exc nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99053100065458, 40.69933699977884]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Lafayette Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C",
+ "objectid": "454",
+ "notes": "A-nights, C-all other times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.97394599849406, 40.68611300020567]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "President St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "2-5",
+ "objectid": "455",
+ "notes": "2-all times, 5 weekdays"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95058920022207, 40.667883603536815]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Woodlawn",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4",
+ "objectid": "456",
+ "notes": "4-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87875099990931, 40.886037000253324]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Bleecker St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "457",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays PM"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99465900006331, 40.72591466682659]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "103rd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "458",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.94747800152219, 40.79060000008452]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Euclid Ave",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-C-S",
+ "objectid": "459",
+ "notes": "S to Ozone Park-Lefferts Blvd-nights, C-all other times, A-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.87210600099675, 40.675376998239365]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "88th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "460",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85147000026086, 40.67984300135503]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Cortelyou Rd",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "461",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.96379005505493, 40.6409401651401]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "116th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "462",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9416169983714, 40.7986290002001]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Parkchester",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "6-6 Express",
+ "objectid": "463",
+ "notes": "6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.86081600108396, 40.83322599927859]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Franklin St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "1-2",
+ "objectid": "464",
+ "notes": "1-all times, 2-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00688600277107, 40.719318001302135]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "80th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "A-S",
+ "objectid": "465",
+ "notes": "A-all times, S Euclid Av to Ozone Park-Lefferts Blvd-nights"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.85899200206335, 40.67937100115432]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "5th Ave - Bryant Pk",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "466",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.98196299856706, 40.75382100064824]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Spring St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-6-6 Express",
+ "objectid": "467",
+ "notes": "4 nights, 6-all times, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.99714100006673, 40.72230099999366]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "125th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "4-5-6-6 Express",
+ "objectid": "468",
+ "notes": "4,6-all times, 5-all times exc nights, 6 Express-weekdays AM southbound, PM northbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.93759400055725, 40.804138000587244]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Coney Island - Stillwell Av",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "D-F-N-Q",
+ "objectid": "469",
+ "notes": "D,F,N,Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9812359981396, 40.57728100006751]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "34th St - Hudson Yards",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "7-7 Express",
+ "objectid": "470",
+ "notes": "7-all times, 7 Express-rush hours AM westbound, PM eastbound"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-74.00219709442206, 40.75544635961596]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "72nd St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "641",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95836178682246, 40.76880251014895]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "86th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "642",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.95177090964917, 40.77786104333163]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "96th St",
+ "url": "http://web.mta.info/nyct/service/",
+ "line": "Q",
+ "objectid": "643",
+ "notes": "Q-all times"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-73.9470660219183, 40.784236650177654]
+ }
+ }
+ ]
+}
diff --git a/tests/test_features.py b/tests/test_features.py
index fb48e0a953..5bec817be7 100644
--- a/tests/test_features.py
+++ b/tests/test_features.py
@@ -12,7 +12,7 @@
from branca.element import Element
import folium
-from folium import Map, Popup, GeoJson
+from folium import Map, Popup, GeoJson, ClickForMarker
import pytest
@@ -215,6 +215,17 @@ def test_geojson_tooltip():
assert issubclass(w[-1].category, UserWarning), 'GeoJsonTooltip GeometryCollection test failed.'
+# GeoJsonMarker type validation.
+def test_geojson_marker():
+ m = folium.Map([30.4, -97.5], zoom_start=10)
+ with pytest.raises(TypeError):
+ folium.GeoJson(
+ os.path.join(rootpath, 'subwaystations.geojson'),
+ marker=ClickForMarker()
+ ).add_to(m)
+
+
+
def test_geojson_find_identifier():
def _create(*properties):
diff --git a/tests/test_map.py b/tests/test_map.py
index 042f68ca3a..0365a8a728 100644
--- a/tests/test_map.py
+++ b/tests/test_map.py
@@ -9,7 +9,7 @@
import pytest
from folium import Map
-from folium.map import Popup, Icon, CustomPane
+from folium.map import Popup, Icon, CustomPane, Marker
from folium.utilities import normalize
@@ -112,6 +112,14 @@ def test_custom_pane_show():
assert normalize(rendered) == normalize(expected)
+def test_marker_valid_location():
+ m = Map()
+ marker = Marker()
+ marker.add_to(m)
+ with pytest.raises(ValueError):
+ m.render()
+
+
@pytest.mark.filterwarnings('ignore::UserWarning')
def test_icon_invalid_marker_colors():
pytest.warns(UserWarning, Icon, color='lila')