From 5e18a0a9b86411e9c41c74ce8da8335299f86909 Mon Sep 17 00:00:00 2001 From: Jonah <73760377+jonerrr@users.noreply.github.com> Date: Sun, 18 Aug 2024 11:27:12 -0400 Subject: [PATCH] get stops from trainstatus api and specify api with env --- README.md | 2 +- data/main.ipynb | 25 +- data/snap_routes.py | 2 +- package.json | 2 +- src/lib/Routes.svelte | 1 - src/lib/Stops.svelte | 5 +- src/lib/Trips.svelte | 14 +- src/routes/+layout.ts | 9 +- src/routes/+page.svelte | 2 +- src/routes/+page.ts | 5 +- static/stops.geojson | 14960 -------------------------------------- 11 files changed, 41 insertions(+), 14986 deletions(-) delete mode 100644 static/stops.geojson diff --git a/README.md b/README.md index 19559ea..0673ec8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Realtime NYCT Bus Map -This data mainly comes from the API +This data comes from the API **Website is currently offline, will be back up soon** diff --git a/data/main.ipynb b/data/main.ipynb index d96c368..c248277 100644 --- a/data/main.ipynb +++ b/data/main.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 28, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -18,23 +18,24 @@ "metadata": {}, "outputs": [], "source": [ - "# df: gpd.GeoDataFrame = gpd.read_file(\"http://localhost:3055/bus/routes/geojson\")\n", + "# df: gpd.GeoDataFrame = gpd.read_file(\"http://localhost:3055/bus/routes/geojson\")\\\n", + "# df: gpd.GeoDataFrame = gpd.read_file(\"https://trainstat.us/api/bus/routes/geojson\")\n", "df: gpd.GeoDataFrame = gpd.read_file(\"routes.geojson\")" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ - "df_cl: gpd.GeoDataFrame = gpd.read_file(\"CSCL.geojson\")\n", - "# df_cl = gpd.read_file(\"https://data.cityofnewyork.us/api/geospatial/exjm-f27b?method=export&format=GeoJSON\")" + "# df_cl: gpd.GeoDataFrame = gpd.read_file(\"CSCL.geojson\")\n", + "df_cl = gpd.read_file(\"https://data.cityofnewyork.us/api/geospatial/exjm-f27b?method=export&format=GeoJSON\")" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -44,7 +45,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 7, "metadata": {}, "outputs": [ { @@ -109,7 +110,7 @@ "269 MULTILINESTRING ((990063.326 211112.618, 99001... " ] }, - "execution_count": 27, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } @@ -121,14 +122,16 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - " 98%|█████████▊| 3080/3136 [00:00<00:00, 8206.42it/s]\n" + "/tmp/ipykernel_57075/2133425740.py:1: FutureWarning: Currently, index_parts defaults to True, but in the future, it will default to False to be consistent with Pandas. Use `index_parts=True` to keep the current behavior and True/False to silence the warning.\n", + " df_exploded = df_filtered.explode().reset_index(drop=True)\n", + " 98%|█████████▊| 3080/3136 [00:00<00:00, 20372.13it/s]\n" ] } ], @@ -383,7 +386,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.8" + "version": "3.12.4" } }, "nbformat": 4, diff --git a/data/snap_routes.py b/data/snap_routes.py index 826f10c..1c56613 100644 --- a/data/snap_routes.py +++ b/data/snap_routes.py @@ -23,7 +23,7 @@ # Find the closest line in df_cl closest_line = df_cl.geometry.distance(line).idxmin() snapped_line = snap( - line, df_cl.geometry[closest_line], tolerance=10 + line, df_cl.geometry[closest_line], tolerance=50 ) # Adjust tolerance as needed snapped_geometries.append(snapped_line) diff --git a/package.json b/package.json index 69a20f0..bfbfa43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bus-map", - "version": "0.0.1", + "version": "0.1.1", "private": true, "scripts": { "dev": "vite dev", diff --git a/src/lib/Routes.svelte b/src/lib/Routes.svelte index 743de07..f8754cd 100644 --- a/src/lib/Routes.svelte +++ b/src/lib/Routes.svelte @@ -14,7 +14,6 @@ let clicked_feature: Route | null = null; - import { GeoJSON, Popup, SymbolLayer, CircleLayer } from 'svelte-maplibre'; - // export let geojson; - // TODO: get stops geojson from api + export let geojson; interface Stop { direction: string; @@ -14,7 +13,7 @@ let clicked_feature: Stop | null = null; - + (clicked_feature = e.detail.features[0].properties)} hoverCursor="pointer" diff --git a/src/lib/Trips.svelte b/src/lib/Trips.svelte index c2d8d76..1c524ac 100644 --- a/src/lib/Trips.svelte +++ b/src/lib/Trips.svelte @@ -26,9 +26,17 @@ }} > -
-

{clicked_feature?.route_id}

-
+ {#if clicked_feature} +
+

{clicked_feature?.route_id}

+ {#if clicked_feature.passengers && clicked_feature.capacity} +

+ passengers: {clicked_feature.passengers} / {clicked_feature.capacity} +

+ {/if} +

+
+ {/if}
diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts index 879c8f5..df25679 100644 --- a/src/routes/+layout.ts +++ b/src/routes/+layout.ts @@ -1,4 +1,11 @@ +import { PUBLIC_API_URL } from '$env/static/public'; import type { LayoutLoad } from './$types'; + export const load: LayoutLoad = async ({ fetch }) => { - return { routes: await (await fetch('/api/bus/routes/geojson')).json() }; + const routes_promise = fetch(`${PUBLIC_API_URL}/bus/routes/geojson`).then((res) => res.json()); + const stops_promise = fetch(`${PUBLIC_API_URL}/bus/stops/geojson`).then((res) => res.json()); + + const [routes, stops] = await Promise.all([routes_promise, stops_promise]); + + return { routes, stops }; }; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index ff1b51e..d8ab39f 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -66,7 +66,7 @@ /> - + diff --git a/src/routes/+page.ts b/src/routes/+page.ts index f619563..467f9ea 100644 --- a/src/routes/+page.ts +++ b/src/routes/+page.ts @@ -1,9 +1,8 @@ +import { PUBLIC_API_URL } from '$env/static/public'; import type { PageLoad } from './$types'; -// load data here first for SSR benefits (i think) export const load: PageLoad = async ({ fetch }) => { - const trips_promise = fetch('/api/bus/trips/geojson').then((res) => res.json()); - // const routes_promise = fetch('/api/bus/routes/geojson').then((res) => res.json()); + const trips_promise = fetch(`${PUBLIC_API_URL}/bus/trips/geojson`).then((res) => res.json()); const [trips] = await Promise.all([trips_promise]); diff --git a/static/stops.geojson b/static/stops.geojson deleted file mode 100644 index c46be48..0000000 --- a/static/stops.geojson +++ /dev/null @@ -1,14960 +0,0 @@ -{ -"type": "FeatureCollection", -"features": [ -{ "type": "Feature", "properties": { "id": 100014, "name": "Bedford Pk Blvd/Grand Concourse", "direction": "NW", "lat": 40.872562, "lon": -73.88815, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.88815, 40.872562 ] } }, -{ "type": "Feature", "properties": { "id": 100017, "name": "Paul Av/W 205 St", "direction": "NE", "lat": 40.876835, "lon": -73.88971, "routes": "BX38, BX10, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88971, 40.876835 ] } }, -{ "type": "Feature", "properties": { "id": 100018, "name": "Paul Av/West Mosholu Pkwy South", "direction": "E", "lat": 40.88039, "lon": -73.88608, "routes": "BX10, BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88608, 40.88039 ] } }, -{ "type": "Feature", "properties": { "id": 100019, "name": "Grand Concourse/E 138 St", "direction": "NE", "lat": 40.813496, "lon": -73.92949, "routes": "BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.92949, 40.813496 ] } }, -{ "type": "Feature", "properties": { "id": 100020, "name": "Grand Concourse/E 144 St", "direction": "NE", "lat": 40.81681, "lon": -73.928, "routes": "BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.928, 40.81681 ] } }, -{ "type": "Feature", "properties": { "id": 100021, "name": "Grand Concourse/E 149 St", "direction": "NE", "lat": 40.818855, "lon": -73.92709, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.92709, 40.818855 ] } }, -{ "type": "Feature", "properties": { "id": 100022, "name": "Grand Concourse/E 153 St", "direction": "NE", "lat": 40.821102, "lon": -73.92575, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.92575, 40.821102 ] } }, -{ "type": "Feature", "properties": { "id": 100025, "name": "Grand Concourse/E 161 St", "direction": "NE", "lat": 40.826454, "lon": -73.9228, "routes": "BX2, BXM4, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.9228, 40.826454 ] } }, -{ "type": "Feature", "properties": { "id": 100026, "name": "Grand Concourse/E 163 St", "direction": "NE", "lat": 40.82884, "lon": -73.921326, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.921326, 40.82884 ] } }, -{ "type": "Feature", "properties": { "id": 100027, "name": "Grand Concourse/E 165 St", "direction": "NE", "lat": 40.831318, "lon": -73.91994, "routes": "BXM4, BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91994, 40.831318 ] } }, -{ "type": "Feature", "properties": { "id": 100028, "name": "Grand Concourse/Mcclellan St", "direction": "NE", "lat": 40.833275, "lon": -73.91856, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91856, 40.833275 ] } }, -{ "type": "Feature", "properties": { "id": 100029, "name": "Grand Concourse/E 167 St", "direction": "NE", "lat": 40.834763, "lon": -73.91713, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91713, 40.834763 ] } }, -{ "type": "Feature", "properties": { "id": 100030, "name": "Grand Concourse/E 169 St", "direction": "NE", "lat": 40.83657, "lon": -73.915375, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.915375, 40.83657 ] } }, -{ "type": "Feature", "properties": { "id": 100033, "name": "Grand Concourse/Mount Eden Av", "direction": "N", "lat": 40.84351, "lon": -73.91155, "routes": "BX2, BX1, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.91155, 40.84351 ] } }, -{ "type": "Feature", "properties": { "id": 100035, "name": "Grand Concourse/E 175 St", "direction": "NE", "lat": 40.84674, "lon": -73.908554, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.908554, 40.84674 ] } }, -{ "type": "Feature", "properties": { "id": 100038, "name": "Grand Concourse/E 179 St", "direction": "NE", "lat": 40.85093, "lon": -73.904495, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.904495, 40.85093 ] } }, -{ "type": "Feature", "properties": { "id": 100039, "name": "Grand Concourse/East Burnside Av", "direction": "NE", "lat": 40.852085, "lon": -73.903564, "routes": "BXM4, BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.903564, 40.852085 ] } }, -{ "type": "Feature", "properties": { "id": 100040, "name": "Grand Concourse/E 180 St", "direction": "NE", "lat": 40.853718, "lon": -73.902245, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.902245, 40.853718 ] } }, -{ "type": "Feature", "properties": { "id": 100041, "name": "Grand Concourse/E 182 St", "direction": "NE", "lat": 40.856255, "lon": -73.90036, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.90036, 40.856255 ] } }, -{ "type": "Feature", "properties": { "id": 100044, "name": "Grand Concourse/E 187 St", "direction": "NE", "lat": 40.86057, "lon": -73.897865, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.897865, 40.86057 ] } }, -{ "type": "Feature", "properties": { "id": 100045, "name": "Grand Concourse/E Fordham Rd", "direction": "NE", "lat": 40.8631, "lon": -73.89637, "routes": "BXM4, BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.89637, 40.8631 ] } }, -{ "type": "Feature", "properties": { "id": 100047, "name": "Grand Concourse/East Kingsbridge Rd", "direction": "NE", "lat": 40.866344, "lon": -73.89386, "routes": "BX1, BX2, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.89386, 40.866344 ] } }, -{ "type": "Feature", "properties": { "id": 100048, "name": "Grand Concourse/E 196 St", "direction": "NE", "lat": 40.86808, "lon": -73.89254, "routes": "BX1, BX2, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.89254, 40.86808 ] } }, -{ "type": "Feature", "properties": { "id": 100049, "name": "Grand Concourse/E 198 St", "direction": "NE", "lat": 40.870243, "lon": -73.89042, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.89042, 40.870243 ] } }, -{ "type": "Feature", "properties": { "id": 100052, "name": "Grand Concourse/E 206 St", "direction": "NE", "lat": 40.8763, "lon": -73.88551, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.88551, 40.8763 ] } }, -{ "type": "Feature", "properties": { "id": 100053, "name": "Grand Concourse/East Mosholu Pkwy South", "direction": "NE", "lat": 40.87799, "lon": -73.88472, "routes": "BX1, BX28, BX2, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.88472, 40.87799 ] } }, -{ "type": "Feature", "properties": { "id": 100054, "name": "East Mosholu Pkwy South/Jerome Av", "direction": "NW", "lat": 40.879494, "lon": -73.8856, "routes": "BX1, BX38, BX28, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.8856, 40.879494 ] } }, -{ "type": "Feature", "properties": { "id": 100055, "name": "West Mosholu Pkwy South/Paul Av", "direction": "N", "lat": 40.880436, "lon": -73.8859, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.8859, 40.880436 ] } }, -{ "type": "Feature", "properties": { "id": 100056, "name": "Sedgwick Av/Dickinson Av", "direction": "W", "lat": 40.882915, "lon": -73.887474, "routes": "BX2, BX1, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.887474, 40.882915 ] } }, -{ "type": "Feature", "properties": { "id": 100057, "name": "Sedgwick Av/Hillman Av", "direction": "W", "lat": 40.88246, "lon": -73.89135, "routes": "BX10, BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.89135, 40.88246 ] } }, -{ "type": "Feature", "properties": { "id": 100058, "name": "Sedgwick Av/Van Cortlandt Av West", "direction": "W", "lat": 40.882828, "lon": -73.893364, "routes": "BX1, BX2, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.893364, 40.882828 ] } }, -{ "type": "Feature", "properties": { "id": 100059, "name": "Sedgwick Av/Stevenson Pl", "direction": "SW", "lat": 40.88269, "lon": -73.89519, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.89519, 40.88269 ] } }, -{ "type": "Feature", "properties": { "id": 100060, "name": "Sedgwick Av/Giles Pl", "direction": "S", "lat": 40.880924, "lon": -73.8967, "routes": "BX1, BX2, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.8967, 40.880924 ] } }, -{ "type": "Feature", "properties": { "id": 100061, "name": "Sedgwick Av/Fort Independence St", "direction": "SW", "lat": 40.87865, "lon": -73.89792, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.89792, 40.87865 ] } }, -{ "type": "Feature", "properties": { "id": 100062, "name": "Heath Av/Summit Pl", "direction": "SW", "lat": 40.87789, "lon": -73.90152, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.90152, 40.87789 ] } }, -{ "type": "Feature", "properties": { "id": 100063, "name": "Albany Cr/Bailey Av", "direction": "NW", "lat": 40.876877, "lon": -73.903175, "routes": "BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.903175, 40.876877 ] } }, -{ "type": "Feature", "properties": { "id": 100064, "name": "W 231 St/Bailey Av", "direction": "W", "lat": 40.87823, "lon": -73.90277, "routes": "BX10, BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.90277, 40.87823 ] } }, -{ "type": "Feature", "properties": { "id": 100065, "name": "W 231 St/Broadway", "direction": "NW", "lat": 40.879253, "lon": -73.9054, "routes": "BX2, BX1, BX10, BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.9054, 40.879253 ] } }, -{ "type": "Feature", "properties": { "id": 100066, "name": "W 231 St/Kingsbridge Av", "direction": "NW", "lat": 40.880047, "lon": -73.906876, "routes": "BX10, BX2, BX20, BX7, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.906876, 40.880047 ] } }, -{ "type": "Feature", "properties": { "id": 100068, "name": "Riverdale Av/Greystone Av", "direction": "N", "lat": 40.88436, "lon": -73.90747, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.90747, 40.88436 ] } }, -{ "type": "Feature", "properties": { "id": 100069, "name": "Riverdale Av/W 236 St", "direction": "N", "lat": 40.88695, "lon": -73.90696, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.90696, 40.88695 ] } }, -{ "type": "Feature", "properties": { "id": 100070, "name": "Riverdale Av/W 238 St", "direction": "NW", "lat": 40.888107, "lon": -73.907425, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.907425, 40.888107 ] } }, -{ "type": "Feature", "properties": { "id": 100071, "name": "Henry Hudson Pkwy East/W 239 St", "direction": "N", "lat": 40.889538, "lon": -73.90806, "routes": "BXM1, BXM18, BXM2, BX7, BX10, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.90806, 40.889538 ] } }, -{ "type": "Feature", "properties": { "id": 100076, "name": "Riverdale Av/W 238 St", "direction": "SE", "lat": 40.887913, "lon": -73.90758, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.90758, 40.887913 ] } }, -{ "type": "Feature", "properties": { "id": 100077, "name": "Riverdale Av/W 236 St", "direction": "S", "lat": 40.88643, "lon": -73.907074, "routes": "BXM2, BXM1, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.907074, 40.88643 ] } }, -{ "type": "Feature", "properties": { "id": 100080, "name": "Paul Av/Bedford Park Blvd", "direction": "SW", "lat": 40.87463, "lon": -73.89154, "routes": "BX22, BX38, BX10, BX28, BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.89154, 40.87463 ] } }, -{ "type": "Feature", "properties": { "id": 100082, "name": "W 231 St/Riverdale Av", "direction": "SE", "lat": 40.88121, "lon": -73.90921, "routes": "BX20, BX7, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90921, 40.88121 ] } }, -{ "type": "Feature", "properties": { "id": 100084, "name": "W 231 St/Broadway", "direction": "E", "lat": 40.878696, "lon": -73.90441, "routes": "BX1, BX10, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.90441, 40.878696 ] } }, -{ "type": "Feature", "properties": { "id": 100085, "name": "W 231 St/Bailey Av", "direction": "E", "lat": 40.87803, "lon": -73.90263, "routes": "BX1, BX2, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90263, 40.87803 ] } }, -{ "type": "Feature", "properties": { "id": 100087, "name": "Heath Av/Summit Pl", "direction": "NE", "lat": 40.878323, "lon": -73.900955, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.900955, 40.878323 ] } }, -{ "type": "Feature", "properties": { "id": 100088, "name": "Sedgwick Av/Fort Independence St", "direction": "NE", "lat": 40.878666, "lon": -73.897766, "routes": "BXM3, BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.897766, 40.878666 ] } }, -{ "type": "Feature", "properties": { "id": 100089, "name": "Sedgwick Av/Giles Pl", "direction": "N", "lat": 40.8815, "lon": -73.89645, "routes": "BXM3, BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.89645, 40.8815 ] } }, -{ "type": "Feature", "properties": { "id": 100090, "name": "Sedgwick Av/Stevenson Pl 1", "direction": "E", "lat": 40.88291, "lon": -73.89436, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.89436, 40.88291 ] } }, -{ "type": "Feature", "properties": { "id": 100096, "name": "Grand Concourse/Van Cortlandt Av East", "direction": "SW", "lat": 40.876995, "lon": -73.88568, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.88568, 40.876995 ] } }, -{ "type": "Feature", "properties": { "id": 100098, "name": "Grand Concourse/Bedford Pk Blvd", "direction": "SW", "lat": 40.872032, "lon": -73.88821, "routes": "BX2, BXM4, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.88821, 40.872032 ] } }, -{ "type": "Feature", "properties": { "id": 100100, "name": "Grand Concourse/E 196 St", "direction": "SW", "lat": 40.868053, "lon": -73.89312, "routes": "BX2, BX1, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.89312, 40.868053 ] } }, -{ "type": "Feature", "properties": { "id": 100101, "name": "Grand Concourse/East Kingsbridge Rd", "direction": "SW", "lat": 40.865776, "lon": -73.89486, "routes": "BX1, BX2, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.89486, 40.865776 ] } }, -{ "type": "Feature", "properties": { "id": 100102, "name": "Grand Concourse/E 192 St", "direction": "SW", "lat": 40.864, "lon": -73.896255, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.896255, 40.864 ] } }, -{ "type": "Feature", "properties": { "id": 100103, "name": "Grand Concourse/E Fordham Rd", "direction": "SW", "lat": 40.86223, "lon": -73.89753, "routes": "BX2, BX1, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.89753, 40.86223 ] } }, -{ "type": "Feature", "properties": { "id": 100107, "name": "Grand Concourse/E 182 St", "direction": "SW", "lat": 40.85582, "lon": -73.90123, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.90123, 40.85582 ] } }, -{ "type": "Feature", "properties": { "id": 100108, "name": "Grand Concourse/E 181 St", "direction": "SW", "lat": 40.854275, "lon": -73.90243, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.90243, 40.854275 ] } }, -{ "type": "Feature", "properties": { "id": 100109, "name": "Grand Concourse/East Burnside Av", "direction": "SW", "lat": 40.852654, "lon": -73.90373, "routes": "BXM4, BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.90373, 40.852654 ] } }, -{ "type": "Feature", "properties": { "id": 100110, "name": "Grand Concourse/E 179 St", "direction": "SW", "lat": 40.85125, "lon": -73.90487, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.90487, 40.85125 ] } }, -{ "type": "Feature", "properties": { "id": 100112, "name": "Grand Concourse/Morris Av", "direction": "SW", "lat": 40.846912, "lon": -73.90902, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.90902, 40.846912 ] } }, -{ "type": "Feature", "properties": { "id": 100113, "name": "Grand Concourse/E 174 St", "direction": "SW", "lat": 40.84486, "lon": -73.91155, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91155, 40.84486 ] } }, -{ "type": "Feature", "properties": { "id": 100114, "name": "Grand Concourse/East Mount Eden Av", "direction": "S", "lat": 40.842903, "lon": -73.91231, "routes": "BX1, BXM4, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91231, 40.842903 ] } }, -{ "type": "Feature", "properties": { "id": 100115, "name": "Grand Concourse/E 172 St", "direction": "S", "lat": 40.840637, "lon": -73.91307, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91307, 40.840637 ] } }, -{ "type": "Feature", "properties": { "id": 100117, "name": "Grand Concourse/E Clarke Pl", "direction": "SW", "lat": 40.836746, "lon": -73.91585, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.91585, 40.836746 ] } }, -{ "type": "Feature", "properties": { "id": 100118, "name": "Grand Concourse/E 167 St", "direction": "SW", "lat": 40.83423, "lon": -73.918304, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.918304, 40.83423 ] } }, -{ "type": "Feature", "properties": { "id": 100119, "name": "Grand Concourse/Mcclellan St", "direction": "SW", "lat": 40.833256, "lon": -73.91921, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.91921, 40.833256 ] } }, -{ "type": "Feature", "properties": { "id": 100126, "name": "Melrose Av/E 158 St", "direction": "SW", "lat": 40.822018, "lon": -73.91506, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.91506, 40.822018 ] } }, -{ "type": "Feature", "properties": { "id": 100129, "name": "Melrose Av/E 152 St", "direction": "SW", "lat": 40.81793, "lon": -73.91703, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.91703, 40.81793 ] } }, -{ "type": "Feature", "properties": { "id": 100131, "name": "Grand Concourse/E 165 St", "direction": "SW", "lat": 40.831177, "lon": -73.9206, "routes": "BX2, BXM4, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.9206, 40.831177 ] } }, -{ "type": "Feature", "properties": { "id": 100132, "name": "Grand Concourse/E 163 St", "direction": "SW", "lat": 40.828358, "lon": -73.922104, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.922104, 40.828358 ] } }, -{ "type": "Feature", "properties": { "id": 100133, "name": "Grand Concourse/E 161 St", "direction": "SW", "lat": 40.82626, "lon": -73.92304, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.92304, 40.82626 ] } }, -{ "type": "Feature", "properties": { "id": 100134, "name": "Grand Concourse/E 158 St", "direction": "SW", "lat": 40.825134, "lon": -73.923805, "routes": "BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.923805, 40.825134 ] } }, -{ "type": "Feature", "properties": { "id": 100135, "name": "Grand Concourse/E 156 St", "direction": "S", "lat": 40.82311, "lon": -73.92463, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.92463, 40.82311 ] } }, -{ "type": "Feature", "properties": { "id": 100136, "name": "Grand Concourse/E 153 St", "direction": "SW", "lat": 40.82113, "lon": -73.92589, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.92589, 40.82113 ] } }, -{ "type": "Feature", "properties": { "id": 100138, "name": "Grand Concourse/E 149 St", "direction": "SW", "lat": 40.818703, "lon": -73.927284, "routes": "BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.927284, 40.818703 ] } }, -{ "type": "Feature", "properties": { "id": 100139, "name": "Grand Concourse/E 144 St", "direction": "S", "lat": 40.816193, "lon": -73.928406, "routes": "BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.928406, 40.816193 ] } }, -{ "type": "Feature", "properties": { "id": 100140, "name": "Grand Concourse/E 138 St", "direction": "SW", "lat": 40.813484, "lon": -73.93028, "routes": "BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.93028, 40.813484 ] } }, -{ "type": "Feature", "properties": { "id": 100148, "name": "University Av/George Washington Bridge", "direction": "NE", "lat": 40.84571, "lon": -73.92189, "routes": "BX3, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.92189, 40.84571 ] } }, -{ "type": "Feature", "properties": { "id": 100149, "name": "University Av/W 174 St", "direction": "NE", "lat": 40.84686, "lon": -73.92044, "routes": "BX36, BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.92044, 40.84686 ] } }, -{ "type": "Feature", "properties": { "id": 100151, "name": "University Av/W 176 St", "direction": "NE", "lat": 40.849216, "lon": -73.91702, "routes": "BX36, BX18B, BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.91702, 40.849216 ] } }, -{ "type": "Feature", "properties": { "id": 100152, "name": "University Av/West Tremont Av", "direction": "NE", "lat": 40.85027, "lon": -73.9155, "routes": "BX36, BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.9155, 40.85027 ] } }, -{ "type": "Feature", "properties": { "id": 100155, "name": "University Av/West Burnside Av", "direction": "NE", "lat": 40.854706, "lon": -73.91124, "routes": "BX40, BX3, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.91124, 40.854706 ] } }, -{ "type": "Feature", "properties": { "id": 100156, "name": "University Av/W 181 St", "direction": "N", "lat": 40.85735, "lon": -73.90957, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90957, 40.85735 ] } }, -{ "type": "Feature", "properties": { "id": 100157, "name": "University Av/W 183 St", "direction": "NE", "lat": 40.859695, "lon": -73.90762, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90762, 40.859695 ] } }, -{ "type": "Feature", "properties": { "id": 100159, "name": "University Av/West Fordham Rd", "direction": "NE", "lat": 40.862637, "lon": -73.904976, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.904976, 40.862637 ] } }, -{ "type": "Feature", "properties": { "id": 100161, "name": "University Av/W 190 St", "direction": "NE", "lat": 40.86552, "lon": -73.90303, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90303, 40.86552 ] } }, -{ "type": "Feature", "properties": { "id": 100162, "name": "University Av/W 192 St", "direction": "NE", "lat": 40.86722, "lon": -73.901764, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.901764, 40.86722 ] } }, -{ "type": "Feature", "properties": { "id": 100164, "name": "West Kingsbridge Rd/Sedgwick Av", "direction": "NW", "lat": 40.86954, "lon": -73.9036, "routes": "BX3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.9036, 40.86954 ] } }, -{ "type": "Feature", "properties": { "id": 100166, "name": "Sedgwick Av/W 197 St", "direction": "N", "lat": 40.872787, "lon": -73.90196, "routes": "BX3, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.90196, 40.872787 ] } }, -{ "type": "Feature", "properties": { "id": 100169, "name": "Fort Independence St/Giles Pl", "direction": "W", "lat": 40.87864, "lon": -73.898994, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.898994, 40.87864 ] } }, -{ "type": "Feature", "properties": { "id": 100170, "name": "Fort Independence St/Bailey Pl", "direction": "N", "lat": 40.880714, "lon": -73.89908, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89908, 40.880714 ] } }, -{ "type": "Feature", "properties": { "id": 100171, "name": "W 238 St/Orloff Av", "direction": "N", "lat": 40.883, "lon": -73.89777, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89777, 40.883 ] } }, -{ "type": "Feature", "properties": { "id": 100172, "name": "W 238 St/Bailey Av", "direction": "NW", "lat": 40.884296, "lon": -73.89827, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89827, 40.884296 ] } }, -{ "type": "Feature", "properties": { "id": 100173, "name": "W 238 St/Broadway", "direction": "W", "lat": 40.885086, "lon": -73.90044, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90044, 40.885086 ] } }, -{ "type": "Feature", "properties": { "id": 100176, "name": "W 238 St/Broadway", "direction": "E", "lat": 40.884968, "lon": -73.900475, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.900475, 40.884968 ] } }, -{ "type": "Feature", "properties": { "id": 100177, "name": "W 238 St/Bailey Av", "direction": "SE", "lat": 40.884068, "lon": -73.89823, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89823, 40.884068 ] } }, -{ "type": "Feature", "properties": { "id": 100178, "name": "W 238 St/Orloff Av", "direction": "SW", "lat": 40.882504, "lon": -73.89814, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89814, 40.882504 ] } }, -{ "type": "Feature", "properties": { "id": 100179, "name": "Fort Independence St/Bailey Pl", "direction": "S", "lat": 40.881016, "lon": -73.8992, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.8992, 40.881016 ] } }, -{ "type": "Feature", "properties": { "id": 100180, "name": "Fort Independence St/Heath Av", "direction": "S", "lat": 40.87897, "lon": -73.89969, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89969, 40.87897 ] } }, -{ "type": "Feature", "properties": { "id": 100183, "name": "Sedgwick Av/W 197 St", "direction": "S", "lat": 40.8722, "lon": -73.90233, "routes": "BX3, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.90233, 40.8722 ] } }, -{ "type": "Feature", "properties": { "id": 100187, "name": "University Av/W 192 St", "direction": "SW", "lat": 40.867104, "lon": -73.902084, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.902084, 40.867104 ] } }, -{ "type": "Feature", "properties": { "id": 100188, "name": "University Av/W 190 St", "direction": "SW", "lat": 40.865124, "lon": -73.90349, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90349, 40.865124 ] } }, -{ "type": "Feature", "properties": { "id": 100189, "name": "University Av/West Fordham Rd", "direction": "SW", "lat": 40.86286, "lon": -73.90492, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90492, 40.86286 ] } }, -{ "type": "Feature", "properties": { "id": 100191, "name": "University Av/W 183 St", "direction": "SW", "lat": 40.859352, "lon": -73.90807, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90807, 40.859352 ] } }, -{ "type": "Feature", "properties": { "id": 100195, "name": "University Av/West Tremont Av", "direction": "SW", "lat": 40.850235, "lon": -73.91601, "routes": "BX36, BX3, BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.91601, 40.850235 ] } }, -{ "type": "Feature", "properties": { "id": 100199, "name": "University Av/George Washington Bridge", "direction": "SW", "lat": 40.845314, "lon": -73.922554, "routes": "BX3, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.922554, 40.845314 ] } }, -{ "type": "Feature", "properties": { "id": 100204, "name": "Westchester Av/Saint Ann'S Av", "direction": "E", "lat": 40.816025, "lon": -73.91215, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.91215, 40.816025 ] } }, -{ "type": "Feature", "properties": { "id": 100206, "name": "Westchester Av/Jackson Av", "direction": "NE", "lat": 40.816162, "lon": -73.90832, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.90832, 40.816162 ] } }, -{ "type": "Feature", "properties": { "id": 100207, "name": "Westchester Av/E 156 St", "direction": "NE", "lat": 40.81783, "lon": -73.905426, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.905426, 40.81783 ] } }, -{ "type": "Feature", "properties": { "id": 100209, "name": "Westchester Av/Prospect Av", "direction": "NE", "lat": 40.819412, "lon": -73.90202, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.90202, 40.819412 ] } }, -{ "type": "Feature", "properties": { "id": 100211, "name": "Westchester Av/Rev J Polite Av", "direction": "NE", "lat": 40.82088, "lon": -73.89911, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.89911, 40.82088 ] } }, -{ "type": "Feature", "properties": { "id": 100212, "name": "Westchester Av/Intervale Av", "direction": "NE", "lat": 40.82194, "lon": -73.89709, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.89709, 40.82194 ] } }, -{ "type": "Feature", "properties": { "id": 100214, "name": "Westchester Av/Simpson St", "direction": "NE", "lat": 40.824005, "lon": -73.89312, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.89312, 40.824005 ] } }, -{ "type": "Feature", "properties": { "id": 100219, "name": "Westchester Av/Whitlock Av", "direction": "NE", "lat": 40.827496, "lon": -73.88628, "routes": "BX4, BX27, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.88628, 40.827496 ] } }, -{ "type": "Feature", "properties": { "id": 100221, "name": "Westchester Av/Elder Av", "direction": "E", "lat": 40.828514, "lon": -73.87932, "routes": "BX4, BX27, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.87932, 40.828514 ] } }, -{ "type": "Feature", "properties": { "id": 100223, "name": "Westchester Av/Manor Av", "direction": "E", "lat": 40.828938, "lon": -73.87656, "routes": "BX4, BX27, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.87656, 40.828938 ] } }, -{ "type": "Feature", "properties": { "id": 100224, "name": "Westchester Av/Morrison Av", "direction": "E", "lat": 40.82942, "lon": -73.87481, "routes": "BX4A, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.87481, 40.82942 ] } }, -{ "type": "Feature", "properties": { "id": 100227, "name": "Westchester Av/Saint Lawrence Av", "direction": "E", "lat": 40.83148, "lon": -73.86756, "routes": "BX4, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.86756, 40.83148 ] } }, -{ "type": "Feature", "properties": { "id": 100230, "name": "Westchester Av/White Plains Rd", "direction": "E", "lat": 40.83278, "lon": -73.86294, "routes": "BX4A, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.86294, 40.83278 ] } }, -{ "type": "Feature", "properties": { "id": 100232, "name": "Westchester Av/Pugsley Av", "direction": "E", "lat": 40.8335, "lon": -73.857925, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.857925, 40.8335 ] } }, -{ "type": "Feature", "properties": { "id": 100233, "name": "Westchester Av/Olmstead Av", "direction": "E", "lat": 40.833916, "lon": -73.85445, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.85445, 40.833916 ] } }, -{ "type": "Feature", "properties": { "id": 100234, "name": "Westchester Av/Castle Hill Av", "direction": "E", "lat": 40.834156, "lon": -73.85183, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.85183, 40.834156 ] } }, -{ "type": "Feature", "properties": { "id": 100235, "name": "Westchester Av/Zerega Av", "direction": "NE", "lat": 40.836704, "lon": -73.84672, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.84672, 40.836704 ] } }, -{ "type": "Feature", "properties": { "id": 100236, "name": "Westchester Av/Saint Peters Av", "direction": "NE", "lat": 40.83843, "lon": -73.84469, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.84469, 40.83843 ] } }, -{ "type": "Feature", "properties": { "id": 100239, "name": "Westchester Av/Saint Peters Av", "direction": "SW", "lat": 40.838696, "lon": -73.84455, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.84455, 40.838696 ] } }, -{ "type": "Feature", "properties": { "id": 100240, "name": "Westchester Av/Zerega Av", "direction": "SW", "lat": 40.83694, "lon": -73.84661, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.84661, 40.83694 ] } }, -{ "type": "Feature", "properties": { "id": 100242, "name": "Westchester Av/Castle Hill Av", "direction": "W", "lat": 40.834286, "lon": -73.85147, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.85147, 40.834286 ] } }, -{ "type": "Feature", "properties": { "id": 100243, "name": "Westchester Av/Olmstead Av", "direction": "W", "lat": 40.83401, "lon": -73.854454, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.854454, 40.83401 ] } }, -{ "type": "Feature", "properties": { "id": 100244, "name": "Westchester Av/Pugsley Av", "direction": "W", "lat": 40.833633, "lon": -73.8576, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.8576, 40.833633 ] } }, -{ "type": "Feature", "properties": { "id": 100245, "name": "Hugh Grant Circle/Cross Bronx Expwy Service Rd", "direction": "W", "lat": 40.833603, "lon": -73.86115, "routes": "BX11, BX4A, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.86115, 40.833603 ] } }, -{ "type": "Feature", "properties": { "id": 100246, "name": "Westchester Av/White Plains Rd", "direction": "W", "lat": 40.833122, "lon": -73.86253, "routes": "BX4, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.86253, 40.833122 ] } }, -{ "type": "Feature", "properties": { "id": 100249, "name": "Westchester Av/Saint Lawrence Av", "direction": "W", "lat": 40.83174, "lon": -73.867065, "routes": "BX4A, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.867065, 40.83174 ] } }, -{ "type": "Feature", "properties": { "id": 100253, "name": "Westchester Av/Morrison Av", "direction": "W", "lat": 40.82962, "lon": -73.8745, "routes": "BX4, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.8745, 40.82962 ] } }, -{ "type": "Feature", "properties": { "id": 100254, "name": "Westchester Av/Manor Av", "direction": "W", "lat": 40.829098, "lon": -73.87629, "routes": "BX4, BX4A, BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.87629, 40.829098 ] } }, -{ "type": "Feature", "properties": { "id": 100256, "name": "Westchester Av/Elder Av", "direction": "W", "lat": 40.82865, "lon": -73.87906, "routes": "BX27, BX4, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.87906, 40.82865 ] } }, -{ "type": "Feature", "properties": { "id": 100259, "name": "Westchester Av/Home St", "direction": "SW", "lat": 40.827446, "lon": -73.8866, "routes": "BX4, BX27, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.8866, 40.827446 ] } }, -{ "type": "Feature", "properties": { "id": 100260, "name": "Westchester Av/Hoe Av", "direction": "SW", "lat": 40.82537, "lon": -73.89061, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.89061, 40.82537 ] } }, -{ "type": "Feature", "properties": { "id": 100261, "name": "Westchester Av/Simpson St", "direction": "SW", "lat": 40.82431, "lon": -73.89277, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.89277, 40.82431 ] } }, -{ "type": "Feature", "properties": { "id": 100264, "name": "Westchester Av/E 163 St", "direction": "SW", "lat": 40.821182, "lon": -73.898796, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.898796, 40.821182 ] } }, -{ "type": "Feature", "properties": { "id": 100265, "name": "Westchester Av/Prospect Av", "direction": "SW", "lat": 40.819923, "lon": -73.90122, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.90122, 40.819923 ] } }, -{ "type": "Feature", "properties": { "id": 100267, "name": "Westchester Av/Tinton Av", "direction": "SW", "lat": 40.818207, "lon": -73.9048, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.9048, 40.818207 ] } }, -{ "type": "Feature", "properties": { "id": 100268, "name": "Westchester Av/Jackson Av", "direction": "SW", "lat": 40.81651, "lon": -73.907906, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.907906, 40.81651 ] } }, -{ "type": "Feature", "properties": { "id": 100270, "name": "Westchester Av/Saint Ann'S Av", "direction": "W", "lat": 40.816074, "lon": -73.91173, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.91173, 40.816074 ] } }, -{ "type": "Feature", "properties": { "id": 100273, "name": "Southern Blvd/Westchester Av", "direction": "S", "lat": 40.82437, "lon": -73.891945, "routes": "BX5, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.891945, 40.82437 ] } }, -{ "type": "Feature", "properties": { "id": 100276, "name": "Story Av/Colgate Av", "direction": "E", "lat": 40.82128, "lon": -73.87985, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.87985, 40.82128 ] } }, -{ "type": "Feature", "properties": { "id": 100277, "name": "Story Av/Elder Av", "direction": "E", "lat": 40.821594, "lon": -73.87773, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.87773, 40.821594 ] } }, -{ "type": "Feature", "properties": { "id": 100278, "name": "Story Av/Boynton Av", "direction": "E", "lat": 40.82179, "lon": -73.87606, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.87606, 40.82179 ] } }, -{ "type": "Feature", "properties": { "id": 100279, "name": "Story Av/Morrison Av", "direction": "E", "lat": 40.822193, "lon": -73.8731, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.8731, 40.822193 ] } }, -{ "type": "Feature", "properties": { "id": 100280, "name": "Story Av/Metcalf Av", "direction": "E", "lat": 40.822548, "lon": -73.87053, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.87053, 40.822548 ] } }, -{ "type": "Feature", "properties": { "id": 100281, "name": "Story Av/Noble Av", "direction": "E", "lat": 40.82284, "lon": -73.8683, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.8683, 40.82284 ] } }, -{ "type": "Feature", "properties": { "id": 100282, "name": "Story Av/Rosedale Av", "direction": "E", "lat": 40.82309, "lon": -73.86651, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.86651, 40.82309 ] } }, -{ "type": "Feature", "properties": { "id": 100284, "name": "Story Av/Thieriot Av", "direction": "E", "lat": 40.823673, "lon": -73.86211, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.86211, 40.823673 ] } }, -{ "type": "Feature", "properties": { "id": 100294, "name": "Bruckner Blvd/East Tremont Av", "direction": "NE", "lat": 40.83316, "lon": -73.82759, "routes": "BX5, Q50, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.82759, 40.83316 ] } }, -{ "type": "Feature", "properties": { "id": 100295, "name": "Bruckner Blvd/Logan Av", "direction": "NE", "lat": 40.834137, "lon": -73.82563, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82563, 40.834137 ] } }, -{ "type": "Feature", "properties": { "id": 100296, "name": "Bruckner Blvd/Kearney Av", "direction": "N", "lat": 40.83914, "lon": -73.82485, "routes": "BX5, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82485, 40.83914 ] } }, -{ "type": "Feature", "properties": { "id": 100297, "name": "Bruckner Blvd/Connell Pl", "direction": "N", "lat": 40.841106, "lon": -73.825066, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.825066, 40.841106 ] } }, -{ "type": "Feature", "properties": { "id": 100298, "name": "Macdonough Pl/Country Club Rd", "direction": "N", "lat": 40.842503, "lon": -73.82511, "routes": "BX5, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82511, 40.842503 ] } }, -{ "type": "Feature", "properties": { "id": 100299, "name": "Bruckner Blvd/Middletown Rd", "direction": "N", "lat": 40.845753, "lon": -73.82539, "routes": "BX24, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82539, 40.845753 ] } }, -{ "type": "Feature", "properties": { "id": 100304, "name": "Pelham Pkwy/Eastchester Rd", "direction": "W", "lat": 40.857838, "lon": -73.84431, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.84431, 40.857838 ] } }, -{ "type": "Feature", "properties": { "id": 100305, "name": "Pelham Pkwy/Seymour Av", "direction": "W", "lat": 40.85806, "lon": -73.84662, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.84662, 40.85806 ] } }, -{ "type": "Feature", "properties": { "id": 100306, "name": "Pelham Pkwy/Throop Av", "direction": "W", "lat": 40.858025, "lon": -73.851524, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.851524, 40.858025 ] } }, -{ "type": "Feature", "properties": { "id": 100317, "name": "Pelham Pkwy/Eastchester Rd", "direction": "E", "lat": 40.85727, "lon": -73.84393, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.84393, 40.85727 ] } }, -{ "type": "Feature", "properties": { "id": 100318, "name": "Pelham Pkwy/Stillwell Av", "direction": "E", "lat": 40.856476, "lon": -73.83881, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.83881, 40.856476 ] } }, -{ "type": "Feature", "properties": { "id": 100319, "name": "Pelham Pkwy/St Paul Av", "direction": "E", "lat": 40.855473, "lon": -73.8307, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.8307, 40.855473 ] } }, -{ "type": "Feature", "properties": { "id": 100322, "name": "Bruckner Blvd/Willow La", "direction": "S", "lat": 40.848934, "lon": -73.82804, "routes": "BX5, Q50, BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82804, 40.848934 ] } }, -{ "type": "Feature", "properties": { "id": 100323, "name": "Bruckner Blvd/Roberts Av", "direction": "SE", "lat": 40.846615, "lon": -73.82672, "routes": "BX5, BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82672, 40.846615 ] } }, -{ "type": "Feature", "properties": { "id": 100324, "name": "Bruckner Blvd/Middletown Rd", "direction": "S", "lat": 40.844906, "lon": -73.826195, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.826195, 40.844906 ] } }, -{ "type": "Feature", "properties": { "id": 100325, "name": "Bruckner Blvd/Jarvis Av", "direction": "S", "lat": 40.843136, "lon": -73.8263, "routes": "BXM8, BX24, Q50, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.8263, 40.843136 ] } }, -{ "type": "Feature", "properties": { "id": 100326, "name": "Bruckner Blvd/Coddington Av", "direction": "S", "lat": 40.84144, "lon": -73.826164, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.826164, 40.84144 ] } }, -{ "type": "Feature", "properties": { "id": 100328, "name": "Bruckner Blvd/Baisley Av", "direction": "S", "lat": 40.837135, "lon": -73.82592, "routes": "BXM8, Q50, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82592, 40.837135 ] } }, -{ "type": "Feature", "properties": { "id": 100329, "name": "Bruckner Blvd/Crosby Av", "direction": "SW", "lat": 40.8345, "lon": -73.82616, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82616, 40.8345 ] } }, -{ "type": "Feature", "properties": { "id": 100330, "name": "Bruckner Blvd/East Tremont Av", "direction": "SW", "lat": 40.832977, "lon": -73.82907, "routes": "Q50, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82907, 40.832977 ] } }, -{ "type": "Feature", "properties": { "id": 100331, "name": "Bruckner Blvd/Gifford Av", "direction": "SW", "lat": 40.831306, "lon": -73.831726, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.831726, 40.831306 ] } }, -{ "type": "Feature", "properties": { "id": 100332, "name": "Bruckner Blvd/Castle Hill Av", "direction": "W", "lat": 40.827717, "lon": -73.84988, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.84988, 40.827717 ] } }, -{ "type": "Feature", "properties": { "id": 100337, "name": "Story Av/Bolton Av", "direction": "W", "lat": 40.824165, "lon": -73.85967, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.85967, 40.824165 ] } }, -{ "type": "Feature", "properties": { "id": 100339, "name": "Story Av/Taylor Av", "direction": "W", "lat": 40.823532, "lon": -73.864, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.864, 40.823532 ] } }, -{ "type": "Feature", "properties": { "id": 100340, "name": "Story Av/Rosedale Av", "direction": "W", "lat": 40.82315, "lon": -73.86692, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.86692, 40.82315 ] } }, -{ "type": "Feature", "properties": { "id": 100341, "name": "Story Av/Soundview Av", "direction": "W", "lat": 40.822975, "lon": -73.868065, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.868065, 40.822975 ] } }, -{ "type": "Feature", "properties": { "id": 100342, "name": "Story Av/Fteley Av", "direction": "W", "lat": 40.82266, "lon": -73.870544, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.870544, 40.82266 ] } }, -{ "type": "Feature", "properties": { "id": 100343, "name": "Story Av/Morrison Av", "direction": "W", "lat": 40.82226, "lon": -73.873405, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.873405, 40.82226 ] } }, -{ "type": "Feature", "properties": { "id": 100344, "name": "Story Av/Boynton Av", "direction": "W", "lat": 40.821762, "lon": -73.87719, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.87719, 40.821762 ] } }, -{ "type": "Feature", "properties": { "id": 100347, "name": "Story Av/Bronx River Av", "direction": "W", "lat": 40.82111, "lon": -73.882065, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.882065, 40.82111 ] } }, -{ "type": "Feature", "properties": { "id": 100363, "name": "E 161 St/River Av", "direction": "E", "lat": 40.827793, "lon": -73.926094, "routes": "BX6, BX13, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.926094, 40.827793 ] } }, -{ "type": "Feature", "properties": { "id": 100366, "name": "E 161 St/Concourse Village East", "direction": "E", "lat": 40.825344, "lon": -73.9181, "routes": "BX13, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.9181, 40.825344 ] } }, -{ "type": "Feature", "properties": { "id": 100368, "name": "E 161 St/Melrose Av", "direction": "E", "lat": 40.82404, "lon": -73.91364, "routes": "BX13, BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.91364, 40.82404 ] } }, -{ "type": "Feature", "properties": { "id": 100369, "name": "Elton Av/E 161 St", "direction": "E", "lat": 40.82372, "lon": -73.91171, "routes": "BX6, BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.91171, 40.82372 ] } }, -{ "type": "Feature", "properties": { "id": 100370, "name": "E 163 St/3 Av", "direction": "E", "lat": 40.824062, "lon": -73.90893, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.90893, 40.824062 ] } }, -{ "type": "Feature", "properties": { "id": 100373, "name": "E 163 St/Tinton Av", "direction": "E", "lat": 40.822517, "lon": -73.90275, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.90275, 40.822517 ] } }, -{ "type": "Feature", "properties": { "id": 100374, "name": "E 163 St/Prospect Av", "direction": "E", "lat": 40.82189, "lon": -73.90019, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.90019, 40.82189 ] } }, -{ "type": "Feature", "properties": { "id": 100376, "name": "E 163 St/Westchester Av", "direction": "E", "lat": 40.820908, "lon": -73.8985, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.8985, 40.820908 ] } }, -{ "type": "Feature", "properties": { "id": 100379, "name": "E 163 St/Fox St", "direction": "E", "lat": 40.82091, "lon": -73.893, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.893, 40.82091 ] } }, -{ "type": "Feature", "properties": { "id": 100382, "name": "Hunts Point Av/Seneca Av", "direction": "SE", "lat": 40.819275, "lon": -73.88969, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.88969, 40.819275 ] } }, -{ "type": "Feature", "properties": { "id": 100384, "name": "Hunts Point Av/Coster St", "direction": "SE", "lat": 40.81607, "lon": -73.88758, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.88758, 40.81607 ] } }, -{ "type": "Feature", "properties": { "id": 100385, "name": "Spofford Av/Bryant Av", "direction": "E", "lat": 40.814587, "lon": -73.88512, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.88512, 40.814587 ] } }, -{ "type": "Feature", "properties": { "id": 100415, "name": "Hunts Point Av/Spofford Av", "direction": "NW", "lat": 40.81465, "lon": -73.885895, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.885895, 40.81465 ] } }, -{ "type": "Feature", "properties": { "id": 100416, "name": "Hunts Point Av/Faile St", "direction": "NW", "lat": 40.815914, "lon": -73.88721, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.88721, 40.815914 ] } }, -{ "type": "Feature", "properties": { "id": 100419, "name": "Hunts Point Av/Seneca Av", "direction": "NW", "lat": 40.81892, "lon": -73.88932, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.88932, 40.81892 ] } }, -{ "type": "Feature", "properties": { "id": 100424, "name": "E 163 St/Westchester Av", "direction": "W", "lat": 40.820972, "lon": -73.89885, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.89885, 40.820972 ] } }, -{ "type": "Feature", "properties": { "id": 100425, "name": "E 163 St/Prospect Av", "direction": "W", "lat": 40.82231, "lon": -73.90107, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.90107, 40.82231 ] } }, -{ "type": "Feature", "properties": { "id": 100428, "name": "E 163 St/Trinity Av", "direction": "W", "lat": 40.823544, "lon": -73.906235, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.906235, 40.823544 ] } }, -{ "type": "Feature", "properties": { "id": 100431, "name": "E 161 St/Melrose Av", "direction": "W", "lat": 40.824406, "lon": -73.914215, "routes": "BX13, BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.914215, 40.824406 ] } }, -{ "type": "Feature", "properties": { "id": 100449, "name": "Broadway/W 225 St", "direction": "NE", "lat": 40.8749, "lon": -73.9092, "routes": "BX7, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.9092, 40.8749 ] } }, -{ "type": "Feature", "properties": { "id": 100450, "name": "Broadway/W 228 St", "direction": "NE", "lat": 40.875698, "lon": -73.908195, "routes": "BX9, BX7, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.908195, 40.875698 ] } }, -{ "type": "Feature", "properties": { "id": 100451, "name": "Broadway/Exterior St", "direction": "NE", "lat": 40.87673, "lon": -73.90643, "routes": "BX9, BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.90643, 40.87673 ] } }, -{ "type": "Feature", "properties": { "id": 100459, "name": "Henry Hudson Pkwy East/W 246 St", "direction": "N", "lat": 40.893963, "lon": -73.907906, "routes": "BX7, BXM1, BXM18, BX10, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.907906, 40.893963 ] } }, -{ "type": "Feature", "properties": { "id": 100460, "name": "Henry Hudson Pkwy East /W 250 St", "direction": "N", "lat": 40.897736, "lon": -73.90758, "routes": "BX7, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90758, 40.897736 ] } }, -{ "type": "Feature", "properties": { "id": 100461, "name": "Henry Hudson Pkwy East/W 252 St", "direction": "NE", "lat": 40.89929, "lon": -73.90666, "routes": "BXM1, BX7, BX10, BXM2, BXM18" }, "geometry": { "type": "Point", "coordinates": [ -73.90666, 40.89929 ] } }, -{ "type": "Feature", "properties": { "id": 100462, "name": "Riverdale Av/W 254 St", "direction": "NE", "lat": 40.901962, "lon": -73.90586, "routes": "BX10, BXM18, BX7, BXM1, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.90586, 40.901962 ] } }, -{ "type": "Feature", "properties": { "id": 100463, "name": "Riverdale Av/W 256 St", "direction": "N", "lat": 40.90431, "lon": -73.90484, "routes": "BXM2, BXM1, BX7, BX10, BXM18" }, "geometry": { "type": "Point", "coordinates": [ -73.90484, 40.90431 ] } }, -{ "type": "Feature", "properties": { "id": 100464, "name": "Riverdale Av/W 259 St", "direction": "N", "lat": 40.90714, "lon": -73.90391, "routes": "BX7, BXM18, BX10, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90391, 40.90714 ] } }, -{ "type": "Feature", "properties": { "id": 100465, "name": "Riverdale Av/W 260 St", "direction": "N", "lat": 40.90871, "lon": -73.90354, "routes": "BX7, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90354, 40.90871 ] } }, -{ "type": "Feature", "properties": { "id": 100466, "name": "Riverdale Av/W 261 St", "direction": "N", "lat": 40.910397, "lon": -73.90303, "routes": "BXM1, BXM18, BX7, BX10, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.90303, 40.910397 ] } }, -{ "type": "Feature", "properties": { "id": 100467, "name": "Riverdale Av/W 263 St", "direction": "N", "lat": 40.912354, "lon": -73.902534, "routes": "BXM1, BXM18, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.902534, 40.912354 ] } }, -{ "type": "Feature", "properties": { "id": 100469, "name": "Riverdale Av/W 261 St", "direction": "S", "lat": 40.910225, "lon": -73.90327, "routes": "BX10, BX7, BXM18, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90327, 40.910225 ] } }, -{ "type": "Feature", "properties": { "id": 100470, "name": "Riverdale Av/W 260 St", "direction": "S", "lat": 40.90849, "lon": -73.903786, "routes": "BX7, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.903786, 40.90849 ] } }, -{ "type": "Feature", "properties": { "id": 100471, "name": "Riverdale Av/W 259 St", "direction": "S", "lat": 40.906532, "lon": -73.90431, "routes": "BXM1, BX10, BXM18, BX7, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.90431, 40.906532 ] } }, -{ "type": "Feature", "properties": { "id": 100472, "name": "Riverdale Av/W 256 St", "direction": "S", "lat": 40.903915, "lon": -73.905205, "routes": "BXM1, BXM18, BX7, BX10, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.905205, 40.903915 ] } }, -{ "type": "Feature", "properties": { "id": 100473, "name": "Riverdale Av/W 254 St", "direction": "SW", "lat": 40.901894, "lon": -73.90607, "routes": "BXM1, BX7, BXM18, BXM2, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90607, 40.901894 ] } }, -{ "type": "Feature", "properties": { "id": 100474, "name": "Henry Hudson Pkwy West/W 252 St", "direction": "SW", "lat": 40.89901, "lon": -73.90778, "routes": "BX7, BXM2, BXM18, BX10, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90778, 40.89901 ] } }, -{ "type": "Feature", "properties": { "id": 100475, "name": "Henry Hudson Pkwy West/W 249 St", "direction": "S", "lat": 40.897, "lon": -73.908295, "routes": "BX10, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.908295, 40.897 ] } }, -{ "type": "Feature", "properties": { "id": 100482, "name": "Kingsbridge Av/W 230 St", "direction": "SW", "lat": 40.87846, "lon": -73.90798, "routes": "BX7, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.90798, 40.87846 ] } }, -{ "type": "Feature", "properties": { "id": 100483, "name": "W 230 St/Broadway", "direction": "SE", "lat": 40.876766, "lon": -73.9068, "routes": "BXM18, BX20, BX7, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.9068, 40.876766 ] } }, -{ "type": "Feature", "properties": { "id": 100484, "name": "Broadway/W 228 St", "direction": "SW", "lat": 40.87575, "lon": -73.90825, "routes": "BX9, BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.90825, 40.87575 ] } }, -{ "type": "Feature", "properties": { "id": 100485, "name": "Broadway/W 225 St", "direction": "SW", "lat": 40.87436, "lon": -73.91019, "routes": "BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.91019, 40.87436 ] } }, -{ "type": "Feature", "properties": { "id": 100492, "name": "Williamsbridge Rd/Eastchester Rd", "direction": "NW", "lat": 40.84444, "lon": -73.84605, "routes": "BX8, BX24, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84605, 40.84444 ] } }, -{ "type": "Feature", "properties": { "id": 100493, "name": "Williamsbridge Rd/Pierce Av", "direction": "NW", "lat": 40.847385, "lon": -73.84917, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.84917, 40.847385 ] } }, -{ "type": "Feature", "properties": { "id": 100494, "name": "Williamsbridge Rd/Morris Park Av", "direction": "NW", "lat": 40.850224, "lon": -73.85117, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85117, 40.850224 ] } }, -{ "type": "Feature", "properties": { "id": 100495, "name": "Williamsbridge Rd/Rhinelander Av", "direction": "NW", "lat": 40.85259, "lon": -73.85302, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85302, 40.85259 ] } }, -{ "type": "Feature", "properties": { "id": 100496, "name": "Williamsbridge Rd/Neill Av", "direction": "NW", "lat": 40.85453, "lon": -73.85453, "routes": "BX90, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85453, 40.85453 ] } }, -{ "type": "Feature", "properties": { "id": 100499, "name": "Williamsbridge Rd/Astor Av", "direction": "N", "lat": 40.85958, "lon": -73.85722, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85722, 40.85958 ] } }, -{ "type": "Feature", "properties": { "id": 100500, "name": "Williamsbridge Rd/Mace Av", "direction": "NW", "lat": 40.862923, "lon": -73.85789, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85789, 40.862923 ] } }, -{ "type": "Feature", "properties": { "id": 100501, "name": "Williamsbridge Rd/Allerton Av", "direction": "NW", "lat": 40.86536, "lon": -73.85942, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85942, 40.86536 ] } }, -{ "type": "Feature", "properties": { "id": 100502, "name": "Williamsbridge Rd/Boston Rd", "direction": "NW", "lat": 40.86706, "lon": -73.86095, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86095, 40.86706 ] } }, -{ "type": "Feature", "properties": { "id": 100504, "name": "Bronxwood Av/Adee Av", "direction": "N", "lat": 40.86947, "lon": -73.86131, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86131, 40.86947 ] } }, -{ "type": "Feature", "properties": { "id": 100505, "name": "Bronxwood Av/Burke Av", "direction": "N", "lat": 40.87168, "lon": -73.86125, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86125, 40.87168 ] } }, -{ "type": "Feature", "properties": { "id": 100506, "name": "Bronxwood Av/Duncan St", "direction": "N", "lat": 40.873432, "lon": -73.86118, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86118, 40.873432 ] } }, -{ "type": "Feature", "properties": { "id": 100508, "name": "Bronxwood Av/Tilden St", "direction": "NE", "lat": 40.876747, "lon": -73.85968, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85968, 40.876747 ] } }, -{ "type": "Feature", "properties": { "id": 100510, "name": "Bronxwood Av/E 216 St", "direction": "NE", "lat": 40.879906, "lon": -73.85794, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85794, 40.879906 ] } }, -{ "type": "Feature", "properties": { "id": 100511, "name": "Bronxwood Av/E 218 St", "direction": "NE", "lat": 40.8813, "lon": -73.85717, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85717, 40.8813 ] } }, -{ "type": "Feature", "properties": { "id": 100513, "name": "Bronxwood Av/E 222 St", "direction": "NE", "lat": 40.88415, "lon": -73.8556, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.8556, 40.88415 ] } }, -{ "type": "Feature", "properties": { "id": 100515, "name": "E 226 St/Bronxwood Av", "direction": "W", "lat": 40.886864, "lon": -73.85472, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85472, 40.886864 ] } }, -{ "type": "Feature", "properties": { "id": 100517, "name": "E 226 St/White Plains Rd", "direction": "W", "lat": 40.888496, "lon": -73.85988, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85988, 40.888496 ] } }, -{ "type": "Feature", "properties": { "id": 100522, "name": "Bronxwood Av/E 222 St", "direction": "SW", "lat": 40.88356, "lon": -73.85619, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85619, 40.88356 ] } }, -{ "type": "Feature", "properties": { "id": 100524, "name": "Bronxwood Av/E 218 St", "direction": "SW", "lat": 40.880775, "lon": -73.85773, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85773, 40.880775 ] } }, -{ "type": "Feature", "properties": { "id": 100525, "name": "Bronxwood Av/E 216 St", "direction": "SW", "lat": 40.87937, "lon": -73.858505, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.858505, 40.87937 ] } }, -{ "type": "Feature", "properties": { "id": 100527, "name": "Bronxwood Av/Tilden St", "direction": "SW", "lat": 40.876534, "lon": -73.86008, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86008, 40.876534 ] } }, -{ "type": "Feature", "properties": { "id": 100528, "name": "Bronxwood Av/East Gun Hill Rd", "direction": "SW", "lat": 40.87566, "lon": -73.86056, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86056, 40.87566 ] } }, -{ "type": "Feature", "properties": { "id": 100529, "name": "Bronxwood Av/Bartholdi St", "direction": "S", "lat": 40.873344, "lon": -73.86145, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86145, 40.873344 ] } }, -{ "type": "Feature", "properties": { "id": 100530, "name": "Bronxwood Av/Burke Av", "direction": "S", "lat": 40.870983, "lon": -73.86151, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86151, 40.870983 ] } }, -{ "type": "Feature", "properties": { "id": 100531, "name": "Bronxwood Av/Adee Av", "direction": "S", "lat": 40.869255, "lon": -73.861565, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.861565, 40.869255 ] } }, -{ "type": "Feature", "properties": { "id": 100533, "name": "Williamsbridge Rd/Boston Rd", "direction": "SE", "lat": 40.86678, "lon": -73.86095, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86095, 40.86678 ] } }, -{ "type": "Feature", "properties": { "id": 100534, "name": "Williamsbridge Rd/Allerton Av", "direction": "SE", "lat": 40.865654, "lon": -73.85994, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85994, 40.865654 ] } }, -{ "type": "Feature", "properties": { "id": 100535, "name": "Williamsbridge Rd/Mace Av", "direction": "SE", "lat": 40.862717, "lon": -73.85802, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85802, 40.862717 ] } }, -{ "type": "Feature", "properties": { "id": 100536, "name": "Williamsbridge Rd/Astor Av", "direction": "SE", "lat": 40.85937, "lon": -73.857414, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.857414, 40.85937 ] } }, -{ "type": "Feature", "properties": { "id": 100537, "name": "Williamsbridge Rd/Pelham Pkwy North", "direction": "SE", "lat": 40.85767, "lon": -73.856514, "routes": "BX90, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.856514, 40.85767 ] } }, -{ "type": "Feature", "properties": { "id": 100538, "name": "Williamsbridge Rd/Pelham Pkwy South", "direction": "SE", "lat": 40.856632, "lon": -73.85609, "routes": "BX8, BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.85609, 40.856632 ] } }, -{ "type": "Feature", "properties": { "id": 100539, "name": "Williamsbridge Rd/Neill Av", "direction": "SE", "lat": 40.85386, "lon": -73.85429, "routes": "BX90, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85429, 40.85386 ] } }, -{ "type": "Feature", "properties": { "id": 100540, "name": "Williamsbridge Rd/Rhinelander Av", "direction": "SE", "lat": 40.85212, "lon": -73.85291, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85291, 40.85212 ] } }, -{ "type": "Feature", "properties": { "id": 100541, "name": "Williamsbridge Rd/Morris Park Av", "direction": "SE", "lat": 40.85035, "lon": -73.8515, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.8515, 40.85035 ] } }, -{ "type": "Feature", "properties": { "id": 100542, "name": "Williamsbridge Rd/Pierce Av", "direction": "SE", "lat": 40.84691, "lon": -73.84906, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.84906, 40.84691 ] } }, -{ "type": "Feature", "properties": { "id": 100543, "name": "Williamsbridge Rd/Silver St", "direction": "SE", "lat": 40.844074, "lon": -73.845985, "routes": "BX24, BX31, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.845985, 40.844074 ] } }, -{ "type": "Feature", "properties": { "id": 100558, "name": "E 180 St/Boston Rd", "direction": "NW", "lat": 40.84268, "lon": -73.87825, "routes": "BX42, BX40, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.87825, 40.84268 ] } }, -{ "type": "Feature", "properties": { "id": 100559, "name": "E 180 St/Daly Av", "direction": "NW", "lat": 40.844776, "lon": -73.88178, "routes": "BX40, BX9, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.88178, 40.844776 ] } }, -{ "type": "Feature", "properties": { "id": 100560, "name": "E 180 St/Crotona Pkwy", "direction": "NW", "lat": 40.845818, "lon": -73.883965, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.883965, 40.845818 ] } }, -{ "type": "Feature", "properties": { "id": 100561, "name": "Southern Blvd/Bronx Park South", "direction": "N", "lat": 40.847687, "lon": -73.883125, "routes": "BX9, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.883125, 40.847687 ] } }, -{ "type": "Feature", "properties": { "id": 100562, "name": "Southern Blvd/E 183 St", "direction": "N", "lat": 40.851173, "lon": -73.88217, "routes": "BX19, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.88217, 40.851173 ] } }, -{ "type": "Feature", "properties": { "id": 100563, "name": "Southern Blvd/E 187 St", "direction": "N", "lat": 40.853214, "lon": -73.88158, "routes": "BX9, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88158, 40.853214 ] } }, -{ "type": "Feature", "properties": { "id": 100564, "name": "Southern Blvd/E 189 St", "direction": "N", "lat": 40.856407, "lon": -73.880684, "routes": "BX19, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.880684, 40.856407 ] } }, -{ "type": "Feature", "properties": { "id": 100565, "name": "East Fordham Rd/Camberleng Av", "direction": "W", "lat": 40.858135, "lon": -73.88299, "routes": "BX12, BX17, BX22, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.88299, 40.858135 ] } }, -{ "type": "Feature", "properties": { "id": 100567, "name": "Eastfordham Rd/Bathgate Av", "direction": "NW", "lat": 40.85985, "lon": -73.88765, "routes": "BX9, BX12, BX17, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.88765, 40.85985 ] } }, -{ "type": "Feature", "properties": { "id": 100571, "name": "East Kingsbridge Rd/E 192 St", "direction": "N", "lat": 40.863823, "lon": -73.894196, "routes": "BX9, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.894196, 40.863823 ] } }, -{ "type": "Feature", "properties": { "id": 100573, "name": "East Kingsbridge Rd/Morris Av", "direction": "NW", "lat": 40.867294, "lon": -73.89687, "routes": "BX22, BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.89687, 40.867294 ] } }, -{ "type": "Feature", "properties": { "id": 100576, "name": "West Kingsbridge Rd/Kingsbridge Terr", "direction": "NW", "lat": 40.870346, "lon": -73.90424, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90424, 40.870346 ] } }, -{ "type": "Feature", "properties": { "id": 100579, "name": "W 225 St/Broadway", "direction": "NW", "lat": 40.874485, "lon": -73.9094, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.9094, 40.874485 ] } }, -{ "type": "Feature", "properties": { "id": 100582, "name": "Broadway/W 231 St", "direction": "NE", "lat": 40.878788, "lon": -73.90485, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90485, 40.878788 ] } }, -{ "type": "Feature", "properties": { "id": 100583, "name": "Broadway/W 234 St", "direction": "NE", "lat": 40.881535, "lon": -73.90279, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90279, 40.881535 ] } }, -{ "type": "Feature", "properties": { "id": 100585, "name": "Broadway/W 238 St", "direction": "NE", "lat": 40.884968, "lon": -73.900635, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.900635, 40.884968 ] } }, -{ "type": "Feature", "properties": { "id": 100586, "name": "Broadway/Van Cortlandt Park South", "direction": "NE", "lat": 40.886375, "lon": -73.89971, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89971, 40.886375 ] } }, -{ "type": "Feature", "properties": { "id": 100587, "name": "Broadway/W 242 St", "direction": "NE", "lat": 40.889763, "lon": -73.897934, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.897934, 40.889763 ] } }, -{ "type": "Feature", "properties": { "id": 100588, "name": "Broadway/W 246 St", "direction": "NE", "lat": 40.89205, "lon": -73.896965, "routes": "BX9, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.896965, 40.89205 ] } }, -{ "type": "Feature", "properties": { "id": 100589, "name": "Broadway/W 251 St", "direction": "N", "lat": 40.895683, "lon": -73.89664, "routes": "BX9, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89664, 40.895683 ] } }, -{ "type": "Feature", "properties": { "id": 100590, "name": "Broadway/Lake View Pl", "direction": "N", "lat": 40.8985, "lon": -73.89695, "routes": "BXM3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89695, 40.8985 ] } }, -{ "type": "Feature", "properties": { "id": 100591, "name": "Broadway/W 254 St", "direction": "N", "lat": 40.901356, "lon": -73.89667, "routes": "BX9, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89667, 40.901356 ] } }, -{ "type": "Feature", "properties": { "id": 100592, "name": "Broadway/Mosholu Av", "direction": "N", "lat": 40.9042, "lon": -73.89634, "routes": "BXM3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89634, 40.9042 ] } }, -{ "type": "Feature", "properties": { "id": 100594, "name": "Broadway/W 260 St", "direction": "N", "lat": 40.907417, "lon": -73.89641, "routes": "BXM3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89641, 40.907417 ] } }, -{ "type": "Feature", "properties": { "id": 100595, "name": "Broadway/W 262 St", "direction": "N", "lat": 40.91008, "lon": -73.89649, "routes": "BXM3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89649, 40.91008 ] } }, -{ "type": "Feature", "properties": { "id": 100606, "name": "Riverdale Av/W 263 St", "direction": "N", "lat": 40.912376, "lon": -73.902534, "routes": "BX10, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.902534, 40.912376 ] } }, -{ "type": "Feature", "properties": { "id": 100607, "name": "Riverdale Av/W 263 St", "direction": "S", "lat": 40.91236, "lon": -73.9027, "routes": "BX10, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.9027, 40.91236 ] } }, -{ "type": "Feature", "properties": { "id": 100608, "name": "Broadway/W 262 St", "direction": "S", "lat": 40.910103, "lon": -73.89673, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89673, 40.910103 ] } }, -{ "type": "Feature", "properties": { "id": 100609, "name": "Broadway/W 260 St", "direction": "S", "lat": 40.907173, "lon": -73.89667, "routes": "BXM3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89667, 40.907173 ] } }, -{ "type": "Feature", "properties": { "id": 100610, "name": "Broadway/Mosholu Av", "direction": "S", "lat": 40.904243, "lon": -73.89654, "routes": "BX9, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89654, 40.904243 ] } }, -{ "type": "Feature", "properties": { "id": 100612, "name": "Broadway/W 254 St", "direction": "S", "lat": 40.90117, "lon": -73.89691, "routes": "BXM3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89691, 40.90117 ] } }, -{ "type": "Feature", "properties": { "id": 100613, "name": "Broadway/Lake View Pl", "direction": "S", "lat": 40.898666, "lon": -73.89724, "routes": "BX9, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89724, 40.898666 ] } }, -{ "type": "Feature", "properties": { "id": 100614, "name": "Broadway/W 251 St", "direction": "S", "lat": 40.895878, "lon": -73.89686, "routes": "BXM3, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89686, 40.895878 ] } }, -{ "type": "Feature", "properties": { "id": 100615, "name": "Broadway/W 246 St", "direction": "SW", "lat": 40.892235, "lon": -73.897156, "routes": "BX9, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.897156, 40.892235 ] } }, -{ "type": "Feature", "properties": { "id": 100616, "name": "Broadway/W 242 St", "direction": "SW", "lat": 40.890026, "lon": -73.89825, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89825, 40.890026 ] } }, -{ "type": "Feature", "properties": { "id": 100617, "name": "Broadway/W 240 St", "direction": "SW", "lat": 40.886684, "lon": -73.89992, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89992, 40.886684 ] } }, -{ "type": "Feature", "properties": { "id": 100618, "name": "Broadway/W 238 St", "direction": "SW", "lat": 40.885242, "lon": -73.900665, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.900665, 40.885242 ] } }, -{ "type": "Feature", "properties": { "id": 100620, "name": "Broadway/W 234 St", "direction": "SW", "lat": 40.881798, "lon": -73.902824, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.902824, 40.881798 ] } }, -{ "type": "Feature", "properties": { "id": 100621, "name": "Broadway/W 231 St", "direction": "SW", "lat": 40.87906, "lon": -73.90477, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90477, 40.87906 ] } }, -{ "type": "Feature", "properties": { "id": 100624, "name": "W 225 St/Broadway", "direction": "SE", "lat": 40.874275, "lon": -73.90938, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90938, 40.874275 ] } }, -{ "type": "Feature", "properties": { "id": 100626, "name": "West Kingsbridge Rd/Heath Av", "direction": "SE", "lat": 40.87259, "lon": -73.90483, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90483, 40.87259 ] } }, -{ "type": "Feature", "properties": { "id": 100627, "name": "West Kingsbridge Rd/Kingsbridge Terr", "direction": "S", "lat": 40.87042, "lon": -73.90458, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90458, 40.87042 ] } }, -{ "type": "Feature", "properties": { "id": 100629, "name": "West Kingsbridge Rd/University Av", "direction": "E", "lat": 40.868263, "lon": -73.90123, "routes": "BX3, BX9, BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90123, 40.868263 ] } }, -{ "type": "Feature", "properties": { "id": 100630, "name": "West Kingsbridge Rd/Jerome Av", "direction": "E", "lat": 40.86743, "lon": -73.89767, "routes": "BX9, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89767, 40.86743 ] } }, -{ "type": "Feature", "properties": { "id": 100631, "name": "East Kingsbridge Rd/Grand Concourse", "direction": "SE", "lat": 40.86585, "lon": -73.89427, "routes": "BX38, BX9, BX28, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89427, 40.86585 ] } }, -{ "type": "Feature", "properties": { "id": 100632, "name": "East Kingsbridge Rd/E 192 St", "direction": "S", "lat": 40.863724, "lon": -73.89436, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89436, 40.863724 ] } }, -{ "type": "Feature", "properties": { "id": 100633, "name": "East Kingsbridge Rd/E Fordham Rd", "direction": "SE", "lat": 40.862087, "lon": -73.893936, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.893936, 40.862087 ] } }, -{ "type": "Feature", "properties": { "id": 100636, "name": "East Fordham Rd/Bathgate Av", "direction": "SE", "lat": 40.8596, "lon": -73.88766, "routes": "BX12, BX9, BX22, BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.88766, 40.8596 ] } }, -{ "type": "Feature", "properties": { "id": 100640, "name": "Southern Blvd/East Fordham Rd", "direction": "S", "lat": 40.85625, "lon": -73.880974, "routes": "BX19, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.880974, 40.85625 ] } }, -{ "type": "Feature", "properties": { "id": 100641, "name": "Southern Blvd/E 187 St", "direction": "S", "lat": 40.853172, "lon": -73.88185, "routes": "BX9, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88185, 40.853172 ] } }, -{ "type": "Feature", "properties": { "id": 100642, "name": "Southern Blvd/E 183 St", "direction": "S", "lat": 40.850918, "lon": -73.882484, "routes": "BX9, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.882484, 40.850918 ] } }, -{ "type": "Feature", "properties": { "id": 100643, "name": "Southern Blvd/E 182 St", "direction": "S", "lat": 40.847977, "lon": -73.88334, "routes": "BX19, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.88334, 40.847977 ] } }, -{ "type": "Feature", "properties": { "id": 100644, "name": "E 180 St/Mohegan Av", "direction": "SE", "lat": 40.845562, "lon": -73.88374, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.88374, 40.845562 ] } }, -{ "type": "Feature", "properties": { "id": 100645, "name": "E 180 St/Daly Av", "direction": "SE", "lat": 40.844402, "lon": -73.88155, "routes": "BX42, BX9, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.88155, 40.844402 ] } }, -{ "type": "Feature", "properties": { "id": 100646, "name": "Boston Rd/E 180 St", "direction": "SW", "lat": 40.84256, "lon": -73.878334, "routes": "Q44+, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.878334, 40.84256 ] } }, -{ "type": "Feature", "properties": { "id": 100647, "name": "Boston Rd/E 178 St", "direction": "SW", "lat": 40.840916, "lon": -73.87948, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.87948, 40.840916 ] } }, -{ "type": "Feature", "properties": { "id": 100652, "name": "Bainbridge Av/Reservoir Oval E", "direction": "N", "lat": 40.87731, "lon": -73.87968, "routes": "BX28, BX16, BX38, BX10, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.87968, 40.87731 ] } }, -{ "type": "Feature", "properties": { "id": 100654, "name": "East Gun Hill Rd/Bainbridge Av", "direction": "NW", "lat": 40.881348, "lon": -73.87883, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.87883, 40.881348 ] } }, -{ "type": "Feature", "properties": { "id": 100655, "name": "East Gun Hill Rd/De Kalb Av", "direction": "NW", "lat": 40.882484, "lon": -73.8807, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.8807, 40.882484 ] } }, -{ "type": "Feature", "properties": { "id": 100657, "name": "Jerome Av/E 205 St", "direction": "SW", "lat": 40.876457, "lon": -73.8881, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.8881, 40.876457 ] } }, -{ "type": "Feature", "properties": { "id": 100675, "name": "Kappock St/Johnson Av", "direction": "NE", "lat": 40.877567, "lon": -73.91774, "routes": "BX20, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.91774, 40.877567 ] } }, -{ "type": "Feature", "properties": { "id": 100676, "name": "Kappock St/Knolls Cres", "direction": "N", "lat": 40.879475, "lon": -73.91664, "routes": "BXM1, BX20, BXM2, BXM18, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.91664, 40.879475 ] } }, -{ "type": "Feature", "properties": { "id": 100677, "name": "Henry Hudson Pkwy East/W 227 St", "direction": "NE", "lat": 40.88118, "lon": -73.91709, "routes": "BX10, BX20, BXM18, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91709, 40.88118 ] } }, -{ "type": "Feature", "properties": { "id": 100678, "name": "Henry Hudson Pkwy East/W 232 St", "direction": "NE", "lat": 40.884434, "lon": -73.914566, "routes": "BX20, BXM18, BXM1, BXM2, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.914566, 40.884434 ] } }, -{ "type": "Feature", "properties": { "id": 100679, "name": "Henry Hudson Pkwy East/W 235 St", "direction": "NE", "lat": 40.886017, "lon": -73.91256, "routes": "BX20, BX10, BXM18, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91256, 40.886017 ] } }, -{ "type": "Feature", "properties": { "id": 100680, "name": "Henry Hudson Pkwy East/W 238 St", "direction": "E", "lat": 40.888565, "lon": -73.90965, "routes": "BX20, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90965, 40.888565 ] } }, -{ "type": "Feature", "properties": { "id": 100700, "name": "Henry Hudson Pkwy West/W 239 St", "direction": "SW", "lat": 40.889606, "lon": -73.90901, "routes": "BXM1, BXM2, BX20, BXM18, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90901, 40.889606 ] } }, -{ "type": "Feature", "properties": { "id": 100701, "name": "Henry Hudson Pkwy West/W 237 St", "direction": "SW", "lat": 40.887848, "lon": -73.91192, "routes": "BX20, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.91192, 40.887848 ] } }, -{ "type": "Feature", "properties": { "id": 100702, "name": "Henry Hudson Pkwy West/W 236 St", "direction": "SW", "lat": 40.8868, "lon": -73.91254, "routes": "BX10, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91254, 40.8868 ] } }, -{ "type": "Feature", "properties": { "id": 100703, "name": "Henry Hudson Pkwy West/W 232 St", "direction": "SW", "lat": 40.884346, "lon": -73.91521, "routes": "BX10, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91521, 40.884346 ] } }, -{ "type": "Feature", "properties": { "id": 100704, "name": "Henry Hudson Pkwy West/W 227 St", "direction": "SW", "lat": 40.88157, "lon": -73.91734, "routes": "BX10, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91734, 40.88157 ] } }, -{ "type": "Feature", "properties": { "id": 100705, "name": "Henry Hudson Pkwy West/Independence Av", "direction": "NW", "lat": 40.880802, "lon": -73.91895, "routes": "BX10, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91895, 40.880802 ] } }, -{ "type": "Feature", "properties": { "id": 100706, "name": "Kappock St/Knolls Cres", "direction": "S", "lat": 40.87909, "lon": -73.91679, "routes": "BXM18, BXM1, BXM2, BX10, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91679, 40.87909 ] } }, -{ "type": "Feature", "properties": { "id": 100707, "name": "Kappock St/Johnson Av", "direction": "S", "lat": 40.877396, "lon": -73.918015, "routes": "BXM2, BXM18, BX10, BX20, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.918015, 40.877396 ] } }, -{ "type": "Feature", "properties": { "id": 100723, "name": "W 205 St/Paul Av", "direction": "SE", "lat": 40.877, "lon": -73.889854, "routes": "BX25, BX26, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.889854, 40.877 ] } }, -{ "type": "Feature", "properties": { "id": 100726, "name": "Jerome Av/E 205 St", "direction": "NE", "lat": 40.875793, "lon": -73.888275, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.888275, 40.875793 ] } }, -{ "type": "Feature", "properties": { "id": 100727, "name": "Jerome Av/East Mosholu Pkwy North", "direction": "NE", "lat": 40.880474, "lon": -73.88375, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.88375, 40.880474 ] } }, -{ "type": "Feature", "properties": { "id": 100729, "name": "Bainbridge Av/East Gun Hill Rd", "direction": "S", "lat": 40.880733, "lon": -73.87863, "routes": "BX34, BX10, BX28, BX16, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.87863, 40.880733 ] } }, -{ "type": "Feature", "properties": { "id": 100730, "name": "Bainbridge Av/E 210 St", "direction": "S", "lat": 40.879333, "lon": -73.87911, "routes": "BX34, BXM4, BX16, BX10, BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.87911, 40.879333 ] } }, -{ "type": "Feature", "properties": { "id": 100731, "name": "Bainbridge Av/Van Cortlandt Av East", "direction": "S", "lat": 40.87709, "lon": -73.879776, "routes": "BX10, BX34, BX16, BXM4, BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.879776, 40.87709 ] } }, -{ "type": "Feature", "properties": { "id": 100737, "name": "Ogden Av/University Av", "direction": "S", "lat": 40.843613, "lon": -73.923775, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.923775, 40.843613 ] } }, -{ "type": "Feature", "properties": { "id": 100740, "name": "Ogden Av/W 169 St", "direction": "S", "lat": 40.840237, "lon": -73.9253, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.9253, 40.840237 ] } }, -{ "type": "Feature", "properties": { "id": 100742, "name": "Woodycrest Av/W 168 St", "direction": "NE", "lat": 40.83842, "lon": -73.923294, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.923294, 40.83842 ] } }, -{ "type": "Feature", "properties": { "id": 100743, "name": "Shakespeare Av/W 169 St", "direction": "N", "lat": 40.839535, "lon": -73.922455, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.922455, 40.839535 ] } }, -{ "type": "Feature", "properties": { "id": 100744, "name": "W 170 St/Edward L Grant Hwy", "direction": "E", "lat": 40.840263, "lon": -73.921646, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.921646, 40.840263 ] } }, -{ "type": "Feature", "properties": { "id": 100745, "name": "W 170 St/Jerome Av", "direction": "E", "lat": 40.84021, "lon": -73.917816, "routes": "BX18B, BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.917816, 40.84021 ] } }, -{ "type": "Feature", "properties": { "id": 100749, "name": "E 170 St/Clay Av", "direction": "E", "lat": 40.837093, "lon": -73.908226, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.908226, 40.837093 ] } }, -{ "type": "Feature", "properties": { "id": 100750, "name": "Clay Av/E 171 St", "direction": "NE", "lat": 40.83863, "lon": -73.90639, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.90639, 40.83863 ] } }, -{ "type": "Feature", "properties": { "id": 100751, "name": "Claremont Pkwy/Webster Av", "direction": "E", "lat": 40.839508, "lon": -73.904976, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.904976, 40.839508 ] } }, -{ "type": "Feature", "properties": { "id": 100752, "name": "Claremont Pkwy/Washington Av", "direction": "SE", "lat": 40.838615, "lon": -73.90232, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.90232, 40.838615 ] } }, -{ "type": "Feature", "properties": { "id": 100753, "name": "Claremont Pkwy/3 Av", "direction": "SE", "lat": 40.83809, "lon": -73.90111, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.90111, 40.83809 ] } }, -{ "type": "Feature", "properties": { "id": 100754, "name": "Claremont Pkwy/Crotona Av", "direction": "E", "lat": 40.836376, "lon": -73.89803, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.89803, 40.836376 ] } }, -{ "type": "Feature", "properties": { "id": 100762, "name": "Claremont Pkwy/Crotona Park East", "direction": "NW", "lat": 40.83539, "lon": -73.89512, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.89512, 40.83539 ] } }, -{ "type": "Feature", "properties": { "id": 100763, "name": "Claremont Pkwy/Crotona Av", "direction": "W", "lat": 40.83654, "lon": -73.89761, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.89761, 40.83654 ] } }, -{ "type": "Feature", "properties": { "id": 100764, "name": "Claremont Pkwy/3 Av", "direction": "NW", "lat": 40.83827, "lon": -73.90129, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.90129, 40.83827 ] } }, -{ "type": "Feature", "properties": { "id": 100765, "name": "Claremont Pkwy/Washington Av", "direction": "W", "lat": 40.839092, "lon": -73.90299, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.90299, 40.839092 ] } }, -{ "type": "Feature", "properties": { "id": 100766, "name": "Claremont Pkwy/Webster Av", "direction": "W", "lat": 40.839794, "lon": -73.90514, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.90514, 40.839794 ] } }, -{ "type": "Feature", "properties": { "id": 100768, "name": "E 170 St/Teller Av", "direction": "W", "lat": 40.83699, "lon": -73.909096, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.909096, 40.83699 ] } }, -{ "type": "Feature", "properties": { "id": 100769, "name": "E 170 St/College Av", "direction": "NW", "lat": 40.837677, "lon": -73.91095, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.91095, 40.837677 ] } }, -{ "type": "Feature", "properties": { "id": 100772, "name": "E 170 St/Jerome Av", "direction": "W", "lat": 40.840225, "lon": -73.91748, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.91748, 40.840225 ] } }, -{ "type": "Feature", "properties": { "id": 100775, "name": "Shakespeare Av/W 169 St", "direction": "SW", "lat": 40.839024, "lon": -73.9228, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.9228, 40.839024 ] } }, -{ "type": "Feature", "properties": { "id": 100779, "name": "Plimpton Av/Edward L Grant Hwy", "direction": "NE", "lat": 40.842407, "lon": -73.92298, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92298, 40.842407 ] } }, -{ "type": "Feature", "properties": { "id": 100796, "name": "West Fordham Rd/University Av", "direction": "E", "lat": 40.8627, "lon": -73.90426, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.90426, 40.8627 ] } }, -{ "type": "Feature", "properties": { "id": 100797, "name": "East Fordham Rd/Walton Av", "direction": "E", "lat": 40.86245, "lon": -73.9005, "routes": "BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.9005, 40.86245 ] } }, -{ "type": "Feature", "properties": { "id": 100798, "name": "East Fordham Rd/Grand Concourse", "direction": "E", "lat": 40.862392, "lon": -73.89757, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.89757, 40.862392 ] } }, -{ "type": "Feature", "properties": { "id": 100799, "name": "East Fordham Rd/Valentine Av", "direction": "E", "lat": 40.862236, "lon": -73.89601, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.89601, 40.862236 ] } }, -{ "type": "Feature", "properties": { "id": 100807, "name": "East Fordham Rd/Southern Blvd", "direction": "SE", "lat": 40.856464, "lon": -73.88014, "routes": "BX22, BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.88014, 40.856464 ] } }, -{ "type": "Feature", "properties": { "id": 100808, "name": "Pelham Pkwy/White Plains Rd", "direction": "E", "lat": 40.856716, "lon": -73.867836, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.867836, 40.856716 ] } }, -{ "type": "Feature", "properties": { "id": 100809, "name": "Pelham Pkwy/Muliner Av", "direction": "E", "lat": 40.856876, "lon": -73.86176, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.86176, 40.856876 ] } }, -{ "type": "Feature", "properties": { "id": 100811, "name": "Pelham Pkwy/Williamsbridge Rd", "direction": "E", "lat": 40.857025, "lon": -73.85623, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.85623, 40.857025 ] } }, -{ "type": "Feature", "properties": { "id": 100820, "name": "City Island Av/Kilroe St", "direction": "SE", "lat": 40.85466, "lon": -73.791, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.791, 40.85466 ] } }, -{ "type": "Feature", "properties": { "id": 100821, "name": "City Island Av / Cross St", "direction": "SE", "lat": 40.85332, "lon": -73.79029, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.79029, 40.85332 ] } }, -{ "type": "Feature", "properties": { "id": 100822, "name": "City Island Av/Beach St", "direction": "SE", "lat": 40.85173, "lon": -73.78899, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.78899, 40.85173 ] } }, -{ "type": "Feature", "properties": { "id": 100823, "name": "City Island Av/Ditmars St", "direction": "S", "lat": 40.849464, "lon": -73.7874, "routes": "BX29, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.7874, 40.849464 ] } }, -{ "type": "Feature", "properties": { "id": 100824, "name": "City Island Av/Fordham St", "direction": "S", "lat": 40.846916, "lon": -73.786476, "routes": "BX29, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.786476, 40.846916 ] } }, -{ "type": "Feature", "properties": { "id": 100826, "name": "City Island Av/Winters St", "direction": "S", "lat": 40.84382, "lon": -73.78532, "routes": "BXM8, BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.78532, 40.84382 ] } }, -{ "type": "Feature", "properties": { "id": 100827, "name": "City Island Av/Pell Pl", "direction": "S", "lat": 40.84218, "lon": -73.7847, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.7847, 40.84218 ] } }, -{ "type": "Feature", "properties": { "id": 100828, "name": "City Island Av/Pilot St", "direction": "S", "lat": 40.841278, "lon": -73.78437, "routes": "BX29, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.78437, 40.841278 ] } }, -{ "type": "Feature", "properties": { "id": 100829, "name": "City Island Av/Rochelle St", "direction": "S", "lat": 40.83897, "lon": -73.783485, "routes": "BXM8, BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.783485, 40.83897 ] } }, -{ "type": "Feature", "properties": { "id": 100840, "name": "Pelham Pkwy/Williamsbridge Rd", "direction": "W", "lat": 40.857548, "lon": -73.85664, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.85664, 40.857548 ] } }, -{ "type": "Feature", "properties": { "id": 100842, "name": "Pelham Pkwy/White Plains Rd", "direction": "W", "lat": 40.857292, "lon": -73.86732, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.86732, 40.857292 ] } }, -{ "type": "Feature", "properties": { "id": 100843, "name": "East Fordham Rd/Southern Blvd", "direction": "NW", "lat": 40.85731, "lon": -73.88049, "routes": "BX22, BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.88049, 40.85731 ] } }, -{ "type": "Feature", "properties": { "id": 100849, "name": "East Fordham Rd/Valentine Av", "direction": "W", "lat": 40.862347, "lon": -73.89602, "routes": "BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.89602, 40.862347 ] } }, -{ "type": "Feature", "properties": { "id": 100850, "name": "E Fordham Rd/E 190 St", "direction": "W", "lat": 40.862427, "lon": -73.89786, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.89786, 40.862427 ] } }, -{ "type": "Feature", "properties": { "id": 100851, "name": "E Fordham Rd/Jerome Av", "direction": "W", "lat": 40.86269, "lon": -73.9008, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.9008, 40.86269 ] } }, -{ "type": "Feature", "properties": { "id": 100854, "name": "W Fordham Rd/Sedgwick Av", "direction": "W", "lat": 40.86278, "lon": -73.90865, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.90865, 40.86278 ] } }, -{ "type": "Feature", "properties": { "id": 100860, "name": "City Island Av/Rochelle St", "direction": "N", "lat": 40.83906, "lon": -73.78336, "routes": "BXM8, BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.78336, 40.83906 ] } }, -{ "type": "Feature", "properties": { "id": 100861, "name": "City Island Av/Pilot St", "direction": "N", "lat": 40.841152, "lon": -73.78411, "routes": "BXM8, BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.78411, 40.841152 ] } }, -{ "type": "Feature", "properties": { "id": 100862, "name": "City Island Av/Pell Pl", "direction": "N", "lat": 40.842846, "lon": -73.784744, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.784744, 40.842846 ] } }, -{ "type": "Feature", "properties": { "id": 100863, "name": "City Island Av/Winters St", "direction": "N", "lat": 40.84408, "lon": -73.785194, "routes": "BXM8, BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.785194, 40.84408 ] } }, -{ "type": "Feature", "properties": { "id": 100865, "name": "City Island Av/Fordham St", "direction": "N", "lat": 40.84753, "lon": -73.78649, "routes": "BXM8, BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.78649, 40.84753 ] } }, -{ "type": "Feature", "properties": { "id": 100866, "name": "City Island Av/Ditmars St", "direction": "NW", "lat": 40.84964, "lon": -73.787285, "routes": "BX29, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.787285, 40.84964 ] } }, -{ "type": "Feature", "properties": { "id": 100867, "name": "City Island Av/Beach St", "direction": "NW", "lat": 40.852272, "lon": -73.78914, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.78914, 40.852272 ] } }, -{ "type": "Feature", "properties": { "id": 100868, "name": "City Island Av / Cross St", "direction": "NW", "lat": 40.853447, "lon": -73.78982, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.78982, 40.853447 ] } }, -{ "type": "Feature", "properties": { "id": 100869, "name": "City Island Av/Kilroe St", "direction": "NW", "lat": 40.854515, "lon": -73.79081, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.79081, 40.854515 ] } }, -{ "type": "Feature", "properties": { "id": 100870, "name": "City Island Rd/City Island Circle", "direction": "N", "lat": 40.860527, "lon": -73.80134, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.80134, 40.860527 ] } }, -{ "type": "Feature", "properties": { "id": 100876, "name": "Elton Av/E 161 St", "direction": "W", "lat": 40.823757, "lon": -73.91199, "routes": "BX13, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.91199, 40.823757 ] } }, -{ "type": "Feature", "properties": { "id": 100883, "name": "Jerome Av/W 161 St", "direction": "W", "lat": 40.829983, "lon": -73.93018, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.93018, 40.829983 ] } }, -{ "type": "Feature", "properties": { "id": 100884, "name": "Ogden Av/W 162 St", "direction": "NE", "lat": 40.831913, "lon": -73.92987, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92987, 40.831913 ] } }, -{ "type": "Feature", "properties": { "id": 100893, "name": "Ogden Av/W 164 St", "direction": "NE", "lat": 40.833176, "lon": -73.92915, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92915, 40.833176 ] } }, -{ "type": "Feature", "properties": { "id": 100895, "name": "Ogden Av/W 166 St", "direction": "NE", "lat": 40.83586, "lon": -73.927635, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.927635, 40.83586 ] } }, -{ "type": "Feature", "properties": { "id": 100897, "name": "Ogden Av/W 168 St", "direction": "NE", "lat": 40.838787, "lon": -73.925934, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.925934, 40.838787 ] } }, -{ "type": "Feature", "properties": { "id": 100922, "name": "Ogden Av/W 168 St", "direction": "SW", "lat": 40.838215, "lon": -73.92645, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92645, 40.838215 ] } }, -{ "type": "Feature", "properties": { "id": 100924, "name": "Ogden Av/W 166 St", "direction": "SW", "lat": 40.83533, "lon": -73.92814, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92814, 40.83533 ] } }, -{ "type": "Feature", "properties": { "id": 100926, "name": "Ogden Av/W 164 St", "direction": "SW", "lat": 40.83264, "lon": -73.92963, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92963, 40.83264 ] } }, -{ "type": "Feature", "properties": { "id": 100927, "name": "Ogden Av/W 162 St", "direction": "SW", "lat": 40.831734, "lon": -73.930145, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.930145, 40.831734 ] } }, -{ "type": "Feature", "properties": { "id": 100946, "name": "Westchester Av/Middletown Rd", "direction": "NE", "lat": 40.843758, "lon": -73.83636, "routes": "BX8, BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83636, 40.843758 ] } }, -{ "type": "Feature", "properties": { "id": 100947, "name": "Westchester Av/Roberts Av", "direction": "NE", "lat": 40.84543, "lon": -73.83423, "routes": "BX8, BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83423, 40.84543 ] } }, -{ "type": "Feature", "properties": { "id": 100948, "name": "Westchester Av/Crosby Av", "direction": "NE", "lat": 40.84683, "lon": -73.832466, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.832466, 40.84683 ] } }, -{ "type": "Feature", "properties": { "id": 100949, "name": "Westchester Av/Mahan Av", "direction": "NE", "lat": 40.849026, "lon": -73.83054, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83054, 40.849026 ] } }, -{ "type": "Feature", "properties": { "id": 100950, "name": "Westchester Av/Wilkinson Av", "direction": "NE", "lat": 40.851707, "lon": -73.82954, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82954, 40.851707 ] } }, -{ "type": "Feature", "properties": { "id": 100956, "name": "Country Club Rd/Kearney Av", "direction": "E", "lat": 40.842487, "lon": -73.82475, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82475, 40.842487 ] } }, -{ "type": "Feature", "properties": { "id": 100960, "name": "Campbell Dr/Stadium Av", "direction": "E", "lat": 40.83791, "lon": -73.81884, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.81884, 40.83791 ] } }, -{ "type": "Feature", "properties": { "id": 100961, "name": "Campbell Dr/Agar Pl", "direction": "N", "lat": 40.83913, "lon": -73.817276, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.817276, 40.83913 ] } }, -{ "type": "Feature", "properties": { "id": 100962, "name": "Campbell Dr/Country Club Rd", "direction": "N", "lat": 40.84106, "lon": -73.817856, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.817856, 40.84106 ] } }, -{ "type": "Feature", "properties": { "id": 100965, "name": "Radio Dr/Lucerne St", "direction": "N", "lat": 40.843132, "lon": -73.81715, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.81715, 40.843132 ] } }, -{ "type": "Feature", "properties": { "id": 100966, "name": "Radio Dr/Griswold Av", "direction": "NW", "lat": 40.843952, "lon": -73.81938, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.81938, 40.843952 ] } }, -{ "type": "Feature", "properties": { "id": 100967, "name": "Research Av/Ampere Av", "direction": "N", "lat": 40.846066, "lon": -73.81925, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.81925, 40.846066 ] } }, -{ "type": "Feature", "properties": { "id": 100977, "name": "Country Club Rd/Mc Donough Pl", "direction": "N", "lat": 40.842747, "lon": -73.82507, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82507, 40.842747 ] } }, -{ "type": "Feature", "properties": { "id": 100981, "name": "Westchester Av/Wilkinson Av", "direction": "SW", "lat": 40.8513, "lon": -73.82995, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82995, 40.8513 ] } }, -{ "type": "Feature", "properties": { "id": 100982, "name": "Westchester Av/Saint Theresa Av", "direction": "S", "lat": 40.84933, "lon": -73.83054, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83054, 40.84933 ] } }, -{ "type": "Feature", "properties": { "id": 100983, "name": "Westchester Av/Buhre Av", "direction": "SW", "lat": 40.847095, "lon": -73.83225, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83225, 40.847095 ] } }, -{ "type": "Feature", "properties": { "id": 100984, "name": "Westchester Av/Roberts Av", "direction": "SW", "lat": 40.845604, "lon": -73.83414, "routes": "BX24, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.83414, 40.845604 ] } }, -{ "type": "Feature", "properties": { "id": 100985, "name": "Westchester Av/Hutchinson River Pkwy", "direction": "SW", "lat": 40.843796, "lon": -73.83646, "routes": "BX8, BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83646, 40.843796 ] } }, -{ "type": "Feature", "properties": { "id": 101014, "name": "Willis Av/E 138 St", "direction": "NE", "lat": 40.80893, "lon": -73.92285, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.92285, 40.80893 ] } }, -{ "type": "Feature", "properties": { "id": 101015, "name": "Willis Av/E 140 St", "direction": "NE", "lat": 40.810635, "lon": -73.92163, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.92163, 40.810635 ] } }, -{ "type": "Feature", "properties": { "id": 101017, "name": "Willis Av/E 144 St", "direction": "NE", "lat": 40.81311, "lon": -73.91982, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.91982, 40.81311 ] } }, -{ "type": "Feature", "properties": { "id": 101018, "name": "Willis Av/E 146 St", "direction": "NE", "lat": 40.81437, "lon": -73.91897, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.91897, 40.81437 ] } }, -{ "type": "Feature", "properties": { "id": 101021, "name": "3 Av/E 153 St", "direction": "NE", "lat": 40.81871, "lon": -73.91415, "routes": "BX15, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.91415, 40.81871 ] } }, -{ "type": "Feature", "properties": { "id": 101027, "name": "3 Av/E 166 St", "direction": "N", "lat": 40.82859, "lon": -73.9068, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.9068, 40.82859 ] } }, -{ "type": "Feature", "properties": { "id": 101028, "name": "3 Av/E 168 St", "direction": "NE", "lat": 40.83133, "lon": -73.905594, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.905594, 40.83133 ] } }, -{ "type": "Feature", "properties": { "id": 101029, "name": "3 Av/E 169 St", "direction": "NE", "lat": 40.833076, "lon": -73.904686, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.904686, 40.833076 ] } }, -{ "type": "Feature", "properties": { "id": 101030, "name": "3 Av/St Pauls Pl", "direction": "NE", "lat": 40.83622, "lon": -73.902565, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.902565, 40.83622 ] } }, -{ "type": "Feature", "properties": { "id": 101034, "name": "3 Av/E 175 St", "direction": "NE", "lat": 40.84449, "lon": -73.897255, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.897255, 40.84449 ] } }, -{ "type": "Feature", "properties": { "id": 101036, "name": "3 Av/E 180 St", "direction": "NE", "lat": 40.850925, "lon": -73.89384, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89384, 40.850925 ] } }, -{ "type": "Feature", "properties": { "id": 101055, "name": "3 Av/St Pauls Pl", "direction": "SW", "lat": 40.835686, "lon": -73.90319, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.90319, 40.835686 ] } }, -{ "type": "Feature", "properties": { "id": 101057, "name": "3 Av/E 168 St", "direction": "SW", "lat": 40.83077, "lon": -73.90609, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.90609, 40.83077 ] } }, -{ "type": "Feature", "properties": { "id": 101058, "name": "3 Av/E 166 St", "direction": "S", "lat": 40.82751, "lon": -73.90745, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.90745, 40.82751 ] } }, -{ "type": "Feature", "properties": { "id": 101059, "name": "3 Av/E 163 St", "direction": "SW", "lat": 40.823868, "lon": -73.90894, "routes": "BX15, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.90894, 40.823868 ] } }, -{ "type": "Feature", "properties": { "id": 101061, "name": "3 Av/E 158 St", "direction": "SW", "lat": 40.821236, "lon": -73.91245, "routes": "BX15, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.91245, 40.821236 ] } }, -{ "type": "Feature", "properties": { "id": 101063, "name": "3 Av/E 154 St", "direction": "SW", "lat": 40.818703, "lon": -73.9144, "routes": "BX15, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.9144, 40.818703 ] } }, -{ "type": "Feature", "properties": { "id": 101066, "name": "3 Av/E 150 St", "direction": "SW", "lat": 40.816143, "lon": -73.91755, "routes": "BX15, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.91755, 40.816143 ] } }, -{ "type": "Feature", "properties": { "id": 101069, "name": "Willis Av/E 144 St", "direction": "SW", "lat": 40.81271, "lon": -73.9204, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.9204, 40.81271 ] } }, -{ "type": "Feature", "properties": { "id": 101071, "name": "Willis Av/E 141 St", "direction": "SW", "lat": 40.810837, "lon": -73.92177, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.92177, 40.810837 ] } }, -{ "type": "Feature", "properties": { "id": 101072, "name": "Willis Av/E 138 St", "direction": "SW", "lat": 40.809254, "lon": -73.92291, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.92291, 40.809254 ] } }, -{ "type": "Feature", "properties": { "id": 101074, "name": "E 138 St/3 Av", "direction": "NW", "lat": 40.810944, "lon": -73.926956, "routes": "BX33, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.926956, 40.810944 ] } }, -{ "type": "Feature", "properties": { "id": 101137, "name": "Bainbridge Av/E 212 St", "direction": "N", "lat": 40.883778, "lon": -73.87763, "routes": "BX16, BXM4, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.87763, 40.883778 ] } }, -{ "type": "Feature", "properties": { "id": 101138, "name": "Bainbridge Av/Jerome Av", "direction": "N", "lat": 40.88679, "lon": -73.877785, "routes": "BX34, BXM4, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.877785, 40.88679 ] } }, -{ "type": "Feature", "properties": { "id": 101140, "name": "E 233 St/Napier Av", "direction": "E", "lat": 40.89568, "lon": -73.8749, "routes": "BXM4, BX34, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.8749, 40.89568 ] } }, -{ "type": "Feature", "properties": { "id": 101142, "name": "E 233 St/Kepler Av", "direction": "E", "lat": 40.89659, "lon": -73.87059, "routes": "BXM4, BX34, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.87059, 40.89659 ] } }, -{ "type": "Feature", "properties": { "id": 101146, "name": "Webster Av/Nereid Av", "direction": "N", "lat": 40.900898, "lon": -73.86151, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.86151, 40.900898 ] } }, -{ "type": "Feature", "properties": { "id": 101147, "name": "Nereid Av/Carpenter Av", "direction": "E", "lat": 40.899353, "lon": -73.85686, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.85686, 40.899353 ] } }, -{ "type": "Feature", "properties": { "id": 101148, "name": "Nereid Av/White Plains Rd", "direction": "E", "lat": 40.89844, "lon": -73.85455, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.85455, 40.89844 ] } }, -{ "type": "Feature", "properties": { "id": 101149, "name": "Nereid Av/Byron Av", "direction": "E", "lat": 40.89776, "lon": -73.85278, "routes": "BX16, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85278, 40.89776 ] } }, -{ "type": "Feature", "properties": { "id": 101150, "name": "Nereid Av/Bruner Av", "direction": "E", "lat": 40.898476, "lon": -73.84927, "routes": "BX16, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.84927, 40.898476 ] } }, -{ "type": "Feature", "properties": { "id": 101152, "name": "Baychester Av/Pitman Av", "direction": "S", "lat": 40.896328, "lon": -73.84509, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84509, 40.896328 ] } }, -{ "type": "Feature", "properties": { "id": 101153, "name": "Baychester Av/Edenwald Av", "direction": "S", "lat": 40.892975, "lon": -73.84375, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84375, 40.892975 ] } }, -{ "type": "Feature", "properties": { "id": 101154, "name": "E 233 St/Baychester Av", "direction": "E", "lat": 40.88845, "lon": -73.84145, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84145, 40.88845 ] } }, -{ "type": "Feature", "properties": { "id": 101155, "name": "E 233 St/Murdock Av", "direction": "E", "lat": 40.88859, "lon": -73.83874, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.83874, 40.88859 ] } }, -{ "type": "Feature", "properties": { "id": 101156, "name": "E 233 St/Seton Av", "direction": "E", "lat": 40.888977, "lon": -73.836006, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.836006, 40.888977 ] } }, -{ "type": "Feature", "properties": { "id": 101157, "name": "E 233 St/Secor Av", "direction": "E", "lat": 40.889133, "lon": -73.8318, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.8318, 40.889133 ] } }, -{ "type": "Feature", "properties": { "id": 101158, "name": "Dyre Av/Light St", "direction": "S", "lat": 40.88789, "lon": -73.83135, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.83135, 40.88789 ] } }, -{ "type": "Feature", "properties": { "id": 101159, "name": "Dyre Av/Boston Rd", "direction": "S", "lat": 40.884827, "lon": -73.83149, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.83149, 40.884827 ] } }, -{ "type": "Feature", "properties": { "id": 101160, "name": "Boston Rd/Conner St", "direction": "NE", "lat": 40.88581, "lon": -73.828094, "routes": "BX30, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.828094, 40.88581 ] } }, -{ "type": "Feature", "properties": { "id": 101161, "name": "Mcowen Av/Boston Rd", "direction": "SE", "lat": 40.88927, "lon": -73.82032, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.82032, 40.88927 ] } }, -{ "type": "Feature", "properties": { "id": 101162, "name": "Hollers Av/Ropes Av", "direction": "NE", "lat": 40.888054, "lon": -73.81792, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.81792, 40.888054 ] } }, -{ "type": "Feature", "properties": { "id": 101163, "name": "Ropes Av/Boston Rd", "direction": "NW", "lat": 40.889843, "lon": -73.81952, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.81952, 40.889843 ] } }, -{ "type": "Feature", "properties": { "id": 101164, "name": "Nereid Av/Murdock Av", "direction": "E", "lat": 40.899845, "lon": -73.84303, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84303, 40.899845 ] } }, -{ "type": "Feature", "properties": { "id": 101165, "name": "Nereid Av/Mundy La", "direction": "E", "lat": 40.900482, "lon": -73.840126, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.840126, 40.900482 ] } }, -{ "type": "Feature", "properties": { "id": 101166, "name": "Mundy Ln/Pitman Av", "direction": "SW", "lat": 40.89798, "lon": -73.839676, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.839676, 40.89798 ] } }, -{ "type": "Feature", "properties": { "id": 101167, "name": "Ropes Av/Boston Rd", "direction": "NW", "lat": 40.88997, "lon": -73.81965, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.81965, 40.88997 ] } }, -{ "type": "Feature", "properties": { "id": 101169, "name": "Dyre Av/Boston Rd", "direction": "N", "lat": 40.88507, "lon": -73.83124, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.83124, 40.88507 ] } }, -{ "type": "Feature", "properties": { "id": 101170, "name": "Dyre Av/Light St", "direction": "N", "lat": 40.88824, "lon": -73.831215, "routes": "BX16, BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.831215, 40.88824 ] } }, -{ "type": "Feature", "properties": { "id": 101171, "name": "E 233 St/Dyre Av", "direction": "W", "lat": 40.889263, "lon": -73.83173, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.83173, 40.889263 ] } }, -{ "type": "Feature", "properties": { "id": 101173, "name": "E 233 St/Seton Av", "direction": "W", "lat": 40.888885, "lon": -73.83686, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.83686, 40.888885 ] } }, -{ "type": "Feature", "properties": { "id": 101174, "name": "E 233 St/Murdock Av", "direction": "W", "lat": 40.888786, "lon": -73.8397, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.8397, 40.888786 ] } }, -{ "type": "Feature", "properties": { "id": 101175, "name": "Baychester Av/E 233 St", "direction": "N", "lat": 40.888824, "lon": -73.84197, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84197, 40.888824 ] } }, -{ "type": "Feature", "properties": { "id": 101176, "name": "Baychester Av/Edenwald Av", "direction": "N", "lat": 40.89323, "lon": -73.84372, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84372, 40.89323 ] } }, -{ "type": "Feature", "properties": { "id": 101177, "name": "Baychester Av/Pitman Av", "direction": "N", "lat": 40.89657, "lon": -73.84495, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84495, 40.89657 ] } }, -{ "type": "Feature", "properties": { "id": 101178, "name": "Sanford Blvd/S 11 Av", "direction": "E", "lat": 40.897938, "lon": -73.839096, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.839096, 40.897938 ] } }, -{ "type": "Feature", "properties": { "id": 101179, "name": "Nereid Av/Seton Av", "direction": "W", "lat": 40.90041, "lon": -73.84094, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84094, 40.90041 ] } }, -{ "type": "Feature", "properties": { "id": 101180, "name": "Nereid Av/Murdock Av", "direction": "W", "lat": 40.89981, "lon": -73.84367, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84367, 40.89981 ] } }, -{ "type": "Feature", "properties": { "id": 101181, "name": "Nereid Av/Baychester Av", "direction": "W", "lat": 40.899208, "lon": -73.84657, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84657, 40.899208 ] } }, -{ "type": "Feature", "properties": { "id": 101182, "name": "Nereid Av/Bruner Av", "direction": "W", "lat": 40.898445, "lon": -73.85003, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.85003, 40.898445 ] } }, -{ "type": "Feature", "properties": { "id": 101183, "name": "Nereid Av/Byron Av", "direction": "W", "lat": 40.897926, "lon": -73.852394, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.852394, 40.897926 ] } }, -{ "type": "Feature", "properties": { "id": 101184, "name": "Nereid Av/White Plains Rd", "direction": "W", "lat": 40.898457, "lon": -73.85409, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.85409, 40.898457 ] } }, -{ "type": "Feature", "properties": { "id": 101185, "name": "Nereid Av/Carpenter Av", "direction": "W", "lat": 40.899727, "lon": -73.857315, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.857315, 40.899727 ] } }, -{ "type": "Feature", "properties": { "id": 101186, "name": "Webster Av/E 240 St", "direction": "S", "lat": 40.900753, "lon": -73.8618, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.8618, 40.900753 ] } }, -{ "type": "Feature", "properties": { "id": 101187, "name": "Webster Av/E 235 St", "direction": "S", "lat": 40.897766, "lon": -73.86264, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.86264, 40.897766 ] } }, -{ "type": "Feature", "properties": { "id": 101188, "name": "Webster Av/E 233 St", "direction": "SW", "lat": 40.895554, "lon": -73.8636, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.8636, 40.895554 ] } }, -{ "type": "Feature", "properties": { "id": 101189, "name": "E 233 St/Katonah Av", "direction": "W", "lat": 40.896122, "lon": -73.86678, "routes": "BX31, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.86678, 40.896122 ] } }, -{ "type": "Feature", "properties": { "id": 101190, "name": "E 233 St/Kepler Av", "direction": "W", "lat": 40.896664, "lon": -73.87039, "routes": "BX16, BX34, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.87039, 40.896664 ] } }, -{ "type": "Feature", "properties": { "id": 101192, "name": "E 233 St/Napier Av", "direction": "W", "lat": 40.89574, "lon": -73.87521, "routes": "BX34, BX16, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.87521, 40.89574 ] } }, -{ "type": "Feature", "properties": { "id": 101193, "name": "Bainbridge Av/Jerome Av", "direction": "S", "lat": 40.88664, "lon": -73.87785, "routes": "BX16, BXM4, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.87785, 40.88664 ] } }, -{ "type": "Feature", "properties": { "id": 101194, "name": "Bainbridge Av/E 212 St", "direction": "S", "lat": 40.883144, "lon": -73.877846, "routes": "BX16, BXM4, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.877846, 40.883144 ] } }, -{ "type": "Feature", "properties": { "id": 101201, "name": "E 134 St/Willow Av", "direction": "NW", "lat": 40.801674, "lon": -73.91308, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.91308, 40.801674 ] } }, -{ "type": "Feature", "properties": { "id": 101207, "name": "Prospect Av/E 149 St", "direction": "N", "lat": 40.812626, "lon": -73.9043, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.9043, 40.812626 ] } }, -{ "type": "Feature", "properties": { "id": 101208, "name": "Prospect Av/Kelly St", "direction": "N", "lat": 40.81514, "lon": -73.903404, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.903404, 40.81514 ] } }, -{ "type": "Feature", "properties": { "id": 101209, "name": "Prospect Av/E 156 St", "direction": "N", "lat": 40.8176, "lon": -73.90237, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90237, 40.8176 ] } }, -{ "type": "Feature", "properties": { "id": 101210, "name": "Prospect Av/Westchester Av", "direction": "NE", "lat": 40.82022, "lon": -73.90127, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90127, 40.82022 ] } }, -{ "type": "Feature", "properties": { "id": 101211, "name": "Prospect Av/E 163 St", "direction": "NE", "lat": 40.82242, "lon": -73.90036, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90036, 40.82242 ] } }, -{ "type": "Feature", "properties": { "id": 101213, "name": "Prospect Av/E 166 St", "direction": "N", "lat": 40.825558, "lon": -73.89905, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89905, 40.825558 ] } }, -{ "type": "Feature", "properties": { "id": 101214, "name": "Prospect Av/Home St", "direction": "NE", "lat": 40.828224, "lon": -73.89794, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89794, 40.828224 ] } }, -{ "type": "Feature", "properties": { "id": 101215, "name": "Prospect Av/E 169 St", "direction": "NE", "lat": 40.82968, "lon": -73.89733, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89733, 40.82968 ] } }, -{ "type": "Feature", "properties": { "id": 101216, "name": "Prospect Av/Ritter Pl", "direction": "N", "lat": 40.831303, "lon": -73.89671, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89671, 40.831303 ] } }, -{ "type": "Feature", "properties": { "id": 101217, "name": "Prospect Av/Boston Rd", "direction": "N", "lat": 40.833424, "lon": -73.89626, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89626, 40.833424 ] } }, -{ "type": "Feature", "properties": { "id": 101218, "name": "Crotona Av/Claremont Pkwy", "direction": "N", "lat": 40.83641, "lon": -73.89772, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89772, 40.83641 ] } }, -{ "type": "Feature", "properties": { "id": 101219, "name": "Crotona Av/E 175 St", "direction": "NE", "lat": 40.84306, "lon": -73.893135, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.893135, 40.84306 ] } }, -{ "type": "Feature", "properties": { "id": 101223, "name": "Crotona Av/E 180 St", "direction": "NE", "lat": 40.848, "lon": -73.88886, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.88886, 40.848 ] } }, -{ "type": "Feature", "properties": { "id": 101224, "name": "Crotona Av/E 182 St", "direction": "NE", "lat": 40.85018, "lon": -73.88648, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.88648, 40.85018 ] } }, -{ "type": "Feature", "properties": { "id": 101225, "name": "Crotona Av/E 183 St", "direction": "NE", "lat": 40.852024, "lon": -73.88449, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.88449, 40.852024 ] } }, -{ "type": "Feature", "properties": { "id": 101226, "name": "Crotona Av/E 187 St", "direction": "NE", "lat": 40.85419, "lon": -73.8834, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.8834, 40.85419 ] } }, -{ "type": "Feature", "properties": { "id": 101227, "name": "Crotona Av/East Fordham Rd", "direction": "NE", "lat": 40.85719, "lon": -73.88189, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.88189, 40.85719 ] } }, -{ "type": "Feature", "properties": { "id": 101236, "name": "Crotona Av/E 189 St", "direction": "SW", "lat": 40.855824, "lon": -73.88275, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.88275, 40.855824 ] } }, -{ "type": "Feature", "properties": { "id": 101237, "name": "Crotona Av/E 187 St", "direction": "SW", "lat": 40.85361, "lon": -73.883865, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.883865, 40.85361 ] } }, -{ "type": "Feature", "properties": { "id": 101238, "name": "Crotona Av/E 183 St", "direction": "SW", "lat": 40.85152, "lon": -73.885056, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.885056, 40.85152 ] } }, -{ "type": "Feature", "properties": { "id": 101239, "name": "Crotona Av/E 182 St", "direction": "SW", "lat": 40.8501, "lon": -73.88681, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.88681, 40.8501 ] } }, -{ "type": "Feature", "properties": { "id": 101240, "name": "Crotona Av/E 180 St", "direction": "SW", "lat": 40.848263, "lon": -73.888824, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.888824, 40.848263 ] } }, -{ "type": "Feature", "properties": { "id": 101244, "name": "Crotona Av/E 175 St", "direction": "SW", "lat": 40.84249, "lon": -73.893906, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.893906, 40.84249 ] } }, -{ "type": "Feature", "properties": { "id": 101245, "name": "Crotona Av/Claremont Pkwy", "direction": "S", "lat": 40.83656, "lon": -73.89778, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89778, 40.83656 ] } }, -{ "type": "Feature", "properties": { "id": 101246, "name": "Prospect Av/Boston Rd", "direction": "SE", "lat": 40.833614, "lon": -73.89651, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89651, 40.833614 ] } }, -{ "type": "Feature", "properties": { "id": 101247, "name": "Prospect Av/Ritter Pl", "direction": "S", "lat": 40.830696, "lon": -73.8971, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.8971, 40.830696 ] } }, -{ "type": "Feature", "properties": { "id": 101248, "name": "Prospect Av/E 169 St", "direction": "SW", "lat": 40.829277, "lon": -73.897736, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.897736, 40.829277 ] } }, -{ "type": "Feature", "properties": { "id": 101249, "name": "Prospect Av/Home St", "direction": "SW", "lat": 40.827553, "lon": -73.898476, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.898476, 40.827553 ] } }, -{ "type": "Feature", "properties": { "id": 101250, "name": "Prospect Av/E 166 St", "direction": "S", "lat": 40.825397, "lon": -73.899315, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.899315, 40.825397 ] } }, -{ "type": "Feature", "properties": { "id": 101252, "name": "Prospect Av/E 163 St", "direction": "S", "lat": 40.82176, "lon": -73.90083, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90083, 40.82176 ] } }, -{ "type": "Feature", "properties": { "id": 101253, "name": "Prospect Av/Westchester Av", "direction": "SW", "lat": 40.819893, "lon": -73.90159, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90159, 40.819893 ] } }, -{ "type": "Feature", "properties": { "id": 101254, "name": "Prospect Av/E 156 St", "direction": "S", "lat": 40.81706, "lon": -73.90278, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90278, 40.81706 ] } }, -{ "type": "Feature", "properties": { "id": 101255, "name": "Prospect Av/E 152 St", "direction": "S", "lat": 40.81482, "lon": -73.90362, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90362, 40.81482 ] } }, -{ "type": "Feature", "properties": { "id": 101256, "name": "Prospect Av/E 149 St", "direction": "S", "lat": 40.812347, "lon": -73.90448, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90448, 40.812347 ] } }, -{ "type": "Feature", "properties": { "id": 101262, "name": "E 135 St/Cypress Av", "direction": "W", "lat": 40.803722, "lon": -73.91562, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91562, 40.803722 ] } }, -{ "type": "Feature", "properties": { "id": 101274, "name": "West Tremont Av/Montgomery Av", "direction": "E", "lat": 40.85187, "lon": -73.91664, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.91664, 40.85187 ] } }, -{ "type": "Feature", "properties": { "id": 101275, "name": "Macombs Rd/Nelson Av", "direction": "S", "lat": 40.848385, "lon": -73.91628, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.91628, 40.848385 ] } }, -{ "type": "Feature", "properties": { "id": 101276, "name": "Macombs Rd/Featherbed Ln", "direction": "S", "lat": 40.84549, "lon": -73.91723, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.91723, 40.84549 ] } }, -{ "type": "Feature", "properties": { "id": 101277, "name": "Macombs Rd/Goble Pl", "direction": "S", "lat": 40.844288, "lon": -73.917595, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.917595, 40.844288 ] } }, -{ "type": "Feature", "properties": { "id": 101278, "name": "Macombs Rd/Inwood Av", "direction": "SE", "lat": 40.84178, "lon": -73.91793, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.91793, 40.84178 ] } }, -{ "type": "Feature", "properties": { "id": 101285, "name": "Inwood Av/Macombs Rd", "direction": "NE", "lat": 40.84167, "lon": -73.918045, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.918045, 40.84167 ] } }, -{ "type": "Feature", "properties": { "id": 101286, "name": "Macombs Rd/Goble Pl", "direction": "N", "lat": 40.84448, "lon": -73.91739, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91739, 40.84448 ] } }, -{ "type": "Feature", "properties": { "id": 101288, "name": "Macombs Rd/W 176 St", "direction": "N", "lat": 40.849148, "lon": -73.91603, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91603, 40.849148 ] } }, -{ "type": "Feature", "properties": { "id": 101289, "name": "West Tremont Av/University Av", "direction": "NW", "lat": 40.850906, "lon": -73.91578, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91578, 40.850906 ] } }, -{ "type": "Feature", "properties": { "id": 101290, "name": "West Tremont Av/Loring Pl South", "direction": "W", "lat": 40.852036, "lon": -73.91681, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91681, 40.852036 ] } }, -{ "type": "Feature", "properties": { "id": 101294, "name": "Undercliff Av/W 174 St", "direction": "SW", "lat": 40.84758, "lon": -73.92325, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.92325, 40.84758 ] } }, -{ "type": "Feature", "properties": { "id": 101295, "name": "Undercliff Av/W 172 St", "direction": "SW", "lat": 40.84507, "lon": -73.92463, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.92463, 40.84507 ] } }, -{ "type": "Feature", "properties": { "id": 101297, "name": "Sedgwick Av/W 172 St", "direction": "NE", "lat": 40.84585, "lon": -73.9253, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.9253, 40.84585 ] } }, -{ "type": "Feature", "properties": { "id": 101306, "name": "E 149 St/Exterior St", "direction": "E", "lat": 40.819237, "lon": -73.93005, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.93005, 40.819237 ] } }, -{ "type": "Feature", "properties": { "id": 101307, "name": "E 149 St/Grand Concourse", "direction": "E", "lat": 40.81838, "lon": -73.926865, "routes": "BX19, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.926865, 40.81838 ] } }, -{ "type": "Feature", "properties": { "id": 101309, "name": "E 149 St/Morris Av", "direction": "E", "lat": 40.817177, "lon": -73.922386, "routes": "BX19, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.922386, 40.817177 ] } }, -{ "type": "Feature", "properties": { "id": 101310, "name": "E 149 St/Courtlandt Av", "direction": "E", "lat": 40.816544, "lon": -73.91978, "routes": "BX2, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.91978, 40.816544 ] } }, -{ "type": "Feature", "properties": { "id": 101313, "name": "E 149 St/Saint Ann'S Av", "direction": "E", "lat": 40.814224, "lon": -73.912865, "routes": "BX17, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.912865, 40.814224 ] } }, -{ "type": "Feature", "properties": { "id": 101314, "name": "E 149 St/Trinity Av", "direction": "E", "lat": 40.81342, "lon": -73.91016, "routes": "BX17, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.91016, 40.81342 ] } }, -{ "type": "Feature", "properties": { "id": 101315, "name": "E 149 St/Jackson Av", "direction": "E", "lat": 40.813107, "lon": -73.90868, "routes": "BX19, BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90868, 40.813107 ] } }, -{ "type": "Feature", "properties": { "id": 101316, "name": "E 149 St/Wales Av", "direction": "E", "lat": 40.81278, "lon": -73.907135, "routes": "BX17, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.907135, 40.81278 ] } }, -{ "type": "Feature", "properties": { "id": 101318, "name": "Southern Blvd/E 149 St", "direction": "E", "lat": 40.81218, "lon": -73.903625, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.903625, 40.81218 ] } }, -{ "type": "Feature", "properties": { "id": 101320, "name": "Southern Blvd/E 156 St", "direction": "NE", "lat": 40.815125, "lon": -73.8973, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.8973, 40.815125 ] } }, -{ "type": "Feature", "properties": { "id": 101321, "name": "Southern Blvd/Longwood Av", "direction": "NE", "lat": 40.816536, "lon": -73.895836, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.895836, 40.816536 ] } }, -{ "type": "Feature", "properties": { "id": 101322, "name": "Southern Blvd/Tiffany St", "direction": "NE", "lat": 40.818542, "lon": -73.89376, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89376, 40.818542 ] } }, -{ "type": "Feature", "properties": { "id": 101324, "name": "Southern Blvd/Aldus St", "direction": "N", "lat": 40.823174, "lon": -73.891754, "routes": "BX19, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.891754, 40.823174 ] } }, -{ "type": "Feature", "properties": { "id": 101327, "name": "Southern Blvd/E 167 St", "direction": "N", "lat": 40.827187, "lon": -73.89188, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89188, 40.827187 ] } }, -{ "type": "Feature", "properties": { "id": 101328, "name": "Southern Blvd/Freeman St", "direction": "N", "lat": 40.830048, "lon": -73.89182, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89182, 40.830048 ] } }, -{ "type": "Feature", "properties": { "id": 101329, "name": "Southern Blvd/Jennings St", "direction": "NE", "lat": 40.832287, "lon": -73.89071, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89071, 40.832287 ] } }, -{ "type": "Feature", "properties": { "id": 101330, "name": "Southern Blvd/E 172 St", "direction": "NE", "lat": 40.833942, "lon": -73.889725, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.889725, 40.833942 ] } }, -{ "type": "Feature", "properties": { "id": 101332, "name": "Southern Blvd/Boston Rd", "direction": "NE", "lat": 40.8372, "lon": -73.88775, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88775, 40.8372 ] } }, -{ "type": "Feature", "properties": { "id": 101335, "name": "Southern Blvd/East Tremont Av", "direction": "N", "lat": 40.843056, "lon": -73.88546, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88546, 40.843056 ] } }, -{ "type": "Feature", "properties": { "id": 101337, "name": "Southern Blvd/E 180 St", "direction": "NE", "lat": 40.84582, "lon": -73.884445, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.884445, 40.84582 ] } }, -{ "type": "Feature", "properties": { "id": 101347, "name": "Southern Blvd/E 180 St", "direction": "SW", "lat": 40.846138, "lon": -73.8845, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.8845, 40.846138 ] } }, -{ "type": "Feature", "properties": { "id": 101352, "name": "Southern Blvd/E 174 St", "direction": "S", "lat": 40.837467, "lon": -73.88772, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88772, 40.837467 ] } }, -{ "type": "Feature", "properties": { "id": 101354, "name": "Southern Blvd/E 172 St", "direction": "SW", "lat": 40.834167, "lon": -73.88976, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88976, 40.834167 ] } }, -{ "type": "Feature", "properties": { "id": 101355, "name": "Southern Blvd/Jennings St", "direction": "SW", "lat": 40.832527, "lon": -73.890724, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.890724, 40.832527 ] } }, -{ "type": "Feature", "properties": { "id": 101356, "name": "Southern Blvd/Freeman St", "direction": "S", "lat": 40.8301, "lon": -73.89191, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89191, 40.8301 ] } }, -{ "type": "Feature", "properties": { "id": 101358, "name": "Southern Blvd/E 167 St", "direction": "S", "lat": 40.826904, "lon": -73.89199, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89199, 40.826904 ] } }, -{ "type": "Feature", "properties": { "id": 101359, "name": "Southern Blvd/Westchester Av", "direction": "N", "lat": 40.824547, "lon": -73.89185, "routes": "BX19, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.89185, 40.824547 ] } }, -{ "type": "Feature", "properties": { "id": 101360, "name": "Southern Blvd/Aldus St", "direction": "S", "lat": 40.82287, "lon": -73.891815, "routes": "BX5, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.891815, 40.82287 ] } }, -{ "type": "Feature", "properties": { "id": 101362, "name": "Southern Blvd/Tiffany St", "direction": "SW", "lat": 40.818478, "lon": -73.89413, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89413, 40.818478 ] } }, -{ "type": "Feature", "properties": { "id": 101363, "name": "Southern Blvd/Longwood Av", "direction": "SW", "lat": 40.816074, "lon": -73.89661, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89661, 40.816074 ] } }, -{ "type": "Feature", "properties": { "id": 101364, "name": "Southern Blvd/E 156 St", "direction": "SW", "lat": 40.81471, "lon": -73.898026, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.898026, 40.81471 ] } }, -{ "type": "Feature", "properties": { "id": 101366, "name": "Southern Blvd/E 149 St", "direction": "W", "lat": 40.812225, "lon": -73.90395, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.90395, 40.812225 ] } }, -{ "type": "Feature", "properties": { "id": 101368, "name": "E 149 St/Tinton Av", "direction": "W", "lat": 40.81266, "lon": -73.90614, "routes": "BX19, BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90614, 40.81266 ] } }, -{ "type": "Feature", "properties": { "id": 101369, "name": "E 149 St/Concord Av", "direction": "W", "lat": 40.813156, "lon": -73.90855, "routes": "BX19, BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.90855, 40.813156 ] } }, -{ "type": "Feature", "properties": { "id": 101370, "name": "E 149 St/Trinity Av", "direction": "W", "lat": 40.81356, "lon": -73.91048, "routes": "BX19, BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91048, 40.81356 ] } }, -{ "type": "Feature", "properties": { "id": 101372, "name": "E 149 St/Brook Av", "direction": "W", "lat": 40.815166, "lon": -73.9153, "routes": "BX19, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.9153, 40.815166 ] } }, -{ "type": "Feature", "properties": { "id": 101374, "name": "E 149 St/Courtlandt Av", "direction": "W", "lat": 40.816746, "lon": -73.919846, "routes": "BX19, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.919846, 40.816746 ] } }, -{ "type": "Feature", "properties": { "id": 101375, "name": "E 149 St/Morris Av", "direction": "W", "lat": 40.81753, "lon": -73.92301, "routes": "BX19, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.92301, 40.81753 ] } }, -{ "type": "Feature", "properties": { "id": 101377, "name": "E 149 St/Grand Concourse", "direction": "W", "lat": 40.81859, "lon": -73.92708, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.92708, 40.81859 ] } }, -{ "type": "Feature", "properties": { "id": 101378, "name": "E 149 St/Gerard Av", "direction": "W", "lat": 40.81909, "lon": -73.92908, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.92908, 40.81909 ] } }, -{ "type": "Feature", "properties": { "id": 101389, "name": "3 Av/E 140 St", "direction": "NE", "lat": 40.812096, "lon": -73.925064, "routes": "BX2, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.925064, 40.812096 ] } }, -{ "type": "Feature", "properties": { "id": 101401, "name": "3 Av/E 163 St", "direction": "N", "lat": 40.824383, "lon": -73.90842, "routes": "BX21, BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.90842, 40.824383 ] } }, -{ "type": "Feature", "properties": { "id": 101402, "name": "Boston Rd/E 166 St", "direction": "NE", "lat": 40.827328, "lon": -73.9047, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.9047, 40.827328 ] } }, -{ "type": "Feature", "properties": { "id": 101405, "name": "Boston Rd/E 169 St", "direction": "NE", "lat": 40.83132, "lon": -73.89977, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.89977, 40.83132 ] } }, -{ "type": "Feature", "properties": { "id": 101406, "name": "Boston Rd/Prospect Av", "direction": "NE", "lat": 40.833607, "lon": -73.895966, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.895966, 40.833607 ] } }, -{ "type": "Feature", "properties": { "id": 101407, "name": "Boston Rd/Louis Nine Blvd", "direction": "NE", "lat": 40.835052, "lon": -73.89389, "routes": "BX21, BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.89389, 40.835052 ] } }, -{ "type": "Feature", "properties": { "id": 101408, "name": "Boston Rd/Seabury Pl", "direction": "E", "lat": 40.83581, "lon": -73.89039, "routes": "BX21, BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.89039, 40.83581 ] } }, -{ "type": "Feature", "properties": { "id": 101409, "name": "Boston Rd/Southern Blvd", "direction": "NE", "lat": 40.837, "lon": -73.8883, "routes": "BX21, BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.8883, 40.837 ] } }, -{ "type": "Feature", "properties": { "id": 101410, "name": "Boston Rd/Vyse Av", "direction": "NE", "lat": 40.83911, "lon": -73.88463, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.88463, 40.83911 ] } }, -{ "type": "Feature", "properties": { "id": 101414, "name": "Morris Park Av/East Tremont Av", "direction": "NE", "lat": 40.84013, "lon": -73.87329, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.87329, 40.84013 ] } }, -{ "type": "Feature", "properties": { "id": 101415, "name": "Morris Park Av/Adams St", "direction": "NE", "lat": 40.84156, "lon": -73.87224, "routes": "BXM10, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.87224, 40.84156 ] } }, -{ "type": "Feature", "properties": { "id": 101416, "name": "Morris Park Av/Taylor Av", "direction": "NE", "lat": 40.843597, "lon": -73.870125, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.870125, 40.843597 ] } }, -{ "type": "Feature", "properties": { "id": 101418, "name": "Morris Park Av/White Plains Rd", "direction": "E", "lat": 40.845264, "lon": -73.86565, "routes": "BXM10, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.86565, 40.845264 ] } }, -{ "type": "Feature", "properties": { "id": 101419, "name": "Morris Park Av/Barnes Av", "direction": "E", "lat": 40.845997, "lon": -73.86217, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.86217, 40.845997 ] } }, -{ "type": "Feature", "properties": { "id": 101420, "name": "Morris Park Av/Bronxdale Av", "direction": "E", "lat": 40.846573, "lon": -73.859604, "routes": "BXM10, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.859604, 40.846573 ] } }, -{ "type": "Feature", "properties": { "id": 101421, "name": "Morris Park Av/Radcliff Av", "direction": "NE", "lat": 40.84785, "lon": -73.856705, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.856705, 40.84785 ] } }, -{ "type": "Feature", "properties": { "id": 101422, "name": "Morris Park Av/Hone Av", "direction": "NE", "lat": 40.848873, "lon": -73.85441, "routes": "BX21, BX90, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.85441, 40.848873 ] } }, -{ "type": "Feature", "properties": { "id": 101423, "name": "Morris Park Av/Williamsbridge Rd", "direction": "NE", "lat": 40.850197, "lon": -73.8515, "routes": "BX21, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.8515, 40.850197 ] } }, -{ "type": "Feature", "properties": { "id": 101424, "name": "Morris Park Av/Seminole Av", "direction": "E", "lat": 40.851032, "lon": -73.84842, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.84842, 40.851032 ] } }, -{ "type": "Feature", "properties": { "id": 101425, "name": "Morris Park Av/Eastchester Rd", "direction": "E", "lat": 40.851067, "lon": -73.844604, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.844604, 40.851067 ] } }, -{ "type": "Feature", "properties": { "id": 101437, "name": "Morris Park Av/Eastchester Rd", "direction": "W", "lat": 40.851273, "lon": -73.84438, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.84438, 40.851273 ] } }, -{ "type": "Feature", "properties": { "id": 101438, "name": "Morris Park Av/Seminole Av", "direction": "W", "lat": 40.85113, "lon": -73.84805, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.84805, 40.85113 ] } }, -{ "type": "Feature", "properties": { "id": 101440, "name": "Morris Park Av/Hone Av", "direction": "SW", "lat": 40.84872, "lon": -73.85498, "routes": "BXM10, BX90, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.85498, 40.84872 ] } }, -{ "type": "Feature", "properties": { "id": 101441, "name": "Morris Park Av/Radcliff Av", "direction": "SW", "lat": 40.847588, "lon": -73.85747, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.85747, 40.847588 ] } }, -{ "type": "Feature", "properties": { "id": 101443, "name": "Morris Park Av/Barnes Av", "direction": "W", "lat": 40.845905, "lon": -73.862976, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.862976, 40.845905 ] } }, -{ "type": "Feature", "properties": { "id": 101444, "name": "Morris Park Av/White Plains Rd", "direction": "W", "lat": 40.845158, "lon": -73.866585, "routes": "BXM10, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.866585, 40.845158 ] } }, -{ "type": "Feature", "properties": { "id": 101446, "name": "Morris Park Av/Melville St", "direction": "SW", "lat": 40.843212, "lon": -73.87091, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.87091, 40.843212 ] } }, -{ "type": "Feature", "properties": { "id": 101447, "name": "Morris Park Av/E 180 St", "direction": "SW", "lat": 40.840767, "lon": -73.87291, "routes": "BXM10, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.87291, 40.840767 ] } }, -{ "type": "Feature", "properties": { "id": 101448, "name": "East Tremont Av/Morris Park Av", "direction": "W", "lat": 40.839878, "lon": -73.873985, "routes": "BX21, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.873985, 40.839878 ] } }, -{ "type": "Feature", "properties": { "id": 101453, "name": "Boston Rd/Vyse Av", "direction": "W", "lat": 40.839527, "lon": -73.88367, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.88367, 40.839527 ] } }, -{ "type": "Feature", "properties": { "id": 101455, "name": "Boston Rd/Southern Blvd", "direction": "SW", "lat": 40.837154, "lon": -73.88821, "routes": "BX21, BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.88821, 40.837154 ] } }, -{ "type": "Feature", "properties": { "id": 101456, "name": "Boston Rd/E 173 St", "direction": "W", "lat": 40.83602, "lon": -73.89038, "routes": "BX11, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.89038, 40.83602 ] } }, -{ "type": "Feature", "properties": { "id": 101457, "name": "Boston Rd/Louis Nine Blvd", "direction": "SW", "lat": 40.83462, "lon": -73.89456, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.89456, 40.83462 ] } }, -{ "type": "Feature", "properties": { "id": 101458, "name": "Boston Rd/Prospect Av", "direction": "SW", "lat": 40.833427, "lon": -73.89678, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.89678, 40.833427 ] } }, -{ "type": "Feature", "properties": { "id": 101459, "name": "Boston Rd/E 169 St", "direction": "SW", "lat": 40.830925, "lon": -73.90079, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.90079, 40.830925 ] } }, -{ "type": "Feature", "properties": { "id": 101460, "name": "Boston Rd/E 168 St", "direction": "SW", "lat": 40.829372, "lon": -73.90263, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.90263, 40.829372 ] } }, -{ "type": "Feature", "properties": { "id": 101461, "name": "Boston Rd/E 166 St", "direction": "SW", "lat": 40.827072, "lon": -73.905266, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.905266, 40.827072 ] } }, -{ "type": "Feature", "properties": { "id": 101469, "name": "3 Av/E 148 St", "direction": "SW", "lat": 40.815342, "lon": -73.91912, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.91912, 40.815342 ] } }, -{ "type": "Feature", "properties": { "id": 101472, "name": "3 Av/E 138 St", "direction": "SW", "lat": 40.811054, "lon": -73.92738, "routes": "BX1, BX32, BX21, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.92738, 40.811054 ] } }, -{ "type": "Feature", "properties": { "id": 101473, "name": "E 136 St/Lincoln Av", "direction": "E", "lat": 40.809654, "lon": -73.92836, "routes": "BX21, BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.92836, 40.809654 ] } }, -{ "type": "Feature", "properties": { "id": 101478, "name": "Castle Hill Av/Norton Av", "direction": "N", "lat": 40.814728, "lon": -73.84692, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.84692, 40.814728 ] } }, -{ "type": "Feature", "properties": { "id": 101479, "name": "Castle Hill Av/Lacombe Av", "direction": "N", "lat": 40.81726, "lon": -73.84749, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.84749, 40.81726 ] } }, -{ "type": "Feature", "properties": { "id": 101480, "name": "Castle Hill Av/Randall Av", "direction": "N", "lat": 40.819405, "lon": -73.84807, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.84807, 40.819405 ] } }, -{ "type": "Feature", "properties": { "id": 101481, "name": "Castle Hill Av/Seward Av", "direction": "N", "lat": 40.821457, "lon": -73.84854, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.84854, 40.821457 ] } }, -{ "type": "Feature", "properties": { "id": 101484, "name": "Castle Hill Av/Quimby Av", "direction": "N", "lat": 40.82608, "lon": -73.84961, "routes": "BX22, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.84961, 40.82608 ] } }, -{ "type": "Feature", "properties": { "id": 101485, "name": "Castle Hill Av/Bruckner Blvd", "direction": "N", "lat": 40.827892, "lon": -73.85005, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85005, 40.827892 ] } }, -{ "type": "Feature", "properties": { "id": 101486, "name": "Castle Hill Av/Watson Av", "direction": "N", "lat": 40.829678, "lon": -73.85048, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85048, 40.829678 ] } }, -{ "type": "Feature", "properties": { "id": 101487, "name": "Castle Hill Av/Cross Bronx Expwy Service Rd North", "direction": "N", "lat": 40.830822, "lon": -73.85072, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85072, 40.830822 ] } }, -{ "type": "Feature", "properties": { "id": 101488, "name": "Castle Hill Av/Gleason Av", "direction": "N", "lat": 40.83224, "lon": -73.851, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.851, 40.83224 ] } }, -{ "type": "Feature", "properties": { "id": 101489, "name": "Castle Hill Av/Westchester Av", "direction": "NW", "lat": 40.834553, "lon": -73.851654, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.851654, 40.834553 ] } }, -{ "type": "Feature", "properties": { "id": 101490, "name": "Starling Av/Purdy St", "direction": "W", "lat": 40.83634, "lon": -73.853096, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.853096, 40.83634 ] } }, -{ "type": "Feature", "properties": { "id": 101491, "name": "Starling Av/Unionport Rd", "direction": "W", "lat": 40.83603, "lon": -73.855736, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.855736, 40.83603 ] } }, -{ "type": "Feature", "properties": { "id": 101494, "name": "Unionport Rd/East Tremont Av", "direction": "NW", "lat": 40.841198, "lon": -73.8633, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.8633, 40.841198 ] } }, -{ "type": "Feature", "properties": { "id": 101496, "name": "White Plains Rd/Van Nest Av", "direction": "N", "lat": 40.844086, "lon": -73.865585, "routes": "BX39, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.865585, 40.844086 ] } }, -{ "type": "Feature", "properties": { "id": 101497, "name": "White Plains Rd/Morris Pk Av", "direction": "N", "lat": 40.84556, "lon": -73.866196, "routes": "BX22, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.866196, 40.84556 ] } }, -{ "type": "Feature", "properties": { "id": 101498, "name": "White Plains Rd/Rhinelander Av", "direction": "N", "lat": 40.847847, "lon": -73.86695, "routes": "BX39, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86695, 40.847847 ] } }, -{ "type": "Feature", "properties": { "id": 101499, "name": "White Plains Rd/Bronxdale Av", "direction": "N", "lat": 40.851303, "lon": -73.86769, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86769, 40.851303 ] } }, -{ "type": "Feature", "properties": { "id": 101512, "name": "Reservoir Av/W 195 St", "direction": "NE", "lat": 40.8695, "lon": -73.89893, "routes": "BX22, BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.89893, 40.8695 ] } }, -{ "type": "Feature", "properties": { "id": 101525, "name": "Goulden Av/Bedford Park Blvd", "direction": "SW", "lat": 40.875294, "lon": -73.89441, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89441, 40.875294 ] } }, -{ "type": "Feature", "properties": { "id": 101530, "name": "Valentine Av/E 192 St", "direction": "SW", "lat": 40.864178, "lon": -73.89445, "routes": "BX28, BX28, BX38, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.89445, 40.864178 ] } }, -{ "type": "Feature", "properties": { "id": 101540, "name": "White Plains Rd/Pelham Pkwy", "direction": "S", "lat": 40.856842, "lon": -73.86768, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86768, 40.856842 ] } }, -{ "type": "Feature", "properties": { "id": 101542, "name": "Bronx Park East/Brady Av", "direction": "S", "lat": 40.852493, "lon": -73.868866, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.868866, 40.852493 ] } }, -{ "type": "Feature", "properties": { "id": 101543, "name": "Bronx Park East/Unionport Rd", "direction": "SE", "lat": 40.850533, "lon": -73.86814, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86814, 40.850533 ] } }, -{ "type": "Feature", "properties": { "id": 101545, "name": "White Plains Rd/Rhinelander Av", "direction": "S", "lat": 40.847183, "lon": -73.8669, "routes": "BX39, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.8669, 40.847183 ] } }, -{ "type": "Feature", "properties": { "id": 101547, "name": "White Plains Rd/Van Nest Av", "direction": "S", "lat": 40.843494, "lon": -73.86558, "routes": "BX39, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86558, 40.843494 ] } }, -{ "type": "Feature", "properties": { "id": 101548, "name": "Unionport Rd/East Tremont Av", "direction": "SE", "lat": 40.841, "lon": -73.8634, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.8634, 40.841 ] } }, -{ "type": "Feature", "properties": { "id": 101551, "name": "Unionport Rd/Starling Av", "direction": "SE", "lat": 40.836, "lon": -73.85617, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85617, 40.836 ] } }, -{ "type": "Feature", "properties": { "id": 101552, "name": "Starling Av/Purdy St", "direction": "E", "lat": 40.836224, "lon": -73.85278, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85278, 40.836224 ] } }, -{ "type": "Feature", "properties": { "id": 101553, "name": "Castle Hill Av/Westchester Av", "direction": "S", "lat": 40.833836, "lon": -73.85158, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85158, 40.833836 ] } }, -{ "type": "Feature", "properties": { "id": 101554, "name": "Castle Hill Av/Gleason Av", "direction": "S", "lat": 40.8316, "lon": -73.85103, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85103, 40.8316 ] } }, -{ "type": "Feature", "properties": { "id": 101555, "name": "Castle Hill Av/Cross Bronx Expwy Service Rd North", "direction": "S", "lat": 40.829964, "lon": -73.85063, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85063, 40.829964 ] } }, -{ "type": "Feature", "properties": { "id": 101556, "name": "Castle Hill Av/Chatterton Av", "direction": "S", "lat": 40.828014, "lon": -73.850204, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.850204, 40.828014 ] } }, -{ "type": "Feature", "properties": { "id": 101557, "name": "Castle Hill Av/Bruckner Blvd", "direction": "S", "lat": 40.826584, "lon": -73.849846, "routes": "BX5, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.849846, 40.826584 ] } }, -{ "type": "Feature", "properties": { "id": 101561, "name": "Castle Hill Av/Seward Av", "direction": "S", "lat": 40.820786, "lon": -73.848495, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.848495, 40.820786 ] } }, -{ "type": "Feature", "properties": { "id": 101562, "name": "Castle Hill Av/Randall Av", "direction": "S", "lat": 40.81861, "lon": -73.848, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.848, 40.81861 ] } }, -{ "type": "Feature", "properties": { "id": 101563, "name": "Castle Hill Av/Lacombe Av", "direction": "S", "lat": 40.817005, "lon": -73.8477, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.8477, 40.817005 ] } }, -{ "type": "Feature", "properties": { "id": 101564, "name": "Castle Hill Av/Norton Av", "direction": "S", "lat": 40.814484, "lon": -73.84709, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.84709, 40.814484 ] } }, -{ "type": "Feature", "properties": { "id": 101687, "name": "Jerome Av/E 196 St", "direction": "NE", "lat": 40.869164, "lon": -73.89606, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.89606, 40.869164 ] } }, -{ "type": "Feature", "properties": { "id": 101688, "name": "Jerome Av/Morris Av", "direction": "NE", "lat": 40.870975, "lon": -73.89389, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.89389, 40.870975 ] } }, -{ "type": "Feature", "properties": { "id": 101691, "name": "Bedford Park Blvd/Grand Concourse", "direction": "SE", "lat": 40.87166, "lon": -73.887535, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.887535, 40.87166 ] } }, -{ "type": "Feature", "properties": { "id": 101692, "name": "Bedford Park Blvd/Bainbridge Av", "direction": "SE", "lat": 40.869884, "lon": -73.88532, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.88532, 40.869884 ] } }, -{ "type": "Feature", "properties": { "id": 101693, "name": "Bedford Park Blvd/Marion Av", "direction": "SE", "lat": 40.86833, "lon": -73.88464, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.88464, 40.86833 ] } }, -{ "type": "Feature", "properties": { "id": 101694, "name": "Bedford Park Blvd/Webster Av", "direction": "SE", "lat": 40.866886, "lon": -73.8834, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.8834, 40.866886 ] } }, -{ "type": "Feature", "properties": { "id": 101695, "name": "Kazimiroff Blvd/Botanical Gardens East", "direction": "NE", "lat": 40.86666, "lon": -73.88098, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.88098, 40.86666 ] } }, -{ "type": "Feature", "properties": { "id": 101696, "name": "Allerton Av/Bronx Park East", "direction": "E", "lat": 40.865322, "lon": -73.869934, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.869934, 40.865322 ] } }, -{ "type": "Feature", "properties": { "id": 101697, "name": "Allerton Av/White Plains Rd", "direction": "E", "lat": 40.865353, "lon": -73.86687, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.86687, 40.865353 ] } }, -{ "type": "Feature", "properties": { "id": 101699, "name": "Allerton Av/Barnes Av", "direction": "E", "lat": 40.865425, "lon": -73.863075, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.863075, 40.865425 ] } }, -{ "type": "Feature", "properties": { "id": 101703, "name": "Allerton Av/Laconia Av", "direction": "E", "lat": 40.865364, "lon": -73.85532, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.85532, 40.865364 ] } }, -{ "type": "Feature", "properties": { "id": 101705, "name": "Allerton Av/Pearsall Av", "direction": "E", "lat": 40.86527, "lon": -73.85153, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.85153, 40.86527 ] } }, -{ "type": "Feature", "properties": { "id": 101707, "name": "Allerton Av/Fish Av", "direction": "E", "lat": 40.86525, "lon": -73.84733, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.84733, 40.86525 ] } }, -{ "type": "Feature", "properties": { "id": 101709, "name": "Allerton Av/Eastchester Rd", "direction": "E", "lat": 40.865124, "lon": -73.843544, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.843544, 40.865124 ] } }, -{ "type": "Feature", "properties": { "id": 101711, "name": "Allerton Av/Westervelt Av", "direction": "E", "lat": 40.865047, "lon": -73.8394, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.8394, 40.865047 ] } }, -{ "type": "Feature", "properties": { "id": 101712, "name": "Allerton Av/Lodovick Av", "direction": "E", "lat": 40.86501, "lon": -73.83715, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.83715, 40.86501 ] } }, -{ "type": "Feature", "properties": { "id": 101713, "name": "Bartow Av/Gunther Av", "direction": "E", "lat": 40.866985, "lon": -73.83714, "routes": "BX38, BX26, BX25, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.83714, 40.866985 ] } }, -{ "type": "Feature", "properties": { "id": 101714, "name": "Bartow Av/Ely Av", "direction": "E", "lat": 40.86788, "lon": -73.834404, "routes": "BX26, BX25, BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.834404, 40.86788 ] } }, -{ "type": "Feature", "properties": { "id": 101716, "name": "Baychester Av/Aldrich St", "direction": "NW", "lat": 40.87065, "lon": -73.83257, "routes": "BX23, BX38, BX25, Q50, BX30, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.83257, 40.87065 ] } }, -{ "type": "Feature", "properties": { "id": 101717, "name": "Baychester Av/Donizetti Pl", "direction": "N", "lat": 40.87637, "lon": -73.83368, "routes": "Q50, BX23, BX28, BX25, BX30, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.83368, 40.87637 ] } }, -{ "type": "Feature", "properties": { "id": 101718, "name": "Baychester Av/Darrow Pl", "direction": "NE", "lat": 40.878525, "lon": -73.83285, "routes": "BX28, BX38, BX23, Q50, BX30, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.83285, 40.878525 ] } }, -{ "type": "Feature", "properties": { "id": 101719, "name": "Dreiser Loop/Co-Op City Blvd", "direction": "S", "lat": 40.87787, "lon": -73.829666, "routes": "BX25, BX28, BX38, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.829666, 40.87787 ] } }, -{ "type": "Feature", "properties": { "id": 101721, "name": "Dreiser Loop/Debs Pl", "direction": "NE", "lat": 40.876987, "lon": -73.82807, "routes": "BX23, BX25, BX38, BX30, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82807, 40.876987 ] } }, -{ "type": "Feature", "properties": { "id": 101722, "name": "Dreiser Loop/Co-Op City Blvd", "direction": "NW", "lat": 40.87834, "lon": -73.82806, "routes": "BX28, BX25, BX38, BX30, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82806, 40.87834 ] } }, -{ "type": "Feature", "properties": { "id": 101723, "name": "Co-Op City Blvd/Carver Loop 2", "direction": "E", "lat": 40.879402, "lon": -73.82494, "routes": "BXM7, BX28, Q50, BX25, BX30, BX38, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82494, 40.879402 ] } }, -{ "type": "Feature", "properties": { "id": 101724, "name": "Co-Op City Blvd/Bellamy Loop N", "direction": "S", "lat": 40.87381, "lon": -73.82457, "routes": "BX38, Q50, BX25, BX28, BXM7, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82457, 40.87381 ] } }, -{ "type": "Feature", "properties": { "id": 101725, "name": "Co-Op City Blvd/Bellamy Loop S", "direction": "SW", "lat": 40.871925, "lon": -73.82476, "routes": "BX25, BX28, BX38, Q50, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82476, 40.871925 ] } }, -{ "type": "Feature", "properties": { "id": 101726, "name": "Asch Loop/Co-Op City Blvd", "direction": "W", "lat": 40.870598, "lon": -73.82623, "routes": "BX23, BX30, BX26, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82623, 40.870598 ] } }, -{ "type": "Feature", "properties": { "id": 101727, "name": "Asch Loop/Alcott Pl", "direction": "W", "lat": 40.87147, "lon": -73.83041, "routes": "BX28, BX30, BXM7, BX23, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.83041, 40.87147 ] } }, -{ "type": "Feature", "properties": { "id": 101728, "name": "Asch Loop/Bartow Av", "direction": "SE", "lat": 40.86929, "lon": -73.83061, "routes": "BX30, BX26, BX23, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.83061, 40.86929 ] } }, -{ "type": "Feature", "properties": { "id": 101729, "name": "Hutchinson River Pkwy/Einstein Loop North", "direction": "SW", "lat": 40.865444, "lon": -73.82376, "routes": "BX23, Q50, BX28, BX30, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.82376, 40.865444 ] } }, -{ "type": "Feature", "properties": { "id": 101730, "name": "Hutchinson River Pkwy/Einstein Loop South", "direction": "SW", "lat": 40.864525, "lon": -73.82459, "routes": "BX26, BX30, BX23, Q50, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82459, 40.864525 ] } }, -{ "type": "Feature", "properties": { "id": 101731, "name": "Hunter Av/Boller Av", "direction": "SE", "lat": 40.86233, "lon": -73.82557, "routes": "BX26, BX30, BX23, BX28, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82557, 40.86233 ] } }, -{ "type": "Feature", "properties": { "id": 101732, "name": "Erskine Pl/Earhart La", "direction": "E", "lat": 40.860825, "lon": -73.82267, "routes": "BX30, BX26, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82267, 40.860825 ] } }, -{ "type": "Feature", "properties": { "id": 101734, "name": "Earhart La/Erskine Pl", "direction": "NW", "lat": 40.861115, "lon": -73.82255, "routes": "BX28, Q50, BX23, BX26, BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.82255, 40.861115 ] } }, -{ "type": "Feature", "properties": { "id": 101735, "name": "Hunter Av/Earhart La", "direction": "NW", "lat": 40.862, "lon": -73.82445, "routes": "BX30, BX23, BX28, BX26, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82445, 40.862 ] } }, -{ "type": "Feature", "properties": { "id": 101737, "name": "Hutchinson River Pkwy East/Einstein Loop South", "direction": "NE", "lat": 40.865013, "lon": -73.82388, "routes": "BX26, BX28, BX23, Q50, BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.82388, 40.865013 ] } }, -{ "type": "Feature", "properties": { "id": 101738, "name": "Hutchinson River Pkwy East/Einstein Loop North", "direction": "NE", "lat": 40.866013, "lon": -73.82298, "routes": "Q50, BX26, BX28, BX23, BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.82298, 40.866013 ] } }, -{ "type": "Feature", "properties": { "id": 101739, "name": "Bartow Av/Co-Op City Blvd", "direction": "W", "lat": 40.8696, "lon": -73.82871, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.82871, 40.8696 ] } }, -{ "type": "Feature", "properties": { "id": 101740, "name": "Asch Loop/Bartow Av", "direction": "NW", "lat": 40.869392, "lon": -73.83056, "routes": "BX23, BX28, BX30, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.83056, 40.869392 ] } }, -{ "type": "Feature", "properties": { "id": 101742, "name": "Asch Loop/Co-Op City Blvd", "direction": "SE", "lat": 40.870438, "lon": -73.82612, "routes": "BX28, BX23, BX26, BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.82612, 40.870438 ] } }, -{ "type": "Feature", "properties": { "id": 101743, "name": "Co-Op City Blvd/Bellamy Loop North", "direction": "N", "lat": 40.874344, "lon": -73.82432, "routes": "BX28, BXM7, BX23, Q50, BX38, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.82432, 40.874344 ] } }, -{ "type": "Feature", "properties": { "id": 101744, "name": "Co-Op City Blvd/Peartree Av", "direction": "W", "lat": 40.87994, "lon": -73.823845, "routes": "BX38, Q50, BX30, BX25, BX28, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.823845, 40.87994 ] } }, -{ "type": "Feature", "properties": { "id": 101745, "name": "Co-Op City Blvd/Carver Loop #1", "direction": "W", "lat": 40.879272, "lon": -73.82586, "routes": "BXM7, BX28, BX23, Q50, BX25, BX38, BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.82586, 40.879272 ] } }, -{ "type": "Feature", "properties": { "id": 101746, "name": "Dreiser Loop/Co-Op City Blvd", "direction": "S", "lat": 40.878033, "lon": -73.82823, "routes": "BX23, BX28, BX30, BX25, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.82823, 40.878033 ] } }, -{ "type": "Feature", "properties": { "id": 101747, "name": "Dreiser Loop/Debs Pl", "direction": "SW", "lat": 40.876766, "lon": -73.82843, "routes": "BX30, BX28, BX25, BX38, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82843, 40.876766 ] } }, -{ "type": "Feature", "properties": { "id": 101749, "name": "Dreiser Loop/Co-Op City Blvd", "direction": "N", "lat": 40.878094, "lon": -73.82944, "routes": "BX30, BX28, BX25, BX38, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82944, 40.878094 ] } }, -{ "type": "Feature", "properties": { "id": 101750, "name": "Baychester Av/Darrow Pl", "direction": "SW", "lat": 40.878628, "lon": -73.83305, "routes": "BX28, BX25, BX38, BX30, BX23, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.83305, 40.878628 ] } }, -{ "type": "Feature", "properties": { "id": 101751, "name": "Baychester Av/Donizetti Pl", "direction": "S", "lat": 40.8763, "lon": -73.83391, "routes": "BX30, BX38, BX23, Q50, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.83391, 40.8763 ] } }, -{ "type": "Feature", "properties": { "id": 101752, "name": "Baychester Av/Aldrich St", "direction": "SE", "lat": 40.8699, "lon": -73.832504, "routes": "BX30, Q50, BX25, BX23, BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.832504, 40.8699 ] } }, -{ "type": "Feature", "properties": { "id": 101755, "name": "Gunther Av/Bartow Av", "direction": "SE", "lat": 40.866524, "lon": -73.83715, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.83715, 40.866524 ] } }, -{ "type": "Feature", "properties": { "id": 101756, "name": "Allerton Av/Westervelt Av", "direction": "W", "lat": 40.865177, "lon": -73.83993, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.83993, 40.865177 ] } }, -{ "type": "Feature", "properties": { "id": 101757, "name": "Allerton Av/Eastchester Rd", "direction": "W", "lat": 40.86525, "lon": -73.84322, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.84322, 40.86525 ] } }, -{ "type": "Feature", "properties": { "id": 101759, "name": "Allerton Av/Fish Av", "direction": "W", "lat": 40.86531, "lon": -73.84715, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.84715, 40.86531 ] } }, -{ "type": "Feature", "properties": { "id": 101761, "name": "Allerton Av/Pearsall Av", "direction": "W", "lat": 40.865425, "lon": -73.85183, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.85183, 40.865425 ] } }, -{ "type": "Feature", "properties": { "id": 101763, "name": "Allerton Av/Laconia Av", "direction": "W", "lat": 40.865536, "lon": -73.856255, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.856255, 40.865536 ] } }, -{ "type": "Feature", "properties": { "id": 101765, "name": "Allerton Av/Williamsbridge Rd", "direction": "W", "lat": 40.865566, "lon": -73.86024, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.86024, 40.865566 ] } }, -{ "type": "Feature", "properties": { "id": 101767, "name": "Allerton Av/Matthews Av", "direction": "W", "lat": 40.865555, "lon": -73.86298, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.86298, 40.865555 ] } }, -{ "type": "Feature", "properties": { "id": 101769, "name": "Allerton Av/White Plains Rd", "direction": "W", "lat": 40.865505, "lon": -73.867874, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.867874, 40.865505 ] } }, -{ "type": "Feature", "properties": { "id": 101770, "name": "Allerton Av/Barker Av", "direction": "W", "lat": 40.865456, "lon": -73.86961, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.86961, 40.865456 ] } }, -{ "type": "Feature", "properties": { "id": 101771, "name": "Kazimiroff Blvd/Botanical Gardens", "direction": "SW", "lat": 40.86688, "lon": -73.88079, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.88079, 40.86688 ] } }, -{ "type": "Feature", "properties": { "id": 101772, "name": "Bedford Park Blvd/Webster Av", "direction": "NW", "lat": 40.86787, "lon": -73.88402, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.88402, 40.86787 ] } }, -{ "type": "Feature", "properties": { "id": 101773, "name": "Bedford Park Blvd/Marion Av", "direction": "N", "lat": 40.86908, "lon": -73.88471, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.88471, 40.86908 ] } }, -{ "type": "Feature", "properties": { "id": 101774, "name": "Bedford Park Blvd/Briggs Av", "direction": "NW", "lat": 40.870705, "lon": -73.88605, "routes": "BX34, BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.88605, 40.870705 ] } }, -{ "type": "Feature", "properties": { "id": 101779, "name": "Jerome Av/Morris Av", "direction": "SW", "lat": 40.87124, "lon": -73.89348, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.89348, 40.87124 ] } }, -{ "type": "Feature", "properties": { "id": 101780, "name": "Jerome Av/E 196 St", "direction": "SW", "lat": 40.869347, "lon": -73.896, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.896, 40.869347 ] } }, -{ "type": "Feature", "properties": { "id": 101781, "name": "Jerome Av/West Kingsbridge Rd", "direction": "SW", "lat": 40.867596, "lon": -73.897385, "routes": "BX32, BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.897385, 40.867596 ] } }, -{ "type": "Feature", "properties": { "id": 101784, "name": "West Farms Rd/Westchester Av", "direction": "SW", "lat": 40.825176, "lon": -73.89146, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.89146, 40.825176 ] } }, -{ "type": "Feature", "properties": { "id": 101794, "name": "Morrison Av/Westchester Av", "direction": "S", "lat": 40.829098, "lon": -73.87457, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.87457, 40.829098 ] } }, -{ "type": "Feature", "properties": { "id": 101795, "name": "Morrison Av/Watson Av", "direction": "S", "lat": 40.826763, "lon": -73.87402, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.87402, 40.826763 ] } }, -{ "type": "Feature", "properties": { "id": 101797, "name": "Watson Av/Croes Av", "direction": "E", "lat": 40.827145, "lon": -73.86968, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86968, 40.827145 ] } }, -{ "type": "Feature", "properties": { "id": 101798, "name": "Rosedale Av/1055 Rosedale Av", "direction": "S", "lat": 40.826283, "lon": -73.86819, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86819, 40.826283 ] } }, -{ "type": "Feature", "properties": { "id": 101799, "name": "Rosedale Av/Bruckner Blvd", "direction": "S", "lat": 40.824474, "lon": -73.867676, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.867676, 40.824474 ] } }, -{ "type": "Feature", "properties": { "id": 101800, "name": "Rosedale Av/Story Av", "direction": "S", "lat": 40.82318, "lon": -73.86737, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86737, 40.82318 ] } }, -{ "type": "Feature", "properties": { "id": 101811, "name": "Soundview Av/Patterson Av", "direction": "SE", "lat": 40.813435, "lon": -73.857956, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.857956, 40.813435 ] } }, -{ "type": "Feature", "properties": { "id": 101812, "name": "Soundview Av/Obrien Av", "direction": "SE", "lat": 40.811462, "lon": -73.856224, "routes": "BX39, BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.856224, 40.811462 ] } }, -{ "type": "Feature", "properties": { "id": 101813, "name": "Soundview Av/Gildersleeve Av", "direction": "S", "lat": 40.809387, "lon": -73.85542, "routes": "BX27, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85542, 40.809387 ] } }, -{ "type": "Feature", "properties": { "id": 101814, "name": "Soundview Av/Newman Av", "direction": "SE", "lat": 40.80825, "lon": -73.85368, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.85368, 40.80825 ] } }, -{ "type": "Feature", "properties": { "id": 101819, "name": "Soundview Av/Stephens Av", "direction": "NW", "lat": 40.80787, "lon": -73.852715, "routes": "BX39, BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.852715, 40.80787 ] } }, -{ "type": "Feature", "properties": { "id": 101820, "name": "Soundview Av/Gildersleeve Av", "direction": "N", "lat": 40.809536, "lon": -73.8553, "routes": "BX27, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.8553, 40.809536 ] } }, -{ "type": "Feature", "properties": { "id": 101821, "name": "Soundview Av/O'Brien Av", "direction": "NW", "lat": 40.811317, "lon": -73.85594, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.85594, 40.811317 ] } }, -{ "type": "Feature", "properties": { "id": 101822, "name": "Soundview Av/Patterson Av", "direction": "NW", "lat": 40.81365, "lon": -73.85788, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.85788, 40.81365 ] } }, -{ "type": "Feature", "properties": { "id": 101833, "name": "Rosedale Av/Story Av", "direction": "N", "lat": 40.823444, "lon": -73.86716, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86716, 40.823444 ] } }, -{ "type": "Feature", "properties": { "id": 101834, "name": "Rosedale Av/Bruckner Blvd", "direction": "N", "lat": 40.82473, "lon": -73.867546, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.867546, 40.82473 ] } }, -{ "type": "Feature", "properties": { "id": 101835, "name": "Rosedale Av/1040 Rosedale Av", "direction": "N", "lat": 40.826424, "lon": -73.86777, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86777, 40.826424 ] } }, -{ "type": "Feature", "properties": { "id": 101837, "name": "Watson Av/Croes Av", "direction": "W", "lat": 40.827187, "lon": -73.870544, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.870544, 40.827187 ] } }, -{ "type": "Feature", "properties": { "id": 101839, "name": "Morrison Av/Watson Av", "direction": "N", "lat": 40.827023, "lon": -73.87384, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.87384, 40.827023 ] } }, -{ "type": "Feature", "properties": { "id": 101840, "name": "Morrison Av/Westchester Av", "direction": "N", "lat": 40.829403, "lon": -73.874504, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.874504, 40.829403 ] } }, -{ "type": "Feature", "properties": { "id": 101861, "name": "East Gun Hill Rd/Tryon Av", "direction": "SE", "lat": 40.88002, "lon": -73.87641, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.87641, 40.88002 ] } }, -{ "type": "Feature", "properties": { "id": 101863, "name": "East Gun Hill Rd/Hull Av", "direction": "E", "lat": 40.878754, "lon": -73.8731, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.8731, 40.878754 ] } }, -{ "type": "Feature", "properties": { "id": 101866, "name": "East Gun Hill Rd/White Plains Rd", "direction": "E", "lat": 40.877136, "lon": -73.86581, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.86581, 40.877136 ] } }, -{ "type": "Feature", "properties": { "id": 101867, "name": "East Gun Hill Rd/Barnes Av", "direction": "E", "lat": 40.876007, "lon": -73.8623, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.8623, 40.876007 ] } }, -{ "type": "Feature", "properties": { "id": 101868, "name": "East Gun Hill Rd/Bronxwood Av", "direction": "E", "lat": 40.875385, "lon": -73.86021, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.86021, 40.875385 ] } }, -{ "type": "Feature", "properties": { "id": 101869, "name": "East Gun Hill Rd/Paulding Av", "direction": "E", "lat": 40.87456, "lon": -73.85767, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.85767, 40.87456 ] } }, -{ "type": "Feature", "properties": { "id": 101871, "name": "East Gun Hill Rd/Hering Av", "direction": "E", "lat": 40.873108, "lon": -73.85315, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.85315, 40.873108 ] } }, -{ "type": "Feature", "properties": { "id": 101872, "name": "East Gun Hill Rd/Pearsall Av", "direction": "E", "lat": 40.8725, "lon": -73.85127, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.85127, 40.8725 ] } }, -{ "type": "Feature", "properties": { "id": 101873, "name": "East Gun Hill Rd/Burke Av", "direction": "E", "lat": 40.871796, "lon": -73.849, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.849, 40.871796 ] } }, -{ "type": "Feature", "properties": { "id": 101875, "name": "East Gun Hill Rd/Dewitt Pl", "direction": "SE", "lat": 40.869946, "lon": -73.84534, "routes": "BX38, BX28, BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.84534, 40.869946 ] } }, -{ "type": "Feature", "properties": { "id": 101876, "name": "East Gun Hill Rd/Eastchester Rd", "direction": "SE", "lat": 40.86853, "lon": -73.84262, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.84262, 40.86853 ] } }, -{ "type": "Feature", "properties": { "id": 101924, "name": "East Gun Hill Rd/Eastchester Rd", "direction": "NW", "lat": 40.868416, "lon": -73.84223, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.84223, 40.868416 ] } }, -{ "type": "Feature", "properties": { "id": 101925, "name": "East Gun Hill Rd/Knapp St", "direction": "NW", "lat": 40.869865, "lon": -73.844986, "routes": "BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.844986, 40.869865 ] } }, -{ "type": "Feature", "properties": { "id": 101927, "name": "East Gun Hill Rd/Burke Av", "direction": "NW", "lat": 40.87161, "lon": -73.848366, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.848366, 40.87161 ] } }, -{ "type": "Feature", "properties": { "id": 101928, "name": "East Gun Hill Rd/Givan Av", "direction": "W", "lat": 40.872807, "lon": -73.85197, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.85197, 40.872807 ] } }, -{ "type": "Feature", "properties": { "id": 101929, "name": "East Gun Hill Rd/Boston Rd", "direction": "W", "lat": 40.873478, "lon": -73.85403, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.85403, 40.873478 ] } }, -{ "type": "Feature", "properties": { "id": 101931, "name": "East Gun Hill Rd/Paulding Av", "direction": "W", "lat": 40.874874, "lon": -73.85838, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.85838, 40.874874 ] } }, -{ "type": "Feature", "properties": { "id": 101933, "name": "East Gun Hill Rd/Barnes Av", "direction": "W", "lat": 40.876156, "lon": -73.862526, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.862526, 40.876156 ] } }, -{ "type": "Feature", "properties": { "id": 101956, "name": "Webster Av/E 204 St", "direction": "NE", "lat": 40.87137, "lon": -73.87645, "routes": "BX41+, BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.87645, 40.87137 ] } }, -{ "type": "Feature", "properties": { "id": 101958, "name": "Webster Av/East Gun Hill Rd", "direction": "N", "lat": 40.87838, "lon": -73.87159, "routes": "BX41+, BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.87159, 40.87838 ] } }, -{ "type": "Feature", "properties": { "id": 101964, "name": "Boston Rd/East Gun Hill Rd", "direction": "NE", "lat": 40.873623, "lon": -73.85302, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.85302, 40.873623 ] } }, -{ "type": "Feature", "properties": { "id": 101965, "name": "Boston Rd/Wilson Av", "direction": "NE", "lat": 40.875626, "lon": -73.85018, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.85018, 40.875626 ] } }, -{ "type": "Feature", "properties": { "id": 101966, "name": "Boston Rd/Seymour Av", "direction": "E", "lat": 40.876247, "lon": -73.84844, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.84844, 40.876247 ] } }, -{ "type": "Feature", "properties": { "id": 101967, "name": "Boston Rd/Eastchester Rd", "direction": "E", "lat": 40.877113, "lon": -73.845764, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.845764, 40.877113 ] } }, -{ "type": "Feature", "properties": { "id": 101969, "name": "Boston Rd/Wickham Av", "direction": "NE", "lat": 40.879585, "lon": -73.842255, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.842255, 40.879585 ] } }, -{ "type": "Feature", "properties": { "id": 101971, "name": "Boston Rd/Baychester Av", "direction": "E", "lat": 40.8811, "lon": -73.838875, "routes": "BX30, BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.838875, 40.8811 ] } }, -{ "type": "Feature", "properties": { "id": 101972, "name": "Boston Rd/Bivona St", "direction": "E", "lat": 40.884228, "lon": -73.83319, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.83319, 40.884228 ] } }, -{ "type": "Feature", "properties": { "id": 101973, "name": "Boston Rd/Steenwick Av", "direction": "E", "lat": 40.884598, "lon": -73.83143, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.83143, 40.884598 ] } }, -{ "type": "Feature", "properties": { "id": 101975, "name": "Peartree Av/Givan Av", "direction": "SE", "lat": 40.881664, "lon": -73.823265, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.823265, 40.881664 ] } }, -{ "type": "Feature", "properties": { "id": 102010, "name": "Boston Rd/Bivona St", "direction": "W", "lat": 40.88434, "lon": -73.83357, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.83357, 40.88434 ] } }, -{ "type": "Feature", "properties": { "id": 102011, "name": "Boston Rd/Baychester Av", "direction": "W", "lat": 40.881344, "lon": -73.83868, "routes": "BX90, BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.83868, 40.881344 ] } }, -{ "type": "Feature", "properties": { "id": 102013, "name": "Boston Rd/Bruner Av", "direction": "SW", "lat": 40.87969, "lon": -73.84253, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.84253, 40.87969 ] } }, -{ "type": "Feature", "properties": { "id": 102015, "name": "Boston Rd/Eastchester Rd", "direction": "W", "lat": 40.876926, "lon": -73.84703, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.84703, 40.876926 ] } }, -{ "type": "Feature", "properties": { "id": 102016, "name": "Boston Rd/Seymour Av", "direction": "W", "lat": 40.876087, "lon": -73.8496, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.8496, 40.876087 ] } }, -{ "type": "Feature", "properties": { "id": 102017, "name": "Boston Rd/Wilson Av", "direction": "SW", "lat": 40.875275, "lon": -73.85122, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.85122, 40.875275 ] } }, -{ "type": "Feature", "properties": { "id": 102030, "name": "Bainbridge Av/E 206 St", "direction": "S", "lat": 40.87506, "lon": -73.87955, "routes": "BX10, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.87955, 40.87506 ] } }, -{ "type": "Feature", "properties": { "id": 102034, "name": "Eastchester Rd/Waters Pl", "direction": "N", "lat": 40.846764, "lon": -73.84455, "routes": "BX21, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84455, 40.846764 ] } }, -{ "type": "Feature", "properties": { "id": 102037, "name": "Eastchester Rd/Morris Park Av", "direction": "NE", "lat": 40.851322, "lon": -73.84409, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84409, 40.851322 ] } }, -{ "type": "Feature", "properties": { "id": 102039, "name": "Eastchester Rd/Seminole St", "direction": "N", "lat": 40.854973, "lon": -73.843636, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.843636, 40.854973 ] } }, -{ "type": "Feature", "properties": { "id": 102041, "name": "Eastchester Rd/Pelham Pkwy", "direction": "NE", "lat": 40.85802, "lon": -73.84329, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84329, 40.85802 ] } }, -{ "type": "Feature", "properties": { "id": 102042, "name": "Eastchester Rd/Astor Av", "direction": "N", "lat": 40.859825, "lon": -73.84293, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84293, 40.859825 ] } }, -{ "type": "Feature", "properties": { "id": 102044, "name": "Eastchester Rd/Mace Av", "direction": "N", "lat": 40.863102, "lon": -73.84331, "routes": "BX31, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84331, 40.863102 ] } }, -{ "type": "Feature", "properties": { "id": 102045, "name": "Eastchester Rd/Allerton Av", "direction": "N", "lat": 40.865562, "lon": -73.84323, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84323, 40.865562 ] } }, -{ "type": "Feature", "properties": { "id": 102047, "name": "Eastchester Rd/East Gun Hill Rd", "direction": "NE", "lat": 40.868202, "lon": -73.84239, "routes": "BX31, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84239, 40.868202 ] } }, -{ "type": "Feature", "properties": { "id": 102049, "name": "Eastchester Rd/Hammersley Av", "direction": "N", "lat": 40.87165, "lon": -73.84358, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84358, 40.87165 ] } }, -{ "type": "Feature", "properties": { "id": 102050, "name": "Eastchester Rd/Burke Av", "direction": "NW", "lat": 40.873394, "lon": -73.844284, "routes": "BXM10, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.844284, 40.873394 ] } }, -{ "type": "Feature", "properties": { "id": 102051, "name": "Eastchester Rd/Givan Av", "direction": "NW", "lat": 40.875057, "lon": -73.84518, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84518, 40.875057 ] } }, -{ "type": "Feature", "properties": { "id": 102052, "name": "Eastchester Rd/Boston Rd", "direction": "NW", "lat": 40.876934, "lon": -73.84619, "routes": "BXM10, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84619, 40.876934 ] } }, -{ "type": "Feature", "properties": { "id": 102053, "name": "Eastchester Rd/Chester St", "direction": "NW", "lat": 40.87928, "lon": -73.847466, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.847466, 40.87928 ] } }, -{ "type": "Feature", "properties": { "id": 102055, "name": "Eastchester Rd/E 222 St", "direction": "NW", "lat": 40.88111, "lon": -73.84845, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84845, 40.88111 ] } }, -{ "type": "Feature", "properties": { "id": 102056, "name": "E 225 St/Laconia Av", "direction": "SE", "lat": 40.88401, "lon": -73.8489, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.8489, 40.88401 ] } }, -{ "type": "Feature", "properties": { "id": 102059, "name": "E 229 St/Schieffelin Av", "direction": "NW", "lat": 40.885334, "lon": -73.84339, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84339, 40.885334 ] } }, -{ "type": "Feature", "properties": { "id": 102061, "name": "Laconia Av/Grenada Pl", "direction": "NE", "lat": 40.888035, "lon": -73.84672, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84672, 40.888035 ] } }, -{ "type": "Feature", "properties": { "id": 102062, "name": "Laconia Av/E 233 St", "direction": "NE", "lat": 40.88958, "lon": -73.84587, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84587, 40.88958 ] } }, -{ "type": "Feature", "properties": { "id": 102064, "name": "E 233 St/Bussing Av", "direction": "W", "lat": 40.89232, "lon": -73.85369, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.85369, 40.89232 ] } }, -{ "type": "Feature", "properties": { "id": 102065, "name": "E 233 St/White Plains Rd", "direction": "W", "lat": 40.89363, "lon": -73.85777, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.85777, 40.89363 ] } }, -{ "type": "Feature", "properties": { "id": 102066, "name": "E 233 St/Carpenter Av", "direction": "W", "lat": 40.89453, "lon": -73.86061, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86061, 40.89453 ] } }, -{ "type": "Feature", "properties": { "id": 102071, "name": "E 233 St/Bronx Bl", "direction": "E", "lat": 40.894413, "lon": -73.86092, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86092, 40.894413 ] } }, -{ "type": "Feature", "properties": { "id": 102072, "name": "E 233 St/White Plains Rd", "direction": "E", "lat": 40.893135, "lon": -73.856865, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.856865, 40.893135 ] } }, -{ "type": "Feature", "properties": { "id": 102073, "name": "E 233 St/Bussing Av", "direction": "E", "lat": 40.89215, "lon": -73.85367, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.85367, 40.89215 ] } }, -{ "type": "Feature", "properties": { "id": 102074, "name": "E 233 St/Paulding Av", "direction": "E", "lat": 40.89043, "lon": -73.84837, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84837, 40.89043 ] } }, -{ "type": "Feature", "properties": { "id": 102076, "name": "Laconia Av/E 230 St", "direction": "SW", "lat": 40.887814, "lon": -73.8471, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.8471, 40.887814 ] } }, -{ "type": "Feature", "properties": { "id": 102079, "name": "E 229 St/Schieffelin Av", "direction": "SE", "lat": 40.884697, "lon": -73.84291, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84291, 40.884697 ] } }, -{ "type": "Feature", "properties": { "id": 102081, "name": "E 225 St/Schieffelin Pl", "direction": "NW", "lat": 40.882492, "lon": -73.84491, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84491, 40.882492 ] } }, -{ "type": "Feature", "properties": { "id": 102083, "name": "Laconia Av/E 225 St", "direction": "SW", "lat": 40.883984, "lon": -73.84959, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84959, 40.883984 ] } }, -{ "type": "Feature", "properties": { "id": 102085, "name": "Eastchester Rd/Chester St", "direction": "SE", "lat": 40.878754, "lon": -73.84743, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84743, 40.878754 ] } }, -{ "type": "Feature", "properties": { "id": 102086, "name": "Eastchester Rd/Boston Rd", "direction": "SE", "lat": 40.877144, "lon": -73.84655, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84655, 40.877144 ] } }, -{ "type": "Feature", "properties": { "id": 102087, "name": "Eastchester Rd/Givan Av", "direction": "SE", "lat": 40.874367, "lon": -73.845055, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.845055, 40.874367 ] } }, -{ "type": "Feature", "properties": { "id": 102088, "name": "Eastchester Rd/Burke Av", "direction": "S", "lat": 40.87269, "lon": -73.84421, "routes": "BX31, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84421, 40.87269 ] } }, -{ "type": "Feature", "properties": { "id": 102089, "name": "Eastchester Rd/Hammersley Av", "direction": "S", "lat": 40.87088, "lon": -73.84352, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84352, 40.87088 ] } }, -{ "type": "Feature", "properties": { "id": 102090, "name": "Eastchester Rd/East Gun Hill Rd", "direction": "S", "lat": 40.868866, "lon": -73.84245, "routes": "BX31, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84245, 40.868866 ] } }, -{ "type": "Feature", "properties": { "id": 102092, "name": "Eastchester Rd/Allerton Av", "direction": "S", "lat": 40.864834, "lon": -73.84348, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84348, 40.864834 ] } }, -{ "type": "Feature", "properties": { "id": 102093, "name": "Eastchester Rd/Mace Av", "direction": "S", "lat": 40.862434, "lon": -73.84354, "routes": "BX31, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84354, 40.862434 ] } }, -{ "type": "Feature", "properties": { "id": 102095, "name": "Eastchester Rd/Astor Av", "direction": "S", "lat": 40.859177, "lon": -73.84308, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84308, 40.859177 ] } }, -{ "type": "Feature", "properties": { "id": 102097, "name": "Eastchester Rd/Pelham Pkwy", "direction": "S", "lat": 40.85784, "lon": -73.84361, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84361, 40.85784 ] } }, -{ "type": "Feature", "properties": { "id": 102098, "name": "Eastchester Rd/Seminole St", "direction": "S", "lat": 40.854153, "lon": -73.84365, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84365, 40.854153 ] } }, -{ "type": "Feature", "properties": { "id": 102100, "name": "Eastchester Rd/Morris Park Av", "direction": "SW", "lat": 40.85135, "lon": -73.84432, "routes": "BX31, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84432, 40.85135 ] } }, -{ "type": "Feature", "properties": { "id": 102107, "name": "Lincoln Av/E 138 St", "direction": "NE", "lat": 40.81086, "lon": -73.92718, "routes": "BX32, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.92718, 40.81086 ] } }, -{ "type": "Feature", "properties": { "id": 102111, "name": "Morris Av/E 149 St", "direction": "NE", "lat": 40.817703, "lon": -73.92251, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.92251, 40.817703 ] } }, -{ "type": "Feature", "properties": { "id": 102113, "name": "Morris Av/E 153 St", "direction": "NE", "lat": 40.820538, "lon": -73.921295, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.921295, 40.820538 ] } }, -{ "type": "Feature", "properties": { "id": 102114, "name": "Morris Av/E 156 St", "direction": "NE", "lat": 40.821934, "lon": -73.92046, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.92046, 40.821934 ] } }, -{ "type": "Feature", "properties": { "id": 102115, "name": "Morris Av/E 158 St", "direction": "NE", "lat": 40.824097, "lon": -73.91918, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91918, 40.824097 ] } }, -{ "type": "Feature", "properties": { "id": 102116, "name": "Morris Av/E 161 St", "direction": "NE", "lat": 40.82586, "lon": -73.918205, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.918205, 40.82586 ] } }, -{ "type": "Feature", "properties": { "id": 102117, "name": "Morris Av/E 163 St", "direction": "NE", "lat": 40.827496, "lon": -73.917305, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.917305, 40.827496 ] } }, -{ "type": "Feature", "properties": { "id": 102118, "name": "Morris Av/E 165 St", "direction": "NE", "lat": 40.829536, "lon": -73.91617, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91617, 40.829536 ] } }, -{ "type": "Feature", "properties": { "id": 102119, "name": "Morris Av/E 166 St", "direction": "NE", "lat": 40.830418, "lon": -73.91567, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91567, 40.830418 ] } }, -{ "type": "Feature", "properties": { "id": 102121, "name": "Morris Av/E 167 St", "direction": "NE", "lat": 40.832996, "lon": -73.914154, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.914154, 40.832996 ] } }, -{ "type": "Feature", "properties": { "id": 102122, "name": "Morris Av/E 169 St", "direction": "NE", "lat": 40.835567, "lon": -73.91264, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91264, 40.835567 ] } }, -{ "type": "Feature", "properties": { "id": 102123, "name": "Morris Av/E 170 St", "direction": "NE", "lat": 40.838215, "lon": -73.911125, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.911125, 40.838215 ] } }, -{ "type": "Feature", "properties": { "id": 102125, "name": "Morris Av/E 172 St", "direction": "NE", "lat": 40.84043, "lon": -73.90978, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90978, 40.84043 ] } }, -{ "type": "Feature", "properties": { "id": 102127, "name": "Morris Av/E 174 St", "direction": "N", "lat": 40.84472, "lon": -73.90927, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90927, 40.84472 ] } }, -{ "type": "Feature", "properties": { "id": 102128, "name": "E 175 St/Walton Av", "direction": "NW", "lat": 40.847218, "lon": -73.91105, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91105, 40.847218 ] } }, -{ "type": "Feature", "properties": { "id": 102130, "name": "Jerome Av/E 176 St", "direction": "NE", "lat": 40.84855, "lon": -73.91167, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91167, 40.84855 ] } }, -{ "type": "Feature", "properties": { "id": 102131, "name": "Jerome Av/E 177 St", "direction": "NE", "lat": 40.850094, "lon": -73.910576, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.910576, 40.850094 ] } }, -{ "type": "Feature", "properties": { "id": 102132, "name": "Jerome Av/East Tremont Av", "direction": "NE", "lat": 40.851643, "lon": -73.90927, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90927, 40.851643 ] } }, -{ "type": "Feature", "properties": { "id": 102133, "name": "Jerome Av/East Burnside Av", "direction": "NE", "lat": 40.853695, "lon": -73.90737, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90737, 40.853695 ] } }, -{ "type": "Feature", "properties": { "id": 102134, "name": "Jerome Av/E 181 St", "direction": "NE", "lat": 40.855694, "lon": -73.90564, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90564, 40.855694 ] } }, -{ "type": "Feature", "properties": { "id": 102136, "name": "Jerome Av/E 183 St", "direction": "NE", "lat": 40.858604, "lon": -73.90369, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90369, 40.858604 ] } }, -{ "type": "Feature", "properties": { "id": 102138, "name": "Jerome Av/E 184 St", "direction": "NE", "lat": 40.86045, "lon": -73.90256, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90256, 40.86045 ] } }, -{ "type": "Feature", "properties": { "id": 102139, "name": "Jerome Av/East Fordham Rd", "direction": "NE", "lat": 40.86261, "lon": -73.90111, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90111, 40.86261 ] } }, -{ "type": "Feature", "properties": { "id": 102140, "name": "Jerome Av/E 192 St", "direction": "NE", "lat": 40.865448, "lon": -73.89891, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.89891, 40.865448 ] } }, -{ "type": "Feature", "properties": { "id": 102141, "name": "Jerome Av/East Kingsbridge Rd", "direction": "NE", "lat": 40.867363, "lon": -73.89741, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.89741, 40.867363 ] } }, -{ "type": "Feature", "properties": { "id": 102145, "name": "Jerome Av/W 192 St", "direction": "SW", "lat": 40.865704, "lon": -73.898865, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.898865, 40.865704 ] } }, -{ "type": "Feature", "properties": { "id": 102146, "name": "Jerome Av/West Fordham Rd", "direction": "SW", "lat": 40.862915, "lon": -73.901024, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.901024, 40.862915 ] } }, -{ "type": "Feature", "properties": { "id": 102147, "name": "Jerome Av/W 184 St", "direction": "SW", "lat": 40.860687, "lon": -73.90255, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90255, 40.860687 ] } }, -{ "type": "Feature", "properties": { "id": 102149, "name": "Jerome Av/W 183 St", "direction": "SW", "lat": 40.85846, "lon": -73.903915, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.903915, 40.85846 ] } }, -{ "type": "Feature", "properties": { "id": 102151, "name": "Jerome Av/W 181 St", "direction": "SW", "lat": 40.855896, "lon": -73.90556, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90556, 40.855896 ] } }, -{ "type": "Feature", "properties": { "id": 102152, "name": "Jerome Av/West Burnside Av", "direction": "SW", "lat": 40.853966, "lon": -73.90729, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90729, 40.853966 ] } }, -{ "type": "Feature", "properties": { "id": 102153, "name": "Jerome Av/West Tremont Av", "direction": "SW", "lat": 40.851955, "lon": -73.90914, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90914, 40.851955 ] } }, -{ "type": "Feature", "properties": { "id": 102159, "name": "Morris Av/East Mount Eden Av", "direction": "S", "lat": 40.842445, "lon": -73.909676, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.909676, 40.842445 ] } }, -{ "type": "Feature", "properties": { "id": 102160, "name": "Morris Av/E 172 St", "direction": "SW", "lat": 40.839905, "lon": -73.91025, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91025, 40.839905 ] } }, -{ "type": "Feature", "properties": { "id": 102162, "name": "Morris Av/E 170 St", "direction": "SW", "lat": 40.838062, "lon": -73.91133, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91133, 40.838062 ] } }, -{ "type": "Feature", "properties": { "id": 102163, "name": "Morris Av/E 169 St", "direction": "SW", "lat": 40.835026, "lon": -73.913124, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.913124, 40.835026 ] } }, -{ "type": "Feature", "properties": { "id": 102164, "name": "Morris Av/E 167 St", "direction": "SW", "lat": 40.832985, "lon": -73.914314, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.914314, 40.832985 ] } }, -{ "type": "Feature", "properties": { "id": 102166, "name": "Morris Av/E 166 St", "direction": "SW", "lat": 40.83064, "lon": -73.915695, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.915695, 40.83064 ] } }, -{ "type": "Feature", "properties": { "id": 102167, "name": "Morris Av/E 165 St", "direction": "SW", "lat": 40.829113, "lon": -73.91654, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91654, 40.829113 ] } }, -{ "type": "Feature", "properties": { "id": 102168, "name": "Morris Av/E 163 St", "direction": "SW", "lat": 40.826992, "lon": -73.91774, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91774, 40.826992 ] } }, -{ "type": "Feature", "properties": { "id": 102169, "name": "Morris Av/E 161 St", "direction": "SW", "lat": 40.825264, "lon": -73.91868, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91868, 40.825264 ] } }, -{ "type": "Feature", "properties": { "id": 102170, "name": "Morris Av/E 158 St", "direction": "SW", "lat": 40.824, "lon": -73.91937, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91937, 40.824 ] } }, -{ "type": "Feature", "properties": { "id": 102171, "name": "Morris Av/E 156 St", "direction": "SW", "lat": 40.822144, "lon": -73.9204, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.9204, 40.822144 ] } }, -{ "type": "Feature", "properties": { "id": 102172, "name": "Morris Av/E 153 St", "direction": "SW", "lat": 40.819904, "lon": -73.921715, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.921715, 40.819904 ] } }, -{ "type": "Feature", "properties": { "id": 102174, "name": "Morris Av/E 149 St", "direction": "SW", "lat": 40.817543, "lon": -73.92275, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.92275, 40.817543 ] } }, -{ "type": "Feature", "properties": { "id": 102185, "name": "E 138 St/Grand Concourse", "direction": "SE", "lat": 40.813217, "lon": -73.930595, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.930595, 40.813217 ] } }, -{ "type": "Feature", "properties": { "id": 102187, "name": "E 138 St/Lincoln Av", "direction": "SE", "lat": 40.810745, "lon": -73.92681, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.92681, 40.810745 ] } }, -{ "type": "Feature", "properties": { "id": 102189, "name": "E 138 St/Willis Av", "direction": "SE", "lat": 40.80886, "lon": -73.92253, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.92253, 40.80886 ] } }, -{ "type": "Feature", "properties": { "id": 102190, "name": "E 138 St/Brook Av", "direction": "SE", "lat": 40.807335, "lon": -73.9189, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.9189, 40.807335 ] } }, -{ "type": "Feature", "properties": { "id": 102192, "name": "E 138 St/Cypress Av", "direction": "SE", "lat": 40.80555, "lon": -73.914665, "routes": "BX17, BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.914665, 40.80555 ] } }, -{ "type": "Feature", "properties": { "id": 102195, "name": "E 138 St/Walnut Av", "direction": "SE", "lat": 40.802795, "lon": -73.90867, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.90867, 40.802795 ] } }, -{ "type": "Feature", "properties": { "id": 102204, "name": "E 138 St/Bruckner Blvd", "direction": "W", "lat": 40.804398, "lon": -73.91146, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.91146, 40.804398 ] } }, -{ "type": "Feature", "properties": { "id": 102206, "name": "E 138 St/Cypress Av", "direction": "NW", "lat": 40.805786, "lon": -73.91483, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.91483, 40.805786 ] } }, -{ "type": "Feature", "properties": { "id": 102207, "name": "E 138 St/Saint Ann'S Av", "direction": "NW", "lat": 40.806828, "lon": -73.917305, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.917305, 40.806828 ] } }, -{ "type": "Feature", "properties": { "id": 102208, "name": "E 138 St/Brook Av", "direction": "NW", "lat": 40.80778, "lon": -73.91955, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.91955, 40.80778 ] } }, -{ "type": "Feature", "properties": { "id": 102209, "name": "E 138 St/Willis Av", "direction": "NW", "lat": 40.809338, "lon": -73.92324, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.92324, 40.809338 ] } }, -{ "type": "Feature", "properties": { "id": 102223, "name": "Bainbridge Av/East Fordham Rd", "direction": "NE", "lat": 40.862263, "lon": -73.8933, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.8933, 40.862263 ] } }, -{ "type": "Feature", "properties": { "id": 102224, "name": "Bainbridge Av/E 194 St", "direction": "NE", "lat": 40.864895, "lon": -73.89193, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.89193, 40.864895 ] } }, -{ "type": "Feature", "properties": { "id": 102225, "name": "Bainbridge Av/E 196 St", "direction": "NE", "lat": 40.86684, "lon": -73.89005, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.89005, 40.86684 ] } }, -{ "type": "Feature", "properties": { "id": 102226, "name": "Bainbridge Av/E 198 St", "direction": "NE", "lat": 40.86867, "lon": -73.88793, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.88793, 40.86867 ] } }, -{ "type": "Feature", "properties": { "id": 102227, "name": "Bainbridge Av/Bedford Park Blvd", "direction": "NE", "lat": 40.87041, "lon": -73.88516, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.88516, 40.87041 ] } }, -{ "type": "Feature", "properties": { "id": 102229, "name": "Bainbridge Av/East Mosholu Pkwy North", "direction": "NE", "lat": 40.87293, "lon": -73.88054, "routes": "BX38, BX34, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88054, 40.87293 ] } }, -{ "type": "Feature", "properties": { "id": 102230, "name": "Bainbridge Av/E 204 St", "direction": "NE", "lat": 40.87357, "lon": -73.87929, "routes": "BX34, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.87929, 40.87357 ] } }, -{ "type": "Feature", "properties": { "id": 102242, "name": "Katonah Av/E 234 St", "direction": "N", "lat": 40.897198, "lon": -73.86708, "routes": "BX34, BXM4, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86708, 40.897198 ] } }, -{ "type": "Feature", "properties": { "id": 102243, "name": "Katonah Av/E 237 St", "direction": "N", "lat": 40.899246, "lon": -73.86742, "routes": "BX34, BXM4, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86742, 40.899246 ] } }, -{ "type": "Feature", "properties": { "id": 102244, "name": "Katonah Av/E 239 St", "direction": "N", "lat": 40.900604, "lon": -73.867714, "routes": "BX34, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.867714, 40.900604 ] } }, -{ "type": "Feature", "properties": { "id": 102246, "name": "Van Cortlandt Park East/E 242 St", "direction": "SE", "lat": 40.90243, "lon": -73.868286, "routes": "BX34, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.868286, 40.90243 ] } }, -{ "type": "Feature", "properties": { "id": 102247, "name": "Katonah Av/E 239 St", "direction": "S", "lat": 40.900043, "lon": -73.86769, "routes": "BX34, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86769, 40.900043 ] } }, -{ "type": "Feature", "properties": { "id": 102248, "name": "Katonah Av/E 237 St", "direction": "S", "lat": 40.898655, "lon": -73.86744, "routes": "BX34, BXM4, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86744, 40.898655 ] } }, -{ "type": "Feature", "properties": { "id": 102249, "name": "Katonah Av/E 234 St", "direction": "S", "lat": 40.897064, "lon": -73.86714, "routes": "BX34, BX31, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.86714, 40.897064 ] } }, -{ "type": "Feature", "properties": { "id": 102260, "name": "Bainbridge Av/East Mosholu Pkwy North", "direction": "SW", "lat": 40.87295, "lon": -73.88064, "routes": "BX34, BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88064, 40.87295 ] } }, -{ "type": "Feature", "properties": { "id": 102262, "name": "Bainbridge Av/E 201 St", "direction": "SW", "lat": 40.871197, "lon": -73.88411, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.88411, 40.871197 ] } }, -{ "type": "Feature", "properties": { "id": 102264, "name": "Valentine Av/E 199 St", "direction": "SW", "lat": 40.87064, "lon": -73.888016, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.888016, 40.87064 ] } }, -{ "type": "Feature", "properties": { "id": 102265, "name": "Valentine Av/E 198 St", "direction": "SW", "lat": 40.86929, "lon": -73.89018, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.89018, 40.86929 ] } }, -{ "type": "Feature", "properties": { "id": 102266, "name": "Valentine Av/E 196 St", "direction": "SW", "lat": 40.86717, "lon": -73.89212, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.89212, 40.86717 ] } }, -{ "type": "Feature", "properties": { "id": 102267, "name": "Valentine Av/E 194 St", "direction": "SW", "lat": 40.865532, "lon": -73.89323, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.89323, 40.865532 ] } }, -{ "type": "Feature", "properties": { "id": 102269, "name": "Valentine Av/East Fordham Rd", "direction": "SW", "lat": 40.86243, "lon": -73.89586, "routes": "BX22, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.89586, 40.86243 ] } }, -{ "type": "Feature", "properties": { "id": 102279, "name": "E 167 St/River Av", "direction": "E", "lat": 40.83552, "lon": -73.92092, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.92092, 40.83552 ] } }, -{ "type": "Feature", "properties": { "id": 102281, "name": "E 167 St/Grand Concourse", "direction": "E", "lat": 40.83422, "lon": -73.91726, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.91726, 40.83422 ] } }, -{ "type": "Feature", "properties": { "id": 102283, "name": "E 167 St/Morris Av", "direction": "E", "lat": 40.833263, "lon": -73.91426, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.91426, 40.833263 ] } }, -{ "type": "Feature", "properties": { "id": 102285, "name": "E 167 St/Findlay Av", "direction": "E", "lat": 40.83104, "lon": -73.912926, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.912926, 40.83104 ] } }, -{ "type": "Feature", "properties": { "id": 102287, "name": "Webster Av/E 167 St", "direction": "NE", "lat": 40.831043, "lon": -73.91025, "routes": "BX41+, BX41, BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.91025, 40.831043 ] } }, -{ "type": "Feature", "properties": { "id": 102289, "name": "E 168 St/Park Av", "direction": "E", "lat": 40.831726, "lon": -73.90822, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.90822, 40.831726 ] } }, -{ "type": "Feature", "properties": { "id": 102290, "name": "E 168 St/ 3 Av", "direction": "E", "lat": 40.831036, "lon": -73.90604, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.90604, 40.831036 ] } }, -{ "type": "Feature", "properties": { "id": 102294, "name": "E 169 St/Boston Rd", "direction": "E", "lat": 40.831173, "lon": -73.90056, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.90056, 40.831173 ] } }, -{ "type": "Feature", "properties": { "id": 102296, "name": "E 169 St/Prospect Av", "direction": "SE", "lat": 40.829136, "lon": -73.89724, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.89724, 40.829136 ] } }, -{ "type": "Feature", "properties": { "id": 102298, "name": "E 169 St/Tiffany St", "direction": "SE", "lat": 40.82775, "lon": -73.89476, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.89476, 40.82775 ] } }, -{ "type": "Feature", "properties": { "id": 102304, "name": "E 167 St/Bryant Av", "direction": "W", "lat": 40.826805, "lon": -73.889275, "routes": "BX27, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.889275, 40.826805 ] } }, -{ "type": "Feature", "properties": { "id": 102306, "name": "E 167 St/Southern Blvd", "direction": "W", "lat": 40.826824, "lon": -73.89209, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.89209, 40.826824 ] } }, -{ "type": "Feature", "properties": { "id": 102308, "name": "E 169 St/Intervale Av", "direction": "NW", "lat": 40.82846, "lon": -73.89569, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.89569, 40.82846 ] } }, -{ "type": "Feature", "properties": { "id": 102310, "name": "E 169 St/Prospect Av", "direction": "NW", "lat": 40.82971, "lon": -73.89792, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.89792, 40.82971 ] } }, -{ "type": "Feature", "properties": { "id": 102311, "name": "E 169 St/Boston Rd", "direction": "NW", "lat": 40.83114, "lon": -73.90001, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.90001, 40.83114 ] } }, -{ "type": "Feature", "properties": { "id": 102313, "name": "Franklin Av/E 169 St", "direction": "SW", "lat": 40.831505, "lon": -73.90224, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.90224, 40.831505 ] } }, -{ "type": "Feature", "properties": { "id": 102316, "name": "E 168 St/3 Av", "direction": "W", "lat": 40.831264, "lon": -73.90623, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.90623, 40.831264 ] } }, -{ "type": "Feature", "properties": { "id": 102318, "name": "E 168 St/Park Av", "direction": "W", "lat": 40.831944, "lon": -73.90832, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.90832, 40.831944 ] } }, -{ "type": "Feature", "properties": { "id": 102319, "name": "Webster Av/E 168 St", "direction": "SW", "lat": 40.83181, "lon": -73.90994, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90994, 40.83181 ] } }, -{ "type": "Feature", "properties": { "id": 102320, "name": "Webster Av/E 167 St", "direction": "SW", "lat": 40.830887, "lon": -73.91047, "routes": "BX41, BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.91047, 40.830887 ] } }, -{ "type": "Feature", "properties": { "id": 102322, "name": "E 167 St/Findlay Av", "direction": "W", "lat": 40.831226, "lon": -73.91316, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.91316, 40.831226 ] } }, -{ "type": "Feature", "properties": { "id": 102326, "name": "E 167 St/Grand Concourse", "direction": "W", "lat": 40.834496, "lon": -73.91728, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.91728, 40.834496 ] } }, -{ "type": "Feature", "properties": { "id": 102328, "name": "E 167 St/River Av", "direction": "W", "lat": 40.835976, "lon": -73.92183, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.92183, 40.835976 ] } }, -{ "type": "Feature", "properties": { "id": 102329, "name": "Edward L Grant Hwy/W 169 St", "direction": "NE", "lat": 40.838326, "lon": -73.92184, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.92184, 40.838326 ] } }, -{ "type": "Feature", "properties": { "id": 102330, "name": "Edward L Grant Hwy/Jesup Av", "direction": "NW", "lat": 40.84092, "lon": -73.92176, "routes": "BX11, BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.92176, 40.84092 ] } }, -{ "type": "Feature", "properties": { "id": 102357, "name": "West Tremont Av/W 177 St", "direction": "NE", "lat": 40.850655, "lon": -73.912155, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.912155, 40.850655 ] } }, -{ "type": "Feature", "properties": { "id": 102358, "name": "West Tremont Av/Davidson Av", "direction": "E", "lat": 40.8519, "lon": -73.910385, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.910385, 40.8519 ] } }, -{ "type": "Feature", "properties": { "id": 102359, "name": "East Tremont Av/Jerome Av", "direction": "SE", "lat": 40.851513, "lon": -73.90889, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.90889, 40.851513 ] } }, -{ "type": "Feature", "properties": { "id": 102361, "name": "East Tremont Av/Grand Concourse", "direction": "SE", "lat": 40.849533, "lon": -73.90634, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.90634, 40.849533 ] } }, -{ "type": "Feature", "properties": { "id": 102363, "name": "East Tremont Av/Anthony Av", "direction": "E", "lat": 40.848537, "lon": -73.90292, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.90292, 40.848537 ] } }, -{ "type": "Feature", "properties": { "id": 102364, "name": "Webster Av/East Tremont Av", "direction": "NE", "lat": 40.84805, "lon": -73.900696, "routes": "BX41, BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.900696, 40.84805 ] } }, -{ "type": "Feature", "properties": { "id": 102370, "name": "E 180 St/Bathgate Av", "direction": "SE", "lat": 40.850826, "lon": -73.894485, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.894485, 40.850826 ] } }, -{ "type": "Feature", "properties": { "id": 102373, "name": "E 180 St/Crotona Av", "direction": "SE", "lat": 40.84788, "lon": -73.88852, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.88852, 40.84788 ] } }, -{ "type": "Feature", "properties": { "id": 102375, "name": "E 180 St/Southern Blvd", "direction": "SE", "lat": 40.846004, "lon": -73.8847, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.8847, 40.846004 ] } }, -{ "type": "Feature", "properties": { "id": 102386, "name": "E 174 St/Longfellow Av", "direction": "E", "lat": 40.835976, "lon": -73.88392, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.88392, 40.835976 ] } }, -{ "type": "Feature", "properties": { "id": 102387, "name": "E 174 St/Bronx River Av", "direction": "E", "lat": 40.834206, "lon": -73.87889, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.87889, 40.834206 ] } }, -{ "type": "Feature", "properties": { "id": 102388, "name": "E 174 St/Manor Av", "direction": "E", "lat": 40.833736, "lon": -73.877075, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.877075, 40.833736 ] } }, -{ "type": "Feature", "properties": { "id": 102389, "name": "E 174 St/Harrod Av", "direction": "E", "lat": 40.83403, "lon": -73.874855, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.874855, 40.83403 ] } }, -{ "type": "Feature", "properties": { "id": 102390, "name": "E 174 St/Fteley Av", "direction": "E", "lat": 40.834385, "lon": -73.87232, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.87232, 40.834385 ] } }, -{ "type": "Feature", "properties": { "id": 102391, "name": "Rosedale Av/E 174 St", "direction": "N", "lat": 40.83485, "lon": -73.8699, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.8699, 40.83485 ] } }, -{ "type": "Feature", "properties": { "id": 102394, "name": "White Plains Rd/Westchester Av", "direction": "S", "lat": 40.833065, "lon": -73.86288, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86288, 40.833065 ] } }, -{ "type": "Feature", "properties": { "id": 102395, "name": "White Plains Rd/Gleason Av", "direction": "SE", "lat": 40.830185, "lon": -73.8616, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.8616, 40.830185 ] } }, -{ "type": "Feature", "properties": { "id": 102396, "name": "White Plains Rd/Watson Av", "direction": "SE", "lat": 40.828106, "lon": -73.86066, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86066, 40.828106 ] } }, -{ "type": "Feature", "properties": { "id": 102401, "name": "Seward Av/Pugsley Av", "direction": "E", "lat": 40.820274, "lon": -73.85419, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.85419, 40.820274 ] } }, -{ "type": "Feature", "properties": { "id": 102411, "name": "Randall Av/Olmstead Av", "direction": "W", "lat": 40.818676, "lon": -73.851555, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.851555, 40.818676 ] } }, -{ "type": "Feature", "properties": { "id": 102413, "name": "Pugsley Av/Seward Av", "direction": "N", "lat": 40.82019, "lon": -73.85451, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.85451, 40.82019 ] } }, -{ "type": "Feature", "properties": { "id": 102416, "name": "White Plains Rd/Story Av", "direction": "NW", "lat": 40.824574, "lon": -73.85881, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.85881, 40.824574 ] } }, -{ "type": "Feature", "properties": { "id": 102417, "name": "White Plains Rd/Bruckner Blvd", "direction": "NW", "lat": 40.826576, "lon": -73.85976, "routes": "BX36, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85976, 40.826576 ] } }, -{ "type": "Feature", "properties": { "id": 102418, "name": "White Plains Rd/Watson Av", "direction": "NW", "lat": 40.82869, "lon": -73.860725, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.860725, 40.82869 ] } }, -{ "type": "Feature", "properties": { "id": 102419, "name": "White Plains Rd/Gleason Av", "direction": "N", "lat": 40.83081, "lon": -73.86163, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86163, 40.83081 ] } }, -{ "type": "Feature", "properties": { "id": 102423, "name": "E 174 St/St Lawrence Av", "direction": "W", "lat": 40.834885, "lon": -73.8679, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.8679, 40.834885 ] } }, -{ "type": "Feature", "properties": { "id": 102425, "name": "E 174 St/Croes Av", "direction": "W", "lat": 40.834534, "lon": -73.872246, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.872246, 40.834534 ] } }, -{ "type": "Feature", "properties": { "id": 102426, "name": "E 174 St/Harrod Av", "direction": "W", "lat": 40.834145, "lon": -73.87523, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.87523, 40.834145 ] } }, -{ "type": "Feature", "properties": { "id": 102427, "name": "E 174 St/Manor Av", "direction": "W", "lat": 40.833862, "lon": -73.87729, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.87729, 40.833862 ] } }, -{ "type": "Feature", "properties": { "id": 102428, "name": "E 174 St/Bronx River Av", "direction": "W", "lat": 40.834404, "lon": -73.87902, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.87902, 40.834404 ] } }, -{ "type": "Feature", "properties": { "id": 102429, "name": "E 174 St/Boone Av", "direction": "W", "lat": 40.8361, "lon": -73.88378, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.88378, 40.8361 ] } }, -{ "type": "Feature", "properties": { "id": 102437, "name": "E 180 St/Crotona Av", "direction": "NW", "lat": 40.848377, "lon": -73.88915, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.88915, 40.848377 ] } }, -{ "type": "Feature", "properties": { "id": 102439, "name": "E 180 St/Arthur Av", "direction": "NW", "lat": 40.84971, "lon": -73.89186, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.89186, 40.84971 ] } }, -{ "type": "Feature", "properties": { "id": 102440, "name": "E 180 St/3 Av", "direction": "NW", "lat": 40.8507, "lon": -73.893875, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.893875, 40.8507 ] } }, -{ "type": "Feature", "properties": { "id": 102445, "name": "Webster Av/Valentine Av", "direction": "SW", "lat": 40.847866, "lon": -73.90088, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90088, 40.847866 ] } }, -{ "type": "Feature", "properties": { "id": 102446, "name": "East Tremont Av/Anthony Av", "direction": "W", "lat": 40.84885, "lon": -73.90364, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.90364, 40.84885 ] } }, -{ "type": "Feature", "properties": { "id": 102447, "name": "East Tremont Av/Grand Concourse East", "direction": "NW", "lat": 40.8493, "lon": -73.90563, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.90563, 40.8493 ] } }, -{ "type": "Feature", "properties": { "id": 102450, "name": "West Tremont Av/Davidson Av", "direction": "W", "lat": 40.852047, "lon": -73.90995, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.90995, 40.852047 ] } }, -{ "type": "Feature", "properties": { "id": 102451, "name": "West Tremont Av/W 177 St", "direction": "SW", "lat": 40.850517, "lon": -73.91246, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.91246, 40.850517 ] } }, -{ "type": "Feature", "properties": { "id": 102487, "name": "East Burnside Av/Valentine Av", "direction": "SE", "lat": 40.850315, "lon": -73.90084, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.90084, 40.850315 ] } }, -{ "type": "Feature", "properties": { "id": 102492, "name": "East Tremont Av/3 Av", "direction": "E", "lat": 40.846485, "lon": -73.89577, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.89577, 40.846485 ] } }, -{ "type": "Feature", "properties": { "id": 102493, "name": "East Tremont Av/Arthur Av", "direction": "SE", "lat": 40.846012, "lon": -73.89255, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.89255, 40.846012 ] } }, -{ "type": "Feature", "properties": { "id": 102494, "name": "East Tremont Av/Crotona Av", "direction": "SE", "lat": 40.845196, "lon": -73.89081, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.89081, 40.845196 ] } }, -{ "type": "Feature", "properties": { "id": 102495, "name": "East Tremont Av/Prospect Av", "direction": "SE", "lat": 40.84416, "lon": -73.88871, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.88871, 40.84416 ] } }, -{ "type": "Feature", "properties": { "id": 102498, "name": "East Tremont Av/Vyse Av", "direction": "SE", "lat": 40.841076, "lon": -73.882484, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.882484, 40.841076 ] } }, -{ "type": "Feature", "properties": { "id": 102499, "name": "East Tremont Av/Boston Rd", "direction": "SE", "lat": 40.840214, "lon": -73.88065, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.88065, 40.840214 ] } }, -{ "type": "Feature", "properties": { "id": 102529, "name": "East Tremont Av/Bryant Av", "direction": "NW", "lat": 40.84085, "lon": -73.88182, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.88182, 40.84085 ] } }, -{ "type": "Feature", "properties": { "id": 102532, "name": "East Tremont Av/Prospect Av", "direction": "NW", "lat": 40.84457, "lon": -73.889336, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.889336, 40.84457 ] } }, -{ "type": "Feature", "properties": { "id": 102533, "name": "East Tremont Av/Crotona Av", "direction": "NW", "lat": 40.845627, "lon": -73.89146, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.89146, 40.845627 ] } }, -{ "type": "Feature", "properties": { "id": 102534, "name": "East Tremont Av/Arthur Av", "direction": "W", "lat": 40.84648, "lon": -73.89374, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.89374, 40.84648 ] } }, -{ "type": "Feature", "properties": { "id": 102543, "name": "West Burnside Av/Loring Pl South", "direction": "E", "lat": 40.853878, "lon": -73.91457, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.91457, 40.853878 ] } }, -{ "type": "Feature", "properties": { "id": 102546, "name": "West Burnside Av/Grand Av", "direction": "SE", "lat": 40.853874, "lon": -73.90933, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.90933, 40.853874 ] } }, -{ "type": "Feature", "properties": { "id": 102547, "name": "East Burnside Av/Jerome Av", "direction": "E", "lat": 40.853607, "lon": -73.90697, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.90697, 40.853607 ] } }, -{ "type": "Feature", "properties": { "id": 102549, "name": "East Burnside Av/Grand Concourse", "direction": "SE", "lat": 40.852013, "lon": -73.903206, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.903206, 40.852013 ] } }, -{ "type": "Feature", "properties": { "id": 102566, "name": "East Tremont Av/Morris Pk Av", "direction": "E", "lat": 40.839714, "lon": -73.87348, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.87348, 40.839714 ] } }, -{ "type": "Feature", "properties": { "id": 102568, "name": "East Tremont Av/Commonwealth Av", "direction": "E", "lat": 40.839737, "lon": -73.868835, "routes": "BX36, BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.868835, 40.839737 ] } }, -{ "type": "Feature", "properties": { "id": 102571, "name": "East Tremont Av/Unionport Rd", "direction": "E", "lat": 40.841217, "lon": -73.86369, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.86369, 40.841217 ] } }, -{ "type": "Feature", "properties": { "id": 102572, "name": "East Tremont Av/Dogwood Dr", "direction": "E", "lat": 40.841454, "lon": -73.86132, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.86132, 40.841454 ] } }, -{ "type": "Feature", "properties": { "id": 102574, "name": "East Tremont Av/Purdy St", "direction": "E", "lat": 40.842194, "lon": -73.85532, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.85532, 40.842194 ] } }, -{ "type": "Feature", "properties": { "id": 102575, "name": "East Tremont Av/Castle Hill Av", "direction": "E", "lat": 40.842403, "lon": -73.8534, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.8534, 40.842403 ] } }, -{ "type": "Feature", "properties": { "id": 102577, "name": "East Tremont Av/Saint Peters Av", "direction": "E", "lat": 40.842804, "lon": -73.84988, "routes": "BX42, BX40, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.84988, 40.842804 ] } }, -{ "type": "Feature", "properties": { "id": 102578, "name": "East Tremont Av/Overing St", "direction": "E", "lat": 40.843025, "lon": -73.84794, "routes": "BX40, BX42, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.84794, 40.843025 ] } }, -{ "type": "Feature", "properties": { "id": 102579, "name": "East Tremont Av/Saint Raymonds Av", "direction": "E", "lat": 40.84261, "lon": -73.84569, "routes": "BX42, BX40, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.84569, 40.84261 ] } }, -{ "type": "Feature", "properties": { "id": 102582, "name": "East Tremont Av/Ericson Pl", "direction": "SE", "lat": 40.839878, "lon": -73.83723, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.83723, 40.839878 ] } }, -{ "type": "Feature", "properties": { "id": 102583, "name": "East Tremont Av/Latting St", "direction": "SE", "lat": 40.83851, "lon": -73.83557, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.83557, 40.83851 ] } }, -{ "type": "Feature", "properties": { "id": 102584, "name": "East Tremont Av/Waterbury Av", "direction": "SE", "lat": 40.83627, "lon": -73.83369, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.83369, 40.83627 ] } }, -{ "type": "Feature", "properties": { "id": 102586, "name": "East Tremont Av/Baisley Av", "direction": "E", "lat": 40.834743, "lon": -73.83009, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.83009, 40.834743 ] } }, -{ "type": "Feature", "properties": { "id": 102587, "name": "East Tremont Av/Bruckner Blvd", "direction": "SE", "lat": 40.833347, "lon": -73.82847, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.82847, 40.833347 ] } }, -{ "type": "Feature", "properties": { "id": 102588, "name": "East Tremont Av/Barkley Av", "direction": "SE", "lat": 40.830833, "lon": -73.826416, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.826416, 40.830833 ] } }, -{ "type": "Feature", "properties": { "id": 102590, "name": "East Tremont Av/Philip Av", "direction": "SE", "lat": 40.827934, "lon": -73.82371, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.82371, 40.827934 ] } }, -{ "type": "Feature", "properties": { "id": 102592, "name": "East Tremont Av/Schley Av", "direction": "SE", "lat": 40.82395, "lon": -73.82011, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.82011, 40.82395 ] } }, -{ "type": "Feature", "properties": { "id": 102593, "name": "East Tremont Av/Cross Bronx Expwy", "direction": "SE", "lat": 40.82238, "lon": -73.81928, "routes": "BX40, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.81928, 40.82238 ] } }, -{ "type": "Feature", "properties": { "id": 102602, "name": "Pennyfield Av/Harding Av", "direction": "SE", "lat": 40.8169, "lon": -73.80931, "routes": "BXM9, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80931, 40.8169 ] } }, -{ "type": "Feature", "properties": { "id": 102604, "name": "Pennyfield Av/Glennon Pl", "direction": "SE", "lat": 40.813213, "lon": -73.80679, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.80679, 40.813213 ] } }, -{ "type": "Feature", "properties": { "id": 102613, "name": "Randall Av/East Tremont Av", "direction": "SW", "lat": 40.826088, "lon": -73.82215, "routes": "BX42, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.82215, 40.826088 ] } }, -{ "type": "Feature", "properties": { "id": 102614, "name": "Randall Av/Cross Bronx Expwy", "direction": "SW", "lat": 40.824444, "lon": -73.82541, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82541, 40.824444 ] } }, -{ "type": "Feature", "properties": { "id": 102615, "name": "Balcom Av/Randall Av", "direction": "SE", "lat": 40.822735, "lon": -73.827644, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.827644, 40.822735 ] } }, -{ "type": "Feature", "properties": { "id": 102617, "name": "Dewey Av/Balcom Av", "direction": "E", "lat": 40.82028, "lon": -73.8249, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.8249, 40.82028 ] } }, -{ "type": "Feature", "properties": { "id": 102618, "name": "Dewey Av/Swinton Av", "direction": "E", "lat": 40.821022, "lon": -73.822815, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.822815, 40.821022 ] } }, -{ "type": "Feature", "properties": { "id": 102619, "name": "Dewey Av/Quincy Av", "direction": "E", "lat": 40.82139, "lon": -73.82164, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82164, 40.82139 ] } }, -{ "type": "Feature", "properties": { "id": 102621, "name": "Harding Av/East Tremont Av", "direction": "E", "lat": 40.81607, "lon": -73.81548, "routes": "BXM9, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.81548, 40.81607 ] } }, -{ "type": "Feature", "properties": { "id": 102622, "name": "Harding Av/Calhoun Av", "direction": "W", "lat": 40.815624, "lon": -73.817986, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.817986, 40.815624 ] } }, -{ "type": "Feature", "properties": { "id": 102624, "name": "Harding Av/Balcom Av", "direction": "W", "lat": 40.814774, "lon": -73.82195, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82195, 40.814774 ] } }, -{ "type": "Feature", "properties": { "id": 102632, "name": "Pennyfield Av/Fort Schuyler", "direction": "W", "lat": 40.809174, "lon": -73.801765, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.801765, 40.809174 ] } }, -{ "type": "Feature", "properties": { "id": 102635, "name": "Pennyfield Av/Fearn Pl", "direction": "NW", "lat": 40.811478, "lon": -73.80516, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.80516, 40.811478 ] } }, -{ "type": "Feature", "properties": { "id": 102637, "name": "Pennyfield Av/Glennon Pl", "direction": "NW", "lat": 40.813442, "lon": -73.80686, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.80686, 40.813442 ] } }, -{ "type": "Feature", "properties": { "id": 102640, "name": "Tierney Pl/Longstreet Av", "direction": "NW", "lat": 40.81373, "lon": -73.802574, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.802574, 40.81373 ] } }, -{ "type": "Feature", "properties": { "id": 102644, "name": "Longstreet Av/Chaffee Av", "direction": "NW", "lat": 40.816296, "lon": -73.80445, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80445, 40.816296 ] } }, -{ "type": "Feature", "properties": { "id": 102645, "name": "Dewey Av/Calhoun Av", "direction": "W", "lat": 40.82151, "lon": -73.82177, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82177, 40.82151 ] } }, -{ "type": "Feature", "properties": { "id": 102646, "name": "Dewey Av/Swinton Av", "direction": "W", "lat": 40.82103, "lon": -73.823265, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.823265, 40.82103 ] } }, -{ "type": "Feature", "properties": { "id": 102647, "name": "Dewey Av/Balcom Av", "direction": "W", "lat": 40.820305, "lon": -73.825294, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.825294, 40.820305 ] } }, -{ "type": "Feature", "properties": { "id": 102649, "name": "Balcom Av/Randall Av", "direction": "NW", "lat": 40.82313, "lon": -73.82775, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82775, 40.82313 ] } }, -{ "type": "Feature", "properties": { "id": 102653, "name": "Harding Av/Balcom Av", "direction": "E", "lat": 40.81479, "lon": -73.82156, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82156, 40.81479 ] } }, -{ "type": "Feature", "properties": { "id": 102655, "name": "Harding Av/Calhoun Av", "direction": "E", "lat": 40.815666, "lon": -73.817184, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.817184, 40.815666 ] } }, -{ "type": "Feature", "properties": { "id": 102658, "name": "East Tremont Av/Miles Av", "direction": "NW", "lat": 40.818962, "lon": -73.81712, "routes": "BX40, BXM9, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.81712, 40.818962 ] } }, -{ "type": "Feature", "properties": { "id": 102659, "name": "East Tremont Av/Sampson Av", "direction": "NW", "lat": 40.82038, "lon": -73.81796, "routes": "BX42, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.81796, 40.82038 ] } }, -{ "type": "Feature", "properties": { "id": 102661, "name": "East Tremont Av/Schley Av", "direction": "NW", "lat": 40.824703, "lon": -73.82026, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.82026, 40.824703 ] } }, -{ "type": "Feature", "properties": { "id": 102662, "name": "East Tremont Av/Randall Av", "direction": "NW", "lat": 40.826466, "lon": -73.82191, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82191, 40.826466 ] } }, -{ "type": "Feature", "properties": { "id": 102666, "name": "East Tremont Av/Bruckner Blvd", "direction": "NW", "lat": 40.832882, "lon": -73.82803, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82803, 40.832882 ] } }, -{ "type": "Feature", "properties": { "id": 102667, "name": "East Tremont Av/Haskin St", "direction": "NW", "lat": 40.83453, "lon": -73.82923, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.82923, 40.83453 ] } }, -{ "type": "Feature", "properties": { "id": 102669, "name": "East Tremont Av/Waterbury Av", "direction": "NW", "lat": 40.836933, "lon": -73.833954, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.833954, 40.836933 ] } }, -{ "type": "Feature", "properties": { "id": 102671, "name": "East Tremont Av/Dudley Av", "direction": "NW", "lat": 40.839516, "lon": -73.836624, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.836624, 40.839516 ] } }, -{ "type": "Feature", "properties": { "id": 102672, "name": "East Tremont Av/Hutchinson River Pkwy", "direction": "W", "lat": 40.840755, "lon": -73.83867, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.83867, 40.840755 ] } }, -{ "type": "Feature", "properties": { "id": 102674, "name": "East Tremont Av/Saint Raymonds Av", "direction": "NW", "lat": 40.842865, "lon": -73.84598, "routes": "BX42, BX4A, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.84598, 40.842865 ] } }, -{ "type": "Feature", "properties": { "id": 102675, "name": "East Tremont Av/Silver St", "direction": "W", "lat": 40.843063, "lon": -73.848495, "routes": "BX42, BX40, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.848495, 40.843063 ] } }, -{ "type": "Feature", "properties": { "id": 102676, "name": "East Tremont Av/Lurting Av", "direction": "W", "lat": 40.84286, "lon": -73.85015, "routes": "BX42, BX4A, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.85015, 40.84286 ] } }, -{ "type": "Feature", "properties": { "id": 102678, "name": "East Tremont Av/Castle Hill Av", "direction": "W", "lat": 40.84253, "lon": -73.85313, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.85313, 40.84253 ] } }, -{ "type": "Feature", "properties": { "id": 102679, "name": "East Tremont Av/Purdy St", "direction": "W", "lat": 40.842278, "lon": -73.85556, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.85556, 40.842278 ] } }, -{ "type": "Feature", "properties": { "id": 102682, "name": "East Tremont Av/Unionport Rd", "direction": "W", "lat": 40.841343, "lon": -73.86342, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.86342, 40.841343 ] } }, -{ "type": "Feature", "properties": { "id": 102702, "name": "East Burnside Av/Grand Concourse", "direction": "W", "lat": 40.85266, "lon": -73.90396, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.90396, 40.85266 ] } }, -{ "type": "Feature", "properties": { "id": 102729, "name": "Webster Av/E 169 St", "direction": "NE", "lat": 40.834286, "lon": -73.908424, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.908424, 40.834286 ] } }, -{ "type": "Feature", "properties": { "id": 102730, "name": "Webster Av/E 170 St", "direction": "NE", "lat": 40.83658, "lon": -73.90716, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90716, 40.83658 ] } }, -{ "type": "Feature", "properties": { "id": 102734, "name": "Webster Av/E 173 St", "direction": "NE", "lat": 40.84304, "lon": -73.9035, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.9035, 40.84304 ] } }, -{ "type": "Feature", "properties": { "id": 102740, "name": "Webster Av/E 182 St", "direction": "NE", "lat": 40.855244, "lon": -73.89616, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89616, 40.855244 ] } }, -{ "type": "Feature", "properties": { "id": 102742, "name": "Webster Av/E 187 St", "direction": "NE", "lat": 40.859066, "lon": -73.893684, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.893684, 40.859066 ] } }, -{ "type": "Feature", "properties": { "id": 102748, "name": "Webster Av/E 197 St", "direction": "NE", "lat": 40.865314, "lon": -73.88686, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.88686, 40.865314 ] } }, -{ "type": "Feature", "properties": { "id": 102750, "name": "Webster Av/Bedford Park Blvd", "direction": "NE", "lat": 40.86711, "lon": -73.88374, "routes": "BX41, BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.88374, 40.86711 ] } }, -{ "type": "Feature", "properties": { "id": 102757, "name": "White Plains Rd/E 215 St", "direction": "N", "lat": 40.880383, "lon": -73.86455, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86455, 40.880383 ] } }, -{ "type": "Feature", "properties": { "id": 102759, "name": "White Plains Rd/E 219 St", "direction": "NE", "lat": 40.88343, "lon": -73.862755, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.862755, 40.88343 ] } }, -{ "type": "Feature", "properties": { "id": 102762, "name": "White Plains Rd/E 225 St", "direction": "NE", "lat": 40.88769, "lon": -73.86038, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86038, 40.88769 ] } }, -{ "type": "Feature", "properties": { "id": 102766, "name": "White Plains Rd/E 233 St", "direction": "NE", "lat": 40.893227, "lon": -73.85734, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85734, 40.893227 ] } }, -{ "type": "Feature", "properties": { "id": 102769, "name": "White Plains Rd/Nereid Av", "direction": "NE", "lat": 40.898296, "lon": -73.85431, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.85431, 40.898296 ] } }, -{ "type": "Feature", "properties": { "id": 102775, "name": "E 241 St/Baychester Av", "direction": "NW", "lat": 40.901882, "lon": -73.84703, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.84703, 40.901882 ] } }, -{ "type": "Feature", "properties": { "id": 102778, "name": "White Plains Rd/E 239 St", "direction": "SW", "lat": 40.90008, "lon": -73.853004, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.853004, 40.90008 ] } }, -{ "type": "Feature", "properties": { "id": 102782, "name": "White Plains Rd/E 233 St", "direction": "SW", "lat": 40.893555, "lon": -73.85736, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85736, 40.893555 ] } }, -{ "type": "Feature", "properties": { "id": 102786, "name": "White Plains Rd/E 225 St", "direction": "SW", "lat": 40.888233, "lon": -73.8603, "routes": "BX8, BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.8603, 40.888233 ] } }, -{ "type": "Feature", "properties": { "id": 102789, "name": "White Plains Rd/E 219 St", "direction": "SW", "lat": 40.883663, "lon": -73.86283, "routes": "BXM11, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86283, 40.883663 ] } }, -{ "type": "Feature", "properties": { "id": 102791, "name": "White Plains Rd/E 215 St", "direction": "SW", "lat": 40.88073, "lon": -73.865005, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.865005, 40.88073 ] } }, -{ "type": "Feature", "properties": { "id": 102793, "name": "White Plains Rd/East Gun Hill Rd", "direction": "SW", "lat": 40.87783, "lon": -73.8663, "routes": "BX41, BXM11, BX41+, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.8663, 40.87783 ] } }, -{ "type": "Feature", "properties": { "id": 102795, "name": "Webster Av/East Gun Hill Rd", "direction": "S", "lat": 40.878197, "lon": -73.87176, "routes": "BX41, BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.87176, 40.878197 ] } }, -{ "type": "Feature", "properties": { "id": 102796, "name": "Webster Av/E 205 St", "direction": "SW", "lat": 40.872726, "lon": -73.87524, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.87524, 40.872726 ] } }, -{ "type": "Feature", "properties": { "id": 102797, "name": "Webster Av/E 204 St", "direction": "SW", "lat": 40.870872, "lon": -73.877335, "routes": "BX41, BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.877335, 40.870872 ] } }, -{ "type": "Feature", "properties": { "id": 102798, "name": "Webster Av/East Mosholu Pkwy North", "direction": "SW", "lat": 40.86942, "lon": -73.88018, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.88018, 40.86942 ] } }, -{ "type": "Feature", "properties": { "id": 102806, "name": "Webster Av/East Fordham Rd", "direction": "SW", "lat": 40.861286, "lon": -73.89185, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.89185, 40.861286 ] } }, -{ "type": "Feature", "properties": { "id": 102808, "name": "Webster Av/E 187 St", "direction": "SW", "lat": 40.858704, "lon": -73.89404, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89404, 40.858704 ] } }, -{ "type": "Feature", "properties": { "id": 102809, "name": "Webster Av/E 183 St", "direction": "SW", "lat": 40.856335, "lon": -73.8956, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.8956, 40.856335 ] } }, -{ "type": "Feature", "properties": { "id": 102811, "name": "Webster Av/E 180 St", "direction": "SW", "lat": 40.851593, "lon": -73.898636, "routes": "BX40, BX41, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.898636, 40.851593 ] } }, -{ "type": "Feature", "properties": { "id": 102819, "name": "Webster Av/Claremont Pkwy", "direction": "SW", "lat": 40.839897, "lon": -73.90538, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.90538, 40.839897 ] } }, -{ "type": "Feature", "properties": { "id": 102821, "name": "Webster Av/E 170 St", "direction": "SW", "lat": 40.836304, "lon": -73.90748, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90748, 40.836304 ] } }, -{ "type": "Feature", "properties": { "id": 102837, "name": "3 Av/E 140 St", "direction": "SW", "lat": 40.812035, "lon": -73.92555, "routes": "BX2, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.92555, 40.812035 ] } }, -{ "type": "Feature", "properties": { "id": 102839, "name": "Lincoln Av/Bruckner Blvd", "direction": "SW", "lat": 40.807938, "lon": -73.929474, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.929474, 40.807938 ] } }, -{ "type": "Feature", "properties": { "id": 102897, "name": "Metropolitan Av/Parkchester Rd", "direction": "N", "lat": 40.835827, "lon": -73.86094, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.86094, 40.835827 ] } }, -{ "type": "Feature", "properties": { "id": 102899, "name": "Metropolitan Av/Maple Dr", "direction": "E", "lat": 40.839943, "lon": -73.85719, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.85719, 40.839943 ] } }, -{ "type": "Feature", "properties": { "id": 102903, "name": "Metropolitan Av/Red Oak Dr", "direction": "W", "lat": 40.840096, "lon": -73.85746, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.85746, 40.840096 ] } }, -{ "type": "Feature", "properties": { "id": 102906, "name": "Metropolitan Av/Wood Av", "direction": "S", "lat": 40.835407, "lon": -73.86119, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.86119, 40.835407 ] } }, -{ "type": "Feature", "properties": { "id": 102938, "name": "3 Av/E Fordham Rd", "direction": "NE", "lat": 40.860947, "lon": -73.89031, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89031, 40.860947 ] } }, -{ "type": "Feature", "properties": { "id": 102942, "name": "White Plains Rd/East Gun Hill Rd", "direction": "NE", "lat": 40.877514, "lon": -73.86603, "routes": "BX41+, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86603, 40.877514 ] } }, -{ "type": "Feature", "properties": { "id": 102946, "name": "Webster Av/Bedford Park Blvd", "direction": "SW", "lat": 40.867348, "lon": -73.883514, "routes": "BX41, BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.883514, 40.867348 ] } }, -{ "type": "Feature", "properties": { "id": 102948, "name": "3 Av/E 183 St", "direction": "SW", "lat": 40.853916, "lon": -73.89113, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89113, 40.853916 ] } }, -{ "type": "Feature", "properties": { "id": 102949, "name": "3 Av/E 180 St", "direction": "SW", "lat": 40.850826, "lon": -73.89405, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89405, 40.850826 ] } }, -{ "type": "Feature", "properties": { "id": 102953, "name": "3 Av/E 169 St", "direction": "SW", "lat": 40.832912, "lon": -73.905045, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.905045, 40.832912 ] } }, -{ "type": "Feature", "properties": { "id": 102962, "name": "3 Av/E 144 St", "direction": "NE", "lat": 40.813873, "lon": -73.92171, "routes": "BX21, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.92171, 40.813873 ] } }, -{ "type": "Feature", "properties": { "id": 102965, "name": "W 239 St/Riverdale Av", "direction": "SE", "lat": 40.889137, "lon": -73.90858, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.90858, 40.889137 ] } }, -{ "type": "Feature", "properties": { "id": 102966, "name": "E 161 St/River Av", "direction": "W", "lat": 40.82788, "lon": -73.92603, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92603, 40.82788 ] } }, -{ "type": "Feature", "properties": { "id": 102968, "name": "East Kingsbridge Rd/Grand Concourse", "direction": "NW", "lat": 40.86606, "lon": -73.89403, "routes": "BX9, BX22, BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.89403, 40.86606 ] } }, -{ "type": "Feature", "properties": { "id": 102971, "name": "Grand Concourse/Bedford Park Blvd", "direction": "NE", "lat": 40.87229, "lon": -73.88738, "routes": "BX2, BX1, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.88738, 40.87229 ] } }, -{ "type": "Feature", "properties": { "id": 102976, "name": "3 Av/Westchester Av", "direction": "NE", "lat": 40.816628, "lon": -73.916626, "routes": "BX21, BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.916626, 40.816628 ] } }, -{ "type": "Feature", "properties": { "id": 102977, "name": "Webster Av/E 205 St", "direction": "NE", "lat": 40.872787, "lon": -73.875015, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.875015, 40.872787 ] } }, -{ "type": "Feature", "properties": { "id": 102978, "name": "Olmstead Av/Seward Av", "direction": "S", "lat": 40.820507, "lon": -73.85163, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.85163, 40.820507 ] } }, -{ "type": "Feature", "properties": { "id": 102979, "name": "E 233 St/Jerome Av", "direction": "E", "lat": 40.89525, "lon": -73.87957, "routes": "BX34, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.87957, 40.89525 ] } }, -{ "type": "Feature", "properties": { "id": 102985, "name": "White Plains Rd/Lafayette Av", "direction": "N", "lat": 40.822144, "lon": -73.85823, "routes": "BX39, BX5, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.85823, 40.822144 ] } }, -{ "type": "Feature", "properties": { "id": 102986, "name": "Valentine Av/E 178 St", "direction": "N", "lat": 40.84957, "lon": -73.900826, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.900826, 40.84957 ] } }, -{ "type": "Feature", "properties": { "id": 102988, "name": "E 138 St/Willow Av", "direction": "SE", "lat": 40.804016, "lon": -73.91106, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.91106, 40.804016 ] } }, -{ "type": "Feature", "properties": { "id": 102991, "name": "Webster Av/E 195 St", "direction": "NE", "lat": 40.864143, "lon": -73.888176, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.888176, 40.864143 ] } }, -{ "type": "Feature", "properties": { "id": 102994, "name": "E 170 St/Grand Concourse", "direction": "E", "lat": 40.8387, "lon": -73.91415, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.91415, 40.8387 ] } }, -{ "type": "Feature", "properties": { "id": 102995, "name": "W 231 St/Corlear Av", "direction": "SE", "lat": 40.880165, "lon": -73.9073, "routes": "BX2, BX7, BX20, BX1, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.9073, 40.880165 ] } }, -{ "type": "Feature", "properties": { "id": 102996, "name": "W 231 St/Tibbett Av", "direction": "NW", "lat": 40.881046, "lon": -73.908775, "routes": "BX10, BX1, BX2, BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.908775, 40.881046 ] } }, -{ "type": "Feature", "properties": { "id": 102999, "name": "Boston Rd/Dyre Av", "direction": "W", "lat": 40.88482, "lon": -73.83118, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.83118, 40.88482 ] } }, -{ "type": "Feature", "properties": { "id": 103000, "name": "Boston Rd/Kingsland Av", "direction": "SW", "lat": 40.877666, "lon": -73.84525, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.84525, 40.877666 ] } }, -{ "type": "Feature", "properties": { "id": 103003, "name": "Williamsbridge Rd/East Tremont Av", "direction": "SE", "lat": 40.842407, "lon": -73.84448, "routes": "BX8, BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.84448, 40.842407 ] } }, -{ "type": "Feature", "properties": { "id": 103006, "name": "W 195 St/Reservoir Av", "direction": "NW", "lat": 40.86963, "lon": -73.89868, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.89868, 40.86963 ] } }, -{ "type": "Feature", "properties": { "id": 103007, "name": "Reservoir Av/West Kingsbridge Rd", "direction": "SW", "lat": 40.868114, "lon": -73.89995, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89995, 40.868114 ] } }, -{ "type": "Feature", "properties": { "id": 103008, "name": "West Kingsbridge Rd/University Av", "direction": "W", "lat": 40.8684, "lon": -73.90131, "routes": "BX9, BX3, BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90131, 40.8684 ] } }, -{ "type": "Feature", "properties": { "id": 103009, "name": "V A Hospital", "direction": "W", "lat": 40.86739, "lon": -73.905464, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.905464, 40.86739 ] } }, -{ "type": "Feature", "properties": { "id": 103012, "name": "V A Hospital", "direction": "W", "lat": 40.86735, "lon": -73.905624, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.905624, 40.86735 ] } }, -{ "type": "Feature", "properties": { "id": 103013, "name": "Allerton Av/Williamsbridge Rd", "direction": "E", "lat": 40.86541, "lon": -73.85907, "routes": "BX26, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.85907, 40.86541 ] } }, -{ "type": "Feature", "properties": { "id": 103017, "name": "Grand Concourse/Minerva Pl", "direction": "SW", "lat": 40.8705, "lon": -73.89076, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.89076, 40.8705 ] } }, -{ "type": "Feature", "properties": { "id": 103019, "name": "Undercliff Av/Boscobel Pl", "direction": "SW", "lat": 40.844086, "lon": -73.925385, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.925385, 40.844086 ] } }, -{ "type": "Feature", "properties": { "id": 103028, "name": "Pelham Pkwy/Stillwell Av", "direction": "W", "lat": 40.856697, "lon": -73.836555, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.836555, 40.856697 ] } }, -{ "type": "Feature", "properties": { "id": 103031, "name": "E 233 St/Gunther Av", "direction": "W", "lat": 40.89085, "lon": -73.84909, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84909, 40.89085 ] } }, -{ "type": "Feature", "properties": { "id": 103034, "name": "E 170 St/Jerome Av", "direction": "W", "lat": 40.840363, "lon": -73.9179, "routes": "BX18B, BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.9179, 40.840363 ] } }, -{ "type": "Feature", "properties": { "id": 103037, "name": "Hugh Grant Circle/Metropolitan Av", "direction": "S", "lat": 40.833748, "lon": -73.861046, "routes": "BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.861046, 40.833748 ] } }, -{ "type": "Feature", "properties": { "id": 103042, "name": "Valentine Av/E 192 St", "direction": "E", "lat": 40.86392, "lon": -73.89454, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.89454, 40.86392 ] } }, -{ "type": "Feature", "properties": { "id": 103043, "name": "Sedgwick Av/W 174 St", "direction": "NE", "lat": 40.847775, "lon": -73.92432, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.92432, 40.847775 ] } }, -{ "type": "Feature", "properties": { "id": 103044, "name": "Sedgwick Av/W 176 St", "direction": "NE", "lat": 40.850536, "lon": -73.92191, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.92191, 40.850536 ] } }, -{ "type": "Feature", "properties": { "id": 103047, "name": "Sedgwick Av/W 231 St", "direction": "SW", "lat": 40.875484, "lon": -73.90097, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90097, 40.875484 ] } }, -{ "type": "Feature", "properties": { "id": 103050, "name": "Nereid Av/Edson Av", "direction": "E", "lat": 40.89906, "lon": -73.8466, "routes": "BX39, BX16, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.8466, 40.89906 ] } }, -{ "type": "Feature", "properties": { "id": 103051, "name": "West Fordham Rd/Sedgwick Av", "direction": "E", "lat": 40.86274, "lon": -73.90847, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.90847, 40.86274 ] } }, -{ "type": "Feature", "properties": { "id": 103057, "name": "East Mosholu Pkwy South/Grand Concourse", "direction": "SE", "lat": 40.878708, "lon": -73.88497, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88497, 40.878708 ] } }, -{ "type": "Feature", "properties": { "id": 103060, "name": "Bartow Av/Gunther Av", "direction": "W", "lat": 40.866886, "lon": -73.83771, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.83771, 40.866886 ] } }, -{ "type": "Feature", "properties": { "id": 103063, "name": "Bartow Av/Co-Op City Blvd", "direction": "E", "lat": 40.86929, "lon": -73.82569, "routes": "Q50, BX25, BX26, BX38, BX23, BX30, BXM7, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82569, 40.86929 ] } }, -{ "type": "Feature", "properties": { "id": 103066, "name": "Eastchester Rd/Ives St", "direction": "N", "lat": 40.850094, "lon": -73.8448, "routes": "BX21, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.8448, 40.850094 ] } }, -{ "type": "Feature", "properties": { "id": 103067, "name": "Morris Av/E 141 St", "direction": "NE", "lat": 40.813995, "lon": -73.92497, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.92497, 40.813995 ] } }, -{ "type": "Feature", "properties": { "id": 103069, "name": "Webster Av/E 178 St", "direction": "NE", "lat": 40.84933, "lon": -73.89992, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89992, 40.84933 ] } }, -{ "type": "Feature", "properties": { "id": 103072, "name": "Webster Av/E 182 St", "direction": "SW", "lat": 40.85501, "lon": -73.89645, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89645, 40.85501 ] } }, -{ "type": "Feature", "properties": { "id": 103073, "name": "Webster Av/E 169 St", "direction": "SW", "lat": 40.833694, "lon": -73.90888, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90888, 40.833694 ] } }, -{ "type": "Feature", "properties": { "id": 103075, "name": "Sedgwick Av/West Tremont Av", "direction": "E", "lat": 40.852776, "lon": -73.9186, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.9186, 40.852776 ] } }, -{ "type": "Feature", "properties": { "id": 103077, "name": "Pennyfield Av/Throgs Neck Expwy", "direction": "NE", "lat": 40.818768, "lon": -73.80985, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80985, 40.818768 ] } }, -{ "type": "Feature", "properties": { "id": 103081, "name": "Alcott Pl/Asch Loop", "direction": "NE", "lat": 40.871395, "lon": -73.83057, "routes": "BX26, BX30, BXM7, BX23, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.83057, 40.871395 ] } }, -{ "type": "Feature", "properties": { "id": 103092, "name": "3 Av/Washington Av", "direction": "S", "lat": 40.857136, "lon": -73.891205, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.891205, 40.857136 ] } }, -{ "type": "Feature", "properties": { "id": 103095, "name": "3 Av/E 144 St", "direction": "SW", "lat": 40.813858, "lon": -73.92199, "routes": "BX2, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.92199, 40.813858 ] } }, -{ "type": "Feature", "properties": { "id": 103099, "name": "West Farms Rd/Hoe Av", "direction": "SW", "lat": 40.825695, "lon": -73.89103, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.89103, 40.825695 ] } }, -{ "type": "Feature", "properties": { "id": 103101, "name": "Boston Rd/Provost Av", "direction": "SW", "lat": 40.885674, "lon": -73.82874, "routes": "BX30, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.82874, 40.885674 ] } }, -{ "type": "Feature", "properties": { "id": 103105, "name": "Katonah Av/E 242 St", "direction": "SW", "lat": 40.90279, "lon": -73.86831, "routes": "BX34, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86831, 40.90279 ] } }, -{ "type": "Feature", "properties": { "id": 103108, "name": "E 180 St/Arthur Av", "direction": "SE", "lat": 40.84921, "lon": -73.89122, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.89122, 40.84921 ] } }, -{ "type": "Feature", "properties": { "id": 103113, "name": "Melrose Av/E 156 St", "direction": "NE", "lat": 40.820953, "lon": -73.91551, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.91551, 40.820953 ] } }, -{ "type": "Feature", "properties": { "id": 103114, "name": "Melrose Av/E 158 St", "direction": "NE", "lat": 40.822605, "lon": -73.91463, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.91463, 40.822605 ] } }, -{ "type": "Feature", "properties": { "id": 103117, "name": "Webster Av/E 184 St", "direction": "NE", "lat": 40.85663, "lon": -73.89527, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89527, 40.85663 ] } }, -{ "type": "Feature", "properties": { "id": 103118, "name": "White Plains Rd/E 222 St", "direction": "NE", "lat": 40.885536, "lon": -73.861664, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.861664, 40.885536 ] } }, -{ "type": "Feature", "properties": { "id": 103119, "name": "White Plains Rd/E 228 St", "direction": "NE", "lat": 40.889835, "lon": -73.85928, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85928, 40.889835 ] } }, -{ "type": "Feature", "properties": { "id": 103121, "name": "White Plains Rd/E 228 St", "direction": "SW", "lat": 40.890015, "lon": -73.85933, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85933, 40.890015 ] } }, -{ "type": "Feature", "properties": { "id": 103122, "name": "White Plains Rd/E 222 St", "direction": "SW", "lat": 40.88584, "lon": -73.86163, "routes": "BX39, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86163, 40.88584 ] } }, -{ "type": "Feature", "properties": { "id": 103124, "name": "Melrose Av/E 155 St", "direction": "SW", "lat": 40.820114, "lon": -73.915985, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.915985, 40.820114 ] } }, -{ "type": "Feature", "properties": { "id": 103125, "name": "Melrose Av/E 160 St", "direction": "SW", "lat": 40.823727, "lon": -73.91419, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.91419, 40.823727 ] } }, -{ "type": "Feature", "properties": { "id": 103127, "name": "Westchester Av/Bryant Av", "direction": "SW", "lat": 40.82639, "lon": -73.88867, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.88867, 40.82639 ] } }, -{ "type": "Feature", "properties": { "id": 103136, "name": "Melrose Av/E 162 St", "direction": "NE", "lat": 40.824646, "lon": -73.91353, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.91353, 40.824646 ] } }, -{ "type": "Feature", "properties": { "id": 103137, "name": "Melrose Av/E 153 St", "direction": "NE", "lat": 40.819157, "lon": -73.916275, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.916275, 40.819157 ] } }, -{ "type": "Feature", "properties": { "id": 103151, "name": "Pelham Pkwy/Jacobi Hosp", "direction": "E", "lat": 40.85741, "lon": -73.84739, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.84739, 40.85741 ] } }, -{ "type": "Feature", "properties": { "id": 103152, "name": "Dreiser Loop/Defoe Pl", "direction": "W", "lat": 40.87603, "lon": -73.82928, "routes": "BX23, BX38, BX25, BX30, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82928, 40.87603 ] } }, -{ "type": "Feature", "properties": { "id": 103161, "name": "Edgewater Pl/Edgewater Park Oval", "direction": "NW", "lat": 40.822598, "lon": -73.81102, "routes": "BXM9, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81102, 40.822598 ] } }, -{ "type": "Feature", "properties": { "id": 103162, "name": "Throgs Neck Expwy/Veterans Memorial Park", "direction": "NW", "lat": 40.82507, "lon": -73.8155, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.8155, 40.82507 ] } }, -{ "type": "Feature", "properties": { "id": 103165, "name": "Clarence Av/Randall Av", "direction": "NW", "lat": 40.829765, "lon": -73.815125, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.815125, 40.829765 ] } }, -{ "type": "Feature", "properties": { "id": 103166, "name": "Clarence Av/Philip Av", "direction": "NW", "lat": 40.83126, "lon": -73.8164, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.8164, 40.83126 ] } }, -{ "type": "Feature", "properties": { "id": 103167, "name": "Dean Av/Lafayette Av", "direction": "NW", "lat": 40.833126, "lon": -73.81685, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81685, 40.833126 ] } }, -{ "type": "Feature", "properties": { "id": 103168, "name": "Dean Av/Layton Av", "direction": "NW", "lat": 40.835434, "lon": -73.81793, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81793, 40.835434 ] } }, -{ "type": "Feature", "properties": { "id": 103169, "name": "Layton Av/Vincent Av", "direction": "W", "lat": 40.83494, "lon": -73.82103, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82103, 40.83494 ] } }, -{ "type": "Feature", "properties": { "id": 103171, "name": "Otis Av/Logan Av", "direction": "SW", "lat": 40.833523, "lon": -73.82544, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82544, 40.833523 ] } }, -{ "type": "Feature", "properties": { "id": 103172, "name": "Crosby Av/Bruckner Blvd", "direction": "NW", "lat": 40.83467, "lon": -73.826416, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.826416, 40.83467 ] } }, -{ "type": "Feature", "properties": { "id": 103173, "name": "Crosby Av/Baisley Av", "direction": "NW", "lat": 40.83661, "lon": -73.82775, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82775, 40.83661 ] } }, -{ "type": "Feature", "properties": { "id": 103174, "name": "Crosby Av/Waterbury Av", "direction": "N", "lat": 40.83865, "lon": -73.82903, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82903, 40.83865 ] } }, -{ "type": "Feature", "properties": { "id": 103176, "name": "Crosby Av/Zulette Av", "direction": "N", "lat": 40.84247, "lon": -73.830055, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.830055, 40.84247 ] } }, -{ "type": "Feature", "properties": { "id": 103177, "name": "Crosby Av/Middletown Rd", "direction": "N", "lat": 40.844193, "lon": -73.83046, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.83046, 40.844193 ] } }, -{ "type": "Feature", "properties": { "id": 103181, "name": "Crosby Av/Westchester Av", "direction": "SE", "lat": 40.846775, "lon": -73.832275, "routes": "BX8, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.832275, 40.846775 ] } }, -{ "type": "Feature", "properties": { "id": 103183, "name": "Crosby Av/Middletown Rd", "direction": "S", "lat": 40.843548, "lon": -73.83041, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.83041, 40.843548 ] } }, -{ "type": "Feature", "properties": { "id": 103186, "name": "Crosby Av/Waterbury Av", "direction": "SE", "lat": 40.837997, "lon": -73.82879, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82879, 40.837997 ] } }, -{ "type": "Feature", "properties": { "id": 103187, "name": "Crosby Av/Baisley Av", "direction": "SE", "lat": 40.83603, "lon": -73.82749, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82749, 40.83603 ] } }, -{ "type": "Feature", "properties": { "id": 103188, "name": "Crosby Av/Bruckner Blvd", "direction": "SE", "lat": 40.834377, "lon": -73.82636, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82636, 40.834377 ] } }, -{ "type": "Feature", "properties": { "id": 103192, "name": "Layton Av/Clarence Av", "direction": "E", "lat": 40.835335, "lon": -73.81852, "routes": "BX8, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.81852, 40.835335 ] } }, -{ "type": "Feature", "properties": { "id": 103194, "name": "Dean Av/Lafayette Av", "direction": "SE", "lat": 40.833256, "lon": -73.817184, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.817184, 40.833256 ] } }, -{ "type": "Feature", "properties": { "id": 103195, "name": "Clarence Av/Philip Av", "direction": "SE", "lat": 40.83103, "lon": -73.81635, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81635, 40.83103 ] } }, -{ "type": "Feature", "properties": { "id": 103196, "name": "Clarence Av/Randall Av", "direction": "", "lat": 40.829536, "lon": -73.81509, "routes": "BXM9, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81509, 40.829536 ] } }, -{ "type": "Feature", "properties": { "id": 103204, "name": "Locust Point Dr/Giegerich Pl", "direction": "E", "lat": 40.816647, "lon": -73.80046, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80046, 40.816647 ] } }, -{ "type": "Feature", "properties": { "id": 103206, "name": "Tierney Pl/Longstreet Av", "direction": "SW", "lat": 40.8138, "lon": -73.80236, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80236, 40.8138 ] } }, -{ "type": "Feature", "properties": { "id": 103208, "name": "Henry Hudson Pkwy West/W 246 St", "direction": "S", "lat": 40.893314, "lon": -73.90852, "routes": "BX10, BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.90852, 40.893314 ] } }, -{ "type": "Feature", "properties": { "id": 103211, "name": "Jerome Av/W 177 St", "direction": "SW", "lat": 40.850105, "lon": -73.91072, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91072, 40.850105 ] } }, -{ "type": "Feature", "properties": { "id": 103212, "name": "Jerome Av/W 176 St", "direction": "SW", "lat": 40.848694, "lon": -73.91173, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91173, 40.848694 ] } }, -{ "type": "Feature", "properties": { "id": 103214, "name": "Morris Av/Walton Av", "direction": "SE", "lat": 40.846767, "lon": -73.91034, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.91034, 40.846767 ] } }, -{ "type": "Feature", "properties": { "id": 103215, "name": "Morris Av/E 174 St", "direction": "S", "lat": 40.844532, "lon": -73.90951, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90951, 40.844532 ] } }, -{ "type": "Feature", "properties": { "id": 103228, "name": "East Tremont Av/Sampson Av", "direction": "SE", "lat": 40.82056, "lon": -73.81821, "routes": "BX42, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.81821, 40.82056 ] } }, -{ "type": "Feature", "properties": { "id": 103229, "name": "East Tremont Av/Miles Av", "direction": "SE", "lat": 40.818882, "lon": -73.817215, "routes": "BX42, BXM9, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.817215, 40.818882 ] } }, -{ "type": "Feature", "properties": { "id": 103230, "name": "Pennyfield Av/Lawton Av", "direction": "SE", "lat": 40.818188, "lon": -73.80997, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80997, 40.818188 ] } }, -{ "type": "Feature", "properties": { "id": 103234, "name": "Throgs Neck Expwy/Veterans Memorial Park", "direction": "SE", "lat": 40.824917, "lon": -73.81564, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81564, 40.824917 ] } }, -{ "type": "Feature", "properties": { "id": 103241, "name": "Valentine Av/E 192 St", "direction": "SW", "lat": 40.863865, "lon": -73.89475, "routes": "BX34, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89475, 40.863865 ] } }, -{ "type": "Feature", "properties": { "id": 103255, "name": "Edson Av/Bartow Av", "direction": "SE", "lat": 40.86806, "lon": -73.83307, "routes": "BX12+, BX12, BX12, BX5, BX12, BX12, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.83307, 40.86806 ] } }, -{ "type": "Feature", "properties": { "id": 103256, "name": "Edson Av/Bartow Av", "direction": "SE", "lat": 40.86732, "lon": -73.83268, "routes": "Q50, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.83268, 40.86732 ] } }, -{ "type": "Feature", "properties": { "id": 103261, "name": "Henry Hudson Pkwy East/W 246 St", "direction": "N", "lat": 40.893486, "lon": -73.90792, "routes": "BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.90792, 40.893486 ] } }, -{ "type": "Feature", "properties": { "id": 103266, "name": "3 Av/Claremont Pkwy", "direction": "SW", "lat": 40.838303, "lon": -73.9012, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.9012, 40.838303 ] } }, -{ "type": "Feature", "properties": { "id": 103272, "name": "Metropolitan Av/Benedict Av", "direction": "N", "lat": 40.833916, "lon": -73.86073, "routes": "BX4A, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.86073, 40.833916 ] } }, -{ "type": "Feature", "properties": { "id": 103279, "name": "Bartow Av/Co-Op City Blvd", "direction": "W", "lat": 40.86958, "lon": -73.82589, "routes": "BX30, BX28, Q50, BX26, BXM7, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82589, 40.86958 ] } }, -{ "type": "Feature", "properties": { "id": 103280, "name": "Bruckner Blvd/Burr Av", "direction": "W", "lat": 40.85326, "lon": -73.82705, "routes": "BX24, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.82705, 40.85326 ] } }, -{ "type": "Feature", "properties": { "id": 103283, "name": "Peartree Av/Conner St", "direction": "NW", "lat": 40.882072, "lon": -73.82341, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.82341, 40.882072 ] } }, -{ "type": "Feature", "properties": { "id": 103285, "name": "East Tremont Av/Leland Av", "direction": "W", "lat": 40.840744, "lon": -73.86594, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86594, 40.840744 ] } }, -{ "type": "Feature", "properties": { "id": 103288, "name": "Plimpton Av/W 170 St", "direction": "NE", "lat": 40.84137, "lon": -73.92375, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92375, 40.84137 ] } }, -{ "type": "Feature", "properties": { "id": 103293, "name": "Castle Hill Av/East Tremont Av", "direction": "S", "lat": 40.842094, "lon": -73.85341, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.85341, 40.842094 ] } }, -{ "type": "Feature", "properties": { "id": 103294, "name": "Metropolitan Av/Unionport Rd", "direction": "S", "lat": 40.83871, "lon": -73.86063, "routes": "BXM6, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.86063, 40.83871 ] } }, -{ "type": "Feature", "properties": { "id": 103297, "name": "White Plains Rd/Magenta St", "direction": "S", "lat": 40.87537, "lon": -73.86711, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86711, 40.87537 ] } }, -{ "type": "Feature", "properties": { "id": 103299, "name": "White Plains Rd/Burke Av", "direction": "S", "lat": 40.871586, "lon": -73.86723, "routes": "BXM11, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86723, 40.871586 ] } }, -{ "type": "Feature", "properties": { "id": 103301, "name": "White Plains Rd/Arnow Av", "direction": "S", "lat": 40.867985, "lon": -73.86736, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86736, 40.867985 ] } }, -{ "type": "Feature", "properties": { "id": 103302, "name": "White Plains Rd/Allerton Av", "direction": "S", "lat": 40.865566, "lon": -73.86742, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86742, 40.865566 ] } }, -{ "type": "Feature", "properties": { "id": 103303, "name": "White Plains Rd/Mace Av", "direction": "S", "lat": 40.863342, "lon": -73.867485, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.867485, 40.863342 ] } }, -{ "type": "Feature", "properties": { "id": 103304, "name": "White Plains Rd/Waring Av", "direction": "S", "lat": 40.86146, "lon": -73.86755, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86755, 40.86146 ] } }, -{ "type": "Feature", "properties": { "id": 103305, "name": "White Plains Rd/Lydig Av", "direction": "S", "lat": 40.85459, "lon": -73.867775, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.867775, 40.85459 ] } }, -{ "type": "Feature", "properties": { "id": 103309, "name": "White Plains Rd/Morris Pk Av", "direction": "S", "lat": 40.84485, "lon": -73.86611, "routes": "BX39, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86611, 40.84485 ] } }, -{ "type": "Feature", "properties": { "id": 103310, "name": "White Plains Rd/East Tremont Av", "direction": "SE", "lat": 40.840717, "lon": -73.8644, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.8644, 40.840717 ] } }, -{ "type": "Feature", "properties": { "id": 103311, "name": "White Plains Rd/Archer St", "direction": "S", "lat": 40.83754, "lon": -73.86362, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86362, 40.83754 ] } }, -{ "type": "Feature", "properties": { "id": 103312, "name": "White Plains Rd/Lafayette Av", "direction": "S", "lat": 40.821667, "lon": -73.85825, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85825, 40.821667 ] } }, -{ "type": "Feature", "properties": { "id": 103313, "name": "White Plains Rd/Seward Av", "direction": "S", "lat": 40.81952, "lon": -73.85783, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85783, 40.81952 ] } }, -{ "type": "Feature", "properties": { "id": 103314, "name": "White Plains Rd/Randall Av", "direction": "S", "lat": 40.817406, "lon": -73.857315, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.857315, 40.817406 ] } }, -{ "type": "Feature", "properties": { "id": 103315, "name": "White Plains Rd/Lacombe Av", "direction": "S", "lat": 40.815327, "lon": -73.85683, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85683, 40.815327 ] } }, -{ "type": "Feature", "properties": { "id": 103317, "name": "White Plains Rd/Obrien Av", "direction": "N", "lat": 40.811813, "lon": -73.85577, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85577, 40.811813 ] } }, -{ "type": "Feature", "properties": { "id": 103318, "name": "White Plains Rd/Patterson Av", "direction": "N", "lat": 40.8139, "lon": -73.856255, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.856255, 40.8139 ] } }, -{ "type": "Feature", "properties": { "id": 103319, "name": "White Plains Rd/Randall Av", "direction": "N", "lat": 40.818146, "lon": -73.85722, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85722, 40.818146 ] } }, -{ "type": "Feature", "properties": { "id": 103320, "name": "White Plains Rd/Seward Av", "direction": "N", "lat": 40.82023, "lon": -73.85771, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85771, 40.82023 ] } }, -{ "type": "Feature", "properties": { "id": 103321, "name": "White Plains Rd/Westchester Av", "direction": "N", "lat": 40.833366, "lon": -73.8627, "routes": "BX36, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.8627, 40.833366 ] } }, -{ "type": "Feature", "properties": { "id": 103322, "name": "White Plains Rd/Wood Av", "direction": "N", "lat": 40.835842, "lon": -73.86309, "routes": "BX36, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86309, 40.835842 ] } }, -{ "type": "Feature", "properties": { "id": 103323, "name": "White Plains Rd/Guerlain St", "direction": "NW", "lat": 40.84033, "lon": -73.86401, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86401, 40.84033 ] } }, -{ "type": "Feature", "properties": { "id": 103324, "name": "Bronx Park East/Brady Av", "direction": "N", "lat": 40.852737, "lon": -73.8687, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.8687, 40.852737 ] } }, -{ "type": "Feature", "properties": { "id": 103326, "name": "Bronx Park East/Pelham Pkwy", "direction": "NE", "lat": 40.856537, "lon": -73.86932, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86932, 40.856537 ] } }, -{ "type": "Feature", "properties": { "id": 103328, "name": "Waring Av/White Plains Rd", "direction": "W", "lat": 40.8614, "lon": -73.867294, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.867294, 40.8614 ] } }, -{ "type": "Feature", "properties": { "id": 103329, "name": "White Plains Rd/Mace Av", "direction": "N", "lat": 40.86335, "lon": -73.86728, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86728, 40.86335 ] } }, -{ "type": "Feature", "properties": { "id": 103330, "name": "White Plains Rd/Allerton Av", "direction": "N", "lat": 40.865295, "lon": -73.867294, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.867294, 40.865295 ] } }, -{ "type": "Feature", "properties": { "id": 103331, "name": "White Plains Rd/Arnow Av", "direction": "N", "lat": 40.86776, "lon": -73.867226, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.867226, 40.86776 ] } }, -{ "type": "Feature", "properties": { "id": 103333, "name": "White Plains Rd/Burke Av", "direction": "N", "lat": 40.871292, "lon": -73.8671, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.8671, 40.871292 ] } }, -{ "type": "Feature", "properties": { "id": 103335, "name": "White Plains Rd/Magenta St", "direction": "N", "lat": 40.875046, "lon": -73.86698, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86698, 40.875046 ] } }, -{ "type": "Feature", "properties": { "id": 103343, "name": "Randall Av/Rosedale Av", "direction": "E", "lat": 40.816628, "lon": -73.865265, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.865265, 40.816628 ] } }, -{ "type": "Feature", "properties": { "id": 103349, "name": "Rosedale Av/Seward Av", "direction": "S", "lat": 40.818398, "lon": -73.86622, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86622, 40.818398 ] } }, -{ "type": "Feature", "properties": { "id": 103350, "name": "Soundview Av/Lacombe Av", "direction": "SE", "lat": 40.814972, "lon": -73.85946, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.85946, 40.814972 ] } }, -{ "type": "Feature", "properties": { "id": 103351, "name": "Soundview Av/Lacombe Av", "direction": "NW", "lat": 40.815174, "lon": -73.859474, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.859474, 40.815174 ] } }, -{ "type": "Feature", "properties": { "id": 103352, "name": "Rosedale Av/Seward Av", "direction": "N", "lat": 40.819057, "lon": -73.86619, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86619, 40.819057 ] } }, -{ "type": "Feature", "properties": { "id": 103353, "name": "Rosedale Av/Lafayette Av", "direction": "N", "lat": 40.82123, "lon": -73.866684, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.866684, 40.82123 ] } }, -{ "type": "Feature", "properties": { "id": 103355, "name": "Lafayette Av/White Plains Rd", "direction": "E", "lat": 40.822006, "lon": -73.85796, "routes": "BX5, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.85796, 40.822006 ] } }, -{ "type": "Feature", "properties": { "id": 103356, "name": "Waters Pl/Eastchester Rd", "direction": "E", "lat": 40.84626, "lon": -73.84414, "routes": "BX24, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.84414, 40.84626 ] } }, -{ "type": "Feature", "properties": { "id": 103359, "name": "Bronx State/Bus Shelter", "direction": "W", "lat": 40.84621, "lon": -73.83983, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.83983, 40.84621 ] } }, -{ "type": "Feature", "properties": { "id": 103362, "name": "Boston Rd/Pelham Pkwy", "direction": "SW", "lat": 40.856575, "lon": -73.86947, "routes": "BX22, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86947, 40.856575 ] } }, -{ "type": "Feature", "properties": { "id": 103365, "name": "White Plains Rd/Lydig Av", "direction": "N", "lat": 40.854404, "lon": -73.867645, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.867645, 40.854404 ] } }, -{ "type": "Feature", "properties": { "id": 103366, "name": "White Plains Rd/Pelham Pkwy", "direction": "N", "lat": 40.857117, "lon": -73.867546, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.867546, 40.857117 ] } }, -{ "type": "Feature", "properties": { "id": 103374, "name": "Brush Av/Bruckner Blvd", "direction": "NW", "lat": 40.828087, "lon": -73.841, "routes": "Q44+, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.841, 40.828087 ] } }, -{ "type": "Feature", "properties": { "id": 103375, "name": "Cross Bronx Expwy Service Rd/Zerega Av", "direction": "W", "lat": 40.828964, "lon": -73.8443, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.8443, 40.828964 ] } }, -{ "type": "Feature", "properties": { "id": 103379, "name": "Cross Bronx Expwy Service Rd/Newbold Av", "direction": "W", "lat": 40.8325, "lon": -73.856995, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.856995, 40.8325 ] } }, -{ "type": "Feature", "properties": { "id": 103380, "name": "Cross Bronx Expwy Service Rd/Taylor Av", "direction": "W", "lat": 40.83539, "lon": -73.86643, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.86643, 40.83539 ] } }, -{ "type": "Feature", "properties": { "id": 103383, "name": "Cross Bronx Expwy/Rosedale Av", "direction": "E", "lat": 40.835567, "lon": -73.86969, "routes": "Q44+, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.86969, 40.835567 ] } }, -{ "type": "Feature", "properties": { "id": 103385, "name": "Cross Bronx Expwy Service Rd/Pugsley Av", "direction": "E", "lat": 40.83193, "lon": -73.85712, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.85712, 40.83193 ] } }, -{ "type": "Feature", "properties": { "id": 103390, "name": "Bruckner Blvd/Castle Hill Av", "direction": "E", "lat": 40.826904, "lon": -73.84938, "routes": "BX5, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.84938, 40.826904 ] } }, -{ "type": "Feature", "properties": { "id": 103391, "name": "Bruckner Blvd/Havemeyer Av", "direction": "E", "lat": 40.82731, "lon": -73.84639, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.84639, 40.82731 ] } }, -{ "type": "Feature", "properties": { "id": 103392, "name": "Westchester Av/Virginia Av", "direction": "E", "lat": 40.832924, "lon": -73.86174, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.86174, 40.832924 ] } }, -{ "type": "Feature", "properties": { "id": 103393, "name": "Bruckner Blvd/Zerega Av", "direction": "E", "lat": 40.827583, "lon": -73.84392, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.84392, 40.827583 ] } }, -{ "type": "Feature", "properties": { "id": 103395, "name": "Hutchinson River Pkwy/Lafayette Av", "direction": "S", "lat": 40.824974, "lon": -73.83666, "routes": "Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.83666, 40.824974 ] } }, -{ "type": "Feature", "properties": { "id": 103400, "name": "Paul Av/W 205 St", "direction": "SW", "lat": 40.876682, "lon": -73.88993, "routes": "BX10, BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88993, 40.876682 ] } }, -{ "type": "Feature", "properties": { "id": 103405, "name": "Soundview Av/Cornell Av", "direction": "SE", "lat": 40.807545, "lon": -73.85234, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85234, 40.807545 ] } }, -{ "type": "Feature", "properties": { "id": 103406, "name": "Webster Av/E 197 St", "direction": "SW", "lat": 40.86548, "lon": -73.88681, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.88681, 40.86548 ] } }, -{ "type": "Feature", "properties": { "id": 103408, "name": "White Plains Rd/East Gun Hill Rd", "direction": "NE", "lat": 40.877205, "lon": -73.86648, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86648, 40.877205 ] } }, -{ "type": "Feature", "properties": { "id": 103409, "name": "Story Av/Evergreen Av", "direction": "W", "lat": 40.821396, "lon": -73.879875, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.879875, 40.821396 ] } }, -{ "type": "Feature", "properties": { "id": 103410, "name": "Bruckner Blvd/Havemeyer Av", "direction": "W", "lat": 40.827995, "lon": -73.847305, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.847305, 40.827995 ] } }, -{ "type": "Feature", "properties": { "id": 103413, "name": "Bruckner Blvd/Huntington Av", "direction": "NE", "lat": 40.83007, "lon": -73.8327, "routes": "BXM8, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.8327, 40.83007 ] } }, -{ "type": "Feature", "properties": { "id": 103426, "name": "Bainbridge Av/E 206 St", "direction": "N", "lat": 40.874874, "lon": -73.8794, "routes": "BX28, BX38, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.8794, 40.874874 ] } }, -{ "type": "Feature", "properties": { "id": 103435, "name": "E 170 St/Morris Av", "direction": "SE", "lat": 40.837635, "lon": -73.91098, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.91098, 40.837635 ] } }, -{ "type": "Feature", "properties": { "id": 103441, "name": "Soundview Av/Lafayette Av", "direction": "SE", "lat": 40.82112, "lon": -73.86601, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86601, 40.82112 ] } }, -{ "type": "Feature", "properties": { "id": 103443, "name": "West Kingsbridge Rd/Bailey Av", "direction": "NW", "lat": 40.87312, "lon": -73.90551, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90551, 40.87312 ] } }, -{ "type": "Feature", "properties": { "id": 103446, "name": "East Tremont Av/3 Av", "direction": "W", "lat": 40.84676, "lon": -73.89659, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.89659, 40.84676 ] } }, -{ "type": "Feature", "properties": { "id": 103449, "name": "Paul Av/Bedford Park Blvd", "direction": "NE", "lat": 40.874638, "lon": -73.89142, "routes": "BX38, BX28, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.89142, 40.874638 ] } }, -{ "type": "Feature", "properties": { "id": 103450, "name": "Goulden Av/Bedford Park Blvd", "direction": "NE", "lat": 40.875774, "lon": -73.89386, "routes": "BX22, BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.89386, 40.875774 ] } }, -{ "type": "Feature", "properties": { "id": 103453, "name": "Westchester Av/Havemeyer Av", "direction": "NE", "lat": 40.835, "lon": -73.848854, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.848854, 40.835 ] } }, -{ "type": "Feature", "properties": { "id": 103459, "name": "Throgs Neck Expwy/Prentiss Av", "direction": "E", "lat": 40.81966, "lon": -73.809814, "routes": "BX8, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.809814, 40.81966 ] } }, -{ "type": "Feature", "properties": { "id": 103466, "name": "Webster Av/E 235 St", "direction": "N", "lat": 40.89812, "lon": -73.862305, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.862305, 40.89812 ] } }, -{ "type": "Feature", "properties": { "id": 103469, "name": "Pennyfield Av/Fort Schuyler", "direction": "E", "lat": 40.80908, "lon": -73.801895, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.801895, 40.80908 ] } }, -{ "type": "Feature", "properties": { "id": 103472, "name": "Morris Av/E 142 St", "direction": "SW", "lat": 40.81416, "lon": -73.92498, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.92498, 40.81416 ] } }, -{ "type": "Feature", "properties": { "id": 103473, "name": "Bruckner Blvd/Buhre Av", "direction": "N", "lat": 40.84901, "lon": -73.82686, "routes": "Q50, BX5, BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82686, 40.84901 ] } }, -{ "type": "Feature", "properties": { "id": 103486, "name": "Bronx State/Bus Shelter", "direction": "NW", "lat": 40.846085, "lon": -73.83962, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.83962, 40.846085 ] } }, -{ "type": "Feature", "properties": { "id": 103489, "name": "Sedgwick Av/W 231 St", "direction": "NE", "lat": 40.87567, "lon": -73.900566, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.900566, 40.87567 ] } }, -{ "type": "Feature", "properties": { "id": 103490, "name": "University Av/W 179 St", "direction": "SW", "lat": 40.854565, "lon": -73.91159, "routes": "BX3, BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.91159, 40.854565 ] } }, -{ "type": "Feature", "properties": { "id": 103492, "name": "W 170 St/Shakespeare Av", "direction": "W", "lat": 40.840443, "lon": -73.92226, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.92226, 40.840443 ] } }, -{ "type": "Feature", "properties": { "id": 103493, "name": "W 168 St/Woodycrest Av", "direction": "W", "lat": 40.83829, "lon": -73.924095, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.924095, 40.83829 ] } }, -{ "type": "Feature", "properties": { "id": 103495, "name": "West Farms Rd/Westchester Av", "direction": "SE", "lat": 40.824974, "lon": -73.89148, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.89148, 40.824974 ] } }, -{ "type": "Feature", "properties": { "id": 103498, "name": "Goulden Av/W 197 St", "direction": "SW", "lat": 40.87157, "lon": -73.89733, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89733, 40.87157 ] } }, -{ "type": "Feature", "properties": { "id": 103501, "name": "White Plains Rd/Nereid Av", "direction": "SW", "lat": 40.898647, "lon": -73.85427, "routes": "BXM11, BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85427, 40.898647 ] } }, -{ "type": "Feature", "properties": { "id": 103504, "name": "Pennyfield Av/Geranium Pl", "direction": "SE", "lat": 40.810886, "lon": -73.804756, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.804756, 40.810886 ] } }, -{ "type": "Feature", "properties": { "id": 103505, "name": "East Burnside Av/Ryer Av", "direction": "NW", "lat": 40.85112, "lon": -73.90182, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.90182, 40.85112 ] } }, -{ "type": "Feature", "properties": { "id": 103507, "name": "Southern Blvd/Hunts Point Av", "direction": "NE", "lat": 40.82082, "lon": -73.89161, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89161, 40.82082 ] } }, -{ "type": "Feature", "properties": { "id": 103508, "name": "Throgs Neck Expwy/Harding Av", "direction": "E", "lat": 40.81727, "lon": -73.80597, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80597, 40.81727 ] } }, -{ "type": "Feature", "properties": { "id": 103514, "name": "Aileen Ryan Oval/Metropolitan Av", "direction": "NW", "lat": 40.838707, "lon": -73.85945, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85945, 40.838707 ] } }, -{ "type": "Feature", "properties": { "id": 103516, "name": "Aileen Ryan Oval/Metropolitan Av", "direction": "E", "lat": 40.83785, "lon": -73.86024, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86024, 40.83785 ] } }, -{ "type": "Feature", "properties": { "id": 103517, "name": "Unionport Rd/Metropolitan Av", "direction": "SE", "lat": 40.83699, "lon": -73.857765, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.857765, 40.83699 ] } }, -{ "type": "Feature", "properties": { "id": 103518, "name": "Lodovick Av/Allerton Av", "direction": "S", "lat": 40.86519, "lon": -73.837036, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.837036, 40.86519 ] } }, -{ "type": "Feature", "properties": { "id": 103520, "name": "Metropolitan Av/Castle Hill Av", "direction": "W", "lat": 40.8408, "lon": -73.853485, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.853485, 40.8408 ] } }, -{ "type": "Feature", "properties": { "id": 103523, "name": "Cross Bronx Expwy Service Rd/Castle Hill Av", "direction": "E", "lat": 40.830074, "lon": -73.85082, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.85082, 40.830074 ] } }, -{ "type": "Feature", "properties": { "id": 103525, "name": "West Burnside Av/Jerome Av", "direction": "W", "lat": 40.853855, "lon": -73.90752, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.90752, 40.853855 ] } }, -{ "type": "Feature", "properties": { "id": 103526, "name": "West Burnside Av/Grand Av", "direction": "NW", "lat": 40.854202, "lon": -73.90977, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.90977, 40.854202 ] } }, -{ "type": "Feature", "properties": { "id": 103528, "name": "West Burnside Av/Loring Pl South", "direction": "W", "lat": 40.854088, "lon": -73.91501, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.91501, 40.854088 ] } }, -{ "type": "Feature", "properties": { "id": 103529, "name": "West Burnside Av/Sedgwick Av", "direction": "NW", "lat": 40.854797, "lon": -73.91657, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.91657, 40.854797 ] } }, -{ "type": "Feature", "properties": { "id": 103532, "name": "University Av/Morton Pl", "direction": "SW", "lat": 40.85222, "lon": -73.91385, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.91385, 40.85222 ] } }, -{ "type": "Feature", "properties": { "id": 103537, "name": "Bartow Av/2136 Bartow Av", "direction": "E", "lat": 40.869087, "lon": -73.824455, "routes": "BX38, BX28, Q50, BX26, BX23, BX30, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.824455, 40.869087 ] } }, -{ "type": "Feature", "properties": { "id": 103538, "name": "Bartow Av/Rear Of Pathmark", "direction": "W", "lat": 40.86927, "lon": -73.824036, "routes": "BX28, Q50, BX26, BX30, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.824036, 40.86927 ] } }, -{ "type": "Feature", "properties": { "id": 103539, "name": "E 229 St/Schieffelin Pl", "direction": "SE", "lat": 40.88404, "lon": -73.84232, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84232, 40.88404 ] } }, -{ "type": "Feature", "properties": { "id": 103540, "name": "East Fordham Rd/Hoffman St", "direction": "SE", "lat": 40.858624, "lon": -73.88566, "routes": "BX12, BX17, BX22, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.88566, 40.858624 ] } }, -{ "type": "Feature", "properties": { "id": 103541, "name": "Undercliff Av/Sedgwick Av", "direction": "SW", "lat": 40.84289, "lon": -73.926796, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.926796, 40.84289 ] } }, -{ "type": "Feature", "properties": { "id": 103542, "name": "White Plains Rd/Birchall Av", "direction": "N", "lat": 40.849922, "lon": -73.86769, "routes": "BX39, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86769, 40.849922 ] } }, -{ "type": "Feature", "properties": { "id": 103543, "name": "Westchester Av/Doris St", "direction": "SW", "lat": 40.83523, "lon": -73.84866, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.84866, 40.83523 ] } }, -{ "type": "Feature", "properties": { "id": 103544, "name": "East Tremont Av/Harding Av", "direction": "NW", "lat": 40.81642, "lon": -73.81572, "routes": "BXM9, BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.81572, 40.81642 ] } }, -{ "type": "Feature", "properties": { "id": 103556, "name": "Morris Av/E 144 St", "direction": "NE", "lat": 40.815292, "lon": -73.92397, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.92397, 40.815292 ] } }, -{ "type": "Feature", "properties": { "id": 103561, "name": "Layton Av/Vincent Av", "direction": "E", "lat": 40.83481, "lon": -73.82073, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.82073, 40.83481 ] } }, -{ "type": "Feature", "properties": { "id": 103575, "name": "Castle Hill Av/Zerega Av", "direction": "N", "lat": 40.841362, "lon": -73.853035, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.853035, 40.841362 ] } }, -{ "type": "Feature", "properties": { "id": 103576, "name": "Metropolitan Av/Purdy St", "direction": "E", "lat": 40.840553, "lon": -73.85364, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.85364, 40.840553 ] } }, -{ "type": "Feature", "properties": { "id": 103577, "name": "Spencer Dr/Reed Pl", "direction": "E", "lat": 40.842197, "lon": -73.819626, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.819626, 40.842197 ] } }, -{ "type": "Feature", "properties": { "id": 103578, "name": "Westchester Av/Amendola Plaza", "direction": "S", "lat": 40.852573, "lon": -73.82736, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82736, 40.852573 ] } }, -{ "type": "Feature", "properties": { "id": 103588, "name": "Amendola Pl/Westchester Av", "direction": "S", "lat": 40.852226, "lon": -73.827255, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.827255, 40.852226 ] } }, -{ "type": "Feature", "properties": { "id": 103589, "name": "Pelham Pkwy/Bronxwood Av", "direction": "W", "lat": 40.857426, "lon": -73.86142, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.86142, 40.857426 ] } }, -{ "type": "Feature", "properties": { "id": 103590, "name": "Orchard Beach Circle/City Island Rd", "direction": "SE", "lat": 40.85994, "lon": -73.80283, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.80283, 40.85994 ] } }, -{ "type": "Feature", "properties": { "id": 103592, "name": "Pelham Pkwy/Narragansett Av", "direction": "E", "lat": 40.85742, "lon": -73.85163, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.85163, 40.85742 ] } }, -{ "type": "Feature", "properties": { "id": 103595, "name": "Sedgwick Av/Dickinson Av", "direction": "E", "lat": 40.88263, "lon": -73.888885, "routes": "BX1, BX2, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.888885, 40.88263 ] } }, -{ "type": "Feature", "properties": { "id": 103596, "name": "Randall Av/Taylor Av", "direction": "W", "lat": 40.81714, "lon": -73.86244, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86244, 40.81714 ] } }, -{ "type": "Feature", "properties": { "id": 103597, "name": "Randall Av/Commonwealth Av", "direction": "W", "lat": 40.816772, "lon": -73.86518, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.86518, 40.816772 ] } }, -{ "type": "Feature", "properties": { "id": 103599, "name": "Crotona Av/Crotona Park", "direction": "NE", "lat": 40.83993, "lon": -73.89558, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89558, 40.83993 ] } }, -{ "type": "Feature", "properties": { "id": 103600, "name": "Crotona Ave/Crotona Park", "direction": "SW", "lat": 40.839443, "lon": -73.896, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.896, 40.839443 ] } }, -{ "type": "Feature", "properties": { "id": 103606, "name": "Westchester Av/Intervale Av", "direction": "SW", "lat": 40.822266, "lon": -73.896645, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.896645, 40.822266 ] } }, -{ "type": "Feature", "properties": { "id": 103611, "name": "Southern Blvd/E 176 St", "direction": "N", "lat": 40.84079, "lon": -73.88591, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88591, 40.84079 ] } }, -{ "type": "Feature", "properties": { "id": 103612, "name": "Southern Blvd/E 176 St", "direction": "S", "lat": 40.8402, "lon": -73.88624, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88624, 40.8402 ] } }, -{ "type": "Feature", "properties": { "id": 103615, "name": "Van Cortlandt Av East/Rochambeau Av", "direction": "NE", "lat": 40.876514, "lon": -73.88054, "routes": "BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.88054, 40.876514 ] } }, -{ "type": "Feature", "properties": { "id": 103617, "name": "Bainbridge Av/E 206 St", "direction": "S", "lat": 40.874805, "lon": -73.87946, "routes": "BX28, BX38, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.87946, 40.874805 ] } }, -{ "type": "Feature", "properties": { "id": 103618, "name": "East Mosholu Pkwy North/Van Cortlandt Av East", "direction": "N", "lat": 40.876083, "lon": -73.88145, "routes": "BX10, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.88145, 40.876083 ] } }, -{ "type": "Feature", "properties": { "id": 103620, "name": "E 206 St/Rochambeau Av", "direction": "W", "lat": 40.874928, "lon": -73.8803, "routes": "BX16, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.8803, 40.874928 ] } }, -{ "type": "Feature", "properties": { "id": 103625, "name": "Halleck St/Food Center Dr", "direction": "N", "lat": 40.80974, "lon": -73.880295, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.880295, 40.80974 ] } }, -{ "type": "Feature", "properties": { "id": 103640, "name": "Southern Blvd/Botanical Gardens", "direction": "NW", "lat": 40.861248, "lon": -73.88073, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88073, 40.861248 ] } }, -{ "type": "Feature", "properties": { "id": 103641, "name": "Bartow Av/Edson Av", "direction": "W", "lat": 40.86812, "lon": -73.83391, "routes": "BX28, BX26, BX25, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.83391, 40.86812 ] } }, -{ "type": "Feature", "properties": { "id": 103650, "name": "Westchester Av/Southern Blvd", "direction": "NE", "lat": 40.82478, "lon": -73.89157, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.89157, 40.82478 ] } }, -{ "type": "Feature", "properties": { "id": 103653, "name": "White Plains Rd/Story Av", "direction": "S", "lat": 40.82388, "lon": -73.85882, "routes": "BX5, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.85882, 40.82388 ] } }, -{ "type": "Feature", "properties": { "id": 103654, "name": "Sedgwick Av/West Tremont Av", "direction": "SW", "lat": 40.85298, "lon": -73.91835, "routes": "BX42, BX40, BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91835, 40.85298 ] } }, -{ "type": "Feature", "properties": { "id": 103657, "name": "Boston Rd/Astor Av", "direction": "N", "lat": 40.859787, "lon": -73.86732, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.86732, 40.859787 ] } }, -{ "type": "Feature", "properties": { "id": 103658, "name": "Orchard Beach Circle/City Island Rd", "direction": "W", "lat": 40.86086, "lon": -73.80274, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.80274, 40.86086 ] } }, -{ "type": "Feature", "properties": { "id": 103659, "name": "City Island Rd/Shore Rd", "direction": "W", "lat": 40.864418, "lon": -73.813194, "routes": "BX29, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.813194, 40.864418 ] } }, -{ "type": "Feature", "properties": { "id": 103660, "name": "City Island Rd/Shore Rd", "direction": "E", "lat": 40.864307, "lon": -73.81304, "routes": "BX29, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.81304, 40.864307 ] } }, -{ "type": "Feature", "properties": { "id": 103662, "name": "E 233 St/Katonah Av", "direction": "E", "lat": 40.895954, "lon": -73.866554, "routes": "BX16, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.866554, 40.895954 ] } }, -{ "type": "Feature", "properties": { "id": 103664, "name": "E 229 St/E 229 Dr S", "direction": "W", "lat": 40.8864, "lon": -73.8454, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.8454, 40.8864 ] } }, -{ "type": "Feature", "properties": { "id": 103665, "name": "E 229 St/E 229 Dr S", "direction": "SE", "lat": 40.886177, "lon": -73.84525, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84525, 40.886177 ] } }, -{ "type": "Feature", "properties": { "id": 103666, "name": "Eastchester Rd/Pelham Pkwy South", "direction": "N", "lat": 40.857006, "lon": -73.843704, "routes": "BXM10, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.843704, 40.857006 ] } }, -{ "type": "Feature", "properties": { "id": 103667, "name": "Eastchester Rd/Pelham Pkwy South", "direction": "S", "lat": 40.856853, "lon": -73.84399, "routes": "BX31, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84399, 40.856853 ] } }, -{ "type": "Feature", "properties": { "id": 103668, "name": "Eastchester Rd/E 222 St", "direction": "S", "lat": 40.88175, "lon": -73.84902, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84902, 40.88175 ] } }, -{ "type": "Feature", "properties": { "id": 103671, "name": "Paul Av/West Mosholu Pkwy South", "direction": "W", "lat": 40.880363, "lon": -73.886345, "routes": "BX38, BX28, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.886345, 40.880363 ] } }, -{ "type": "Feature", "properties": { "id": 103672, "name": "White Plains Rd/Bronxdale Av", "direction": "S", "lat": 40.851803, "lon": -73.86786, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.86786, 40.851803 ] } }, -{ "type": "Feature", "properties": { "id": 103674, "name": "Dreiser Loop/Defoe Pl", "direction": "E", "lat": 40.875935, "lon": -73.829475, "routes": "BX30, BX28, BX38, BX23, BXM7, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.829475, 40.875935 ] } }, -{ "type": "Feature", "properties": { "id": 103676, "name": "Hutchinson Rvr Pkwy E/Boller Av", "direction": "NE", "lat": 40.863026, "lon": -73.82574, "routes": "Q50, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82574, 40.863026 ] } }, -{ "type": "Feature", "properties": { "id": 103678, "name": "Lane Av/Benson Av", "direction": "N", "lat": 40.840797, "lon": -73.84329, "routes": "BX4, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.84329, 40.840797 ] } }, -{ "type": "Feature", "properties": { "id": 103681, "name": "Westchester Av/East Tremont Av", "direction": "SW", "lat": 40.84074, "lon": -73.84195, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.84195, 40.84074 ] } }, -{ "type": "Feature", "properties": { "id": 103683, "name": "East Tremont Av/Westchester Av", "direction": "SE", "lat": 40.84067, "lon": -73.842224, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.842224, 40.84067 ] } }, -{ "type": "Feature", "properties": { "id": 103684, "name": "East Tremont Av/Westchester Av", "direction": "NW", "lat": 40.840805, "lon": -73.84228, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.84228, 40.840805 ] } }, -{ "type": "Feature", "properties": { "id": 103688, "name": "Crosby Av/Buhre Av", "direction": "NW", "lat": 40.84689, "lon": -73.83227, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.83227, 40.84689 ] } }, -{ "type": "Feature", "properties": { "id": 103689, "name": "Williamsbridge Rd/Roberts Av", "direction": "NW", "lat": 40.842556, "lon": -73.84442, "routes": "BX24, BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84442, 40.842556 ] } }, -{ "type": "Feature", "properties": { "id": 103690, "name": "Throgs Neck Expwy/Wissman Av", "direction": "W", "lat": 40.81995, "lon": -73.81021, "routes": "BXM9, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81021, 40.81995 ] } }, -{ "type": "Feature", "properties": { "id": 103692, "name": "Crosby Av/Dudley Av", "direction": "S", "lat": 40.8418, "lon": -73.829994, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.829994, 40.8418 ] } }, -{ "type": "Feature", "properties": { "id": 103694, "name": "Webster Av/E 171 St", "direction": "NE", "lat": 40.83836, "lon": -73.90604, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90604, 40.83836 ] } }, -{ "type": "Feature", "properties": { "id": 103695, "name": "Webster Av/E 173 St", "direction": "SW", "lat": 40.842697, "lon": -73.90381, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90381, 40.842697 ] } }, -{ "type": "Feature", "properties": { "id": 103696, "name": "Webster Av/Botanical Sq North", "direction": "NE", "lat": 40.86859, "lon": -73.88139, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.88139, 40.86859 ] } }, -{ "type": "Feature", "properties": { "id": 103697, "name": "East Fordham Rd/Hoffman St", "direction": "NW", "lat": 40.85887, "lon": -73.88576, "routes": "BX17, BX22, BX12, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.88576, 40.85887 ] } }, -{ "type": "Feature", "properties": { "id": 103698, "name": "Edgewater Park/Edgewater Park Oval", "direction": "NW", "lat": 40.8225, "lon": -73.81095, "routes": "BX8, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.81095, 40.8225 ] } }, -{ "type": "Feature", "properties": { "id": 103699, "name": "Williamsbridge Rd/Pelham Pkwy North", "direction": "NW", "lat": 40.858006, "lon": -73.856476, "routes": "BX90, BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.856476, 40.858006 ] } }, -{ "type": "Feature", "properties": { "id": 103700, "name": "Williamsbridge Rd/Pelham Pkwy", "direction": "NW", "lat": 40.856857, "lon": -73.85595, "routes": "BX8, BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.85595, 40.856857 ] } }, -{ "type": "Feature", "properties": { "id": 103701, "name": "White Plains Rd/Bruckner Blvd", "direction": "SE", "lat": 40.826427, "lon": -73.859856, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.859856, 40.826427 ] } }, -{ "type": "Feature", "properties": { "id": 103702, "name": "Ellsworth Av/Schley Av", "direction": "SE", "lat": 40.826576, "lon": -73.81598, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81598, 40.826576 ] } }, -{ "type": "Feature", "properties": { "id": 103703, "name": "Eastchester Rd/Waters Pl", "direction": "S", "lat": 40.84653, "lon": -73.844765, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.844765, 40.84653 ] } }, -{ "type": "Feature", "properties": { "id": 103704, "name": "West Mosholu Pkwy South/Paul Av", "direction": "SE", "lat": 40.88061, "lon": -73.886055, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.886055, 40.88061 ] } }, -{ "type": "Feature", "properties": { "id": 103708, "name": "Bergen Av/E 149 St", "direction": "NE", "lat": 40.81588, "lon": -73.91634, "routes": "BX4, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.91634, 40.81588 ] } }, -{ "type": "Feature", "properties": { "id": 103709, "name": "Edward L Grant Hwy/W 169 St", "direction": "SW", "lat": 40.83818, "lon": -73.922226, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.922226, 40.83818 ] } }, -{ "type": "Feature", "properties": { "id": 103712, "name": "Pennyfield Av/Harding Av", "direction": "NW", "lat": 40.817055, "lon": -73.809204, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.809204, 40.817055 ] } }, -{ "type": "Feature", "properties": { "id": 103714, "name": "West Kingsbridge Rd/Sedgwick Av", "direction": "SE", "lat": 40.86944, "lon": -73.90377, "routes": "BX9, BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90377, 40.86944 ] } }, -{ "type": "Feature", "properties": { "id": 103716, "name": "Aileen Ryan Oval/Unionport Rd", "direction": "E", "lat": 40.83772, "lon": -73.8597, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.8597, 40.83772 ] } }, -{ "type": "Feature", "properties": { "id": 103719, "name": "East Tremont Av/Lane Av", "direction": "SE", "lat": 40.84114, "lon": -73.84292, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.84292, 40.84114 ] } }, -{ "type": "Feature", "properties": { "id": 103721, "name": "Grand Concourse/E 203 St", "direction": "NE", "lat": 40.87431, "lon": -73.88645, "routes": "BX1, BXM4, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.88645, 40.87431 ] } }, -{ "type": "Feature", "properties": { "id": 103722, "name": "Grand Concourse/E 204 St", "direction": "SW", "lat": 40.874302, "lon": -73.8869, "routes": "BXM4, BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.8869, 40.874302 ] } }, -{ "type": "Feature", "properties": { "id": 103723, "name": "E 149 St/Saint Ann'S Av", "direction": "W", "lat": 40.814423, "lon": -73.91329, "routes": "BX19, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.91329, 40.814423 ] } }, -{ "type": "Feature", "properties": { "id": 103726, "name": "E 222 St/Barnes Av", "direction": "E", "lat": 40.884605, "lon": -73.85843, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.85843, 40.884605 ] } }, -{ "type": "Feature", "properties": { "id": 103731, "name": "East Tremont Av/St Lawrence Av", "direction": "W", "lat": 40.84005, "lon": -73.868324, "routes": "BX40, BX42, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.868324, 40.84005 ] } }, -{ "type": "Feature", "properties": { "id": 103737, "name": "3 Av/East Tremont Av", "direction": "NE", "lat": 40.84702, "lon": -73.89588, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89588, 40.84702 ] } }, -{ "type": "Feature", "properties": { "id": 103748, "name": "E 149 St/Bergen Av", "direction": "SE", "lat": 40.815685, "lon": -73.91699, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.91699, 40.815685 ] } }, -{ "type": "Feature", "properties": { "id": 103753, "name": "Boston Rd/E 165 St", "direction": "NE", "lat": 40.82599, "lon": -73.90659, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.90659, 40.82599 ] } }, -{ "type": "Feature", "properties": { "id": 103767, "name": "Lafayette Av/Hutchinson River Pkwy", "direction": "W", "lat": 40.824947, "lon": -73.836975, "routes": "Q44+, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.836975, 40.824947 ] } }, -{ "type": "Feature", "properties": { "id": 103776, "name": "Clay Av/E 171 St", "direction": "SW", "lat": 40.83877, "lon": -73.90648, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.90648, 40.83877 ] } }, -{ "type": "Feature", "properties": { "id": 103778, "name": "E 138 St/Grand Concourse", "direction": "NW", "lat": 40.813347, "lon": -73.93026, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.93026, 40.813347 ] } }, -{ "type": "Feature", "properties": { "id": 103779, "name": "E 229 St/Schieffelin Pl", "direction": "NW", "lat": 40.884346, "lon": -73.84234, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84234, 40.884346 ] } }, -{ "type": "Feature", "properties": { "id": 103781, "name": "Grand Concourse/Cross Bronx Expwy Overpass", "direction": "NE", "lat": 40.845253, "lon": -73.91063, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91063, 40.845253 ] } }, -{ "type": "Feature", "properties": { "id": 103784, "name": "Longstreet Av/Chaffee Av", "direction": "SE", "lat": 40.8162, "lon": -73.80462, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80462, 40.8162 ] } }, -{ "type": "Feature", "properties": { "id": 103785, "name": "Randall Av/Taylor Av", "direction": "E", "lat": 40.81705, "lon": -73.862076, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.862076, 40.81705 ] } }, -{ "type": "Feature", "properties": { "id": 103787, "name": "Unionport Rd/Guerlain St", "direction": "SE", "lat": 40.83939, "lon": -73.86183, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86183, 40.83939 ] } }, -{ "type": "Feature", "properties": { "id": 103789, "name": "Palmer Av/Hutchinson River Pkwy East", "direction": "S", "lat": 40.862034, "lon": -73.82662, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.82662, 40.862034 ] } }, -{ "type": "Feature", "properties": { "id": 103794, "name": "Bay Plaza Blvd/Bay Plaza Dr", "direction": "NW", "lat": 40.866283, "lon": -73.82686, "routes": "BX25, BX38, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.82686, 40.866283 ] } }, -{ "type": "Feature", "properties": { "id": 103795, "name": "Bay Plaza Blvd/Co-Op City Blvd", "direction": "NW", "lat": 40.866795, "lon": -73.82785, "routes": "BX12+, BX5, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.82785, 40.866795 ] } }, -{ "type": "Feature", "properties": { "id": 103796, "name": "E 135 St/St Ann'S Av", "direction": "NW", "lat": 40.8049, "lon": -73.91868, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91868, 40.8049 ] } }, -{ "type": "Feature", "properties": { "id": 103798, "name": "Morris Av/Mount Eden Pkwy", "direction": "N", "lat": 40.84338, "lon": -73.90942, "routes": "BX32" }, "geometry": { "type": "Point", "coordinates": [ -73.90942, 40.84338 ] } }, -{ "type": "Feature", "properties": { "id": 103800, "name": "Jerome Av/E 233 St", "direction": "S", "lat": 40.894714, "lon": -73.88025, "routes": "BX34, BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.88025, 40.894714 ] } }, -{ "type": "Feature", "properties": { "id": 103801, "name": "East Fordham Rd/Decatur Av", "direction": "W", "lat": 40.861897, "lon": -73.89189, "routes": "BX22, BX9, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.89189, 40.861897 ] } }, -{ "type": "Feature", "properties": { "id": 103802, "name": "Melrose Av/E 149 St", "direction": "SW", "lat": 40.816257, "lon": -73.91772, "routes": "BX41, BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.91772, 40.816257 ] } }, -{ "type": "Feature", "properties": { "id": 103807, "name": "E 161 St/River Av", "direction": "W", "lat": 40.827816, "lon": -73.92572, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.92572, 40.827816 ] } }, -{ "type": "Feature", "properties": { "id": 103809, "name": "Jerome Av/E 161 St", "direction": "E", "lat": 40.829735, "lon": -73.93051, "routes": "BX6, BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.93051, 40.829735 ] } }, -{ "type": "Feature", "properties": { "id": 103890, "name": "E 225 St/Schieffelin Av", "direction": "SE", "lat": 40.882675, "lon": -73.84574, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84574, 40.882675 ] } }, -{ "type": "Feature", "properties": { "id": 103892, "name": "Bainbridge Av/East Mosholu Pkwy South", "direction": "SW", "lat": 40.8721, "lon": -73.88259, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.88259, 40.8721 ] } }, -{ "type": "Feature", "properties": { "id": 103894, "name": "E 180 St/Southern Blvd", "direction": "NW", "lat": 40.84628, "lon": -73.88488, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.88488, 40.84628 ] } }, -{ "type": "Feature", "properties": { "id": 103899, "name": "3 Av/East Tremont Av", "direction": "SW", "lat": 40.846783, "lon": -73.896225, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.896225, 40.846783 ] } }, -{ "type": "Feature", "properties": { "id": 103900, "name": "Cross Bronx Expwy Service Rd South/Beach Av", "direction": "E", "lat": 40.83492, "lon": -73.86729, "routes": "Q44+, BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.86729, 40.83492 ] } }, -{ "type": "Feature", "properties": { "id": 103902, "name": "White Plains Rd/Archer St", "direction": "N", "lat": 40.83816, "lon": -73.86354, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86354, 40.83816 ] } }, -{ "type": "Feature", "properties": { "id": 103903, "name": "White Plains Rd/Wood Av", "direction": "S", "lat": 40.835217, "lon": -73.86322, "routes": "BX39, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.86322, 40.835217 ] } }, -{ "type": "Feature", "properties": { "id": 103904, "name": "Webster Av/E 233 St", "direction": "NE", "lat": 40.89567, "lon": -73.86325, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.86325, 40.89567 ] } }, -{ "type": "Feature", "properties": { "id": 103906, "name": "Waters Pl/Fink Av", "direction": "SE", "lat": 40.842888, "lon": -73.838806, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.838806, 40.842888 ] } }, -{ "type": "Feature", "properties": { "id": 103907, "name": "Waters Pl/Hutchinson River Pkwy", "direction": "NW", "lat": 40.843678, "lon": -73.839226, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.839226, 40.843678 ] } }, -{ "type": "Feature", "properties": { "id": 103908, "name": "Boston Rd/Ropes Av", "direction": "SW", "lat": 40.889698, "lon": -73.820595, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.820595, 40.889698 ] } }, -{ "type": "Feature", "properties": { "id": 103910, "name": "E 163 St/3 Av", "direction": "W", "lat": 40.8243, "lon": -73.9091, "routes": "BX6, BX13, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.9091, 40.8243 ] } }, -{ "type": "Feature", "properties": { "id": 103912, "name": "West Mosholu Pkwy South/Jerome Av", "direction": "S", "lat": 40.87931, "lon": -73.88582, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.88582, 40.87931 ] } }, -{ "type": "Feature", "properties": { "id": 103913, "name": "West Mosholu Pkwy South/Jerome Av", "direction": "SE", "lat": 40.879128, "lon": -73.88558, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88558, 40.879128 ] } }, -{ "type": "Feature", "properties": { "id": 103914, "name": "E 135 St/St Ann'S Av", "direction": "NW", "lat": 40.804848, "lon": -73.91856, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91856, 40.804848 ] } }, -{ "type": "Feature", "properties": { "id": 103915, "name": "Irwin Av/Johnson Av", "direction": "SW", "lat": 40.879433, "lon": -73.91237, "routes": "BX10, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91237, 40.879433 ] } }, -{ "type": "Feature", "properties": { "id": 103916, "name": "Irwin Av/Johnson Av", "direction": "NE", "lat": 40.879345, "lon": -73.91232, "routes": "BXM1, BX20, BX10, BXM18, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.91232, 40.879345 ] } }, -{ "type": "Feature", "properties": { "id": 103917, "name": "Southern Blvd/East Tremont Av", "direction": "S", "lat": 40.842926, "lon": -73.885765, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.885765, 40.842926 ] } }, -{ "type": "Feature", "properties": { "id": 103918, "name": "East Tremont Av/Boston Rd", "direction": "W", "lat": 40.840195, "lon": -73.880005, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.880005, 40.840195 ] } }, -{ "type": "Feature", "properties": { "id": 103920, "name": "Boston Rd/E 168 St", "direction": "NE", "lat": 40.829838, "lon": -73.90183, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.90183, 40.829838 ] } }, -{ "type": "Feature", "properties": { "id": 103924, "name": "Edward L Grant Hwy/University Av", "direction": "S", "lat": 40.843773, "lon": -73.92308, "routes": "BX11, BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.92308, 40.843773 ] } }, -{ "type": "Feature", "properties": { "id": 103925, "name": "East Tremont Av/Dewey Av", "direction": "NW", "lat": 40.822594, "lon": -73.81926, "routes": "BX40, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.81926, 40.822594 ] } }, -{ "type": "Feature", "properties": { "id": 103927, "name": "University Av/Hall Of Fame Terr", "direction": "SW", "lat": 40.856575, "lon": -73.90995, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.90995, 40.856575 ] } }, -{ "type": "Feature", "properties": { "id": 103929, "name": "East Tremont Av/E 177 St", "direction": "E", "lat": 40.839855, "lon": -73.87861, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.87861, 40.839855 ] } }, -{ "type": "Feature", "properties": { "id": 103930, "name": "Easttremont Av/E 177 St", "direction": "E", "lat": 40.83985, "lon": -73.87824, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.87824, 40.83985 ] } }, -{ "type": "Feature", "properties": { "id": 103931, "name": "Sedgwick Av/Fort Independence St", "direction": "NE", "lat": 40.878265, "lon": -73.89817, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89817, 40.878265 ] } }, -{ "type": "Feature", "properties": { "id": 103932, "name": "Sedgwick Av/Ft Independence St", "direction": "SW", "lat": 40.878056, "lon": -73.89855, "routes": "BXM3, BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.89855, 40.878056 ] } }, -{ "type": "Feature", "properties": { "id": 103933, "name": "Bainbridge Av/East Mosholu Pkwy South", "direction": "NE", "lat": 40.87204, "lon": -73.8826, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.8826, 40.87204 ] } }, -{ "type": "Feature", "properties": { "id": 103934, "name": "Jerome Av/East Mosholu Pkwy North", "direction": "SW", "lat": 40.88028, "lon": -73.884125, "routes": "D90, BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.884125, 40.88028 ] } }, -{ "type": "Feature", "properties": { "id": 103935, "name": "Unionport Rd/Starling Av", "direction": "NW", "lat": 40.837036, "lon": -73.85737, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.85737, 40.837036 ] } }, -{ "type": "Feature", "properties": { "id": 103936, "name": "Unionport Rd/Metropolitan Av", "direction": "NW", "lat": 40.839264, "lon": -73.86124, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.86124, 40.839264 ] } }, -{ "type": "Feature", "properties": { "id": 103937, "name": "Goulden Av/Reservoir Av", "direction": "NE", "lat": 40.87118, "lon": -73.89746, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89746, 40.87118 ] } }, -{ "type": "Feature", "properties": { "id": 103941, "name": "Charles Crimi Rd/Subway Overpass", "direction": "N", "lat": 40.85293, "lon": -73.82593, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.82593, 40.85293 ] } }, -{ "type": "Feature", "properties": { "id": 103942, "name": "Orchard Beach Cir/Orchard Beach Bay", "direction": "N", "lat": 40.866512, "lon": -73.79549, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.79549, 40.866512 ] } }, -{ "type": "Feature", "properties": { "id": 103943, "name": "Charles Crimi Rd/Subway Overpass", "direction": "N", "lat": 40.85283, "lon": -73.82597, "routes": "BX29" }, "geometry": { "type": "Point", "coordinates": [ -73.82597, 40.85283 ] } }, -{ "type": "Feature", "properties": { "id": 103945, "name": "Amendola Pl/Wilkinson Av", "direction": "S", "lat": 40.851784, "lon": -73.8272, "routes": "BX12+, BX12, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.8272, 40.851784 ] } }, -{ "type": "Feature", "properties": { "id": 103946, "name": "Bruckner Blvd/Wilkinson Av", "direction": "S", "lat": 40.85183, "lon": -73.827225, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.827225, 40.85183 ] } }, -{ "type": "Feature", "properties": { "id": 103947, "name": "West Fordham Rd/Cedar Av", "direction": "E", "lat": 40.861668, "lon": -73.91148, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.91148, 40.861668 ] } }, -{ "type": "Feature", "properties": { "id": 103951, "name": "E 170 St/Grand Concourse", "direction": "W", "lat": 40.83896, "lon": -73.91401, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.91401, 40.83896 ] } }, -{ "type": "Feature", "properties": { "id": 103954, "name": "Sedgwick Av/Stevenson Pl 2", "direction": "E", "lat": 40.882385, "lon": -73.892365, "routes": "BX10, BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.892365, 40.882385 ] } }, -{ "type": "Feature", "properties": { "id": 103955, "name": "Bailey Av/W 238 St", "direction": "SW", "lat": 40.883797, "lon": -73.89824, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.89824, 40.883797 ] } }, -{ "type": "Feature", "properties": { "id": 103956, "name": "Bailey Av/Van Cortlandt Pk South", "direction": "W", "lat": 40.88535, "lon": -73.89544, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.89544, 40.88535 ] } }, -{ "type": "Feature", "properties": { "id": 103960, "name": "Bailey Av/W 233 St", "direction": "NE", "lat": 40.87997, "lon": -73.90089, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.90089, 40.87997 ] } }, -{ "type": "Feature", "properties": { "id": 103961, "name": "Bailey Av/W 238 St", "direction": "NE", "lat": 40.884075, "lon": -73.89776, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.89776, 40.884075 ] } }, -{ "type": "Feature", "properties": { "id": 103962, "name": "Van Cortlandt Av W/Orloff Av", "direction": "S", "lat": 40.8838, "lon": -73.893295, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.893295, 40.8838 ] } }, -{ "type": "Feature", "properties": { "id": 103964, "name": "Bailey Av/W 233 St", "direction": "SW", "lat": 40.87954, "lon": -73.901306, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.901306, 40.87954 ] } }, -{ "type": "Feature", "properties": { "id": 103965, "name": "Van Cortlandt Av W/Orloff Av", "direction": "NW", "lat": 40.88356, "lon": -73.893, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.893, 40.88356 ] } }, -{ "type": "Feature", "properties": { "id": 103966, "name": "Bailey Av/Van Cortlandt Pk South", "direction": "E", "lat": 40.88534, "lon": -73.8948, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.8948, 40.88534 ] } }, -{ "type": "Feature", "properties": { "id": 103968, "name": "Grand Concourse/E 156 St", "direction": "N", "lat": 40.823685, "lon": -73.9243, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.9243, 40.823685 ] } }, -{ "type": "Feature", "properties": { "id": 103969, "name": "Grand Concourse/E 170 St", "direction": "NE", "lat": 40.838993, "lon": -73.9133, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.9133, 40.838993 ] } }, -{ "type": "Feature", "properties": { "id": 103970, "name": "Grand Concourse/Field Pl", "direction": "NE", "lat": 40.858875, "lon": -73.898796, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.898796, 40.858875 ] } }, -{ "type": "Feature", "properties": { "id": 103973, "name": "Grand Concourse/E 177 St", "direction": "SW", "lat": 40.84899, "lon": -73.9067, "routes": "BXM4, BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.9067, 40.84899 ] } }, -{ "type": "Feature", "properties": { "id": 103974, "name": "Grand Concourse/E 170 St", "direction": "SW", "lat": 40.838448, "lon": -73.914276, "routes": "BX2, BX1, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.914276, 40.838448 ] } }, -{ "type": "Feature", "properties": { "id": 103980, "name": "3 Av/148 St", "direction": "NE", "lat": 40.81561, "lon": -73.91831, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.91831, 40.81561 ] } }, -{ "type": "Feature", "properties": { "id": 103983, "name": "3 Av/E 149 St", "direction": "NE", "lat": 40.816093, "lon": -73.91744, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.91744, 40.816093 ] } }, -{ "type": "Feature", "properties": { "id": 103984, "name": "Lincoln Av/E 137 St", "direction": "NE", "lat": 40.809875, "lon": -73.92791, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.92791, 40.809875 ] } }, -{ "type": "Feature", "properties": { "id": 103985, "name": "Boston Rd/E 165 St", "direction": "SW", "lat": 40.825653, "lon": -73.907364, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.907364, 40.825653 ] } }, -{ "type": "Feature", "properties": { "id": 103989, "name": "Throgs Neck Expwy/Meagher Av", "direction": "NW", "lat": 40.821087, "lon": -73.81259, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.81259, 40.821087 ] } }, -{ "type": "Feature", "properties": { "id": 103990, "name": "E 163 St/Southern Blvd", "direction": "W", "lat": 40.821026, "lon": -73.8914, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.8914, 40.821026 ] } }, -{ "type": "Feature", "properties": { "id": 103995, "name": "Cross Bronx Expwy Service Rd/Haviland Av", "direction": "W", "lat": 40.830444, "lon": -73.85021, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.85021, 40.830444 ] } }, -{ "type": "Feature", "properties": { "id": 103996, "name": "E 180 St/Devoe Av", "direction": "W", "lat": 40.842457, "lon": -73.87712, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.87712, 40.842457 ] } }, -{ "type": "Feature", "properties": { "id": 103997, "name": "E 241 St/Cranford Av", "direction": "NW", "lat": 40.90334, "lon": -73.850044, "routes": "BX39, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.850044, 40.90334 ] } }, -{ "type": "Feature", "properties": { "id": 103999, "name": "East Fordham Rd/Webster Av", "direction": "NW", "lat": 40.861595, "lon": -73.89107, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.89107, 40.861595 ] } }, -{ "type": "Feature", "properties": { "id": 104001, "name": "3 Av/E 183 St", "direction": "NE", "lat": 40.85385, "lon": -73.89107, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89107, 40.85385 ] } }, -{ "type": "Feature", "properties": { "id": 104002, "name": "Bainbridge Av/E 210 St", "direction": "N", "lat": 40.879414, "lon": -73.879005, "routes": "BX38, BX10, BX16, BX28, BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.879005, 40.879414 ] } }, -{ "type": "Feature", "properties": { "id": 104003, "name": "East Tremont Av/Boston Rd", "direction": "E", "lat": 40.83982, "lon": -73.87837, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.87837, 40.83982 ] } }, -{ "type": "Feature", "properties": { "id": 104004, "name": "Bruckner Blvd/Brush Av", "direction": "E", "lat": 40.82786, "lon": -73.83893, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.83893, 40.82786 ] } }, -{ "type": "Feature", "properties": { "id": 104005, "name": "Palmer Av/Stillwell Av", "direction": "NW", "lat": 40.861355, "lon": -73.826065, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.826065, 40.861355 ] } }, -{ "type": "Feature", "properties": { "id": 104007, "name": "East Gun Hill Rd/Webster Av", "direction": "E", "lat": 40.87841, "lon": -73.87074, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.87074, 40.87841 ] } }, -{ "type": "Feature", "properties": { "id": 104009, "name": "Sedgwick Av/Cedar Av", "direction": "W", "lat": 40.85236, "lon": -73.92009, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.92009, 40.85236 ] } }, -{ "type": "Feature", "properties": { "id": 104011, "name": "Sedgwick Av/Cedar Av", "direction": "W", "lat": 40.852318, "lon": -73.92022, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.92022, 40.852318 ] } }, -{ "type": "Feature", "properties": { "id": 104012, "name": "Sedgwick Av/Harlem River Bridge", "direction": "NE", "lat": 40.85217, "lon": -73.92047, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.92047, 40.85217 ] } }, -{ "type": "Feature", "properties": { "id": 104013, "name": "West Burnside Av/Phelan Pl", "direction": "E", "lat": 40.854156, "lon": -73.91544, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.91544, 40.854156 ] } }, -{ "type": "Feature", "properties": { "id": 104015, "name": "East Fordham Rd/3 Av", "direction": "SE", "lat": 40.861137, "lon": -73.890434, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.890434, 40.861137 ] } }, -{ "type": "Feature", "properties": { "id": 104017, "name": "Fordham Plaza/Bus Terminal", "direction": "NE", "lat": 40.860237, "lon": -73.890884, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.890884, 40.860237 ] } }, -{ "type": "Feature", "properties": { "id": 104018, "name": "Fordham Plaza/Bus Terminal", "direction": "NE", "lat": 40.860165, "lon": -73.89096, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89096, 40.860165 ] } }, -{ "type": "Feature", "properties": { "id": 104035, "name": "West Farms Rd/E 167 St", "direction": "NE", "lat": 40.82707, "lon": -73.88963, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.88963, 40.82707 ] } }, -{ "type": "Feature", "properties": { "id": 104036, "name": "West Farms Rd/Longfellow Av", "direction": "NE", "lat": 40.82914, "lon": -73.887764, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.887764, 40.82914 ] } }, -{ "type": "Feature", "properties": { "id": 104037, "name": "West Farms Rd/Jennings St", "direction": "NE", "lat": 40.8305, "lon": -73.88566, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.88566, 40.8305 ] } }, -{ "type": "Feature", "properties": { "id": 104048, "name": "West Farms Rd/Vyse Av", "direction": "SW", "lat": 40.82702, "lon": -73.889885, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.889885, 40.82702 ] } }, -{ "type": "Feature", "properties": { "id": 104049, "name": "Grand Concourse/E 172 St", "direction": "N", "lat": 40.841145, "lon": -73.91235, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91235, 40.841145 ] } }, -{ "type": "Feature", "properties": { "id": 104050, "name": "Grand Concourse/Field Pl", "direction": "SW", "lat": 40.858475, "lon": -73.89962, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.89962, 40.858475 ] } }, -{ "type": "Feature", "properties": { "id": 104052, "name": "East Gun Hill Rd/Bronxwood Av", "direction": "W", "lat": 40.8755, "lon": -73.86033, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.86033, 40.8755 ] } }, -{ "type": "Feature", "properties": { "id": 104053, "name": "Brook Av/Park Av", "direction": "NE", "lat": 40.827877, "lon": -73.91177, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.91177, 40.827877 ] } }, -{ "type": "Feature", "properties": { "id": 104054, "name": "Melrose Av/Park Av", "direction": "S", "lat": 40.827553, "lon": -73.91218, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.91218, 40.827553 ] } }, -{ "type": "Feature", "properties": { "id": 104055, "name": "Lafayette Av/Pugsley Av", "direction": "E", "lat": 40.82238, "lon": -73.855286, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.855286, 40.82238 ] } }, -{ "type": "Feature", "properties": { "id": 104056, "name": "Lafayette Av/Olmstead Av", "direction": "E", "lat": 40.822807, "lon": -73.85162, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.85162, 40.822807 ] } }, -{ "type": "Feature", "properties": { "id": 104057, "name": "Lafayette Av/Olmstead Av", "direction": "W", "lat": 40.822906, "lon": -73.85194, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.85194, 40.822906 ] } }, -{ "type": "Feature", "properties": { "id": 104058, "name": "Lafayette Av/Pugsley Av", "direction": "W", "lat": 40.82239, "lon": -73.85603, "routes": "BX36, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.85603, 40.82239 ] } }, -{ "type": "Feature", "properties": { "id": 104059, "name": "Halleck St/Food Center Dr", "direction": "S", "lat": 40.80962, "lon": -73.8805, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.8805, 40.80962 ] } }, -{ "type": "Feature", "properties": { "id": 104061, "name": "Grand Concourse/E 187 St", "direction": "SW", "lat": 40.860214, "lon": -73.89862, "routes": "BX1, BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.89862, 40.860214 ] } }, -{ "type": "Feature", "properties": { "id": 104062, "name": "Throgs Neck Expwy/Randall Av", "direction": "NW", "lat": 40.8282, "lon": -73.817184, "routes": "BX8, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.817184, 40.8282 ] } }, -{ "type": "Feature", "properties": { "id": 104063, "name": "East Tremont Av/Barkley Av", "direction": "NW", "lat": 40.83096, "lon": -73.826385, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.826385, 40.83096 ] } }, -{ "type": "Feature", "properties": { "id": 104066, "name": "Turnbull Av/ Pugsley Av", "direction": "E", "lat": 40.82306, "lon": -73.855736, "routes": "BX5, BX5, BX5, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.855736, 40.82306 ] } }, -{ "type": "Feature", "properties": { "id": 104067, "name": "Baychester Av/Ifo Pc Richards", "direction": "NW", "lat": 40.868095, "lon": -73.8313, "routes": "BX12, BX23, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.8313, 40.868095 ] } }, -{ "type": "Feature", "properties": { "id": 104068, "name": "Hugh Grant Circle/Cross Bronx Expwy Service Rd", "direction": "NE", "lat": 40.832867, "lon": -73.860344, "routes": "BX4A, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.860344, 40.832867 ] } }, -{ "type": "Feature", "properties": { "id": 104070, "name": "Kennellworth Pl/Ampere Av", "direction": "S", "lat": 40.846104, "lon": -73.82222, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82222, 40.846104 ] } }, -{ "type": "Feature", "properties": { "id": 104072, "name": "Bronxwood Av/Gun Hill Rd", "direction": "NE", "lat": 40.87556, "lon": -73.86034, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.86034, 40.87556 ] } }, -{ "type": "Feature", "properties": { "id": 104073, "name": "W 169 St/Ogden Av", "direction": "E", "lat": 40.84011, "lon": -73.92516, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92516, 40.84011 ] } }, -{ "type": "Feature", "properties": { "id": 104076, "name": "Webster Av/E 194 St", "direction": "SW", "lat": 40.863205, "lon": -73.88942, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.88942, 40.863205 ] } }, -{ "type": "Feature", "properties": { "id": 104077, "name": "Castle Hill Av/Hermany Av", "direction": "S", "lat": 40.82461, "lon": -73.849396, "routes": "BX5, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.849396, 40.82461 ] } }, -{ "type": "Feature", "properties": { "id": 104078, "name": "Castle Hill Av/Turnbull Av", "direction": "N", "lat": 40.823742, "lon": -73.84906, "routes": "BX22, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.84906, 40.823742 ] } }, -{ "type": "Feature", "properties": { "id": 104080, "name": "East Fordham Rd/Cambreleng Av", "direction": "E", "lat": 40.85765, "lon": -73.882904, "routes": "BX17, BX22, BX12, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.882904, 40.85765 ] } }, -{ "type": "Feature", "properties": { "id": 104081, "name": "Baychester Av/New England Thruway Exit", "direction": "SE", "lat": 40.866447, "lon": -73.83082, "routes": "BX12, BX12+, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.83082, 40.866447 ] } }, -{ "type": "Feature", "properties": { "id": 104085, "name": "Bedford Park Blvd/Jerome Av", "direction": "SE", "lat": 40.87347, "lon": -73.88955, "routes": "BX25, BX38, BX10, BX26, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.88955, 40.87347 ] } }, -{ "type": "Feature", "properties": { "id": 104087, "name": "Bedford Park Blvd/Jerome Av", "direction": "NW", "lat": 40.87374, "lon": -73.88994, "routes": "BX25, BX38, BX28, BX10, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.88994, 40.87374 ] } }, -{ "type": "Feature", "properties": { "id": 104088, "name": "Bedford Park Blvd/Paul Av", "direction": "NW", "lat": 40.87457, "lon": -73.8918, "routes": "BX25, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.8918, 40.87457 ] } }, -{ "type": "Feature", "properties": { "id": 104089, "name": "East Kingsbridge Rd/E 192 St", "direction": "N", "lat": 40.864014, "lon": -73.89426, "routes": "BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.89426, 40.864014 ] } }, -{ "type": "Feature", "properties": { "id": 104090, "name": "East Fordham Rd/3 Av", "direction": "NW", "lat": 40.861076, "lon": -73.89009, "routes": "BX22, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89009, 40.861076 ] } }, -{ "type": "Feature", "properties": { "id": 104093, "name": "E 163 St/Trinity Av", "direction": "E", "lat": 40.823128, "lon": -73.90529, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.90529, 40.823128 ] } }, -{ "type": "Feature", "properties": { "id": 104094, "name": "E 163 St/Tinton Av", "direction": "W", "lat": 40.82292, "lon": -73.90364, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.90364, 40.82292 ] } }, -{ "type": "Feature", "properties": { "id": 104096, "name": "Webster Av/East Fordham Rd", "direction": "NE", "lat": 40.8619, "lon": -73.89098, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89098, 40.8619 ] } }, -{ "type": "Feature", "properties": { "id": 104097, "name": "Webster Av/E 189 St", "direction": "NE", "lat": 40.860577, "lon": -73.89242, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89242, 40.860577 ] } }, -{ "type": "Feature", "properties": { "id": 104099, "name": "Southern Blvd/Av Saint John", "direction": "E", "lat": 40.81293, "lon": -73.90098, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.90098, 40.81293 ] } }, -{ "type": "Feature", "properties": { "id": 104102, "name": "East Fordham Rd/3 Av", "direction": "SE", "lat": 40.86083, "lon": -73.889885, "routes": "BX22, BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.889885, 40.86083 ] } }, -{ "type": "Feature", "properties": { "id": 104104, "name": "East Tremont Av/Thieriot Av", "direction": "E", "lat": 40.840633, "lon": -73.866, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.866, 40.840633 ] } }, -{ "type": "Feature", "properties": { "id": 104106, "name": "East Tremont A/Roosevelt Av", "direction": "SE", "lat": 40.82565, "lon": -73.821205, "routes": "BXM9, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.821205, 40.82565 ] } }, -{ "type": "Feature", "properties": { "id": 104107, "name": "East Tremont Av/Philip Av", "direction": "NW", "lat": 40.82817, "lon": -73.823746, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.823746, 40.82817 ] } }, -{ "type": "Feature", "properties": { "id": 104110, "name": "Rawlins Av/Kearney Av", "direction": "E", "lat": 40.839596, "lon": -73.824036, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.824036, 40.839596 ] } }, -{ "type": "Feature", "properties": { "id": 104112, "name": "Grand Concourse/East Tremont Av", "direction": "NE", "lat": 40.84906, "lon": -73.906, "routes": "BXM4, BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.906, 40.84906 ] } }, -{ "type": "Feature", "properties": { "id": 104113, "name": "Co-Op City Blvd/Bay Plaza Blvd", "direction": "NE", "lat": 40.868137, "lon": -73.826904, "routes": "BX38, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.826904, 40.868137 ] } }, -{ "type": "Feature", "properties": { "id": 104114, "name": "Randall Av/Cross Bronx Expwy Service Rd", "direction": "NE", "lat": 40.8244, "lon": -73.82523, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82523, 40.8244 ] } }, -{ "type": "Feature", "properties": { "id": 104116, "name": "E 161 St/Morris Av", "direction": "W", "lat": 40.82569, "lon": -73.9186, "routes": "BX6, BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.9186, 40.82569 ] } }, -{ "type": "Feature", "properties": { "id": 104117, "name": "East Tremont Av/Devoe Av", "direction": "W", "lat": 40.840015, "lon": -73.877655, "routes": "BX36, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.877655, 40.840015 ] } }, -{ "type": "Feature", "properties": { "id": 104221, "name": "Southern Blvd/E 163 St", "direction": "SW", "lat": 40.820843, "lon": -73.89177, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.89177, 40.820843 ] } }, -{ "type": "Feature", "properties": { "id": 104222, "name": "3 Av/E 188 St", "direction": "N", "lat": 40.858467, "lon": -73.89101, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89101, 40.858467 ] } }, -{ "type": "Feature", "properties": { "id": 104223, "name": "3 Av/E 189 St", "direction": "SW", "lat": 40.86048, "lon": -73.89084, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89084, 40.86048 ] } }, -{ "type": "Feature", "properties": { "id": 104225, "name": "Morris Park Av/Williamsbridge Rd", "direction": "SW", "lat": 40.8504, "lon": -73.85125, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.85125, 40.8504 ] } }, -{ "type": "Feature", "properties": { "id": 104226, "name": "Weat Fordham Rd/University Av", "direction": "W", "lat": 40.862774, "lon": -73.90514, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.90514, 40.862774 ] } }, -{ "type": "Feature", "properties": { "id": 104227, "name": "East Gun Hill Rd/Dekalb Av", "direction": "SE", "lat": 40.882393, "lon": -73.88085, "routes": "BX10" }, "geometry": { "type": "Point", "coordinates": [ -73.88085, 40.882393 ] } }, -{ "type": "Feature", "properties": { "id": 104228, "name": "Pennyfield Av/Harding Av", "direction": "NW", "lat": 40.816654, "lon": -73.808975, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.808975, 40.816654 ] } }, -{ "type": "Feature", "properties": { "id": 104229, "name": "Harding Av/Pennyfield Av", "direction": "E", "lat": 40.816708, "lon": -73.80925, "routes": "BX40, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.80925, 40.816708 ] } }, -{ "type": "Feature", "properties": { "id": 104230, "name": "Harding Av/Throgs Neck Blvd", "direction": "E", "lat": 40.816547, "lon": -73.81176, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.81176, 40.816547 ] } }, -{ "type": "Feature", "properties": { "id": 104233, "name": "E 149 St/Melrose Av", "direction": "W", "lat": 40.81628, "lon": -73.918106, "routes": "BX2, BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.918106, 40.81628 ] } }, -{ "type": "Feature", "properties": { "id": 104234, "name": "Bronx River Av/Bruckner Blvd", "direction": "S", "lat": 40.822483, "lon": -73.88274, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.88274, 40.822483 ] } }, -{ "type": "Feature", "properties": { "id": 104235, "name": "East Fordham Rd/Valentine Av", "direction": "W", "lat": 40.862236, "lon": -73.895645, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.895645, 40.862236 ] } }, -{ "type": "Feature", "properties": { "id": 104237, "name": "Harding Av/Throgs Neck Blvd", "direction": "W", "lat": 40.816616, "lon": -73.8122, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.8122, 40.816616 ] } }, -{ "type": "Feature", "properties": { "id": 104238, "name": "Devoe Av/Lebanon St", "direction": "NE", "lat": 40.84152, "lon": -73.876335, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.876335, 40.84152 ] } }, -{ "type": "Feature", "properties": { "id": 104240, "name": "East Fordham Rd/Elm Pl", "direction": "E", "lat": 40.861916, "lon": -73.89392, "routes": "BX12, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89392, 40.861916 ] } }, -{ "type": "Feature", "properties": { "id": 104241, "name": "Morris Park Av/Williamsbridge Rd", "direction": "SW", "lat": 40.85033, "lon": -73.851585, "routes": "BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.851585, 40.85033 ] } }, -{ "type": "Feature", "properties": { "id": 104242, "name": "Southern Blvd/Avenue Saint John", "direction": "W", "lat": 40.812996, "lon": -73.90134, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.90134, 40.812996 ] } }, -{ "type": "Feature", "properties": { "id": 104243, "name": "Harding Av/East Tremont Av", "direction": "W", "lat": 40.816013, "lon": -73.81609, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.81609, 40.816013 ] } }, -{ "type": "Feature", "properties": { "id": 104248, "name": "Walnut Av/E 135 St", "direction": "SW", "lat": 40.80081, "lon": -73.910576, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.910576, 40.80081 ] } }, -{ "type": "Feature", "properties": { "id": 104249, "name": "Walnut Av/E 133 St", "direction": "NE", "lat": 40.79975, "lon": -73.91147, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.91147, 40.79975 ] } }, -{ "type": "Feature", "properties": { "id": 104250, "name": "Walnut Av/E 135 St", "direction": "NE", "lat": 40.80129, "lon": -73.909904, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.909904, 40.80129 ] } }, -{ "type": "Feature", "properties": { "id": 104251, "name": "E 138 St/Walnut Av", "direction": "NW", "lat": 40.80311, "lon": -73.90875, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.90875, 40.80311 ] } }, -{ "type": "Feature", "properties": { "id": 104256, "name": "Mundy La/Nereid Av", "direction": "NW", "lat": 40.9005, "lon": -73.839905, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.839905, 40.9005 ] } }, -{ "type": "Feature", "properties": { "id": 104257, "name": "Baychester Av/Strang Av", "direction": "S", "lat": 40.890232, "lon": -73.84272, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84272, 40.890232 ] } }, -{ "type": "Feature", "properties": { "id": 104260, "name": "Pitman Av/Murdock Av", "direction": "W", "lat": 40.89731, "lon": -73.84265, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84265, 40.89731 ] } }, -{ "type": "Feature", "properties": { "id": 104261, "name": "Pitman Av/Hill Av", "direction": "E", "lat": 40.8974, "lon": -73.84142, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84142, 40.8974 ] } }, -{ "type": "Feature", "properties": { "id": 104265, "name": "Baychester Av/750 Baychester Av", "direction": "N", "lat": 40.87415, "lon": -73.83373, "routes": "BX38, BX30, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.83373, 40.87415 ] } }, -{ "type": "Feature", "properties": { "id": 104266, "name": "3 Av/E 182 St", "direction": "SW", "lat": 40.852554, "lon": -73.89249, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89249, 40.852554 ] } }, -{ "type": "Feature", "properties": { "id": 104268, "name": "Boston Rd/Palmer Av", "direction": "SW", "lat": 40.882023, "lon": -73.83693, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.83693, 40.882023 ] } }, -{ "type": "Feature", "properties": { "id": 104269, "name": "Boston Rd/Boller Av", "direction": "NE", "lat": 40.88196, "lon": -73.83674, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.83674, 40.88196 ] } }, -{ "type": "Feature", "properties": { "id": 104274, "name": "Geigerich Pl/Locust Point Dr", "direction": "W", "lat": 40.816772, "lon": -73.80041, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.80041, 40.816772 ] } }, -{ "type": "Feature", "properties": { "id": 104276, "name": "E 174 St/Bryant Av", "direction": "W", "lat": 40.836617, "lon": -73.88527, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.88527, 40.836617 ] } }, -{ "type": "Feature", "properties": { "id": 104277, "name": "Saint Ann'S Av/E 138 St", "direction": "NE", "lat": 40.80669, "lon": -73.917435, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.917435, 40.80669 ] } }, -{ "type": "Feature", "properties": { "id": 104278, "name": "Saint Ann'S Av/E 140 St", "direction": "NE", "lat": 40.808258, "lon": -73.9164, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.9164, 40.808258 ] } }, -{ "type": "Feature", "properties": { "id": 104279, "name": "Saint Ann'S Av/Saint Mary'S St", "direction": "NE", "lat": 40.81051, "lon": -73.9151, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.9151, 40.81051 ] } }, -{ "type": "Feature", "properties": { "id": 104280, "name": "Saint Ann'S Av/E 146 St", "direction": "NE", "lat": 40.81198, "lon": -73.91422, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91422, 40.81198 ] } }, -{ "type": "Feature", "properties": { "id": 104281, "name": "Saint Ann'S Av/E 149 St", "direction": "SW", "lat": 40.814114, "lon": -73.91308, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91308, 40.814114 ] } }, -{ "type": "Feature", "properties": { "id": 104282, "name": "Saint Ann'S Av/E 146 St", "direction": "SW", "lat": 40.812397, "lon": -73.91406, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91406, 40.812397 ] } }, -{ "type": "Feature", "properties": { "id": 104283, "name": "Saint Ann'S Av/E 143 St", "direction": "SW", "lat": 40.810516, "lon": -73.91515, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91515, 40.810516 ] } }, -{ "type": "Feature", "properties": { "id": 104284, "name": "Saint Ann'S Av/E 141 St", "direction": "SW", "lat": 40.80824, "lon": -73.91661, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.91661, 40.80824 ] } }, -{ "type": "Feature", "properties": { "id": 104285, "name": "E 138 St/Saint Ann'S Av", "direction": "SE", "lat": 40.80664, "lon": -73.917274, "routes": "BX33, BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.917274, 40.80664 ] } }, -{ "type": "Feature", "properties": { "id": 104286, "name": "Webster Av/Claremont Pkwy", "direction": "NE", "lat": 40.840004, "lon": -73.90519, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.90519, 40.840004 ] } }, -{ "type": "Feature", "properties": { "id": 104288, "name": "E 167 St/Southern Blvd", "direction": "E", "lat": 40.82672, "lon": -73.89169, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.89169, 40.82672 ] } }, -{ "type": "Feature", "properties": { "id": 104291, "name": "East Gun Hill Rd/White Plains Rd", "direction": "W", "lat": 40.87752, "lon": -73.86683, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.86683, 40.87752 ] } }, -{ "type": "Feature", "properties": { "id": 104292, "name": "E 174 St/ Bryant Av", "direction": "E", "lat": 40.836456, "lon": -73.88525, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.88525, 40.836456 ] } }, -{ "type": "Feature", "properties": { "id": 104293, "name": "Melrose Av/E 160 St", "direction": "SW", "lat": 40.823677, "lon": -73.91417, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.91417, 40.823677 ] } }, -{ "type": "Feature", "properties": { "id": 104294, "name": "Baychester Av/750 Baychester Av", "direction": "S", "lat": 40.874687, "lon": -73.83404, "routes": "BX38, BX30, BX25" }, "geometry": { "type": "Point", "coordinates": [ -73.83404, 40.874687 ] } }, -{ "type": "Feature", "properties": { "id": 104296, "name": "3 Av/E 157 St", "direction": "NE", "lat": 40.82075, "lon": -73.91255, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.91255, 40.82075 ] } }, -{ "type": "Feature", "properties": { "id": 104297, "name": "Harding Av/Davis Av", "direction": "E", "lat": 40.813812, "lon": -73.824486, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.824486, 40.813812 ] } }, -{ "type": "Feature", "properties": { "id": 104298, "name": "Harding Av/Buttrick Av", "direction": "W", "lat": 40.81411, "lon": -73.823906, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.823906, 40.81411 ] } }, -{ "type": "Feature", "properties": { "id": 104299, "name": "Harding Av/Hosmer Av", "direction": "W", "lat": 40.813236, "lon": -73.82654, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.82654, 40.813236 ] } }, -{ "type": "Feature", "properties": { "id": 104300, "name": "Harding Av/Emerson Av", "direction": "E", "lat": 40.8129, "lon": -73.8272, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.8272, 40.8129 ] } }, -{ "type": "Feature", "properties": { "id": 104306, "name": "E 167 St/Morris Av", "direction": "W", "lat": 40.833485, "lon": -73.91449, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.91449, 40.833485 ] } }, -{ "type": "Feature", "properties": { "id": 104308, "name": "Webster Av/E 179 St", "direction": "SW", "lat": 40.85031, "lon": -73.8995, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.8995, 40.85031 ] } }, -{ "type": "Feature", "properties": { "id": 104310, "name": "E 233 St/Webster Av", "direction": "E", "lat": 40.895267, "lon": -73.86343, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86343, 40.895267 ] } }, -{ "type": "Feature", "properties": { "id": 104311, "name": "E 168 St/Franklin Av", "direction": "E", "lat": 40.83032, "lon": -73.903725, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.903725, 40.83032 ] } }, -{ "type": "Feature", "properties": { "id": 104312, "name": "Westchester Av/Bryant Av", "direction": "NE", "lat": 40.82626, "lon": -73.888664, "routes": "BX4A, BX27, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.888664, 40.82626 ] } }, -{ "type": "Feature", "properties": { "id": 104313, "name": "Westchester Av/Colgate Av", "direction": "E", "lat": 40.8283, "lon": -73.881775, "routes": "BX4A, BX27, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.881775, 40.8283 ] } }, -{ "type": "Feature", "properties": { "id": 104315, "name": "Westchester Av/Noble Av", "direction": "E", "lat": 40.830708, "lon": -73.87018, "routes": "BX4, BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.87018, 40.830708 ] } }, -{ "type": "Feature", "properties": { "id": 104316, "name": "Westchester Av/Noble Av", "direction": "W", "lat": 40.8309, "lon": -73.86986, "routes": "BX4A, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.86986, 40.8309 ] } }, -{ "type": "Feature", "properties": { "id": 104318, "name": "Westchester Av/Colgate Av", "direction": "W", "lat": 40.828426, "lon": -73.88174, "routes": "BX27, BX4A, BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.88174, 40.828426 ] } }, -{ "type": "Feature", "properties": { "id": 104322, "name": "E 163 St/Kelly St", "direction": "W", "lat": 40.82104, "lon": -73.89639, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.89639, 40.82104 ] } }, -{ "type": "Feature", "properties": { "id": 104323, "name": "E 163 St/Intervale Av", "direction": "E", "lat": 40.82094, "lon": -73.89667, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.89667, 40.82094 ] } }, -{ "type": "Feature", "properties": { "id": 104326, "name": "University Av/W 176 St", "direction": "SW", "lat": 40.84873, "lon": -73.91811, "routes": "BX3, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.91811, 40.84873 ] } }, -{ "type": "Feature", "properties": { "id": 104327, "name": "Morris Park Av/Delancey Pl", "direction": "W", "lat": 40.846485, "lon": -73.86023, "routes": "BX21, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.86023, 40.846485 ] } }, -{ "type": "Feature", "properties": { "id": 104328, "name": "West Fordham Rd/Jerome Av", "direction": "E", "lat": 40.862736, "lon": -73.901375, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.901375, 40.862736 ] } }, -{ "type": "Feature", "properties": { "id": 104329, "name": "Pelham Pkwy/White Plains Rd", "direction": "E", "lat": 40.85672, "lon": -73.86727, "routes": "BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.86727, 40.85672 ] } }, -{ "type": "Feature", "properties": { "id": 104330, "name": "Pelham Pkwy/White Plains Rd", "direction": "W", "lat": 40.857265, "lon": -73.86777, "routes": "BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.86777, 40.857265 ] } }, -{ "type": "Feature", "properties": { "id": 104331, "name": "East Fordham Rd/ Jerome Av", "direction": "W", "lat": 40.86284, "lon": -73.901245, "routes": "BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.901245, 40.86284 ] } }, -{ "type": "Feature", "properties": { "id": 104332, "name": "West Fordham Rd/Cedar Av", "direction": "W", "lat": 40.861763, "lon": -73.91158, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.91158, 40.861763 ] } }, -{ "type": "Feature", "properties": { "id": 104341, "name": "E 149 St/Courtlandt Av", "direction": "W", "lat": 40.816704, "lon": -73.91988, "routes": "BX2" }, "geometry": { "type": "Point", "coordinates": [ -73.91988, 40.816704 ] } }, -{ "type": "Feature", "properties": { "id": 104344, "name": "West Fordham Rd/ Sedgwick Av", "direction": "E", "lat": 40.862457, "lon": -73.90928, "routes": "BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.90928, 40.862457 ] } }, -{ "type": "Feature", "properties": { "id": 104347, "name": "3 Av/E 157 St", "direction": "NE", "lat": 40.820896, "lon": -73.91249, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.91249, 40.820896 ] } }, -{ "type": "Feature", "properties": { "id": 104349, "name": "E 180 St/Webster Av", "direction": "E", "lat": 40.852215, "lon": -73.898026, "routes": "BX42, BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.898026, 40.852215 ] } }, -{ "type": "Feature", "properties": { "id": 104351, "name": "Baychester Av/Strang Av", "direction": "N", "lat": 40.89028, "lon": -73.84259, "routes": "BX16" }, "geometry": { "type": "Point", "coordinates": [ -73.84259, 40.89028 ] } }, -{ "type": "Feature", "properties": { "id": 104371, "name": "3 Av/Claremont Pkwy", "direction": "NE", "lat": 40.838043, "lon": -73.90119, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.90119, 40.838043 ] } }, -{ "type": "Feature", "properties": { "id": 104372, "name": "Zerega Av/Castle Hill Av", "direction": "NE", "lat": 40.812847, "lon": -73.846146, "routes": "BX22, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.846146, 40.812847 ] } }, -{ "type": "Feature", "properties": { "id": 104375, "name": "Westchester Av/Blondel Av", "direction": "NE", "lat": 40.840897, "lon": -73.841545, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.841545, 40.840897 ] } }, -{ "type": "Feature", "properties": { "id": 104376, "name": "Cedar Av/West Tremont Av", "direction": "NE", "lat": 40.853386, "lon": -73.9194, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.9194, 40.853386 ] } }, -{ "type": "Feature", "properties": { "id": 104377, "name": "Cedar Av/W 179 St", "direction": "NE", "lat": 40.85561, "lon": -73.91729, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.91729, 40.85561 ] } }, -{ "type": "Feature", "properties": { "id": 104478, "name": "River Av/E 150 St", "direction": "N", "lat": 40.82063, "lon": -73.9295, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.9295, 40.82063 ] } }, -{ "type": "Feature", "properties": { "id": 104479, "name": "River Av/E 151 St", "direction": "N", "lat": 40.82254, "lon": -73.92878, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92878, 40.82254 ] } }, -{ "type": "Feature", "properties": { "id": 104483, "name": "River Av/E 149 St", "direction": "S", "lat": 40.81969, "lon": -73.930046, "routes": "BX13, BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.930046, 40.81969 ] } }, -{ "type": "Feature", "properties": { "id": 104488, "name": "Prospect Av/Westchester Av", "direction": "SW", "lat": 40.819317, "lon": -73.90185, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.90185, 40.819317 ] } }, -{ "type": "Feature", "properties": { "id": 104489, "name": "Longwood Av/Kelly St", "direction": "SE", "lat": 40.81755, "lon": -73.89843, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89843, 40.81755 ] } }, -{ "type": "Feature", "properties": { "id": 104490, "name": "Longwood Av/Southern Blvd", "direction": "SE", "lat": 40.816185, "lon": -73.896126, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.896126, 40.816185 ] } }, -{ "type": "Feature", "properties": { "id": 104491, "name": "Longwood Av/Barry St", "direction": "SE", "lat": 40.81444, "lon": -73.893265, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.893265, 40.81444 ] } }, -{ "type": "Feature", "properties": { "id": 104492, "name": "Longwood Av/Truxton St", "direction": "SE", "lat": 40.813377, "lon": -73.89136, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89136, 40.813377 ] } }, -{ "type": "Feature", "properties": { "id": 104493, "name": "Tiffany St/Randall Av", "direction": "S", "lat": 40.811367, "lon": -73.89057, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89057, 40.811367 ] } }, -{ "type": "Feature", "properties": { "id": 104494, "name": "Tiffany St/Oak Point Av", "direction": "S", "lat": 40.80953, "lon": -73.89009, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89009, 40.80953 ] } }, -{ "type": "Feature", "properties": { "id": 104495, "name": "Viele Av/Casanova St", "direction": "E", "lat": 40.806175, "lon": -73.88793, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.88793, 40.806175 ] } }, -{ "type": "Feature", "properties": { "id": 104497, "name": "Viele Av/Faile St", "direction": "E", "lat": 40.806732, "lon": -73.884605, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.884605, 40.806732 ] } }, -{ "type": "Feature", "properties": { "id": 104498, "name": "Viele Av/Whittier St", "direction": "E", "lat": 40.80714, "lon": -73.88192, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.88192, 40.80714 ] } }, -{ "type": "Feature", "properties": { "id": 104499, "name": "Ryawa Av/Halleck St", "direction": "E", "lat": 40.805573, "lon": -73.87913, "routes": "BX6, BX46, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.87913, 40.805573 ] } }, -{ "type": "Feature", "properties": { "id": 104500, "name": "Food Center Dr/Farragut St", "direction": "E", "lat": 40.803402, "lon": -73.873474, "routes": "BX6, BX46, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.873474, 40.803402 ] } }, -{ "type": "Feature", "properties": { "id": 104501, "name": "Food Center Dr/Hunts Point Market", "direction": "NW", "lat": 40.808636, "lon": -73.871864, "routes": "BX6+, BX6, BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.871864, 40.808636 ] } }, -{ "type": "Feature", "properties": { "id": 104502, "name": "Food Center Dr/Baldor", "direction": "W", "lat": 40.81031, "lon": -73.874245, "routes": "BX46, BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.874245, 40.81031 ] } }, -{ "type": "Feature", "properties": { "id": 104503, "name": "Food Center Dr/Terminal", "direction": "W", "lat": 40.80998, "lon": -73.876656, "routes": "BX6+, BX6, BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.876656, 40.80998 ] } }, -{ "type": "Feature", "properties": { "id": 104504, "name": "Halleck St/Viele Av", "direction": "S", "lat": 40.807667, "lon": -73.88, "routes": "BX6+, BX6, BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.88, 40.807667 ] } }, -{ "type": "Feature", "properties": { "id": 104505, "name": "Viele Av/Whittier St", "direction": "W", "lat": 40.80725, "lon": -73.88187, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.88187, 40.80725 ] } }, -{ "type": "Feature", "properties": { "id": 104506, "name": "Viele Av/Faile St", "direction": "W", "lat": 40.806843, "lon": -73.884705, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.884705, 40.806843 ] } }, -{ "type": "Feature", "properties": { "id": 104508, "name": "Viele Av/Casanova St", "direction": "W", "lat": 40.806335, "lon": -73.88838, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.88838, 40.806335 ] } }, -{ "type": "Feature", "properties": { "id": 104509, "name": "Tiffany St/Oak Point Av", "direction": "N", "lat": 40.80955, "lon": -73.88993, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.88993, 40.80955 ] } }, -{ "type": "Feature", "properties": { "id": 104510, "name": "Tiffany St/Randall Av", "direction": "N", "lat": 40.811714, "lon": -73.89046, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89046, 40.811714 ] } }, -{ "type": "Feature", "properties": { "id": 104511, "name": "Longwood Av/Tiffany St", "direction": "NW", "lat": 40.813435, "lon": -73.89125, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89125, 40.813435 ] } }, -{ "type": "Feature", "properties": { "id": 104512, "name": "Longwood Av/Barry St", "direction": "NW", "lat": 40.814552, "lon": -73.89316, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89316, 40.814552 ] } }, -{ "type": "Feature", "properties": { "id": 104513, "name": "Longwood Av/Southern Blvd", "direction": "NW", "lat": 40.81646, "lon": -73.8963, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.8963, 40.81646 ] } }, -{ "type": "Feature", "properties": { "id": 104514, "name": "Longwood Av/Dawson St", "direction": "NW", "lat": 40.81813, "lon": -73.89914, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.89914, 40.81813 ] } }, -{ "type": "Feature", "properties": { "id": 104515, "name": "3 Av/Westchester Av", "direction": "NE", "lat": 40.81649, "lon": -73.91683, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.91683, 40.81649 ] } }, -{ "type": "Feature", "properties": { "id": 104517, "name": "Webster Av/E 180 St", "direction": "NE", "lat": 40.85145, "lon": -73.89856, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89856, 40.85145 ] } }, -{ "type": "Feature", "properties": { "id": 104522, "name": "E 167 St/Webster Av", "direction": "W", "lat": 40.83092, "lon": -73.91092, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.91092, 40.83092 ] } }, -{ "type": "Feature", "properties": { "id": 104524, "name": "Melrose Av/E 161 St", "direction": "NE", "lat": 40.824306, "lon": -73.913704, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.913704, 40.824306 ] } }, -{ "type": "Feature", "properties": { "id": 104526, "name": "White Plains Rd/Lacombe Av", "direction": "N", "lat": 40.81549, "lon": -73.856674, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.856674, 40.81549 ] } }, -{ "type": "Feature", "properties": { "id": 104528, "name": "E 156 St/ Prospect Av", "direction": "E", "lat": 40.817257, "lon": -73.90229, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.90229, 40.817257 ] } }, -{ "type": "Feature", "properties": { "id": 104530, "name": "E 161 St/Macombs Dam Bridge", "direction": "NW", "lat": 40.829006, "lon": -73.92815, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.92815, 40.829006 ] } }, -{ "type": "Feature", "properties": { "id": 104531, "name": "Asch Loop/Adler Pl", "direction": "", "lat": 40.871082, "lon": -73.82847, "routes": "BX28, BX23, BX30, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.82847, 40.871082 ] } }, -{ "type": "Feature", "properties": { "id": 104532, "name": "Asch Loop/Adler Pl", "direction": "", "lat": 40.870937, "lon": -73.82815, "routes": "BX30, BX26, BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82815, 40.870937 ] } }, -{ "type": "Feature", "properties": { "id": 104533, "name": "Marconi St/Waters Pl", "direction": "N", "lat": 40.84676, "lon": -73.8426, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.8426, 40.84676 ] } }, -{ "type": "Feature", "properties": { "id": 104534, "name": "Marconi St/La Fitness", "direction": "N", "lat": 40.849407, "lon": -73.84154, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.84154, 40.849407 ] } }, -{ "type": "Feature", "properties": { "id": 104536, "name": "Marconi St/911 Call Center", "direction": "SW", "lat": 40.85511, "lon": -73.83773, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83773, 40.85511 ] } }, -{ "type": "Feature", "properties": { "id": 104537, "name": "Marconi St/Hutchinson Metro Center", "direction": "SW", "lat": 40.85265, "lon": -73.83982, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83982, 40.85265 ] } }, -{ "type": "Feature", "properties": { "id": 104538, "name": "Marconi St/La Fitness", "direction": "S", "lat": 40.849464, "lon": -73.84178, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.84178, 40.849464 ] } }, -{ "type": "Feature", "properties": { "id": 104539, "name": "Waters St/Marconi St", "direction": "W", "lat": 40.84654, "lon": -73.84328, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.84328, 40.84654 ] } }, -{ "type": "Feature", "properties": { "id": 104540, "name": "Marconi St/Hutchinson Metro Center", "direction": "NE", "lat": 40.852535, "lon": -73.83968, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83968, 40.852535 ] } }, -{ "type": "Feature", "properties": { "id": 104545, "name": "Pelham Pkwy/Esplanade Av", "direction": "E", "lat": 40.857014, "lon": -73.85739, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.85739, 40.857014 ] } }, -{ "type": "Feature", "properties": { "id": 104554, "name": "Webster Av/Claremont Pkwy", "direction": "NE", "lat": 40.841812, "lon": -73.904076, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.904076, 40.841812 ] } }, -{ "type": "Feature", "properties": { "id": 104556, "name": "Webster Av/E 180 St", "direction": "NE", "lat": 40.852177, "lon": -73.8981, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.8981, 40.852177 ] } }, -{ "type": "Feature", "properties": { "id": 104557, "name": "Webster Av/East Fordham Rd", "direction": "NE", "lat": 40.862255, "lon": -73.89051, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.89051, 40.862255 ] } }, -{ "type": "Feature", "properties": { "id": 104561, "name": "Webster Av/East Fordham Rd", "direction": "SW", "lat": 40.861523, "lon": -73.89162, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.89162, 40.861523 ] } }, -{ "type": "Feature", "properties": { "id": 104562, "name": "Webster Av/E 180 St", "direction": "SW", "lat": 40.85116, "lon": -73.89893, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.89893, 40.85116 ] } }, -{ "type": "Feature", "properties": { "id": 104569, "name": "Edward L Grant Hwy/University Av", "direction": "N", "lat": 40.84396, "lon": -73.9228, "routes": "BX11, BX13, BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.9228, 40.84396 ] } }, -{ "type": "Feature", "properties": { "id": 104570, "name": "Bruckner Blvd/Saint Josephs Way", "direction": "E", "lat": 40.828674, "lon": -73.83539, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.83539, 40.828674 ] } }, -{ "type": "Feature", "properties": { "id": 104577, "name": "Broadway/Kimberly Pl", "direction": "SW", "lat": 40.877815, "lon": -73.90567, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.90567, 40.877815 ] } }, -{ "type": "Feature", "properties": { "id": 104598, "name": "3 Av/Cross Bronx Expwy", "direction": "SW", "lat": 40.84331, "lon": -73.89802, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89802, 40.84331 ] } }, -{ "type": "Feature", "properties": { "id": 104599, "name": "3 Av/E 173 St", "direction": "NE", "lat": 40.841156, "lon": -73.89892, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.89892, 40.841156 ] } }, -{ "type": "Feature", "properties": { "id": 104600, "name": "3 Av/E 173 St", "direction": "SW", "lat": 40.840656, "lon": -73.899445, "routes": "BX15" }, "geometry": { "type": "Point", "coordinates": [ -73.899445, 40.840656 ] } }, -{ "type": "Feature", "properties": { "id": 104605, "name": "Food Center Dr/Fulton Fish Market", "direction": "SE", "lat": 40.804745, "lon": -73.87605, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.87605, 40.804745 ] } }, -{ "type": "Feature", "properties": { "id": 104619, "name": "Hutchinson River Pkwy/Boller Av", "direction": "NE", "lat": 40.863045, "lon": -73.825714, "routes": "BX23, BX28, BX30, BX26" }, "geometry": { "type": "Point", "coordinates": [ -73.825714, 40.863045 ] } }, -{ "type": "Feature", "properties": { "id": 104644, "name": "Bruckner Blvd/Bronx River Av", "direction": "W", "lat": 40.82324, "lon": -73.88304, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.88304, 40.82324 ] } }, -{ "type": "Feature", "properties": { "id": 104657, "name": "E 180 St/Morris Park Av", "direction": "SE", "lat": 40.840797, "lon": -73.87274, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.87274, 40.840797 ] } }, -{ "type": "Feature", "properties": { "id": 104664, "name": "E 180 St/Morris Park Av", "direction": "W", "lat": 40.84098, "lon": -73.87299, "routes": "BX40, BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.87299, 40.84098 ] } }, -{ "type": "Feature", "properties": { "id": 104666, "name": "E 180 St/Boston Rd", "direction": "SE", "lat": 40.842625, "lon": -73.878296, "routes": "BX40" }, "geometry": { "type": "Point", "coordinates": [ -73.878296, 40.842625 ] } }, -{ "type": "Feature", "properties": { "id": 104676, "name": "Williamsbridge Rd/Halperin Av", "direction": "NW", "lat": 40.84289, "lon": -73.844666, "routes": "BX8" }, "geometry": { "type": "Point", "coordinates": [ -73.844666, 40.84289 ] } }, -{ "type": "Feature", "properties": { "id": 104678, "name": "University Av/1910 University Av", "direction": "NE", "lat": 40.852867, "lon": -73.9129, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.9129, 40.852867 ] } }, -{ "type": "Feature", "properties": { "id": 104681, "name": "Southern Blvd/E 163 St", "direction": "S", "lat": 40.821304, "lon": -73.89167, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.89167, 40.821304 ] } }, -{ "type": "Feature", "properties": { "id": 150001, "name": "Bainbridge Av/E 210 St", "direction": "N", "lat": 40.879494, "lon": -73.87897, "routes": "BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.87897, 40.879494 ] } }, -{ "type": "Feature", "properties": { "id": 150006, "name": "Boston Rd/Adee Av", "direction": "NE", "lat": 40.86965, "lon": -73.857254, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.857254, 40.86965 ] } }, -{ "type": "Feature", "properties": { "id": 150007, "name": "Boston Rd/Arnow Av", "direction": "NE", "lat": 40.867847, "lon": -73.859344, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.859344, 40.867847 ] } }, -{ "type": "Feature", "properties": { "id": 150008, "name": "Boston Rd/Arnow Av", "direction": "SW", "lat": 40.86764, "lon": -73.85976, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.85976, 40.86764 ] } }, -{ "type": "Feature", "properties": { "id": 150015, "name": "Boston Rd/Holland Av", "direction": "NE", "lat": 40.863354, "lon": -73.8652, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.8652, 40.863354 ] } }, -{ "type": "Feature", "properties": { "id": 150016, "name": "Boston Rd/Holland Av", "direction": "SW", "lat": 40.86338, "lon": -73.86534, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.86534, 40.86338 ] } }, -{ "type": "Feature", "properties": { "id": 150017, "name": "Boston Rd/Hone Av", "direction": "SW", "lat": 40.86973, "lon": -73.85731, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.85731, 40.86973 ] } }, -{ "type": "Feature", "properties": { "id": 150018, "name": "Boston Rd/Laconia Av", "direction": "NE", "lat": 40.87179, "lon": -73.85543, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.85543, 40.87179 ] } }, -{ "type": "Feature", "properties": { "id": 150019, "name": "Boston Rd/Burke Av", "direction": "SW", "lat": 40.87073, "lon": -73.856445, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.856445, 40.87073 ] } }, -{ "type": "Feature", "properties": { "id": 150020, "name": "Boston Rd/Matthews Av", "direction": "SW", "lat": 40.865356, "lon": -73.86268, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.86268, 40.865356 ] } }, -{ "type": "Feature", "properties": { "id": 150022, "name": "Boston Rd/Thwaites Pl", "direction": "NE", "lat": 40.85829, "lon": -73.86796, "routes": "BXM11, BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.86796, 40.85829 ] } }, -{ "type": "Feature", "properties": { "id": 150023, "name": "Boston Rd/Thwaites Pl", "direction": "SW", "lat": 40.858612, "lon": -73.86788, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86788, 40.858612 ] } }, -{ "type": "Feature", "properties": { "id": 150032, "name": "Broadway/W 261 St", "direction": "S", "lat": 40.909855, "lon": -73.89674, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89674, 40.909855 ] } }, -{ "type": "Feature", "properties": { "id": 150034, "name": "Bronx River Pkwy/Bronx Zoo Entrance", "direction": "NW", "lat": 40.854263, "lon": -73.870766, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.870766, 40.854263 ] } }, -{ "type": "Feature", "properties": { "id": 150036, "name": "Bruckner Blvd/Tremont Av", "direction": "SW", "lat": 40.833218, "lon": -73.82872, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.82872, 40.833218 ] } }, -{ "type": "Feature", "properties": { "id": 150037, "name": "Bruckner Blvd/White Plains Rd", "direction": "E", "lat": 40.825615, "lon": -73.85913, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.85913, 40.825615 ] } }, -{ "type": "Feature", "properties": { "id": 150038, "name": "Bruckner Blvd/Wilkinson Av", "direction": "S", "lat": 40.852505, "lon": -73.827, "routes": "BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.827, 40.852505 ] } }, -{ "type": "Feature", "properties": { "id": 150040, "name": "Crosby Av/Westchester Av", "direction": "NW", "lat": 40.846916, "lon": -73.832054, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.832054, 40.846916 ] } }, -{ "type": "Feature", "properties": { "id": 150041, "name": "Randall Av/Cross Bronx Expwy", "direction": "NE", "lat": 40.824993, "lon": -73.824066, "routes": "BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.824066, 40.824993 ] } }, -{ "type": "Feature", "properties": { "id": 150042, "name": "Cross Bronx Expwy/Randall Av", "direction": "W", "lat": 40.82514, "lon": -73.82468, "routes": "BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.82468, 40.82514 ] } }, -{ "type": "Feature", "properties": { "id": 150053, "name": "Earhart Ln/Erskine Pl", "direction": "SE", "lat": 40.861015, "lon": -73.822655, "routes": "BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.822655, 40.861015 ] } }, -{ "type": "Feature", "properties": { "id": 150055, "name": "Einstein Loop/Elgar Pl", "direction": "SW", "lat": 40.864323, "lon": -73.822044, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.822044, 40.864323 ] } }, -{ "type": "Feature", "properties": { "id": 150056, "name": "Einstein Loop/Elgar Pl", "direction": "SW", "lat": 40.86422, "lon": -73.82212, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.82212, 40.86422 ] } }, -{ "type": "Feature", "properties": { "id": 150063, "name": "Grand Concourse/E 170 St", "direction": "NE", "lat": 40.83841, "lon": -73.91369, "routes": "BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.91369, 40.83841 ] } }, -{ "type": "Feature", "properties": { "id": 150069, "name": "Jarvis Av/Bruckner Blvd", "direction": "NW", "lat": 40.843185, "lon": -73.82646, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.82646, 40.843185 ] } }, -{ "type": "Feature", "properties": { "id": 150084, "name": "Henry Hudson Pkwy West/W 246 St", "direction": "S", "lat": 40.893475, "lon": -73.90859, "routes": "BXM2, BXM1, BXM18" }, "geometry": { "type": "Point", "coordinates": [ -73.90859, 40.893475 ] } }, -{ "type": "Feature", "properties": { "id": 150085, "name": "Layton Av/Clarence Av", "direction": "E", "lat": 40.83537, "lon": -73.81869, "routes": "BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.81869, 40.83537 ] } }, -{ "type": "Feature", "properties": { "id": 150113, "name": "Irwin Av/Johnson Av", "direction": "SW", "lat": 40.87945, "lon": -73.912384, "routes": "BXM18, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.912384, 40.87945 ] } }, -{ "type": "Feature", "properties": { "id": 150114, "name": "Sedgwick Av/Bailey Av", "direction": "NE", "lat": 40.865135, "lon": -73.90852, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.90852, 40.865135 ] } }, -{ "type": "Feature", "properties": { "id": 150115, "name": "Sedgwick Av/Bailey Av", "direction": "SW", "lat": 40.865852, "lon": -73.90818, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.90818, 40.865852 ] } }, -{ "type": "Feature", "properties": { "id": 150116, "name": "Sedgwick Av/Kingsbridge Rd", "direction": "W", "lat": 40.86961, "lon": -73.904076, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.904076, 40.86961 ] } }, -{ "type": "Feature", "properties": { "id": 150117, "name": "Sedgwick Av/W Kingsbridge Rd", "direction": "NE", "lat": 40.86967, "lon": -73.90347, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.90347, 40.86967 ] } }, -{ "type": "Feature", "properties": { "id": 150118, "name": "Sedgwick Av/Webb Av", "direction": "S", "lat": 40.863403, "lon": -73.90912, "routes": "BXM3, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.90912, 40.863403 ] } }, -{ "type": "Feature", "properties": { "id": 150119, "name": "Sedgwick Av/Webb Av", "direction": "N", "lat": 40.863445, "lon": -73.90902, "routes": "BXM3, BX12, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.90902, 40.863445 ] } }, -{ "type": "Feature", "properties": { "id": 150123, "name": "Van Cortlandt Av W/Bailey Av", "direction": "W", "lat": 40.88574, "lon": -73.89488, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89488, 40.88574 ] } }, -{ "type": "Feature", "properties": { "id": 150124, "name": "Van Cortlandt Av W/Bailey Av", "direction": "E", "lat": 40.885544, "lon": -73.89483, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89483, 40.885544 ] } }, -{ "type": "Feature", "properties": { "id": 150125, "name": "W 230 St/Corlear Av", "direction": "NW", "lat": 40.879177, "lon": -73.909065, "routes": "BXM2, BXM1, BXM18" }, "geometry": { "type": "Point", "coordinates": [ -73.909065, 40.879177 ] } }, -{ "type": "Feature", "properties": { "id": 150129, "name": "White Plains Rd/E 232 St", "direction": "SW", "lat": 40.892925, "lon": -73.85787, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.85787, 40.892925 ] } }, -{ "type": "Feature", "properties": { "id": 150130, "name": "White Plains Rd/E 232 St", "direction": "NE", "lat": 40.892666, "lon": -73.857796, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.857796, 40.892666 ] } }, -{ "type": "Feature", "properties": { "id": 150138, "name": "Bruckner Blvd/Wilkinson Av", "direction": "S", "lat": 40.85232, "lon": -73.826996, "routes": "BX29, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.826996, 40.85232 ] } }, -{ "type": "Feature", "properties": { "id": 150139, "name": "Bruckner Blvd/Wilkinson Av", "direction": "S", "lat": 40.852493, "lon": -73.82694, "routes": "BX29, BX23, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82694, 40.852493 ] } }, -{ "type": "Feature", "properties": { "id": 150146, "name": "Eastchester Rd/Tillotson Av", "direction": "SE", "lat": 40.876266, "lon": -73.84607, "routes": "BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84607, 40.876266 ] } }, -{ "type": "Feature", "properties": { "id": 150148, "name": "E 241 St/Barnes Av", "direction": "NW", "lat": 40.902946, "lon": -73.849045, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.849045, 40.902946 ] } }, -{ "type": "Feature", "properties": { "id": 150151, "name": "Katonah Av/E 242 St", "direction": "S", "lat": 40.902134, "lon": -73.86809, "routes": "BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.86809, 40.902134 ] } }, -{ "type": "Feature", "properties": { "id": 150158, "name": "Bruckner Blvd/White Plains Rd", "direction": "W", "lat": 40.826233, "lon": -73.860725, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.860725, 40.826233 ] } }, -{ "type": "Feature", "properties": { "id": 150164, "name": "W 230 St/Tibbett Av", "direction": "E", "lat": 40.87953, "lon": -73.90987, "routes": "BXM1, BXM18, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.90987, 40.87953 ] } }, -{ "type": "Feature", "properties": { "id": 150165, "name": "Co-Op City Blvd/Dreiser Loop", "direction": "E", "lat": 40.87847, "lon": -73.82789, "routes": "Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82789, 40.87847 ] } }, -{ "type": "Feature", "properties": { "id": 150166, "name": "Co-Op City Blvd/Dreiser Loop", "direction": "W", "lat": 40.878498, "lon": -73.82812, "routes": "BX30, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82812, 40.878498 ] } }, -{ "type": "Feature", "properties": { "id": 150168, "name": "Bronx River Pkwy/Boston Rd", "direction": "S", "lat": 40.853638, "lon": -73.87237, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.87237, 40.853638 ] } }, -{ "type": "Feature", "properties": { "id": 200001, "name": "Goethals Rd North/Port Authority Admin Lot", "direction": "NW", "lat": 40.62871, "lon": -74.182686, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.182686, 40.62871 ] } }, -{ "type": "Feature", "properties": { "id": 200008, "name": "Richmond Terr/South Av", "direction": "E", "lat": 40.640106, "lon": -74.16576, "routes": "S40, SIM33C, S90, SIM33, SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.16576, 40.640106 ] } }, -{ "type": "Feature", "properties": { "id": 200009, "name": "Richmond Terr/Post Ln", "direction": "SE", "lat": 40.63934, "lon": -74.164085, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.164085, 40.63934 ] } }, -{ "type": "Feature", "properties": { "id": 200010, "name": "Richmond Terr/Andros Av", "direction": "E", "lat": 40.63791, "lon": -74.16209, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.16209, 40.63791 ] } }, -{ "type": "Feature", "properties": { "id": 200011, "name": "Richmond Terr/Harbor Rd", "direction": "E", "lat": 40.63699, "lon": -74.159935, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.159935, 40.63699 ] } }, -{ "type": "Feature", "properties": { "id": 200013, "name": "Richmond Terr/Van Pelt Av", "direction": "E", "lat": 40.636745, "lon": -74.154884, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.154884, 40.636745 ] } }, -{ "type": "Feature", "properties": { "id": 200014, "name": "Richmond Terr/Davis Av", "direction": "W", "lat": 40.64471, "lon": -74.11073, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.11073, 40.64471 ] } }, -{ "type": "Feature", "properties": { "id": 200016, "name": "Richmond Terr/Houseman Av", "direction": "E", "lat": 40.6373, "lon": -74.14861, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.14861, 40.6373 ] } }, -{ "type": "Feature", "properties": { "id": 200017, "name": "Richmond Terr/Granite Av", "direction": "E", "lat": 40.63757, "lon": -74.14675, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.14675, 40.63757 ] } }, -{ "type": "Feature", "properties": { "id": 200018, "name": "Richmond Terr/Morningstar Rd", "direction": "E", "lat": 40.637856, "lon": -74.14493, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.14493, 40.637856 ] } }, -{ "type": "Feature", "properties": { "id": 200019, "name": "Richmond Terr/John St", "direction": "E", "lat": 40.639027, "lon": -74.14229, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.14229, 40.639027 ] } }, -{ "type": "Feature", "properties": { "id": 200020, "name": "Richmond Terr/Nicholas Av", "direction": "E", "lat": 40.639614, "lon": -74.13939, "routes": "S90" }, "geometry": { "type": "Point", "coordinates": [ -74.13939, 40.639614 ] } }, -{ "type": "Feature", "properties": { "id": 200021, "name": "Richmond Terr/Sharpe Av", "direction": "E", "lat": 40.640133, "lon": -74.13679, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.13679, 40.640133 ] } }, -{ "type": "Feature", "properties": { "id": 200022, "name": "Richmond Terr/Faber St", "direction": "E", "lat": 40.640224, "lon": -74.13474, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.13474, 40.640224 ] } }, -{ "type": "Feature", "properties": { "id": 200023, "name": "Richmond Terr/Maple Av", "direction": "E", "lat": 40.64027, "lon": -74.1333, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.1333, 40.64027 ] } }, -{ "type": "Feature", "properties": { "id": 200025, "name": "Richmond Terr/Heberton Av", "direction": "SE", "lat": 40.638977, "lon": -74.12944, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.12944, 40.638977 ] } }, -{ "type": "Feature", "properties": { "id": 200026, "name": "Richmond Terr/Jewett Av", "direction": "S", "lat": 40.63765, "lon": -74.12885, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.12885, 40.63765 ] } }, -{ "type": "Feature", "properties": { "id": 200027, "name": "Richmond Terr/Rector St", "direction": "E", "lat": 40.637188, "lon": -74.12739, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.12739, 40.637188 ] } }, -{ "type": "Feature", "properties": { "id": 200028, "name": "Richmond Terr/Bodine St", "direction": "E", "lat": 40.637142, "lon": -74.125854, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.125854, 40.637142 ] } }, -{ "type": "Feature", "properties": { "id": 200029, "name": "Richmond Terr/Taylor St", "direction": "E", "lat": 40.637756, "lon": -74.123634, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.123634, 40.637756 ] } }, -{ "type": "Feature", "properties": { "id": 200030, "name": "Richmond Terr/Alaska St", "direction": "NE", "lat": 40.638977, "lon": -74.12185, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.12185, 40.638977 ] } }, -{ "type": "Feature", "properties": { "id": 200031, "name": "Richmond Terr/Tompkins Ct", "direction": "NE", "lat": 40.640152, "lon": -74.1207, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.1207, 40.640152 ] } }, -{ "type": "Feature", "properties": { "id": 200032, "name": "Richmond Terr/Broadway", "direction": "E", "lat": 40.6408, "lon": -74.11726, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.11726, 40.6408 ] } }, -{ "type": "Feature", "properties": { "id": 200033, "name": "Richmond Terr/North Burgher Av", "direction": "NE", "lat": 40.641785, "lon": -74.1155, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.1155, 40.641785 ] } }, -{ "type": "Feature", "properties": { "id": 200034, "name": "Richmond Terr/Bement Av", "direction": "NE", "lat": 40.642715, "lon": -74.11396, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.11396, 40.642715 ] } }, -{ "type": "Feature", "properties": { "id": 200035, "name": "Richmond Terr/Davis Av", "direction": "E", "lat": 40.644474, "lon": -74.11095, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.11095, 40.644474 ] } }, -{ "type": "Feature", "properties": { "id": 200036, "name": "Richmond Terr/Bard Av", "direction": "E", "lat": 40.645, "lon": -74.10887, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.10887, 40.645 ] } }, -{ "type": "Feature", "properties": { "id": 200037, "name": "Richmond Terr/Sailors Snug Harbor Gate", "direction": "E", "lat": 40.645035, "lon": -74.10193, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.10193, 40.645035 ] } }, -{ "type": "Feature", "properties": { "id": 200038, "name": "Richmond Terr/Clinton Av", "direction": "E", "lat": 40.644604, "lon": -74.09813, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.09813, 40.644604 ] } }, -{ "type": "Feature", "properties": { "id": 200040, "name": "Richmond Terr/Franklin Av", "direction": "E", "lat": 40.64539, "lon": -74.09295, "routes": "S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.09295, 40.64539 ] } }, -{ "type": "Feature", "properties": { "id": 200041, "name": "Richmond Terr/Jersey St", "direction": "NE", "lat": 40.646854, "lon": -74.08854, "routes": "S90, S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.08854, 40.646854 ] } }, -{ "type": "Feature", "properties": { "id": 200042, "name": "Richmond Terr/Westervelt Av", "direction": "NE", "lat": 40.64776, "lon": -74.08697, "routes": "S40, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.08697, 40.64776 ] } }, -{ "type": "Feature", "properties": { "id": 200043, "name": "Richmond Terr/Saint Peters Pl", "direction": "E", "lat": 40.648067, "lon": -74.08422, "routes": "S40, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.08422, 40.648067 ] } }, -{ "type": "Feature", "properties": { "id": 200044, "name": "Richmond Terr/Nicholas St", "direction": "E", "lat": 40.647293, "lon": -74.08112, "routes": "S40, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.08112, 40.647293 ] } }, -{ "type": "Feature", "properties": { "id": 200045, "name": "Richmond Terr/Stuyvesant Pl", "direction": "SE", "lat": 40.64603, "lon": -74.07839, "routes": "S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.07839, 40.64603 ] } }, -{ "type": "Feature", "properties": { "id": 200046, "name": "Richmond Terr/Wall St", "direction": "SE", "lat": 40.644035, "lon": -74.07668, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.07668, 40.644035 ] } }, -{ "type": "Feature", "properties": { "id": 200047, "name": "Richmond Terr/Schuyler St", "direction": "SE", "lat": 40.642906, "lon": -74.075745, "routes": "S94, S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.075745, 40.642906 ] } }, -{ "type": "Feature", "properties": { "id": 200050, "name": "Richmond Terr/Wall St", "direction": "NW", "lat": 40.644787, "lon": -74.07695, "routes": "S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.07695, 40.644787 ] } }, -{ "type": "Feature", "properties": { "id": 200051, "name": "Richmond Terr/Stuyvesant Pl", "direction": "NW", "lat": 40.646355, "lon": -74.07844, "routes": "S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.07844, 40.646355 ] } }, -{ "type": "Feature", "properties": { "id": 200052, "name": "Richmond Terr/Nicholas St", "direction": "W", "lat": 40.647438, "lon": -74.08075, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.08075, 40.647438 ] } }, -{ "type": "Feature", "properties": { "id": 200053, "name": "Richmond Terr/Saint Peters Pl", "direction": "W", "lat": 40.648357, "lon": -74.084595, "routes": "S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.084595, 40.648357 ] } }, -{ "type": "Feature", "properties": { "id": 200054, "name": "Richmond Terr/Westervelt Av", "direction": "SW", "lat": 40.64742, "lon": -74.087875, "routes": "S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.087875, 40.64742 ] } }, -{ "type": "Feature", "properties": { "id": 200055, "name": "Richmond Terr/Jersey St", "direction": "SW", "lat": 40.64659, "lon": -74.08921, "routes": "S44, S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.08921, 40.64659 ] } }, -{ "type": "Feature", "properties": { "id": 200056, "name": "Richmond Terr/Franklin Av", "direction": "W", "lat": 40.645588, "lon": -74.092766, "routes": "S44, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.092766, 40.645588 ] } }, -{ "type": "Feature", "properties": { "id": 200057, "name": "Richmond Terr/Lafayette Av", "direction": "W", "lat": 40.64482, "lon": -74.09644, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.09644, 40.64482 ] } }, -{ "type": "Feature", "properties": { "id": 200063, "name": "Richmond Terr/North Burgher Av", "direction": "SW", "lat": 40.641453, "lon": -74.116264, "routes": "S90, S54, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.116264, 40.641453 ] } }, -{ "type": "Feature", "properties": { "id": 200064, "name": "Richmond Terr/Broadway", "direction": "SW", "lat": 40.640636, "lon": -74.11795, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.11795, 40.640636 ] } }, -{ "type": "Feature", "properties": { "id": 200065, "name": "Richmond Terr/Tompkins Ct", "direction": "SW", "lat": 40.64056, "lon": -74.12059, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.12059, 40.64056 ] } }, -{ "type": "Feature", "properties": { "id": 200066, "name": "Richmond Terr/Alaska St", "direction": "SW", "lat": 40.638496, "lon": -74.122635, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.122635, 40.638496 ] } }, -{ "type": "Feature", "properties": { "id": 200069, "name": "Richmond Terr/Clove Rd", "direction": "W", "lat": 40.637257, "lon": -74.1267, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.1267, 40.637257 ] } }, -{ "type": "Feature", "properties": { "id": 200070, "name": "Richmond Terr/Jewett Av", "direction": "N", "lat": 40.63831, "lon": -74.128944, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.128944, 40.63831 ] } }, -{ "type": "Feature", "properties": { "id": 200072, "name": "Richmond Terr/Park Av", "direction": "NW", "lat": 40.64032, "lon": -74.13077, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.13077, 40.64032 ] } }, -{ "type": "Feature", "properties": { "id": 200073, "name": "Richmond Terr/North St", "direction": "W", "lat": 40.640324, "lon": -74.13488, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.13488, 40.640324 ] } }, -{ "type": "Feature", "properties": { "id": 200074, "name": "Richmond Terr/Sharpe Av", "direction": "W", "lat": 40.640316, "lon": -74.13655, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.13655, 40.640316 ] } }, -{ "type": "Feature", "properties": { "id": 200075, "name": "Richmond Terr/Nicholas Av", "direction": "W", "lat": 40.639824, "lon": -74.13959, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.13959, 40.639824 ] } }, -{ "type": "Feature", "properties": { "id": 200076, "name": "Richmond Terr/John St", "direction": "W", "lat": 40.639046, "lon": -74.14259, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.14259, 40.639046 ] } }, -{ "type": "Feature", "properties": { "id": 200077, "name": "Richmond Terr/Morningstar Rd", "direction": "W", "lat": 40.63794, "lon": -74.14512, "routes": "S90" }, "geometry": { "type": "Point", "coordinates": [ -74.14512, 40.63794 ] } }, -{ "type": "Feature", "properties": { "id": 200078, "name": "Richmond Terr/Granite Av", "direction": "W", "lat": 40.637634, "lon": -74.146965, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.146965, 40.637634 ] } }, -{ "type": "Feature", "properties": { "id": 200079, "name": "Richmond Terr/Houseman Av", "direction": "W", "lat": 40.637405, "lon": -74.148476, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.148476, 40.637405 ] } }, -{ "type": "Feature", "properties": { "id": 200080, "name": "Richmond Terr/Simonson Av", "direction": "W", "lat": 40.63704, "lon": -74.15111, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.15111, 40.63704 ] } }, -{ "type": "Feature", "properties": { "id": 200082, "name": "Richmond Terr/Van Pelt Av", "direction": "W", "lat": 40.636837, "lon": -74.15467, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.15467, 40.636837 ] } }, -{ "type": "Feature", "properties": { "id": 200083, "name": "Richmond Terr/Union Av", "direction": "W", "lat": 40.636864, "lon": -74.157715, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.157715, 40.636864 ] } }, -{ "type": "Feature", "properties": { "id": 200084, "name": "Richmond Terr/Harbor Rd", "direction": "W", "lat": 40.637146, "lon": -74.160065, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.160065, 40.637146 ] } }, -{ "type": "Feature", "properties": { "id": 200085, "name": "Richmond Terr/Andros Av", "direction": "NW", "lat": 40.638275, "lon": -74.16253, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.16253, 40.638275 ] } }, -{ "type": "Feature", "properties": { "id": 200097, "name": "Midland Av/Kiswick St", "direction": "SE", "lat": 40.57405, "lon": -74.09649, "routes": "SIM5, SIM6, SIM9, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.09649, 40.57405 ] } }, -{ "type": "Feature", "properties": { "id": 200099, "name": "Midland Av/Olympia Blvd", "direction": "SE", "lat": 40.572502, "lon": -74.09359, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.09359, 40.572502 ] } }, -{ "type": "Feature", "properties": { "id": 200102, "name": "Father Capodanno Blvd/Hunter Av", "direction": "NE", "lat": 40.57288, "lon": -74.0878, "routes": "S51, SIM5, SIM9, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.0878, 40.57288 ] } }, -{ "type": "Feature", "properties": { "id": 200104, "name": "Father Capodanno Blvd/Sioux St", "direction": "NE", "lat": 40.575172, "lon": -74.083824, "routes": "SIM6, SIM5, S51, SIM9" }, "geometry": { "type": "Point", "coordinates": [ -74.083824, 40.575172 ] } }, -{ "type": "Feature", "properties": { "id": 200105, "name": "Father Capodanno Blvd/Slater Blvd", "direction": "NE", "lat": 40.57622, "lon": -74.082054, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.082054, 40.57622 ] } }, -{ "type": "Feature", "properties": { "id": 200110, "name": "Father Capodanno Blvd/Alter Av", "direction": "NE", "lat": 40.58231, "lon": -74.07436, "routes": "S52, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07436, 40.58231 ] } }, -{ "type": "Feature", "properties": { "id": 200111, "name": "Father Capodanno Blvd/Delaware Av", "direction": "NE", "lat": 40.58432, "lon": -74.07228, "routes": "S51, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07228, 40.58432 ] } }, -{ "type": "Feature", "properties": { "id": 200113, "name": "Father Capodanno Blvd/Burgher Av", "direction": "NE", "lat": 40.58802, "lon": -74.06884, "routes": "S52, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06884, 40.58802 ] } }, -{ "type": "Feature", "properties": { "id": 200115, "name": "Father Capodanno Blvd/Sand Ln", "direction": "NE", "lat": 40.590397, "lon": -74.0664, "routes": "SIM9, SIM5, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.0664, 40.590397 ] } }, -{ "type": "Feature", "properties": { "id": 200119, "name": "Olympia Blvd/Bionia Av", "direction": "SW", "lat": 40.592464, "lon": -74.072624, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.072624, 40.592464 ] } }, -{ "type": "Feature", "properties": { "id": 200120, "name": "Olympia Blvd/Kensington St", "direction": "SW", "lat": 40.591373, "lon": -74.07458, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07458, 40.591373 ] } }, -{ "type": "Feature", "properties": { "id": 200121, "name": "Olympia Blvd/Norway Av", "direction": "W", "lat": 40.590603, "lon": -74.07661, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07661, 40.590603 ] } }, -{ "type": "Feature", "properties": { "id": 200122, "name": "Norway Av/Foch Av", "direction": "NW", "lat": 40.592285, "lon": -74.077736, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.077736, 40.592285 ] } }, -{ "type": "Feature", "properties": { "id": 200123, "name": "Norway Av/Mcclean Av", "direction": "NW", "lat": 40.593735, "lon": -74.07867, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07867, 40.593735 ] } }, -{ "type": "Feature", "properties": { "id": 200124, "name": "Mcclean Av/Lamport Blvd", "direction": "E", "lat": 40.594345, "lon": -74.07749, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07749, 40.594345 ] } }, -{ "type": "Feature", "properties": { "id": 200125, "name": "Mcclean Av/Kensington Av", "direction": "E", "lat": 40.59488, "lon": -74.07588, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07588, 40.59488 ] } }, -{ "type": "Feature", "properties": { "id": 200126, "name": "Mcclean Av/Bionia Av", "direction": "E", "lat": 40.595432, "lon": -74.07419, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07419, 40.595432 ] } }, -{ "type": "Feature", "properties": { "id": 200127, "name": "Mcclean Av/Linwood Av", "direction": "E", "lat": 40.59592, "lon": -74.072716, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.072716, 40.59592 ] } }, -{ "type": "Feature", "properties": { "id": 200128, "name": "Mcclean Av/Sand Ln", "direction": "E", "lat": 40.596786, "lon": -74.0701, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.0701, 40.596786 ] } }, -{ "type": "Feature", "properties": { "id": 200129, "name": "Mcclean Av/Mills Av", "direction": "E", "lat": 40.59721, "lon": -74.06875, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.06875, 40.59721 ] } }, -{ "type": "Feature", "properties": { "id": 200131, "name": "Mcclean Av/Ocean Av", "direction": "E", "lat": 40.598526, "lon": -74.06481, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.06481, 40.598526 ] } }, -{ "type": "Feature", "properties": { "id": 200132, "name": "Lily Pond Av/Mcclean Av", "direction": "NW", "lat": 40.59919, "lon": -74.06376, "routes": "S53, SIM9, S51, SIM5, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.06376, 40.59919 ] } }, -{ "type": "Feature", "properties": { "id": 200135, "name": "School Rd/Tompkins Av", "direction": "NE", "lat": 40.605103, "lon": -74.06505, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06505, 40.605103 ] } }, -{ "type": "Feature", "properties": { "id": 200136, "name": "School Rd/Dennis Torricelli St", "direction": "NE", "lat": 40.606007, "lon": -74.06317, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06317, 40.606007 ] } }, -{ "type": "Feature", "properties": { "id": 200137, "name": "Bay St/Sea Gate Rd", "direction": "NW", "lat": 40.6077, "lon": -74.06126, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06126, 40.6077 ] } }, -{ "type": "Feature", "properties": { "id": 200139, "name": "Bay St/New Ln", "direction": "NW", "lat": 40.611504, "lon": -74.06413, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06413, 40.611504 ] } }, -{ "type": "Feature", "properties": { "id": 200140, "name": "Bay St/Hylan Blvd", "direction": "NW", "lat": 40.614, "lon": -74.0659, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.0659, 40.614 ] } }, -{ "type": "Feature", "properties": { "id": 200142, "name": "Bay St/Lynhurst Av", "direction": "NW", "lat": 40.618443, "lon": -74.069244, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.069244, 40.618443 ] } }, -{ "type": "Feature", "properties": { "id": 200144, "name": "Bay St/Townsend Av", "direction": "NW", "lat": 40.62141, "lon": -74.07162, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07162, 40.62141 ] } }, -{ "type": "Feature", "properties": { "id": 200145, "name": "Bay St/Vanderbilt Av", "direction": "NW", "lat": 40.622856, "lon": -74.07275, "routes": "S51, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07275, 40.622856 ] } }, -{ "type": "Feature", "properties": { "id": 200146, "name": "Bay St/Thompson St", "direction": "NW", "lat": 40.625916, "lon": -74.075066, "routes": "S76, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.075066, 40.625916 ] } }, -{ "type": "Feature", "properties": { "id": 200147, "name": "Bay St/Water St", "direction": "NW", "lat": 40.627083, "lon": -74.07582, "routes": "S76, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07582, 40.627083 ] } }, -{ "type": "Feature", "properties": { "id": 200148, "name": "Bay St/Prospect St", "direction": "N", "lat": 40.628475, "lon": -74.076385, "routes": "S76, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.076385, 40.628475 ] } }, -{ "type": "Feature", "properties": { "id": 200149, "name": "Bay St/Wave St", "direction": "N", "lat": 40.62979, "lon": -74.07662, "routes": "S51, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07662, 40.62979 ] } }, -{ "type": "Feature", "properties": { "id": 200151, "name": "Bay St/Grant St", "direction": "NE", "lat": 40.633278, "lon": -74.075134, "routes": "S51, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.075134, 40.633278 ] } }, -{ "type": "Feature", "properties": { "id": 200152, "name": "Bay St/Hannah St", "direction": "NW", "lat": 40.63581, "lon": -74.07573, "routes": "S76, S74, S78, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07573, 40.63581 ] } }, -{ "type": "Feature", "properties": { "id": 200153, "name": "Bay St/Victory Blvd", "direction": "N", "lat": 40.63752, "lon": -74.07596, "routes": "S51, S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.07596, 40.63752 ] } }, -{ "type": "Feature", "properties": { "id": 200154, "name": "Bay St/Slosson Terr", "direction": "N", "lat": 40.63951, "lon": -74.07548, "routes": "S48, S78, S62, S76, S51, S66, S74, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.07548, 40.63951 ] } }, -{ "type": "Feature", "properties": { "id": 200157, "name": "Midland Av/Richmond Rd", "direction": "SE", "lat": 40.581944, "lon": -74.11004, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.11004, 40.581944 ] } }, -{ "type": "Feature", "properties": { "id": 200159, "name": "Midland Av/Clawson St", "direction": "SE", "lat": 40.578766, "lon": -74.104, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.104, 40.578766 ] } }, -{ "type": "Feature", "properties": { "id": 200160, "name": "Midland Av/Edison St", "direction": "SE", "lat": 40.579556, "lon": -74.105576, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.105576, 40.579556 ] } }, -{ "type": "Feature", "properties": { "id": 200161, "name": "Midland Av/Hylan Blvd", "direction": "SE", "lat": 40.577698, "lon": -74.10198, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.10198, 40.577698 ] } }, -{ "type": "Feature", "properties": { "id": 200163, "name": "Father Capodanno Blvd/Doty Av", "direction": "NE", "lat": 40.592342, "lon": -74.063934, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.063934, 40.592342 ] } }, -{ "type": "Feature", "properties": { "id": 200165, "name": "Father Capodanno Blvd/Ocean Av", "direction": "N", "lat": 40.595036, "lon": -74.06273, "routes": "SIM9, SIM6, SIM5, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06273, 40.595036 ] } }, -{ "type": "Feature", "properties": { "id": 200166, "name": "Father Capodanno Blvd/Seaside Plaza", "direction": "NE", "lat": 40.596027, "lon": -74.06192, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06192, 40.596027 ] } }, -{ "type": "Feature", "properties": { "id": 200170, "name": "Lily Pond Av/Mcclean Av", "direction": "SE", "lat": 40.598595, "lon": -74.06367, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.06367, 40.598595 ] } }, -{ "type": "Feature", "properties": { "id": 200171, "name": "Father Capodanno Blvd/Robin Rd", "direction": "SW", "lat": 40.59572, "lon": -74.06267, "routes": "SIM5, SIM6, SIM9, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06267, 40.59572 ] } }, -{ "type": "Feature", "properties": { "id": 200173, "name": "Father Capodanno Blvd/Doty Av", "direction": "SW", "lat": 40.592503, "lon": -74.06415, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06415, 40.592503 ] } }, -{ "type": "Feature", "properties": { "id": 200176, "name": "Bay St/Nick Laporte Pl", "direction": "SW", "lat": 40.641846, "lon": -74.07558, "routes": "S52, S61, S66, S62, S78, S42, S76, S74, S51, S46, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.07558, 40.641846 ] } }, -{ "type": "Feature", "properties": { "id": 200177, "name": "Bay St/Central Av", "direction": "S", "lat": 40.638763, "lon": -74.07581, "routes": "S46, S48, S51, S78, S62, S61, S66, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07581, 40.638763 ] } }, -{ "type": "Feature", "properties": { "id": 200178, "name": "Bay St/Victory Blvd", "direction": "S", "lat": 40.6373, "lon": -74.07617, "routes": "S51, S84, S74, S76, S81, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.07617, 40.6373 ] } }, -{ "type": "Feature", "properties": { "id": 200180, "name": "Bay St/Grant St", "direction": "SW", "lat": 40.6329, "lon": -74.075584, "routes": "S74, S76, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.075584, 40.6329 ] } }, -{ "type": "Feature", "properties": { "id": 200181, "name": "Bay St/William St", "direction": "S", "lat": 40.63064, "lon": -74.076706, "routes": "S74, S51, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.076706, 40.63064 ] } }, -{ "type": "Feature", "properties": { "id": 200183, "name": "Bay St/Prospect St", "direction": "S", "lat": 40.628616, "lon": -74.07655, "routes": "S51, S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07655, 40.628616 ] } }, -{ "type": "Feature", "properties": { "id": 200184, "name": "Bay St/Water St", "direction": "SE", "lat": 40.626762, "lon": -74.07579, "routes": "S51, S76, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.07579, 40.626762 ] } }, -{ "type": "Feature", "properties": { "id": 200185, "name": "Bay St/Broad St", "direction": "SE", "lat": 40.625755, "lon": -74.07518, "routes": "S76, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07518, 40.625755 ] } }, -{ "type": "Feature", "properties": { "id": 200187, "name": "Bay St/Vanderbilt Av", "direction": "SE", "lat": 40.622173, "lon": -74.07241, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07241, 40.622173 ] } }, -{ "type": "Feature", "properties": { "id": 200188, "name": "Bay St/Townsend Av", "direction": "SE", "lat": 40.621197, "lon": -74.07164, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07164, 40.621197 ] } }, -{ "type": "Feature", "properties": { "id": 200189, "name": "Bay St/Edgewater St", "direction": "SE", "lat": 40.620155, "lon": -74.07085, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07085, 40.620155 ] } }, -{ "type": "Feature", "properties": { "id": 200190, "name": "Bay St/Willow Av", "direction": "SE", "lat": 40.618717, "lon": -74.06963, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06963, 40.618717 ] } }, -{ "type": "Feature", "properties": { "id": 200191, "name": "Bay St/Chestnut Av", "direction": "SE", "lat": 40.617252, "lon": -74.068565, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.068565, 40.617252 ] } }, -{ "type": "Feature", "properties": { "id": 200192, "name": "Bay St/Saint Marys Av", "direction": "SE", "lat": 40.61602, "lon": -74.06766, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06766, 40.61602 ] } }, -{ "type": "Feature", "properties": { "id": 200193, "name": "Bay St/Hylan Blvd", "direction": "SE", "lat": 40.61379, "lon": -74.06601, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06601, 40.61379 ] } }, -{ "type": "Feature", "properties": { "id": 200194, "name": "Bay St/Saint Johns Av", "direction": "SE", "lat": 40.611923, "lon": -74.06463, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06463, 40.611923 ] } }, -{ "type": "Feature", "properties": { "id": 200195, "name": "Bay St/Fingerboard Rd", "direction": "SE", "lat": 40.609066, "lon": -74.06252, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06252, 40.609066 ] } }, -{ "type": "Feature", "properties": { "id": 200196, "name": "Bay St/Lyman Av", "direction": "SE", "lat": 40.60747, "lon": -74.06135, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06135, 40.60747 ] } }, -{ "type": "Feature", "properties": { "id": 200197, "name": "School Rd/Dennis Torricelli St", "direction": "SW", "lat": 40.60584, "lon": -74.063965, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.063965, 40.60584 ] } }, -{ "type": "Feature", "properties": { "id": 200200, "name": "Lily Pond Av/Major Av", "direction": "SE", "lat": 40.600266, "lon": -74.06479, "routes": "S51, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.06479, 40.600266 ] } }, -{ "type": "Feature", "properties": { "id": 200201, "name": "Mcclean Av/Lily Pond Av", "direction": "W", "lat": 40.598843, "lon": -74.06422, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.06422, 40.598843 ] } }, -{ "type": "Feature", "properties": { "id": 200202, "name": "Clove Rd/Clove Lake Park", "direction": "NW", "lat": 40.61928, "lon": -74.10651, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.10651, 40.61928 ] } }, -{ "type": "Feature", "properties": { "id": 200203, "name": "Mcclean Av/Mills Av", "direction": "W", "lat": 40.597256, "lon": -74.06903, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.06903, 40.597256 ] } }, -{ "type": "Feature", "properties": { "id": 200204, "name": "Sand Ln/Mcclean Av", "direction": "SE", "lat": 40.59681, "lon": -74.07057, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07057, 40.59681 ] } }, -{ "type": "Feature", "properties": { "id": 200206, "name": "Mcclean Av/Hickory Av", "direction": "W", "lat": 40.595585, "lon": -74.07413, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07413, 40.595585 ] } }, -{ "type": "Feature", "properties": { "id": 200207, "name": "Mcclean Av/Jerome Av", "direction": "W", "lat": 40.59504, "lon": -74.07578, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07578, 40.59504 ] } }, -{ "type": "Feature", "properties": { "id": 200210, "name": "Norway Av/Olympia Blvd", "direction": "SE", "lat": 40.590828, "lon": -74.076965, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.076965, 40.590828 ] } }, -{ "type": "Feature", "properties": { "id": 200211, "name": "Olympia Blvd/Mclaughlin St", "direction": "NE", "lat": 40.591568, "lon": -74.07391, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07391, 40.591568 ] } }, -{ "type": "Feature", "properties": { "id": 200219, "name": "Father Capodanno Blvd/Winfield St", "direction": "SW", "lat": 40.586334, "lon": -74.07061, "routes": "SIM6, S52, SIM5, SIM9, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.07061, 40.586334 ] } }, -{ "type": "Feature", "properties": { "id": 200220, "name": "Father Capodanno Blvd/Delaware Av", "direction": "SW", "lat": 40.583477, "lon": -74.07353, "routes": "S52, S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07353, 40.583477 ] } }, -{ "type": "Feature", "properties": { "id": 200223, "name": "Father Capodanno Blvd/Seaview Av", "direction": "SW", "lat": 40.579033, "lon": -74.07817, "routes": "SIM5, SIM9, S51, SIM6, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.07817, 40.579033 ] } }, -{ "type": "Feature", "properties": { "id": 200224, "name": "Father Capodanno Blvd/Buel Av", "direction": "SW", "lat": 40.57792, "lon": -74.07948, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07948, 40.57792 ] } }, -{ "type": "Feature", "properties": { "id": 200225, "name": "Father Capodanno Blvd/Naughton Av", "direction": "SW", "lat": 40.576935, "lon": -74.08117, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.08117, 40.576935 ] } }, -{ "type": "Feature", "properties": { "id": 200226, "name": "Father Capodanno Blvd/Slater Blvd", "direction": "SW", "lat": 40.57604, "lon": -74.08275, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.08275, 40.57604 ] } }, -{ "type": "Feature", "properties": { "id": 200228, "name": "Father Capodanno Blvd/Jefferson Av", "direction": "SW", "lat": 40.573994, "lon": -74.08625, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.08625, 40.573994 ] } }, -{ "type": "Feature", "properties": { "id": 200233, "name": "Midland Av/Freeborn St", "direction": "NW", "lat": 40.572956, "lon": -74.09419, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.09419, 40.572956 ] } }, -{ "type": "Feature", "properties": { "id": 200234, "name": "Midland Av/Moreland St", "direction": "NW", "lat": 40.574688, "lon": -74.09729, "routes": "SIM5, S81, SIM9, S51, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.09729, 40.574688 ] } }, -{ "type": "Feature", "properties": { "id": 200235, "name": "Midland Av/Mason Av", "direction": "NW", "lat": 40.57548, "lon": -74.0986, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.0986, 40.57548 ] } }, -{ "type": "Feature", "properties": { "id": 200236, "name": "Midland Av/Boundary Av", "direction": "NW", "lat": 40.577168, "lon": -74.10097, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.10097, 40.577168 ] } }, -{ "type": "Feature", "properties": { "id": 200237, "name": "Hylan Blvd/Midland Av", "direction": "SW", "lat": 40.577698, "lon": -74.10261, "routes": "S51, S78, S79+, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.10261, 40.577698 ] } }, -{ "type": "Feature", "properties": { "id": 200238, "name": "Lincoln Av/Grant Pl", "direction": "NW", "lat": 40.5771, "lon": -74.10474, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.10474, 40.5771 ] } }, -{ "type": "Feature", "properties": { "id": 200240, "name": "Lincoln Av/South Railroad Av", "direction": "NW", "lat": 40.57953, "lon": -74.108864, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.108864, 40.57953 ] } }, -{ "type": "Feature", "properties": { "id": 200242, "name": "Lincoln Av/Richmond Rd", "direction": "NW", "lat": 40.581245, "lon": -74.11199, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.11199, 40.581245 ] } }, -{ "type": "Feature", "properties": { "id": 200244, "name": "Grandview Av/Brabant St", "direction": "N", "lat": 40.632008, "lon": -74.16517, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.16517, 40.632008 ] } }, -{ "type": "Feature", "properties": { "id": 200245, "name": "Brabant St/Lockman Av", "direction": "E", "lat": 40.63156, "lon": -74.16132, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.16132, 40.63156 ] } }, -{ "type": "Feature", "properties": { "id": 200246, "name": "Brabant St/Union Av", "direction": "E", "lat": 40.63133, "lon": -74.15833, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.15833, 40.63133 ] } }, -{ "type": "Feature", "properties": { "id": 200247, "name": "Walloon St/Maple Pkwy", "direction": "E", "lat": 40.632412, "lon": -74.1566, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.1566, 40.632412 ] } }, -{ "type": "Feature", "properties": { "id": 200248, "name": "De Ruyter Pl/Van Pelt Av", "direction": "E", "lat": 40.631207, "lon": -74.155495, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.155495, 40.631207 ] } }, -{ "type": "Feature", "properties": { "id": 200249, "name": "Walker St/Van Name Av", "direction": "E", "lat": 40.63186, "lon": -74.15383, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.15383, 40.63186 ] } }, -{ "type": "Feature", "properties": { "id": 200250, "name": "Walker St/Simonson Av", "direction": "E", "lat": 40.631687, "lon": -74.151794, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.151794, 40.631687 ] } }, -{ "type": "Feature", "properties": { "id": 200251, "name": "Walker St/Morningstar Rd", "direction": "E", "lat": 40.63109, "lon": -74.14714, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.14714, 40.63109 ] } }, -{ "type": "Feature", "properties": { "id": 200252, "name": "Morningstar Rd/Kalver Pl", "direction": "N", "lat": 40.6326, "lon": -74.146286, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.146286, 40.6326 ] } }, -{ "type": "Feature", "properties": { "id": 200255, "name": "Innis St/Nicholas Av", "direction": "E", "lat": 40.633423, "lon": -74.14175, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.14175, 40.633423 ] } }, -{ "type": "Feature", "properties": { "id": 200256, "name": "Nicholas Av/Charles Av", "direction": "N", "lat": 40.63498, "lon": -74.14065, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.14065, 40.63498 ] } }, -{ "type": "Feature", "properties": { "id": 200257, "name": "Nicholas Av/Castleton Av", "direction": "N", "lat": 40.636066, "lon": -74.14018, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.14018, 40.636066 ] } }, -{ "type": "Feature", "properties": { "id": 200259, "name": "Castleton Av/Heberton Av", "direction": "SE", "lat": 40.634995, "lon": -74.13282, "routes": "S46, S53, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13282, 40.634995 ] } }, -{ "type": "Feature", "properties": { "id": 200260, "name": "Castleton Av/Port Richmond Av", "direction": "E", "lat": 40.635937, "lon": -74.13506, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.13506, 40.635937 ] } }, -{ "type": "Feature", "properties": { "id": 200261, "name": "Castleton Av/Jewett Av", "direction": "E", "lat": 40.63364, "lon": -74.12965, "routes": "S96, S66, S46, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.12965, 40.63364 ] } }, -{ "type": "Feature", "properties": { "id": 200263, "name": "Castleton Av/Taylor St", "direction": "E", "lat": 40.63405, "lon": -74.12273, "routes": "S46, S53, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12273, 40.63405 ] } }, -{ "type": "Feature", "properties": { "id": 200266, "name": "Castleton Av/Broadway", "direction": "E", "lat": 40.6345, "lon": -74.117325, "routes": "S53, S46, S96, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.117325, 40.6345 ] } }, -{ "type": "Feature", "properties": { "id": 200267, "name": "Castleton Av/North Burgher Av", "direction": "E", "lat": 40.63471, "lon": -74.11463, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.11463, 40.63471 ] } }, -{ "type": "Feature", "properties": { "id": 200268, "name": "Castleton Av/Bement Av", "direction": "E", "lat": 40.634697, "lon": -74.11243, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.11243, 40.634697 ] } }, -{ "type": "Feature", "properties": { "id": 200269, "name": "Castleton Av/Oakland Av", "direction": "E", "lat": 40.634678, "lon": -74.11083, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.11083, 40.634678 ] } }, -{ "type": "Feature", "properties": { "id": 200270, "name": "Castleton Av/Davis Av", "direction": "E", "lat": 40.634647, "lon": -74.10853, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.10853, 40.634647 ] } }, -{ "type": "Feature", "properties": { "id": 200271, "name": "Castleton Av/Bard Av", "direction": "E", "lat": 40.634644, "lon": -74.10616, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.10616, 40.634644 ] } }, -{ "type": "Feature", "properties": { "id": 200272, "name": "Castleton Av/Kissel Av", "direction": "E", "lat": 40.634636, "lon": -74.1047, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.1047, 40.634636 ] } }, -{ "type": "Feature", "properties": { "id": 200273, "name": "Castleton Av/Hunter Pl", "direction": "E", "lat": 40.634464, "lon": -74.10179, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.10179, 40.634464 ] } }, -{ "type": "Feature", "properties": { "id": 200274, "name": "Castleton Av/Randall Av", "direction": "E", "lat": 40.633976, "lon": -74.09906, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.09906, 40.633976 ] } }, -{ "type": "Feature", "properties": { "id": 200275, "name": "Castleton Av/Brighton Av", "direction": "E", "lat": 40.633945, "lon": -74.09774, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.09774, 40.633945 ] } }, -{ "type": "Feature", "properties": { "id": 200276, "name": "Castleton Av/Havenwood Rd", "direction": "E", "lat": 40.633114, "lon": -74.09577, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.09577, 40.633114 ] } }, -{ "type": "Feature", "properties": { "id": 200278, "name": "Castleton Av/Woodstock Av", "direction": "NE", "lat": 40.632687, "lon": -74.09014, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.09014, 40.632687 ] } }, -{ "type": "Feature", "properties": { "id": 200279, "name": "Castleton Av/Webster Av", "direction": "E", "lat": 40.634254, "lon": -74.087654, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.087654, 40.634254 ] } }, -{ "type": "Feature", "properties": { "id": 200280, "name": "Castleton Av/Cebra Av", "direction": "NE", "lat": 40.634705, "lon": -74.08646, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08646, 40.634705 ] } }, -{ "type": "Feature", "properties": { "id": 200281, "name": "Castleton Av/Jersey St", "direction": "NE", "lat": 40.636097, "lon": -74.08523, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08523, 40.636097 ] } }, -{ "type": "Feature", "properties": { "id": 200284, "name": "Victory Blvd/Van Duzer St", "direction": "E", "lat": 40.638187, "lon": -74.07834, "routes": "S61, S46, S48, S66, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.07834, 40.638187 ] } }, -{ "type": "Feature", "properties": { "id": 200285, "name": "Bay St/Victory Blvd", "direction": "N", "lat": 40.63788, "lon": -74.07591, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07591, 40.63788 ] } }, -{ "type": "Feature", "properties": { "id": 200292, "name": "Victory Blvd/Bay St", "direction": "W", "lat": 40.637833, "lon": -74.076744, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.076744, 40.637833 ] } }, -{ "type": "Feature", "properties": { "id": 200293, "name": "Victory Blvd/Montgomery Av", "direction": "W", "lat": 40.63808, "lon": -74.07768, "routes": "S66, S61, S62, S48, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.07768, 40.63808 ] } }, -{ "type": "Feature", "properties": { "id": 200297, "name": "Castleton Av/Cebra Av", "direction": "SW", "lat": 40.634636, "lon": -74.08666, "routes": "S46, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08666, 40.634636 ] } }, -{ "type": "Feature", "properties": { "id": 200298, "name": "Castleton Av/Glen Av", "direction": "SW", "lat": 40.63309, "lon": -74.08999, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.08999, 40.63309 ] } }, -{ "type": "Feature", "properties": { "id": 200299, "name": "Castleton Av/Harbor View Ct", "direction": "W", "lat": 40.633373, "lon": -74.092186, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.092186, 40.633373 ] } }, -{ "type": "Feature", "properties": { "id": 200300, "name": "Castleton Av/Havenwood Rd", "direction": "W", "lat": 40.63321, "lon": -74.09539, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.09539, 40.63321 ] } }, -{ "type": "Feature", "properties": { "id": 200301, "name": "Castleton Av/Brighton Av", "direction": "W", "lat": 40.63399, "lon": -74.097664, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.097664, 40.63399 ] } }, -{ "type": "Feature", "properties": { "id": 200302, "name": "Castleton Av/N Randall Av", "direction": "W", "lat": 40.634228, "lon": -74.09976, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.09976, 40.634228 ] } }, -{ "type": "Feature", "properties": { "id": 200303, "name": "Castleton Av/Conyingham Av", "direction": "W", "lat": 40.634644, "lon": -74.10207, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.10207, 40.634644 ] } }, -{ "type": "Feature", "properties": { "id": 200304, "name": "Castleton Av/Kissel Av", "direction": "W", "lat": 40.63476, "lon": -74.10503, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.10503, 40.63476 ] } }, -{ "type": "Feature", "properties": { "id": 200306, "name": "Castleton Av/Bard Av", "direction": "W", "lat": 40.634777, "lon": -74.10628, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.10628, 40.634777 ] } }, -{ "type": "Feature", "properties": { "id": 200307, "name": "Castleton Av/Davis Av", "direction": "W", "lat": 40.634773, "lon": -74.10856, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.10856, 40.634773 ] } }, -{ "type": "Feature", "properties": { "id": 200308, "name": "Castleton Av/Bement Av", "direction": "W", "lat": 40.634792, "lon": -74.11184, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.11184, 40.634792 ] } }, -{ "type": "Feature", "properties": { "id": 200309, "name": "Castleton Av/North Burgher Av", "direction": "W", "lat": 40.63481, "lon": -74.11441, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.11441, 40.63481 ] } }, -{ "type": "Feature", "properties": { "id": 200310, "name": "Castleton Av/Broadway", "direction": "W", "lat": 40.634583, "lon": -74.11775, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.11775, 40.634583 ] } }, -{ "type": "Feature", "properties": { "id": 200311, "name": "Castleton Av/Caroline St", "direction": "W", "lat": 40.634487, "lon": -74.11927, "routes": "S46, S53, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11927, 40.634487 ] } }, -{ "type": "Feature", "properties": { "id": 200312, "name": "Castleton Av/Barker St", "direction": "W", "lat": 40.63424, "lon": -74.12161, "routes": "S53, S46, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12161, 40.63424 ] } }, -{ "type": "Feature", "properties": { "id": 200313, "name": "Castleton Av/Taylor St", "direction": "W", "lat": 40.634106, "lon": -74.12344, "routes": "S46, S54, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.12344, 40.634106 ] } }, -{ "type": "Feature", "properties": { "id": 200314, "name": "Castleton Av/Clove Rd", "direction": "W", "lat": 40.63392, "lon": -74.12585, "routes": "S46, S54, S96, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.12585, 40.63392 ] } }, -{ "type": "Feature", "properties": { "id": 200315, "name": "Castleton Av/Jewett Av", "direction": "W", "lat": 40.63385, "lon": -74.12976, "routes": "S53, S96, S46, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.12976, 40.63385 ] } }, -{ "type": "Feature", "properties": { "id": 200316, "name": "Castleton Av/Heberton Av", "direction": "NW", "lat": 40.63501, "lon": -74.13241, "routes": "S66, S53, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.13241, 40.63501 ] } }, -{ "type": "Feature", "properties": { "id": 200317, "name": "Castleton Av/Port Richmond Av", "direction": "W", "lat": 40.6361, "lon": -74.13483, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.13483, 40.6361 ] } }, -{ "type": "Feature", "properties": { "id": 200318, "name": "Castleton Av/Sharpe Av", "direction": "W", "lat": 40.63616, "lon": -74.1377, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.1377, 40.63616 ] } }, -{ "type": "Feature", "properties": { "id": 200319, "name": "Castleton Av/Nicholas Av", "direction": "W", "lat": 40.63624, "lon": -74.139946, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.139946, 40.63624 ] } }, -{ "type": "Feature", "properties": { "id": 200320, "name": "Nicholas Av/Charles Av", "direction": "S", "lat": 40.6353, "lon": -74.1407, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.1407, 40.6353 ] } }, -{ "type": "Feature", "properties": { "id": 200322, "name": "Innis St/Saint Joseph Av", "direction": "W", "lat": 40.63378, "lon": -74.14254, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.14254, 40.63378 ] } }, -{ "type": "Feature", "properties": { "id": 200323, "name": "Innis St/Eaton Pl", "direction": "W", "lat": 40.634502, "lon": -74.14464, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.14464, 40.634502 ] } }, -{ "type": "Feature", "properties": { "id": 200327, "name": "Walker St/Pulaski Av", "direction": "W", "lat": 40.63147, "lon": -74.1482, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.1482, 40.63147 ] } }, -{ "type": "Feature", "properties": { "id": 200329, "name": "Walker St/Simonson Av", "direction": "W", "lat": 40.63193, "lon": -74.15259, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.15259, 40.63193 ] } }, -{ "type": "Feature", "properties": { "id": 200330, "name": "Walker St/Van Pelt Av", "direction": "W", "lat": 40.63211, "lon": -74.15502, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.15502, 40.63211 ] } }, -{ "type": "Feature", "properties": { "id": 200331, "name": "Linden Av/Van Pelt Av", "direction": "W", "lat": 40.633873, "lon": -74.155556, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.155556, 40.633873 ] } }, -{ "type": "Feature", "properties": { "id": 200332, "name": "Maple Pkwy/Walloon St", "direction": "S", "lat": 40.632725, "lon": -74.15662, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.15662, 40.632725 ] } }, -{ "type": "Feature", "properties": { "id": 200333, "name": "Union Av/Brabant St", "direction": "S", "lat": 40.631653, "lon": -74.1583, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.1583, 40.631653 ] } }, -{ "type": "Feature", "properties": { "id": 200334, "name": "Brabant St/Lockman Av", "direction": "W", "lat": 40.631737, "lon": -74.16211, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.16211, 40.631737 ] } }, -{ "type": "Feature", "properties": { "id": 200335, "name": "Brabant St/Grandview Av", "direction": "W", "lat": 40.632202, "lon": -74.165085, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.165085, 40.632202 ] } }, -{ "type": "Feature", "properties": { "id": 200340, "name": "Richmond Rd/Enfield Pl", "direction": "W", "lat": 40.576202, "lon": -74.12606, "routes": "S84, S74, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12606, 40.576202 ] } }, -{ "type": "Feature", "properties": { "id": 200341, "name": "Richmond Rd/Mccully Av", "direction": "W", "lat": 40.574684, "lon": -74.12957, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12957, 40.574684 ] } }, -{ "type": "Feature", "properties": { "id": 200342, "name": "Richmond Rd/Hitchcock Av", "direction": "W", "lat": 40.57408, "lon": -74.13132, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13132, 40.57408 ] } }, -{ "type": "Feature", "properties": { "id": 200343, "name": "Richmond Rd/Wilder Av", "direction": "W", "lat": 40.57324, "lon": -74.134995, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.134995, 40.57324 ] } }, -{ "type": "Feature", "properties": { "id": 200350, "name": "Arthur Kill Rd/Center St", "direction": "S", "lat": 40.571815, "lon": -74.147224, "routes": "S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.147224, 40.571815 ] } }, -{ "type": "Feature", "properties": { "id": 200357, "name": "Giffords Ln/Barlow Av", "direction": "SE", "lat": 40.559067, "lon": -74.15391, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15391, 40.559067 ] } }, -{ "type": "Feature", "properties": { "id": 200358, "name": "Giffords Ln/Leverett Av", "direction": "SE", "lat": 40.557037, "lon": -74.152954, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.152954, 40.557037 ] } }, -{ "type": "Feature", "properties": { "id": 200359, "name": "Giffords Ln/Woodland Av", "direction": "SE", "lat": 40.555286, "lon": -74.15224, "routes": "SIM6, S54, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.15224, 40.555286 ] } }, -{ "type": "Feature", "properties": { "id": 200361, "name": "Nelson Av/Amboy Rd", "direction": "SE", "lat": 40.550037, "lon": -74.150986, "routes": "S54, SIM6, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.150986, 40.550037 ] } }, -{ "type": "Feature", "properties": { "id": 200362, "name": "Nelson Av/Belden St", "direction": "SE", "lat": 40.5472, "lon": -74.14992, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14992, 40.5472 ] } }, -{ "type": "Feature", "properties": { "id": 200363, "name": "Nelson Av/Hillcrest St", "direction": "SE", "lat": 40.54492, "lon": -74.148605, "routes": "SIM6, SIM5, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.148605, 40.54492 ] } }, -{ "type": "Feature", "properties": { "id": 200364, "name": "Nelson Av/Driggs St", "direction": "SE", "lat": 40.543514, "lon": -74.14768, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14768, 40.543514 ] } }, -{ "type": "Feature", "properties": { "id": 200367, "name": "Hylan Blvd/Osborne Av", "direction": "SW", "lat": 40.539627, "lon": -74.14841, "routes": "S54, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.14841, 40.539627 ] } }, -{ "type": "Feature", "properties": { "id": 200368, "name": "Hylan Blvd/Armstrong Av", "direction": "SW", "lat": 40.5375, "lon": -74.15036, "routes": "SIM1C, S54, SIM1, SIM7, SIM9, SIM10, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.15036, 40.5375 ] } }, -{ "type": "Feature", "properties": { "id": 200371, "name": "Richmond Av/Hylan Blvd", "direction": "NW", "lat": 40.53454, "lon": -74.15436, "routes": "SIM1C, SIM1, SIM22, SIM7, S79+, SIM10, SIM9, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.15436, 40.53454 ] } }, -{ "type": "Feature", "properties": { "id": 200372, "name": "Richmond Av/King St", "direction": "NW", "lat": 40.53558, "lon": -74.15618, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.15618, 40.53558 ] } }, -{ "type": "Feature", "properties": { "id": 200374, "name": "Richmond Av/Sycamore St", "direction": "NW", "lat": 40.540195, "lon": -74.16119, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16119, 40.540195 ] } }, -{ "type": "Feature", "properties": { "id": 200375, "name": "Richmond Av/Oakdale St", "direction": "NW", "lat": 40.54183, "lon": -74.16272, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16272, 40.54183 ] } }, -{ "type": "Feature", "properties": { "id": 200377, "name": "Richmond Av/Eltingville Blvd", "direction": "NW", "lat": 40.54419, "lon": -74.16504, "routes": "SIM10, S59, S79+, SIM1, SIM22, SIM7, S89, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -74.16504, 40.54419 ] } }, -{ "type": "Feature", "properties": { "id": 200378, "name": "Richmond Av/Wilson Av", "direction": "N", "lat": 40.54574, "lon": -74.16573, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16573, 40.54574 ] } }, -{ "type": "Feature", "properties": { "id": 200379, "name": "Richmond Av/Bartlett Av", "direction": "NW", "lat": 40.547585, "lon": -74.16645, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16645, 40.547585 ] } }, -{ "type": "Feature", "properties": { "id": 200380, "name": "Richmond Av/Memphis Av", "direction": "N", "lat": 40.549507, "lon": -74.16723, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16723, 40.549507 ] } }, -{ "type": "Feature", "properties": { "id": 200381, "name": "Richmond Av/Katan Av", "direction": "N", "lat": 40.550877, "lon": -74.16754, "routes": "SIM22, S59, SIM7, SIM10, SIM1, SIM1C, S89" }, "geometry": { "type": "Point", "coordinates": [ -74.16754, 40.550877 ] } }, -{ "type": "Feature", "properties": { "id": 200382, "name": "Richmond Av/Genesee Av", "direction": "N", "lat": 40.5528, "lon": -74.16796, "routes": "S79+, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16796, 40.5528 ] } }, -{ "type": "Feature", "properties": { "id": 200383, "name": "Richmond Av/Leverett Av", "direction": "N", "lat": 40.555256, "lon": -74.16851, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16851, 40.555256 ] } }, -{ "type": "Feature", "properties": { "id": 200384, "name": "Richmond Av/Barlow Av", "direction": "N", "lat": 40.55731, "lon": -74.16897, "routes": "SIM7, SIM1C, SIM22, SIM1, S59, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -74.16897, 40.55731 ] } }, -{ "type": "Feature", "properties": { "id": 200385, "name": "Richmond Av/Gurley Av", "direction": "N", "lat": 40.559013, "lon": -74.16937, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16937, 40.559013 ] } }, -{ "type": "Feature", "properties": { "id": 200386, "name": "Eltingville/Transit Center", "direction": "S", "lat": 40.560986, "lon": -74.171394, "routes": "SIM15, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.171394, 40.560986 ] } }, -{ "type": "Feature", "properties": { "id": 200387, "name": "Yukon Av/Watchmans Office", "direction": "NW", "lat": 40.574886, "lon": -74.16515, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16515, 40.574886 ] } }, -{ "type": "Feature", "properties": { "id": 200388, "name": "Yukon Av/Target Driveway", "direction": "NW", "lat": 40.575634, "lon": -74.16673, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16673, 40.575634 ] } }, -{ "type": "Feature", "properties": { "id": 200389, "name": "Yukon Av/Richmond Av", "direction": "NW", "lat": 40.576977, "lon": -74.16941, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16941, 40.576977 ] } }, -{ "type": "Feature", "properties": { "id": 200391, "name": "Staten Island Mall At Ring Rd/Macys", "direction": "N", "lat": 40.585068, "lon": -74.166626, "routes": "S79+, S94, S59, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.166626, 40.585068 ] } }, -{ "type": "Feature", "properties": { "id": 200392, "name": "Richmond Av/Richmond Hill Rd", "direction": "NE", "lat": 40.589226, "lon": -74.16712, "routes": "S94, S59, S89, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.16712, 40.589226 ] } }, -{ "type": "Feature", "properties": { "id": 200393, "name": "Richmond Av/Nome Av", "direction": "NE", "lat": 40.590836, "lon": -74.1653, "routes": "SIM8, SIM4C, S59, SIM4, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.1653, 40.590836 ] } }, -{ "type": "Feature", "properties": { "id": 200394, "name": "Richmond Av/Draper Pl South", "direction": "NE", "lat": 40.59254, "lon": -74.16297, "routes": "S44, SIM4, S59, SIM8, SIM4C, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.16297, 40.59254 ] } }, -{ "type": "Feature", "properties": { "id": 200395, "name": "Richmond Av/Rockland Av", "direction": "N", "lat": 40.595642, "lon": -74.16177, "routes": "S44, S89, SIM8, S59, S94, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.16177, 40.595642 ] } }, -{ "type": "Feature", "properties": { "id": 200399, "name": "Richmond Av/Eton Pl", "direction": "N", "lat": 40.60446, "lon": -74.16223, "routes": "SIM8, SIM4, S59, S44, SIM4C, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.16223, 40.60446 ] } }, -{ "type": "Feature", "properties": { "id": 200400, "name": "Richmond Av/Victory Blvd", "direction": "N", "lat": 40.607533, "lon": -74.16235, "routes": "SIM33, SIM4C, S44, SIM8, SIM4, S89, S94, S59, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.16235, 40.607533 ] } }, -{ "type": "Feature", "properties": { "id": 200401, "name": "Richmond Av/Morani St", "direction": "NE", "lat": 40.610085, "lon": -74.16017, "routes": "SIM4C, SIM33C, SIM33, SIM4, S44, SIM8, S89, S94, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16017, 40.610085 ] } }, -{ "type": "Feature", "properties": { "id": 200403, "name": "Richmond Av/West Caswell Av", "direction": "NE", "lat": 40.61662, "lon": -74.1566, "routes": "S59, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.1566, 40.61662 ] } }, -{ "type": "Feature", "properties": { "id": 200406, "name": "Richmond Av/Vedder Av", "direction": "NE", "lat": 40.62262, "lon": -74.14961, "routes": "S94, S59, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.14961, 40.62262 ] } }, -{ "type": "Feature", "properties": { "id": 200407, "name": "Forest Av/Richmond Av", "direction": "E", "lat": 40.624966, "lon": -74.14842, "routes": "S98, SIM3, SIM3C, SIM30, S48, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.14842, 40.624966 ] } }, -{ "type": "Feature", "properties": { "id": 200408, "name": "Forest Av/Willow Rd East", "direction": "E", "lat": 40.62491, "lon": -74.14524, "routes": "SIM3, S59, SIM3C, S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.14524, 40.62491 ] } }, -{ "type": "Feature", "properties": { "id": 200409, "name": "Port Richmond Av/Smith Pl", "direction": "N", "lat": 40.62646, "lon": -74.14247, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.14247, 40.62646 ] } }, -{ "type": "Feature", "properties": { "id": 200410, "name": "Port Richmond Av/Orange Av", "direction": "NE", "lat": 40.62837, "lon": -74.14182, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.14182, 40.62837 ] } }, -{ "type": "Feature", "properties": { "id": 200411, "name": "Port Richmond Av/Beekman St", "direction": "NE", "lat": 40.62936, "lon": -74.1408, "routes": "S59, SIM3C, SIM35, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -74.1408, 40.62936 ] } }, -{ "type": "Feature", "properties": { "id": 200412, "name": "Port Richmond Av/Catherine St", "direction": "NE", "lat": 40.630417, "lon": -74.139534, "routes": "S59, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.139534, 40.630417 ] } }, -{ "type": "Feature", "properties": { "id": 200413, "name": "Port Richmond Av/Homestead Av", "direction": "NE", "lat": 40.63165, "lon": -74.13815, "routes": "S59, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.13815, 40.63165 ] } }, -{ "type": "Feature", "properties": { "id": 200414, "name": "Port Richmond Av/Hatfield Pl", "direction": "NE", "lat": 40.632877, "lon": -74.13685, "routes": "S59, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.13685, 40.632877 ] } }, -{ "type": "Feature", "properties": { "id": 200416, "name": "Port Richmond Av/Harrison Av", "direction": "NE", "lat": 40.636597, "lon": -74.134224, "routes": "S59, S57, S66, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.134224, 40.636597 ] } }, -{ "type": "Feature", "properties": { "id": 200417, "name": "Port Richmond Av/Bennett St", "direction": "NE", "lat": 40.638382, "lon": -74.132904, "routes": "S59, S57, S66, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.132904, 40.638382 ] } }, -{ "type": "Feature", "properties": { "id": 200426, "name": "Port Richmond Av/Ann St", "direction": "SW", "lat": 40.638744, "lon": -74.13296, "routes": "S53, S66, S59, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13296, 40.638744 ] } }, -{ "type": "Feature", "properties": { "id": 200427, "name": "Port Richmond Av/Harrison Av", "direction": "SW", "lat": 40.63646, "lon": -74.13467, "routes": "S57, S66, S59, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.13467, 40.63646 ] } }, -{ "type": "Feature", "properties": { "id": 200428, "name": "Port Richmond Av/Charles Av", "direction": "SW", "lat": 40.63473, "lon": -74.13576, "routes": "S59, S57, SIM35, SIM3C, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -74.13576, 40.63473 ] } }, -{ "type": "Feature", "properties": { "id": 200430, "name": "Port Richmond Av/Blackford Av", "direction": "SW", "lat": 40.631527, "lon": -74.13863, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.13863, 40.631527 ] } }, -{ "type": "Feature", "properties": { "id": 200432, "name": "Port Richmond Av/Orange Av", "direction": "SW", "lat": 40.628635, "lon": -74.14187, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.14187, 40.628635 ] } }, -{ "type": "Feature", "properties": { "id": 200434, "name": "Forest Av/Richmond Av", "direction": "W", "lat": 40.625217, "lon": -74.14899, "routes": "SIM33, SIM33C, S98, S48, SIM34, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.14899, 40.625217 ] } }, -{ "type": "Feature", "properties": { "id": 200437, "name": "Richmond Av/Vedder Av", "direction": "SW", "lat": 40.622223, "lon": -74.15033, "routes": "S59, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.15033, 40.622223 ] } }, -{ "type": "Feature", "properties": { "id": 200438, "name": "Richmond Av/Baron Hirsch Cemetery", "direction": "SW", "lat": 40.620132, "lon": -74.15333, "routes": "S59, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.15333, 40.620132 ] } }, -{ "type": "Feature", "properties": { "id": 200439, "name": "Richmond Av/Jules Dr", "direction": "SW", "lat": 40.618286, "lon": -74.155594, "routes": "S94, S44, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.155594, 40.618286 ] } }, -{ "type": "Feature", "properties": { "id": 200440, "name": "Richmond Av/Goethals Rd North", "direction": "SW", "lat": 40.61645, "lon": -74.15679, "routes": "S44, S94, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.15679, 40.61645 ] } }, -{ "type": "Feature", "properties": { "id": 200441, "name": "Richmond Av/Lamberts Ln", "direction": "SW", "lat": 40.614807, "lon": -74.15758, "routes": "SIM4, S44, S59, S94, SIM4C, SIM4X, S89" }, "geometry": { "type": "Point", "coordinates": [ -74.15758, 40.614807 ] } }, -{ "type": "Feature", "properties": { "id": 200442, "name": "Richmond Av/Lander Av", "direction": "SW", "lat": 40.61279, "lon": -74.159035, "routes": "SIM33C, S94, SIM8, S59, S44, SIM33, SIM4, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.159035, 40.61279 ] } }, -{ "type": "Feature", "properties": { "id": 200443, "name": "Richmond Av/Merrill Av", "direction": "SW", "lat": 40.609936, "lon": -74.160416, "routes": "SIM4, S59, SIM4C, SIM8, S44, SIM33C, S89, SIM33, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.160416, 40.609936 ] } }, -{ "type": "Feature", "properties": { "id": 200444, "name": "Richmond Av/Victory Blvd", "direction": "S", "lat": 40.607025, "lon": -74.16254, "routes": "S44, S59, SIM8, S94, S89, SIM4C, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.16254, 40.607025 ] } }, -{ "type": "Feature", "properties": { "id": 200446, "name": "Richmond Av/Carnegie Av", "direction": "S", "lat": 40.604122, "lon": -74.162796, "routes": "SIM4, S44, S59, SIM8, S94, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.162796, 40.604122 ] } }, -{ "type": "Feature", "properties": { "id": 200447, "name": "Richmond Av/Signs Rd", "direction": "S", "lat": 40.60138, "lon": -74.16337, "routes": "S94, SIM4C, SIM4, S59, SIM8, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.16337, 40.60138 ] } }, -{ "type": "Feature", "properties": { "id": 200450, "name": "Richmond Av/Travis Av", "direction": "SW", "lat": 40.593124, "lon": -74.16284, "routes": "SIM4C, SIM4, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.16284, 40.593124 ] } }, -{ "type": "Feature", "properties": { "id": 200451, "name": "Richmond Av/Travis Av", "direction": "SW", "lat": 40.59314, "lon": -74.16286, "routes": "S44, S59, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.16286, 40.59314 ] } }, -{ "type": "Feature", "properties": { "id": 200452, "name": "Richmond Av/Nome Av", "direction": "SW", "lat": 40.590584, "lon": -74.166214, "routes": "S44, S94, SIM8, SIM4C, SIM4, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.166214, 40.590584 ] } }, -{ "type": "Feature", "properties": { "id": 200453, "name": "Richmond Av/Richmond Hill Rd", "direction": "SW", "lat": 40.588623, "lon": -74.16806, "routes": "S59, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.16806, 40.588623 ] } }, -{ "type": "Feature", "properties": { "id": 200454, "name": "Staten Island Mall At Ring Rd/Macys", "direction": "SW", "lat": 40.584576, "lon": -74.166985, "routes": "S94, S59, S79+, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.166985, 40.584576 ] } }, -{ "type": "Feature", "properties": { "id": 200455, "name": "Staten Island Mall At Ring Rd/Platinum Av", "direction": "SE", "lat": 40.580017, "lon": -74.16853, "routes": "S44, S94, S59, S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.16853, 40.580017 ] } }, -{ "type": "Feature", "properties": { "id": 200456, "name": "Yukon Av/Richmond Av", "direction": "SE", "lat": 40.576622, "lon": -74.16904, "routes": "S91, S94, S59, S44, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.16904, 40.576622 ] } }, -{ "type": "Feature", "properties": { "id": 200457, "name": "Yukon Av/Target Driveway", "direction": "SE", "lat": 40.575645, "lon": -74.16715, "routes": "S61, S59, S91, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.16715, 40.575645 ] } }, -{ "type": "Feature", "properties": { "id": 200459, "name": "Richmond Av/Forest Hill Rd", "direction": "S", "lat": 40.570435, "lon": -74.17003, "routes": "SIM4C, S56, S55, SIM31, SIM4, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.17003, 40.570435 ] } }, -{ "type": "Feature", "properties": { "id": 200460, "name": "Eltingville/Transit Center", "direction": "S", "lat": 40.560646, "lon": -74.17127, "routes": "S59, S74, S84, S89, S55, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.17127, 40.560646 ] } }, -{ "type": "Feature", "properties": { "id": 200461, "name": "Richmond Av/Drumgoole Rd East", "direction": "S", "lat": 40.559006, "lon": -74.16956, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16956, 40.559006 ] } }, -{ "type": "Feature", "properties": { "id": 200462, "name": "Richmond Av/Barlow Av", "direction": "S", "lat": 40.556675, "lon": -74.169106, "routes": "S59, SIM22, SIM10, SIM7, SIM1C, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.169106, 40.556675 ] } }, -{ "type": "Feature", "properties": { "id": 200463, "name": "Richmond Av/Leverett Av", "direction": "S", "lat": 40.554913, "lon": -74.16865, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16865, 40.554913 ] } }, -{ "type": "Feature", "properties": { "id": 200466, "name": "Richmond Av/Katan Av", "direction": "S", "lat": 40.550243, "lon": -74.1676, "routes": "SIM10, SIM7, SIM22, SIM1, S59, S89, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -74.1676, 40.550243 ] } }, -{ "type": "Feature", "properties": { "id": 200467, "name": "Richmond Av/Memphis Av", "direction": "S", "lat": 40.54886, "lon": -74.16737, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16737, 40.54886 ] } }, -{ "type": "Feature", "properties": { "id": 200468, "name": "Richmond Av/Serrell Av", "direction": "SE", "lat": 40.547527, "lon": -74.16669, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16669, 40.547527 ] } }, -{ "type": "Feature", "properties": { "id": 200469, "name": "Richmond Av/Wilson Av", "direction": "S", "lat": 40.545094, "lon": -74.16576, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16576, 40.545094 ] } }, -{ "type": "Feature", "properties": { "id": 200470, "name": "Richmond Av/Eltingville Blvd", "direction": "SE", "lat": 40.544067, "lon": -74.1652, "routes": "SIM22, SIM7, S89, SIM10, S79+, SIM1C, SIM1, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.1652, 40.544067 ] } }, -{ "type": "Feature", "properties": { "id": 200471, "name": "Richmond Av/Amboy Rd", "direction": "SE", "lat": 40.54295, "lon": -74.164, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.164, 40.54295 ] } }, -{ "type": "Feature", "properties": { "id": 200472, "name": "Richmond Av/Oakdale St", "direction": "SE", "lat": 40.5412, "lon": -74.16237, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16237, 40.5412 ] } }, -{ "type": "Feature", "properties": { "id": 200473, "name": "Richmond Av/Sycamore St", "direction": "SE", "lat": 40.539604, "lon": -74.160866, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.160866, 40.539604 ] } }, -{ "type": "Feature", "properties": { "id": 200474, "name": "Richmond Av/Koch Blvd", "direction": "SE", "lat": 40.53803, "lon": -74.159386, "routes": "SIM1, S89, SIM10, SIM1C, SIM22, SIM7, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.159386, 40.53803 ] } }, -{ "type": "Feature", "properties": { "id": 200475, "name": "Richmond Av/Shirley Av", "direction": "SE", "lat": 40.536964, "lon": -74.15839, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.15839, 40.536964 ] } }, -{ "type": "Feature", "properties": { "id": 200476, "name": "Richmond Av/King St", "direction": "SE", "lat": 40.53511, "lon": -74.15566, "routes": "S59, SIM7, SIM1, SIM1C, SIM10, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.15566, 40.53511 ] } }, -{ "type": "Feature", "properties": { "id": 200479, "name": "Hylan Blvd/Winchester Av", "direction": "NE", "lat": 40.5356, "lon": -74.152275, "routes": "S54, S78, S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.152275, 40.5356 ] } }, -{ "type": "Feature", "properties": { "id": 200480, "name": "Hylan Blvd/Littlefield Av", "direction": "NE", "lat": 40.536514, "lon": -74.151215, "routes": "S78, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.151215, 40.536514 ] } }, -{ "type": "Feature", "properties": { "id": 200484, "name": "Nelson Av/Hylan Blvd", "direction": "NW", "lat": 40.542675, "lon": -74.14609, "routes": "SIM6, S54, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.14609, 40.542675 ] } }, -{ "type": "Feature", "properties": { "id": 200486, "name": "Nelson Av/Monticello Terr", "direction": "NW", "lat": 40.54506, "lon": -74.14854, "routes": "S54, SIM6, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.14854, 40.54506 ] } }, -{ "type": "Feature", "properties": { "id": 200487, "name": "Nelson Av/Belden St", "direction": "NW", "lat": 40.547413, "lon": -74.14982, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14982, 40.547413 ] } }, -{ "type": "Feature", "properties": { "id": 200488, "name": "Nelson Av/Amboy Rd", "direction": "N", "lat": 40.549873, "lon": -74.150665, "routes": "SIM6, SIM5, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.150665, 40.549873 ] } }, -{ "type": "Feature", "properties": { "id": 200490, "name": "Giffords Ln/Katan Av", "direction": "NW", "lat": 40.55355, "lon": -74.15119, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15119, 40.55355 ] } }, -{ "type": "Feature", "properties": { "id": 200491, "name": "Giffords Ln/Gibson Av", "direction": "NW", "lat": 40.55568, "lon": -74.152214, "routes": "SIM6, SIM5, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.152214, 40.55568 ] } }, -{ "type": "Feature", "properties": { "id": 200492, "name": "Giffords Ln/Leverett Av", "direction": "NW", "lat": 40.557117, "lon": -74.15285, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15285, 40.557117 ] } }, -{ "type": "Feature", "properties": { "id": 200496, "name": "Arthur Kill Rd/Giffords Ln", "direction": "NE", "lat": 40.56397, "lon": -74.15558, "routes": "S54, S74, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.15558, 40.56397 ] } }, -{ "type": "Feature", "properties": { "id": 200507, "name": "Richmond Rd/Wilder Av", "direction": "E", "lat": 40.573193, "lon": -74.13428, "routes": "S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.13428, 40.573193 ] } }, -{ "type": "Feature", "properties": { "id": 200508, "name": "Richmond Rd/Altoona Av", "direction": "E", "lat": 40.57367, "lon": -74.13199, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13199, 40.57367 ] } }, -{ "type": "Feature", "properties": { "id": 200509, "name": "Richmond Rd/Bishop St", "direction": "E", "lat": 40.574757, "lon": -74.12869, "routes": "S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.12869, 40.574757 ] } }, -{ "type": "Feature", "properties": { "id": 200524, "name": "Jewett Av/Post Av", "direction": "S", "lat": 40.631107, "lon": -74.13059, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13059, 40.631107 ] } }, -{ "type": "Feature", "properties": { "id": 200525, "name": "Jewett Av/Kramer Pl", "direction": "S", "lat": 40.62915, "lon": -74.13048, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13048, 40.62915 ] } }, -{ "type": "Feature", "properties": { "id": 200526, "name": "Jewett Av/Forest Av", "direction": "S", "lat": 40.626457, "lon": -74.131325, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.131325, 40.626457 ] } }, -{ "type": "Feature", "properties": { "id": 200527, "name": "Jewett Av/Egbert Av", "direction": "S", "lat": 40.624607, "lon": -74.13196, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13196, 40.624607 ] } }, -{ "type": "Feature", "properties": { "id": 200528, "name": "Jewett Av/Burnside Av", "direction": "S", "lat": 40.622864, "lon": -74.132195, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.132195, 40.622864 ] } }, -{ "type": "Feature", "properties": { "id": 200529, "name": "Jewett Av/College Av", "direction": "S", "lat": 40.620712, "lon": -74.13181, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13181, 40.620712 ] } }, -{ "type": "Feature", "properties": { "id": 200530, "name": "Jewett Av/The Boulevard", "direction": "S", "lat": 40.618214, "lon": -74.13142, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13142, 40.618214 ] } }, -{ "type": "Feature", "properties": { "id": 200531, "name": "Jewett Av/Waters Av", "direction": "S", "lat": 40.616592, "lon": -74.13126, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13126, 40.616592 ] } }, -{ "type": "Feature", "properties": { "id": 200532, "name": "Jewett Av/Markham Pl", "direction": "S", "lat": 40.61554, "lon": -74.13117, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13117, 40.61554 ] } }, -{ "type": "Feature", "properties": { "id": 200533, "name": "Jewett Av/Watchogue Rd", "direction": "S", "lat": 40.612976, "lon": -74.13087, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13087, 40.612976 ] } }, -{ "type": "Feature", "properties": { "id": 200534, "name": "Victory Blvd/Perry Av", "direction": "E", "lat": 40.612473, "lon": -74.12984, "routes": "S92, S61, S66, S93, SIM34, S91, SIM3C, SIM3, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.12984, 40.612473 ] } }, -{ "type": "Feature", "properties": { "id": 200535, "name": "Victory Blvd/Mountainview Av", "direction": "E", "lat": 40.61274, "lon": -74.12654, "routes": "SIM34, S62, SIM3C, SIM3, S66, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.12654, 40.61274 ] } }, -{ "type": "Feature", "properties": { "id": 200536, "name": "Victory Blvd/Lester St", "direction": "E", "lat": 40.612896, "lon": -74.1245, "routes": "S62, S66, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.1245, 40.612896 ] } }, -{ "type": "Feature", "properties": { "id": 200537, "name": "Victory Blvd/Manor Rd", "direction": "E", "lat": 40.61304, "lon": -74.12223, "routes": "S93, SIM3, S66, S61, S62, SIM3C, S92, S91, SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.12223, 40.61304 ] } }, -{ "type": "Feature", "properties": { "id": 200538, "name": "Victory Blvd/Todt Hill Rd", "direction": "E", "lat": 40.613304, "lon": -74.118904, "routes": "S66, S62, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.118904, 40.613304 ] } }, -{ "type": "Feature", "properties": { "id": 200539, "name": "Victory Blvd/Slosson Av", "direction": "E", "lat": 40.613476, "lon": -74.11638, "routes": "S66, S61, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.11638, 40.613476 ] } }, -{ "type": "Feature", "properties": { "id": 200540, "name": "Victory Blvd/Little Clove Rd", "direction": "E", "lat": 40.613735, "lon": -74.112946, "routes": "S62, S66, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.112946, 40.613735 ] } }, -{ "type": "Feature", "properties": { "id": 200541, "name": "Victory Blvd/Albert St", "direction": "E", "lat": 40.61412, "lon": -74.11103, "routes": "S66, S62, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.11103, 40.61412 ] } }, -{ "type": "Feature", "properties": { "id": 200542, "name": "Victory Blvd/Renwick Av", "direction": "E", "lat": 40.61486, "lon": -74.10756, "routes": "S62, S61, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.10756, 40.61486 ] } }, -{ "type": "Feature", "properties": { "id": 200543, "name": "Victory Blvd/Seneca Av", "direction": "E", "lat": 40.61585, "lon": -74.10466, "routes": "S66, S62, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.10466, 40.61585 ] } }, -{ "type": "Feature", "properties": { "id": 200544, "name": "Victory Blvd/Clove Rd", "direction": "NE", "lat": 40.61661, "lon": -74.103, "routes": "S62, S61, SIM30, S92, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.103, 40.61661 ] } }, -{ "type": "Feature", "properties": { "id": 200545, "name": "Victory Blvd/Grand Av", "direction": "NE", "lat": 40.617664, "lon": -74.10153, "routes": "S61, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.10153, 40.617664 ] } }, -{ "type": "Feature", "properties": { "id": 200546, "name": "Victory Blvd/Highland Av", "direction": "NE", "lat": 40.61982, "lon": -74.099365, "routes": "S62, S66, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.099365, 40.61982 ] } }, -{ "type": "Feature", "properties": { "id": 200548, "name": "Victory Blvd/Theresa Pl", "direction": "NE", "lat": 40.624477, "lon": -74.09357, "routes": "S62, S61, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09357, 40.624477 ] } }, -{ "type": "Feature", "properties": { "id": 200549, "name": "Victory Blvd/Eddy St", "direction": "NE", "lat": 40.62676, "lon": -74.09134, "routes": "SIM30, S66, S62, S91, S61, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.09134, 40.62676 ] } }, -{ "type": "Feature", "properties": { "id": 200550, "name": "Victory Blvd/Forest Av", "direction": "NE", "lat": 40.63028, "lon": -74.08881, "routes": "S62, S91, S92, S66, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.08881, 40.63028 ] } }, -{ "type": "Feature", "properties": { "id": 200551, "name": "Victory Blvd/Austin Pl", "direction": "NE", "lat": 40.63248, "lon": -74.08681, "routes": "S66, S48, S62, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.08681, 40.63248 ] } }, -{ "type": "Feature", "properties": { "id": 200552, "name": "Victory Blvd/Cebra Av", "direction": "NE", "lat": 40.63421, "lon": -74.085434, "routes": "S61, S48, S62, S66, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.085434, 40.63421 ] } }, -{ "type": "Feature", "properties": { "id": 200553, "name": "Victory Blvd/Jersey St", "direction": "NE", "lat": 40.635624, "lon": -74.08386, "routes": "S48, S66, S61, S62, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.08386, 40.635624 ] } }, -{ "type": "Feature", "properties": { "id": 200570, "name": "Victory Blvd/Jersey St", "direction": "W", "lat": 40.63582, "lon": -74.08368, "routes": "S61, S62, S46, S48, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.08368, 40.63582 ] } }, -{ "type": "Feature", "properties": { "id": 200571, "name": "Victory Blvd/Cebra Av", "direction": "SW", "lat": 40.633858, "lon": -74.086, "routes": "S62" }, "geometry": { "type": "Point", "coordinates": [ -74.086, 40.633858 ] } }, -{ "type": "Feature", "properties": { "id": 200572, "name": "Victory Blvd/Woodstock Av", "direction": "SW", "lat": 40.631794, "lon": -74.08763, "routes": "S62, S61, S48, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.08763, 40.631794 ] } }, -{ "type": "Feature", "properties": { "id": 200573, "name": "Victory Blvd/Forest Av", "direction": "SW", "lat": 40.629856, "lon": -74.08943, "routes": "S92, S61, S62, S91, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.08943, 40.629856 ] } }, -{ "type": "Feature", "properties": { "id": 200574, "name": "Victory Blvd/Eddy St", "direction": "SW", "lat": 40.62629, "lon": -74.09185, "routes": "S66, S92, S91, S61, SIM30, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.09185, 40.62629 ] } }, -{ "type": "Feature", "properties": { "id": 200575, "name": "Victory Blvd/Theresa Pl", "direction": "SW", "lat": 40.624043, "lon": -74.09441, "routes": "S61, S66, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.09441, 40.624043 ] } }, -{ "type": "Feature", "properties": { "id": 200576, "name": "Victory Blvd/Silver Lake Golf Course", "direction": "SW", "lat": 40.62257, "lon": -74.09634, "routes": "S66, S61, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.09634, 40.62257 ] } }, -{ "type": "Feature", "properties": { "id": 200579, "name": "Victory Blvd/Melrose Av", "direction": "SW", "lat": 40.6178, "lon": -74.101654, "routes": "S61, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.101654, 40.6178 ] } }, -{ "type": "Feature", "properties": { "id": 200580, "name": "Victory Blvd/Clove Rd", "direction": "SW", "lat": 40.616077, "lon": -74.104546, "routes": "S61, S91, S66, S62, S92, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.104546, 40.616077 ] } }, -{ "type": "Feature", "properties": { "id": 200582, "name": "Victory Blvd/Albert St", "direction": "W", "lat": 40.614193, "lon": -74.111374, "routes": "S66, S62, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.111374, 40.614193 ] } }, -{ "type": "Feature", "properties": { "id": 200583, "name": "Victory Blvd/Little Clove Rd", "direction": "W", "lat": 40.61382, "lon": -74.11363, "routes": "S61, S62, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.11363, 40.61382 ] } }, -{ "type": "Feature", "properties": { "id": 200584, "name": "Victory Blvd/Slosson Av", "direction": "W", "lat": 40.61355, "lon": -74.117325, "routes": "S66, S62, SIM34, SIM3, S61, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.117325, 40.61355 ] } }, -{ "type": "Feature", "properties": { "id": 200585, "name": "Victory Blvd/Beechwood Pl", "direction": "W", "lat": 40.613277, "lon": -74.1203, "routes": "S61, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.1203, 40.613277 ] } }, -{ "type": "Feature", "properties": { "id": 200586, "name": "Victory Blvd/Manor Rd", "direction": "W", "lat": 40.613106, "lon": -74.12302, "routes": "S61, S62, SIM34, S66, S92, SIM3, SIM3C, S93, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.12302, 40.613106 ] } }, -{ "type": "Feature", "properties": { "id": 200590, "name": "Jewett Av/Kimball Av", "direction": "N", "lat": 40.61493, "lon": -74.130875, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.130875, 40.61493 ] } }, -{ "type": "Feature", "properties": { "id": 200591, "name": "Jewett Av/Goodwin Av", "direction": "N", "lat": 40.616413, "lon": -74.13105, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13105, 40.616413 ] } }, -{ "type": "Feature", "properties": { "id": 200592, "name": "Jewett Av/Keiber Ct", "direction": "N", "lat": 40.618572, "lon": -74.13134, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13134, 40.618572 ] } }, -{ "type": "Feature", "properties": { "id": 200593, "name": "Jewett Av/College Av", "direction": "N", "lat": 40.621338, "lon": -74.1318, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.1318, 40.621338 ] } }, -{ "type": "Feature", "properties": { "id": 200594, "name": "Jewett Av/Burnside Av", "direction": "N", "lat": 40.62256, "lon": -74.131996, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.131996, 40.62256 ] } }, -{ "type": "Feature", "properties": { "id": 200595, "name": "Jewett Av/Egbert Av", "direction": "N", "lat": 40.624424, "lon": -74.13187, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13187, 40.624424 ] } }, -{ "type": "Feature", "properties": { "id": 200596, "name": "Jewett Av/Forest Av", "direction": "N", "lat": 40.626198, "lon": -74.131226, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.131226, 40.626198 ] } }, -{ "type": "Feature", "properties": { "id": 200597, "name": "Jewett Av/Holbernt Ct", "direction": "N", "lat": 40.629448, "lon": -74.13015, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13015, 40.629448 ] } }, -{ "type": "Feature", "properties": { "id": 200598, "name": "Jewett Av/Post Av", "direction": "N", "lat": 40.630768, "lon": -74.13037, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13037, 40.630768 ] } }, -{ "type": "Feature", "properties": { "id": 200612, "name": "Clove Rd/Schoharie St", "direction": "SE", "lat": 40.614307, "lon": -74.10189, "routes": "S53, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.10189, 40.614307 ] } }, -{ "type": "Feature", "properties": { "id": 200614, "name": "Howard Av/Clove Rd", "direction": "E", "lat": 40.612465, "lon": -74.09896, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09896, 40.612465 ] } }, -{ "type": "Feature", "properties": { "id": 200616, "name": "Howard Av/Wagner College Plaza", "direction": "E", "lat": 40.616135, "lon": -74.09511, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09511, 40.616135 ] } }, -{ "type": "Feature", "properties": { "id": 200618, "name": "Howard Av/Signal Hill Rd", "direction": "E", "lat": 40.618565, "lon": -74.09114, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09114, 40.618565 ] } }, -{ "type": "Feature", "properties": { "id": 200619, "name": "Arlo Rd/Howard Av", "direction": "NW", "lat": 40.619568, "lon": -74.09044, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09044, 40.619568 ] } }, -{ "type": "Feature", "properties": { "id": 200620, "name": "Arlo Rd/Grymes Hill Apartments", "direction": "E", "lat": 40.619984, "lon": -74.09267, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09267, 40.619984 ] } }, -{ "type": "Feature", "properties": { "id": 200621, "name": "Arlo Rd/Stratford Rd", "direction": "NE", "lat": 40.61976, "lon": -74.09447, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09447, 40.61976 ] } }, -{ "type": "Feature", "properties": { "id": 200622, "name": "Howard Av/Seth Ct", "direction": "SW", "lat": 40.61818, "lon": -74.0941, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.0941, 40.61818 ] } }, -{ "type": "Feature", "properties": { "id": 200623, "name": "Howard Av/Wagner Stadium Driveway", "direction": "W", "lat": 40.6163, "lon": -74.09501, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09501, 40.6163 ] } }, -{ "type": "Feature", "properties": { "id": 200624, "name": "Howard Av/Campus Rd", "direction": "W", "lat": 40.61567, "lon": -74.096535, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.096535, 40.61567 ] } }, -{ "type": "Feature", "properties": { "id": 200626, "name": "Clove Rd/Foote Av", "direction": "NW", "lat": 40.613422, "lon": -74.10035, "routes": "S66, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.10035, 40.613422 ] } }, -{ "type": "Feature", "properties": { "id": 200627, "name": "Clove Rd/Van Cortlandt Av", "direction": "NW", "lat": 40.61486, "lon": -74.10219, "routes": "S53, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.10219, 40.61486 ] } }, -{ "type": "Feature", "properties": { "id": 200646, "name": "Clove Rd/Bement Av", "direction": "E", "lat": 40.620483, "lon": -74.10979, "routes": "SIM35, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.10979, 40.620483 ] } }, -{ "type": "Feature", "properties": { "id": 200652, "name": "Clove Rd/Milford Dr", "direction": "SE", "lat": 40.61038, "lon": -74.09761, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.09761, 40.61038 ] } }, -{ "type": "Feature", "properties": { "id": 200660, "name": "Hylan Blvd/Norway Av", "direction": "E", "lat": 40.5985, "lon": -74.08127, "routes": "S79+, S78, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08127, 40.5985 ] } }, -{ "type": "Feature", "properties": { "id": 200661, "name": "Hylan Blvd/Lamport Blvd", "direction": "E", "lat": 40.598408, "lon": -74.07912, "routes": "S53, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07912, 40.598408 ] } }, -{ "type": "Feature", "properties": { "id": 200662, "name": "Hylan Blvd/Kramer St", "direction": "E", "lat": 40.598015, "lon": -74.07621, "routes": "S78, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.07621, 40.598015 ] } }, -{ "type": "Feature", "properties": { "id": 200663, "name": "Hylan Blvd/Linwood Av", "direction": "E", "lat": 40.597515, "lon": -74.073944, "routes": "S53, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.073944, 40.597515 ] } }, -{ "type": "Feature", "properties": { "id": 200664, "name": "Hylan Blvd/Sand Ln", "direction": "NE", "lat": 40.59844, "lon": -74.0725, "routes": "S78, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.0725, 40.59844 ] } }, -{ "type": "Feature", "properties": { "id": 200694, "name": "Sand Ln/Mcclean Av", "direction": "NW", "lat": 40.597027, "lon": -74.07047, "routes": "S52, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.07047, 40.597027 ] } }, -{ "type": "Feature", "properties": { "id": 200695, "name": "Sand Ln/Hylan Blvd", "direction": "N", "lat": 40.59857, "lon": -74.07182, "routes": "S53, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07182, 40.59857 ] } }, -{ "type": "Feature", "properties": { "id": 200696, "name": "Hylan Blvd/Fingerboard Rd", "direction": "SE", "lat": 40.601532, "lon": -74.072655, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.072655, 40.601532 ] } }, -{ "type": "Feature", "properties": { "id": 200697, "name": "Hylan Blvd/Bionia Av", "direction": "W", "lat": 40.598045, "lon": -74.07583, "routes": "S53, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07583, 40.598045 ] } }, -{ "type": "Feature", "properties": { "id": 200698, "name": "Hylan Blvd/Steuben St", "direction": "W", "lat": 40.598576, "lon": -74.07805, "routes": "S53, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07805, 40.598576 ] } }, -{ "type": "Feature", "properties": { "id": 200699, "name": "Hylan Blvd/Allendale Rd", "direction": "W", "lat": 40.598667, "lon": -74.07989, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07989, 40.598667 ] } }, -{ "type": "Feature", "properties": { "id": 200700, "name": "Hylan Blvd/Clove Rd", "direction": "W", "lat": 40.598663, "lon": -74.08106, "routes": "SIM1, SIM11, S79+, S53, SIM7, SIM1C, SIM10, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08106, 40.598663 ] } }, -{ "type": "Feature", "properties": { "id": 200708, "name": "Narrows Rd North/Richmond Rd", "direction": "W", "lat": 40.60973, "lon": -74.09074, "routes": "S53, SIM35, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.09074, 40.60973 ] } }, -{ "type": "Feature", "properties": { "id": 200710, "name": "Clove Rd/Howard Av", "direction": "NW", "lat": 40.612717, "lon": -74.09952, "routes": "S53, S66, SIM35, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.09952, 40.612717 ] } }, -{ "type": "Feature", "properties": { "id": 200713, "name": "Clove Rd/Victory Blvd", "direction": "NW", "lat": 40.616596, "lon": -74.103516, "routes": "S53, SIM35, SIM30, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.103516, 40.616596 ] } }, -{ "type": "Feature", "properties": { "id": 200714, "name": "Clove Rd/Beverly Av", "direction": "NW", "lat": 40.617897, "lon": -74.104706, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.104706, 40.617897 ] } }, -{ "type": "Feature", "properties": { "id": 200715, "name": "Clove Rd/Clove Lake Park", "direction": "SE", "lat": 40.619514, "lon": -74.1075, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.1075, 40.619514 ] } }, -{ "type": "Feature", "properties": { "id": 200716, "name": "Clove Rd/Bement Av", "direction": "NW", "lat": 40.620945, "lon": -74.11031, "routes": "S53, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.11031, 40.620945 ] } }, -{ "type": "Feature", "properties": { "id": 200746, "name": "Clyde Pl/Arnold St", "direction": "S", "lat": 40.638992, "lon": -74.09014, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.09014, 40.638992 ] } }, -{ "type": "Feature", "properties": { "id": 200747, "name": "Franklin Av/Prospect Av", "direction": "N", "lat": 40.639698, "lon": -74.091095, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.091095, 40.639698 ] } }, -{ "type": "Feature", "properties": { "id": 200748, "name": "Prospect Av/Pendelton Pl", "direction": "W", "lat": 40.639683, "lon": -74.09196, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.09196, 40.639683 ] } }, -{ "type": "Feature", "properties": { "id": 200749, "name": "Prospect Av/Lafayette Av", "direction": "W", "lat": 40.63938, "lon": -74.09366, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.09366, 40.63938 ] } }, -{ "type": "Feature", "properties": { "id": 200750, "name": "Lafayette Av/Alden Pl", "direction": "S", "lat": 40.636955, "lon": -74.093636, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.093636, 40.636955 ] } }, -{ "type": "Feature", "properties": { "id": 200751, "name": "Lafayette Av/Brighton Av", "direction": "SE", "lat": 40.63567, "lon": -74.09265, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.09265, 40.63567 ] } }, -{ "type": "Feature", "properties": { "id": 200752, "name": "Brighton Av/Webster Av", "direction": "NE", "lat": 40.635784, "lon": -74.089424, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.089424, 40.635784 ] } }, -{ "type": "Feature", "properties": { "id": 200753, "name": "Brighton Av/Jersey St", "direction": "E", "lat": 40.63775, "lon": -74.08736, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.08736, 40.63775 ] } }, -{ "type": "Feature", "properties": { "id": 200754, "name": "Jersey St/Hendricks Av", "direction": "N", "lat": 40.64014, "lon": -74.087074, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.087074, 40.64014 ] } }, -{ "type": "Feature", "properties": { "id": 200755, "name": "Jersey St/Layton Av", "direction": "N", "lat": 40.64146, "lon": -74.08671, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.08671, 40.64146 ] } }, -{ "type": "Feature", "properties": { "id": 200756, "name": "Jersey St/Crescent Av", "direction": "N", "lat": 40.6424, "lon": -74.086494, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.086494, 40.6424 ] } }, -{ "type": "Feature", "properties": { "id": 200757, "name": "Westervelt Av/Crescent Av", "direction": "NW", "lat": 40.64373, "lon": -74.084305, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.084305, 40.64373 ] } }, -{ "type": "Feature", "properties": { "id": 200758, "name": "Westervelt Av/Hamilton Av", "direction": "E", "lat": 40.64571, "lon": -74.08575, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08575, 40.64571 ] } }, -{ "type": "Feature", "properties": { "id": 200761, "name": "Hamilton Av/Saint Marks Pl", "direction": "E", "lat": 40.64472, "lon": -74.0807, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.0807, 40.64472 ] } }, -{ "type": "Feature", "properties": { "id": 200762, "name": "Saint Marks Pl/Wall St", "direction": "SE", "lat": 40.643192, "lon": -74.07914, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07914, 40.643192 ] } }, -{ "type": "Feature", "properties": { "id": 200763, "name": "Saint Marks Pl/Fort Pl", "direction": "SE", "lat": 40.642338, "lon": -74.07844, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.07844, 40.642338 ] } }, -{ "type": "Feature", "properties": { "id": 200764, "name": "Hyatt St/Central Av", "direction": "NE", "lat": 40.64182, "lon": -74.07713, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07713, 40.64182 ] } }, -{ "type": "Feature", "properties": { "id": 200765, "name": "Slosson Terr/Bay St", "direction": "E", "lat": 40.63955, "lon": -74.07583, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.07583, 40.63955 ] } }, -{ "type": "Feature", "properties": { "id": 200779, "name": "Slosson Terr/Bay St", "direction": "W", "lat": 40.639633, "lon": -74.07614, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07614, 40.639633 ] } }, -{ "type": "Feature", "properties": { "id": 200780, "name": "Central Av/Hyatt St", "direction": "N", "lat": 40.64184, "lon": -74.07694, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.07694, 40.64184 ] } }, -{ "type": "Feature", "properties": { "id": 200781, "name": "Saint Marks Pl/Hyatt St", "direction": "NW", "lat": 40.641956, "lon": -74.07801, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07801, 40.641956 ] } }, -{ "type": "Feature", "properties": { "id": 200782, "name": "Saint Marks Pl/Wall St", "direction": "NW", "lat": 40.643684, "lon": -74.07933, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07933, 40.643684 ] } }, -{ "type": "Feature", "properties": { "id": 200783, "name": "Saint Marks Pl/Hamilton Av", "direction": "NW", "lat": 40.645092, "lon": -74.08044, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.08044, 40.645092 ] } }, -{ "type": "Feature", "properties": { "id": 200784, "name": "Saint Marks Pl/Nicholas St", "direction": "W", "lat": 40.64619, "lon": -74.0818, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.0818, 40.64619 ] } }, -{ "type": "Feature", "properties": { "id": 200785, "name": "Westervelt Av/Saint Marks Pl", "direction": "SE", "lat": 40.646393, "lon": -74.08655, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08655, 40.646393 ] } }, -{ "type": "Feature", "properties": { "id": 200786, "name": "Westervelt Av/Cleveland St", "direction": "SE", "lat": 40.644665, "lon": -74.08517, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.08517, 40.644665 ] } }, -{ "type": "Feature", "properties": { "id": 200787, "name": "Crescent Av/Westervelt Av", "direction": "W", "lat": 40.64335, "lon": -74.0845, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.0845, 40.64335 ] } }, -{ "type": "Feature", "properties": { "id": 200791, "name": "Jersey St/Brighton Av", "direction": "SE", "lat": 40.63815, "lon": -74.087555, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.087555, 40.63815 ] } }, -{ "type": "Feature", "properties": { "id": 200792, "name": "Brighton Av/Pine St", "direction": "SW", "lat": 40.63698, "lon": -74.088684, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.088684, 40.63698 ] } }, -{ "type": "Feature", "properties": { "id": 200793, "name": "Brighton Av/Webster Av", "direction": "SW", "lat": 40.635765, "lon": -74.08964, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.08964, 40.635765 ] } }, -{ "type": "Feature", "properties": { "id": 200795, "name": "Lafayette Av/Alden Pl", "direction": "N", "lat": 40.637577, "lon": -74.093666, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.093666, 40.637577 ] } }, -{ "type": "Feature", "properties": { "id": 200796, "name": "Lafayette Av/Prospect Av", "direction": "N", "lat": 40.63892, "lon": -74.09397, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.09397, 40.63892 ] } }, -{ "type": "Feature", "properties": { "id": 200797, "name": "Prospect Av/Pendelton Pl", "direction": "E", "lat": 40.639503, "lon": -74.0922, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.0922, 40.639503 ] } }, -{ "type": "Feature", "properties": { "id": 200798, "name": "Prospect Av/Franklin Av", "direction": "E", "lat": 40.639744, "lon": -74.091034, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.091034, 40.639744 ] } }, -{ "type": "Feature", "properties": { "id": 200820, "name": "Morningstar Rd/Forest Av", "direction": "N", "lat": 40.625732, "lon": -74.14855, "routes": "S89, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.14855, 40.625732 ] } }, -{ "type": "Feature", "properties": { "id": 200821, "name": "Morningstar Rd/Bowles Av", "direction": "N", "lat": 40.627754, "lon": -74.14799, "routes": "S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.14799, 40.627754 ] } }, -{ "type": "Feature", "properties": { "id": 200822, "name": "Morningstar Rd/St Adalbert Pl", "direction": "N", "lat": 40.62962, "lon": -74.147385, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.147385, 40.62962 ] } }, -{ "type": "Feature", "properties": { "id": 200823, "name": "Morningstar Rd/Walker St", "direction": "N", "lat": 40.63103, "lon": -74.146904, "routes": "S89, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.146904, 40.63103 ] } }, -{ "type": "Feature", "properties": { "id": 200836, "name": "Post Av/Decker Av", "direction": "SE", "lat": 40.632122, "lon": -74.132935, "routes": "S44, S57, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.132935, 40.632122 ] } }, -{ "type": "Feature", "properties": { "id": 200837, "name": "Post Av/Jewett Av", "direction": "SE", "lat": 40.630955, "lon": -74.130775, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.130775, 40.630955 ] } }, -{ "type": "Feature", "properties": { "id": 200838, "name": "Post Av/Greenleaf Av", "direction": "E", "lat": 40.631096, "lon": -74.12773, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.12773, 40.631096 ] } }, -{ "type": "Feature", "properties": { "id": 200839, "name": "Post Av/Clove Rd", "direction": "E", "lat": 40.631603, "lon": -74.12507, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.12507, 40.631603 ] } }, -{ "type": "Feature", "properties": { "id": 200840, "name": "Cary Av/Taylor St", "direction": "E", "lat": 40.631886, "lon": -74.12294, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.12294, 40.631886 ] } }, -{ "type": "Feature", "properties": { "id": 200841, "name": "Cary Av/Elizabeth St", "direction": "E", "lat": 40.632175, "lon": -74.12051, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.12051, 40.632175 ] } }, -{ "type": "Feature", "properties": { "id": 200842, "name": "Cary Av/Caroline St", "direction": "E", "lat": 40.632328, "lon": -74.11925, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11925, 40.632328 ] } }, -{ "type": "Feature", "properties": { "id": 200843, "name": "Cary Av/Broadway", "direction": "E", "lat": 40.63264, "lon": -74.11641, "routes": "S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.11641, 40.63264 ] } }, -{ "type": "Feature", "properties": { "id": 200844, "name": "Cary Av/North Burgher Av", "direction": "E", "lat": 40.632847, "lon": -74.11438, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11438, 40.632847 ] } }, -{ "type": "Feature", "properties": { "id": 200845, "name": "Cary Av/Bement Av", "direction": "E", "lat": 40.633186, "lon": -74.11204, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11204, 40.633186 ] } }, -{ "type": "Feature", "properties": { "id": 200846, "name": "Bement Av/Castleton Av", "direction": "N", "lat": 40.63463, "lon": -74.11213, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11213, 40.63463 ] } }, -{ "type": "Feature", "properties": { "id": 200847, "name": "Bement Av/Henderson Av", "direction": "N", "lat": 40.637398, "lon": -74.1127, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.1127, 40.637398 ] } }, -{ "type": "Feature", "properties": { "id": 200848, "name": "Henderson Av/Pelton Av", "direction": "E", "lat": 40.63766, "lon": -74.1111, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.1111, 40.63766 ] } }, -{ "type": "Feature", "properties": { "id": 200850, "name": "Henderson Av/Bard Av", "direction": "E", "lat": 40.638275, "lon": -74.107735, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.107735, 40.638275 ] } }, -{ "type": "Feature", "properties": { "id": 200853, "name": "Henderson Av/Devon Pl", "direction": "E", "lat": 40.639683, "lon": -74.10164, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.10164, 40.639683 ] } }, -{ "type": "Feature", "properties": { "id": 200855, "name": "Henderson Av/Lafayette Av", "direction": "E", "lat": 40.64065, "lon": -74.09518, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.09518, 40.64065 ] } }, -{ "type": "Feature", "properties": { "id": 200856, "name": "Lafayette Av/Cassidy Pl", "direction": "N", "lat": 40.64174, "lon": -74.094986, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.094986, 40.64174 ] } }, -{ "type": "Feature", "properties": { "id": 200857, "name": "Lafayette Av/Fillmore St", "direction": "N", "lat": 40.64314, "lon": -74.09541, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.09541, 40.64314 ] } }, -{ "type": "Feature", "properties": { "id": 200858, "name": "Lafayette Av/Richmond Terr", "direction": "N", "lat": 40.64446, "lon": -74.095795, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.095795, 40.64446 ] } }, -{ "type": "Feature", "properties": { "id": 200878, "name": "Lafayette Av/Richmond Terr", "direction": "S", "lat": 40.644493, "lon": -74.095955, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.095955, 40.644493 ] } }, -{ "type": "Feature", "properties": { "id": 200879, "name": "Lafayette Av/Fillmore St", "direction": "S", "lat": 40.643505, "lon": -74.09567, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.09567, 40.643505 ] } }, -{ "type": "Feature", "properties": { "id": 200880, "name": "Lafayette Av/Cassidy Pl", "direction": "S", "lat": 40.642303, "lon": -74.09531, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.09531, 40.642303 ] } }, -{ "type": "Feature", "properties": { "id": 200881, "name": "Lafayette Av/Henderson Av", "direction": "S", "lat": 40.641113, "lon": -74.09495, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.09495, 40.641113 ] } }, -{ "type": "Feature", "properties": { "id": 200883, "name": "Henderson Av/Devon Pl", "direction": "W", "lat": 40.639957, "lon": -74.10099, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.10099, 40.639957 ] } }, -{ "type": "Feature", "properties": { "id": 200884, "name": "Henderson Av/Westbury Av", "direction": "W", "lat": 40.6393, "lon": -74.10371, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.10371, 40.6393 ] } }, -{ "type": "Feature", "properties": { "id": 200886, "name": "Henderson Av/Bard Av", "direction": "W", "lat": 40.638763, "lon": -74.107025, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.107025, 40.638763 ] } }, -{ "type": "Feature", "properties": { "id": 200888, "name": "Henderson Av/Pelton Av", "direction": "W", "lat": 40.637833, "lon": -74.110466, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.110466, 40.637833 ] } }, -{ "type": "Feature", "properties": { "id": 200889, "name": "Henderson Av/Bement Av", "direction": "W", "lat": 40.637634, "lon": -74.112335, "routes": "S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.112335, 40.637634 ] } }, -{ "type": "Feature", "properties": { "id": 200890, "name": "Bement Av/Castleton Av", "direction": "S", "lat": 40.634888, "lon": -74.11242, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11242, 40.634888 ] } }, -{ "type": "Feature", "properties": { "id": 200891, "name": "Bement Av/Cary Av", "direction": "S", "lat": 40.63336, "lon": -74.11205, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11205, 40.63336 ] } }, -{ "type": "Feature", "properties": { "id": 200892, "name": "Cary Av/North Burgher Av", "direction": "W", "lat": 40.63306, "lon": -74.11405, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11405, 40.63306 ] } }, -{ "type": "Feature", "properties": { "id": 200893, "name": "Cary Av/Broadway", "direction": "W", "lat": 40.632687, "lon": -74.11692, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11692, 40.632687 ] } }, -{ "type": "Feature", "properties": { "id": 200894, "name": "Cary Av/Caroline St", "direction": "W", "lat": 40.632454, "lon": -74.11908, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.11908, 40.632454 ] } }, -{ "type": "Feature", "properties": { "id": 200895, "name": "Cary Av/Elizabeth St", "direction": "W", "lat": 40.632282, "lon": -74.12065, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.12065, 40.632282 ] } }, -{ "type": "Feature", "properties": { "id": 200896, "name": "Cary Av/Taylor St", "direction": "W", "lat": 40.63203, "lon": -74.1227, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.1227, 40.63203 ] } }, -{ "type": "Feature", "properties": { "id": 200897, "name": "Cary Av/Clove Rd", "direction": "W", "lat": 40.63178, "lon": -74.124794, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.124794, 40.63178 ] } }, -{ "type": "Feature", "properties": { "id": 200898, "name": "Post Av/Driprock St", "direction": "W", "lat": 40.631203, "lon": -74.12783, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.12783, 40.631203 ] } }, -{ "type": "Feature", "properties": { "id": 200899, "name": "Post Av/Jewett Av", "direction": "W", "lat": 40.630917, "lon": -74.13039, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.13039, 40.630917 ] } }, -{ "type": "Feature", "properties": { "id": 200900, "name": "Post Av/Decker Av", "direction": "NW", "lat": 40.632347, "lon": -74.133125, "routes": "S57, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.133125, 40.632347 ] } }, -{ "type": "Feature", "properties": { "id": 200902, "name": "Port Richmond Av/Albion Pl", "direction": "NE", "lat": 40.634464, "lon": -74.135635, "routes": "SIM3C, SIM3, S57, S59, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.135635, 40.634464 ] } }, -{ "type": "Feature", "properties": { "id": 200915, "name": "Morningstar Rd/David Pl", "direction": "S", "lat": 40.62959, "lon": -74.14752, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.14752, 40.62959 ] } }, -{ "type": "Feature", "properties": { "id": 200916, "name": "Morningstar Rd/Dixon Av", "direction": "S", "lat": 40.62841, "lon": -74.14789, "routes": "S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.14789, 40.62841 ] } }, -{ "type": "Feature", "properties": { "id": 200930, "name": "Richmond Av/Rivington Av", "direction": "S", "lat": 40.597, "lon": -74.16251, "routes": "SIM4, S44, S94, S59, SIM4C, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.16251, 40.597 ] } }, -{ "type": "Feature", "properties": { "id": 200966, "name": "Main St/Amboy Rd", "direction": "S", "lat": 40.508896, "lon": -74.24688, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24688, 40.508896 ] } }, -{ "type": "Feature", "properties": { "id": 200967, "name": "Main St/Hylan Blvd", "direction": "S", "lat": 40.50424, "lon": -74.2453, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.2453, 40.50424 ] } }, -{ "type": "Feature", "properties": { "id": 200968, "name": "Hylan Blvd/Brighton St", "direction": "E", "lat": 40.504402, "lon": -74.2436, "routes": "SIM2, S59, S78, SIM25, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.2436, 40.504402 ] } }, -{ "type": "Feature", "properties": { "id": 200969, "name": "Hylan Blvd/Yetman Av", "direction": "E", "lat": 40.50472, "lon": -74.24173, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.24173, 40.50472 ] } }, -{ "type": "Feature", "properties": { "id": 200970, "name": "Hylan Blvd/Sprague Av", "direction": "E", "lat": 40.505398, "lon": -74.23832, "routes": "SIM2, SIM26, S78, S59, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.23832, 40.505398 ] } }, -{ "type": "Feature", "properties": { "id": 200971, "name": "Hylan Blvd/Joline Av", "direction": "E", "lat": 40.506065, "lon": -74.23506, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.23506, 40.506065 ] } }, -{ "type": "Feature", "properties": { "id": 200972, "name": "Hylan Blvd/Bedell Av", "direction": "E", "lat": 40.506615, "lon": -74.23315, "routes": "SIM26, S78, SIM2, S59, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.23315, 40.506615 ] } }, -{ "type": "Feature", "properties": { "id": 200973, "name": "Hylan Blvd/Page Av", "direction": "E", "lat": 40.50772, "lon": -74.229576, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.229576, 40.50772 ] } }, -{ "type": "Feature", "properties": { "id": 200974, "name": "Hylan Blvd/Richard Av", "direction": "E", "lat": 40.50848, "lon": -74.22392, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.22392, 40.50848 ] } }, -{ "type": "Feature", "properties": { "id": 200977, "name": "Hylan Blvd/Sharrott Av", "direction": "NE", "lat": 40.511528, "lon": -74.21054, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.21054, 40.511528 ] } }, -{ "type": "Feature", "properties": { "id": 200978, "name": "Hylan Blvd/Woodvale Av", "direction": "NE", "lat": 40.514225, "lon": -74.20634, "routes": "SIM2, S78, SIM25, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.20634, 40.514225 ] } }, -{ "type": "Feature", "properties": { "id": 200979, "name": "Hylan Blvd/Bay View Av", "direction": "NE", "lat": 40.516457, "lon": -74.20287, "routes": "SIM25, SIM2, S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.20287, 40.516457 ] } }, -{ "type": "Feature", "properties": { "id": 200980, "name": "Hylan Blvd/Inez St", "direction": "NE", "lat": 40.51834, "lon": -74.19983, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.19983, 40.51834 ] } }, -{ "type": "Feature", "properties": { "id": 200981, "name": "Hylan Blvd/Seguine Av", "direction": "E", "lat": 40.51907, "lon": -74.19692, "routes": "S56, S59, SIM2, S55, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.19692, 40.51907 ] } }, -{ "type": "Feature", "properties": { "id": 200982, "name": "Hylan Blvd/Cornelia Av", "direction": "E", "lat": 40.522434, "lon": -74.19007, "routes": "S55, S78, S56, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.19007, 40.522434 ] } }, -{ "type": "Feature", "properties": { "id": 200983, "name": "Hylan Blvd/Luten Av", "direction": "E", "lat": 40.52324, "lon": -74.18783, "routes": "SIM2, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.18783, 40.52324 ] } }, -{ "type": "Feature", "properties": { "id": 200984, "name": "Hylan Blvd/Huguenot Av", "direction": "E", "lat": 40.523865, "lon": -74.18622, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.18622, 40.523865 ] } }, -{ "type": "Feature", "properties": { "id": 200985, "name": "Hylan Blvd/Arbutus Av", "direction": "E", "lat": 40.52611, "lon": -74.17993, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.17993, 40.52611 ] } }, -{ "type": "Feature", "properties": { "id": 200987, "name": "Hylan Blvd/Poillon Av", "direction": "E", "lat": 40.526623, "lon": -74.174385, "routes": "S59, SIM23, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.174385, 40.526623 ] } }, -{ "type": "Feature", "properties": { "id": 200988, "name": "Hylan Blvd/Dole St", "direction": "E", "lat": 40.52657, "lon": -74.17264, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.17264, 40.52657 ] } }, -{ "type": "Feature", "properties": { "id": 200990, "name": "Hylan Blvd/Lipsett Av", "direction": "E", "lat": 40.526474, "lon": -74.16863, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.16863, 40.526474 ] } }, -{ "type": "Feature", "properties": { "id": 200991, "name": "Hylan Blvd/Barclay Av", "direction": "NE", "lat": 40.526966, "lon": -74.16683, "routes": "S59, S78, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.16683, 40.526966 ] } }, -{ "type": "Feature", "properties": { "id": 200992, "name": "Hylan Blvd/Holdridge Av", "direction": "NE", "lat": 40.52795, "lon": -74.16447, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.16447, 40.52795 ] } }, -{ "type": "Feature", "properties": { "id": 200993, "name": "Hylan Blvd/Arden Av", "direction": "NE", "lat": 40.529427, "lon": -74.160934, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.160934, 40.529427 ] } }, -{ "type": "Feature", "properties": { "id": 200994, "name": "Hylan Blvd/Woods Of Arden Rd", "direction": "NE", "lat": 40.53067, "lon": -74.15812, "routes": "S59, SIM22, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.15812, 40.53067 ] } }, -{ "type": "Feature", "properties": { "id": 200995, "name": "Hylan Blvd/Hales Av", "direction": "NE", "lat": 40.532272, "lon": -74.15571, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.15571, 40.532272 ] } }, -{ "type": "Feature", "properties": { "id": 201003, "name": "Hylan Blvd/Nelson Av", "direction": "NE", "lat": 40.542587, "lon": -74.14557, "routes": "SIM7, S78, SIM10, SIM9, S79+, SIM6, SIM1C, SIM5, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.14557, 40.542587 ] } }, -{ "type": "Feature", "properties": { "id": 201005, "name": "Hylan Blvd/Hillside Terr", "direction": "NE", "lat": 40.545567, "lon": -74.14235, "routes": "SIM10, SIM7, SIM6, SIM9, SIM1, SIM5, SIM1C, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.14235, 40.545567 ] } }, -{ "type": "Feature", "properties": { "id": 201006, "name": "Hylan Blvd/Great Kills Rd", "direction": "NE", "lat": 40.54656, "lon": -74.14103, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.14103, 40.54656 ] } }, -{ "type": "Feature", "properties": { "id": 201007, "name": "Hylan Blvd/Fieldway Av", "direction": "NE", "lat": 40.548023, "lon": -74.13906, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.13906, 40.548023 ] } }, -{ "type": "Feature", "properties": { "id": 201008, "name": "Hylan Blvd/Keegans Ln", "direction": "NE", "lat": 40.549747, "lon": -74.1369, "routes": "SIM9, SIM6, SIM7, SIM1, SIM10, S78, SIM1C, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.1369, 40.549747 ] } }, -{ "type": "Feature", "properties": { "id": 201009, "name": "Hylan Blvd/Redgrave Av", "direction": "NE", "lat": 40.55137, "lon": -74.134186, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.134186, 40.55137 ] } }, -{ "type": "Feature", "properties": { "id": 201010, "name": "Hylan Blvd/Bay Terr", "direction": "NE", "lat": 40.552494, "lon": -74.132805, "routes": "SIM1, SIM1C, S79+, SIM9, SIM7, SIM5, S78, SIM6, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -74.132805, 40.552494 ] } }, -{ "type": "Feature", "properties": { "id": 201011, "name": "Hylan Blvd/Justin Av", "direction": "NE", "lat": 40.553497, "lon": -74.131546, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.131546, 40.553497 ] } }, -{ "type": "Feature", "properties": { "id": 201012, "name": "Hylan Blvd/Buffalo St", "direction": "NE", "lat": 40.55681, "lon": -74.12764, "routes": "SIM6, SIM5, SIM1, S78, S79+, SIM7, SIM10, SIM9, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -74.12764, 40.55681 ] } }, -{ "type": "Feature", "properties": { "id": 201013, "name": "Hylan Blvd/Chesterton Av", "direction": "NE", "lat": 40.55801, "lon": -74.126335, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.126335, 40.55801 ] } }, -{ "type": "Feature", "properties": { "id": 201014, "name": "Hylan Blvd/Montreal Av", "direction": "NE", "lat": 40.5591, "lon": -74.12515, "routes": "SIM1, SIM5, SIM10, SIM9, SIM1C, SIM6, S78, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.12515, 40.5591 ] } }, -{ "type": "Feature", "properties": { "id": 201016, "name": "Hylan Blvd/Guyon Av", "direction": "NE", "lat": 40.560574, "lon": -74.11967, "routes": "SIM7, SIM9, S78, SIM10, SIM5, SIM1, S79+, SIM1C, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.11967, 40.560574 ] } }, -{ "type": "Feature", "properties": { "id": 201017, "name": "Hylan Blvd/Oak Av", "direction": "NE", "lat": 40.562298, "lon": -74.11783, "routes": "S78, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.11783, 40.562298 ] } }, -{ "type": "Feature", "properties": { "id": 201020, "name": "Hylan Blvd/Ebbitts St", "direction": "NE", "lat": 40.566685, "lon": -74.11339, "routes": "SIM1C, SIM1, S78, SIM11, SIM7, SIM9, SIM10, S79+, SIM5, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.11339, 40.566685 ] } }, -{ "type": "Feature", "properties": { "id": 201022, "name": "Hylan Blvd/Jacques Av", "direction": "NE", "lat": 40.5709, "lon": -74.10912, "routes": "S79+, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.10912, 40.5709 ] } }, -{ "type": "Feature", "properties": { "id": 201023, "name": "Hylan Blvd/Burbank Av", "direction": "NE", "lat": 40.572258, "lon": -74.10779, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.10779, 40.572258 ] } }, -{ "type": "Feature", "properties": { "id": 201026, "name": "Hylan Blvd/Elmtree Av", "direction": "NE", "lat": 40.574722, "lon": -74.10531, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.10531, 40.574722 ] } }, -{ "type": "Feature", "properties": { "id": 201028, "name": "Hylan Blvd/Midland Av", "direction": "NE", "lat": 40.57825, "lon": -74.101944, "routes": "S79+, S78, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.101944, 40.57825 ] } }, -{ "type": "Feature", "properties": { "id": 201029, "name": "Hylan Blvd/Hamden Av", "direction": "NE", "lat": 40.579308, "lon": -74.10069, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.10069, 40.579308 ] } }, -{ "type": "Feature", "properties": { "id": 201030, "name": "Hylan Blvd/Adams Av", "direction": "NE", "lat": 40.580315, "lon": -74.09942, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.09942, 40.580315 ] } }, -{ "type": "Feature", "properties": { "id": 201031, "name": "Hylan Blvd/Jefferson Av", "direction": "NE", "lat": 40.581394, "lon": -74.09806, "routes": "S78, SIM1C, SIM10, SIM11, SIM7, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.09806, 40.581394 ] } }, -{ "type": "Feature", "properties": { "id": 201032, "name": "Hylan Blvd/Seaver Av", "direction": "NE", "lat": 40.583298, "lon": -74.095665, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.095665, 40.583298 ] } }, -{ "type": "Feature", "properties": { "id": 201033, "name": "Hylan Blvd/Naughton Av", "direction": "NE", "lat": 40.584095, "lon": -74.09478, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.09478, 40.584095 ] } }, -{ "type": "Feature", "properties": { "id": 201034, "name": "Hylan Blvd/Buel Av", "direction": "NE", "lat": 40.58541, "lon": -74.092995, "routes": "SIM11, SIM1C, SIM10, SIM7, S78, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.092995, 40.58541 ] } }, -{ "type": "Feature", "properties": { "id": 201036, "name": "Hylan Blvd/Cromwell Av", "direction": "NE", "lat": 40.587826, "lon": -74.090775, "routes": "SIM1C, SIM1, SIM11, S78, SIM10, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.090775, 40.587826 ] } }, -{ "type": "Feature", "properties": { "id": 201037, "name": "Hylan Blvd/Delaware Av", "direction": "NE", "lat": 40.58922, "lon": -74.089554, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.089554, 40.58922 ] } }, -{ "type": "Feature", "properties": { "id": 201038, "name": "Hylan Blvd/Evergreen Av", "direction": "NE", "lat": 40.59125, "lon": -74.08787, "routes": "SIM10, SIM11, SIM1, SIM1C, S78, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.08787, 40.59125 ] } }, -{ "type": "Feature", "properties": { "id": 201039, "name": "Hylan Blvd/Benton Av", "direction": "NE", "lat": 40.592464, "lon": -74.08714, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08714, 40.592464 ] } }, -{ "type": "Feature", "properties": { "id": 201042, "name": "Hylan Blvd/Parkinson Av", "direction": "E", "lat": 40.597908, "lon": -74.08344, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08344, 40.597908 ] } }, -{ "type": "Feature", "properties": { "id": 201049, "name": "Hylan Blvd/Fingerboard Rd", "direction": "NW", "lat": 40.60164, "lon": -74.07252, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07252, 40.60164 ] } }, -{ "type": "Feature", "properties": { "id": 201050, "name": "Hylan Blvd/Piedmont Av", "direction": "NW", "lat": 40.60275, "lon": -74.07412, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07412, 40.60275 ] } }, -{ "type": "Feature", "properties": { "id": 201052, "name": "Hylan Blvd/Narrows Rd South", "direction": "N", "lat": 40.605293, "lon": -74.07656, "routes": "S79+, SIM7, SIM1, SIM1C, SIM10, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -74.07656, 40.605293 ] } }, -{ "type": "Feature", "properties": { "id": 201053, "name": "Hylan Blvd/Donley Av", "direction": "N", "lat": 40.607605, "lon": -74.07621, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07621, 40.607605 ] } }, -{ "type": "Feature", "properties": { "id": 201054, "name": "Hylan Blvd/Reynolds St", "direction": "NE", "lat": 40.6098, "lon": -74.0743, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.0743, 40.6098 ] } }, -{ "type": "Feature", "properties": { "id": 201055, "name": "Hylan Blvd/Tompkins Av", "direction": "NE", "lat": 40.611465, "lon": -74.07125, "routes": "S78, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.07125, 40.611465 ] } }, -{ "type": "Feature", "properties": { "id": 201059, "name": "Tompkins Av/Townsend Av", "direction": "NW", "lat": 40.61842, "lon": -74.07543, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07543, 40.61842 ] } }, -{ "type": "Feature", "properties": { "id": 201060, "name": "Tompkins Av/Vanderbilt Av", "direction": "NW", "lat": 40.620476, "lon": -74.07715, "routes": "S78, SIM30, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07715, 40.620476 ] } }, -{ "type": "Feature", "properties": { "id": 201061, "name": "Tompkins Av/Hill St", "direction": "NW", "lat": 40.62232, "lon": -74.07834, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07834, 40.62232 ] } }, -{ "type": "Feature", "properties": { "id": 201062, "name": "Tompkins Av/Broad St", "direction": "NW", "lat": 40.624504, "lon": -74.07946, "routes": "S52, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07946, 40.624504 ] } }, -{ "type": "Feature", "properties": { "id": 201064, "name": "Van Duzer St/Beach St", "direction": "NE", "lat": 40.629185, "lon": -74.07943, "routes": "S74, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07943, 40.629185 ] } }, -{ "type": "Feature", "properties": { "id": 201066, "name": "Van Duzer St/Grant St", "direction": "NE", "lat": 40.633728, "lon": -74.07635, "routes": "S78, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.07635, 40.633728 ] } }, -{ "type": "Feature", "properties": { "id": 201077, "name": "Saint Pauls Av/Van Duzer St", "direction": "S", "lat": 40.637363, "lon": -74.0781, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.0781, 40.637363 ] } }, -{ "type": "Feature", "properties": { "id": 201078, "name": "Saint Pauls Av/Swan St", "direction": "S", "lat": 40.634613, "lon": -74.078606, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.078606, 40.634613 ] } }, -{ "type": "Feature", "properties": { "id": 201080, "name": "Saint Pauls Av/Cebra Av", "direction": "SW", "lat": 40.630413, "lon": -74.08135, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08135, 40.630413 ] } }, -{ "type": "Feature", "properties": { "id": 201081, "name": "Beach St/Van Duzer St", "direction": "SE", "lat": 40.628967, "lon": -74.0799, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.0799, 40.628967 ] } }, -{ "type": "Feature", "properties": { "id": 201082, "name": "Beach St/Union Pl", "direction": "SE", "lat": 40.62776, "lon": -74.07766, "routes": "S52, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07766, 40.62776 ] } }, -{ "type": "Feature", "properties": { "id": 201083, "name": "Canal St/Wright St", "direction": "SW", "lat": 40.626858, "lon": -74.07806, "routes": "S52, S74, SIM30, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07806, 40.626858 ] } }, -{ "type": "Feature", "properties": { "id": 201084, "name": "Tompkins Av/Broad St", "direction": "SE", "lat": 40.6243, "lon": -74.07953, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07953, 40.6243 ] } }, -{ "type": "Feature", "properties": { "id": 201085, "name": "Tompkins Av/Hill St", "direction": "SE", "lat": 40.621647, "lon": -74.07818, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07818, 40.621647 ] } }, -{ "type": "Feature", "properties": { "id": 201086, "name": "Tompkins Av/Vanderbilt Av", "direction": "SE", "lat": 40.62023, "lon": -74.07711, "routes": "S78, SIM30, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07711, 40.62023 ] } }, -{ "type": "Feature", "properties": { "id": 201087, "name": "Tompkins Av/Townsend Av", "direction": "SE", "lat": 40.61864, "lon": -74.07575, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07575, 40.61864 ] } }, -{ "type": "Feature", "properties": { "id": 201088, "name": "Tompkins Av/Chestnut Av", "direction": "SE", "lat": 40.615307, "lon": -74.07345, "routes": "S52, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07345, 40.615307 ] } }, -{ "type": "Feature", "properties": { "id": 201090, "name": "Hylan Blvd/Vaughn St", "direction": "SW", "lat": 40.611313, "lon": -74.07184, "routes": "S78, SIM30, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.07184, 40.611313 ] } }, -{ "type": "Feature", "properties": { "id": 201092, "name": "Hylan Blvd/Donley Av", "direction": "SW", "lat": 40.607693, "lon": -74.07701, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07701, 40.607693 ] } }, -{ "type": "Feature", "properties": { "id": 201093, "name": "Olga Pl/Pouch Terr", "direction": "NE", "lat": 40.603912, "lon": -74.07629, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07629, 40.603912 ] } }, -{ "type": "Feature", "properties": { "id": 201094, "name": "Hylan Blvd/Piedmont Av", "direction": "SE", "lat": 40.602734, "lon": -74.074455, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.074455, 40.602734 ] } }, -{ "type": "Feature", "properties": { "id": 201096, "name": "Hylan Blvd/West Fingerboard Rd", "direction": "S", "lat": 40.600204, "lon": -74.07216, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07216, 40.600204 ] } }, -{ "type": "Feature", "properties": { "id": 201102, "name": "Hylan Blvd/Parkinson Av", "direction": "W", "lat": 40.597824, "lon": -74.08416, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08416, 40.597824 ] } }, -{ "type": "Feature", "properties": { "id": 201104, "name": "Hylan Blvd/Reid Av", "direction": "S", "lat": 40.593834, "lon": -74.08686, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08686, 40.593834 ] } }, -{ "type": "Feature", "properties": { "id": 201105, "name": "Hylan Blvd/Cooper Av", "direction": "SW", "lat": 40.592514, "lon": -74.08741, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08741, 40.592514 ] } }, -{ "type": "Feature", "properties": { "id": 201106, "name": "Hylan Blvd/Burgher Av", "direction": "SW", "lat": 40.590454, "lon": -74.08871, "routes": "SIM1, SIM7, SIM11, SIM10, S78, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -74.08871, 40.590454 ] } }, -{ "type": "Feature", "properties": { "id": 201107, "name": "Hylan Blvd/Delaware Av", "direction": "SW", "lat": 40.588844, "lon": -74.09015, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.09015, 40.588844 ] } }, -{ "type": "Feature", "properties": { "id": 201108, "name": "Hylan Blvd/Cromwell Av", "direction": "SW", "lat": 40.587444, "lon": -74.09146, "routes": "SIM10, S78, SIM1C, SIM7, SIM11, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.09146, 40.587444 ] } }, -{ "type": "Feature", "properties": { "id": 201109, "name": "Hylan Blvd/Seaview Av", "direction": "SW", "lat": 40.58637, "lon": -74.09234, "routes": "S79+, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.09234, 40.58637 ] } }, -{ "type": "Feature", "properties": { "id": 201110, "name": "Hylan Blvd/Buel Av", "direction": "SW", "lat": 40.58508, "lon": -74.09379, "routes": "SIM7, SIM10, SIM1, SIM1C, S78, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -74.09379, 40.58508 ] } }, -{ "type": "Feature", "properties": { "id": 201112, "name": "Hylan Blvd/Seaver Av", "direction": "SW", "lat": 40.58292, "lon": -74.09651, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.09651, 40.58292 ] } }, -{ "type": "Feature", "properties": { "id": 201113, "name": "Hylan Blvd/Jefferson Av", "direction": "SW", "lat": 40.581093, "lon": -74.09881, "routes": "SIM10, S78, SIM11, SIM1C, SIM1, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.09881, 40.581093 ] } }, -{ "type": "Feature", "properties": { "id": 201114, "name": "Hylan Blvd/Adams Av", "direction": "SW", "lat": 40.580048, "lon": -74.10013, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.10013, 40.580048 ] } }, -{ "type": "Feature", "properties": { "id": 201115, "name": "Hylan Blvd/Hamden Av", "direction": "SW", "lat": 40.57899, "lon": -74.101456, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.101456, 40.57899 ] } }, -{ "type": "Feature", "properties": { "id": 201117, "name": "Hylan Blvd/Lincoln Av", "direction": "SW", "lat": 40.57629, "lon": -74.10409, "routes": "SIM1C, S78, SIM5, SIM10, SIM9, SIM11, SIM7, SIM6, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.10409, 40.57629 ] } }, -{ "type": "Feature", "properties": { "id": 201118, "name": "Hylan Blvd/Bancroft Av", "direction": "SW", "lat": 40.574207, "lon": -74.10617, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.10617, 40.574207 ] } }, -{ "type": "Feature", "properties": { "id": 201119, "name": "Hylan Blvd/Otis Av", "direction": "SW", "lat": 40.573063, "lon": -74.107315, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.107315, 40.573063 ] } }, -{ "type": "Feature", "properties": { "id": 201120, "name": "Hylan Blvd/Burbank Av", "direction": "SW", "lat": 40.571945, "lon": -74.108444, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.108444, 40.571945 ] } }, -{ "type": "Feature", "properties": { "id": 201121, "name": "Hylan Blvd/New Dorp Ln", "direction": "SW", "lat": 40.57029, "lon": -74.11012, "routes": "S79+, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.11012, 40.57029 ] } }, -{ "type": "Feature", "properties": { "id": 201122, "name": "Hylan Blvd/Rose Av", "direction": "SW", "lat": 40.56915, "lon": -74.11126, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.11126, 40.56915 ] } }, -{ "type": "Feature", "properties": { "id": 201123, "name": "Hylan Blvd/Sterling Av", "direction": "SW", "lat": 40.568027, "lon": -74.112404, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.112404, 40.568027 ] } }, -{ "type": "Feature", "properties": { "id": 201124, "name": "Hylan Blvd/Lindbergh Av", "direction": "SW", "lat": 40.566856, "lon": -74.11358, "routes": "SIM11, S78, SIM10, S79+, SIM1C, SIM6, SIM7, SIM1, SIM9, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.11358, 40.566856 ] } }, -{ "type": "Feature", "properties": { "id": 201125, "name": "Hylan Blvd/Cannon Blvd", "direction": "SW", "lat": 40.56517, "lon": -74.115265, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.115265, 40.56517 ] } }, -{ "type": "Feature", "properties": { "id": 201126, "name": "Hylan Blvd/Tysens Ln", "direction": "SW", "lat": 40.56374, "lon": -74.11677, "routes": "SIM10, S78, S79+, SIM1C, SIM9, SIM1, SIM6, S57, SIM7, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.11677, 40.56374 ] } }, -{ "type": "Feature", "properties": { "id": 201127, "name": "Hylan Blvd/Oak Av", "direction": "SW", "lat": 40.561954, "lon": -74.118546, "routes": "S78, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.118546, 40.561954 ] } }, -{ "type": "Feature", "properties": { "id": 201128, "name": "Hylan Blvd/Guyon Av", "direction": "SW", "lat": 40.560207, "lon": -74.12044, "routes": "SIM10, S79+, SIM9, SIM1C, SIM7, SIM5, SIM6, SIM1, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.12044, 40.560207 ] } }, -{ "type": "Feature", "properties": { "id": 201129, "name": "Hylan Blvd/Champlain Av", "direction": "W", "lat": 40.559685, "lon": -74.124306, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.124306, 40.559685 ] } }, -{ "type": "Feature", "properties": { "id": 201130, "name": "Hylan Blvd/Montreal Av", "direction": "SW", "lat": 40.558758, "lon": -74.125885, "routes": "SIM9, SIM7, SIM6, SIM1, SIM10, SIM5, S78, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -74.125885, 40.558758 ] } }, -{ "type": "Feature", "properties": { "id": 201131, "name": "Hylan Blvd/Currie Av", "direction": "SW", "lat": 40.55744, "lon": -74.127335, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.127335, 40.55744 ] } }, -{ "type": "Feature", "properties": { "id": 201132, "name": "Hylan Blvd/Buffalo St", "direction": "SW", "lat": 40.556396, "lon": -74.12847, "routes": "S78, S79+, SIM1C, SIM7, SIM9, SIM1, SIM5, SIM10, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.12847, 40.556396 ] } }, -{ "type": "Feature", "properties": { "id": 201133, "name": "Hylan Blvd/Bay Terr", "direction": "SW", "lat": 40.552258, "lon": -74.13347, "routes": "SIM7, SIM9, SIM1, SIM1C, SIM5, SIM6, S78, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -74.13347, 40.552258 ] } }, -{ "type": "Feature", "properties": { "id": 201134, "name": "Hylan Blvd/Bay Terr", "direction": "SW", "lat": 40.55218, "lon": -74.133575, "routes": "S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.133575, 40.55218 ] } }, -{ "type": "Feature", "properties": { "id": 201135, "name": "Hylan Blvd/Redgrave Av", "direction": "SW", "lat": 40.551178, "lon": -74.13498, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.13498, 40.551178 ] } }, -{ "type": "Feature", "properties": { "id": 201136, "name": "Hylan Blvd/Keegans Ln", "direction": "SW", "lat": 40.549435, "lon": -74.1378, "routes": "S78, SIM10, SIM5, SIM7, SIM9, SIM1C, SIM1, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.1378, 40.549435 ] } }, -{ "type": "Feature", "properties": { "id": 201137, "name": "Hylan Blvd/Fieldway Av", "direction": "SW", "lat": 40.547672, "lon": -74.13991, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.13991, 40.547672 ] } }, -{ "type": "Feature", "properties": { "id": 201138, "name": "Hylan Blvd/Great Kills Rd", "direction": "SW", "lat": 40.546295, "lon": -74.14177, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.14177, 40.546295 ] } }, -{ "type": "Feature", "properties": { "id": 201139, "name": "Hylan Blvd/Hillside Terr", "direction": "SW", "lat": 40.545288, "lon": -74.14308, "routes": "SIM5, SIM7, SIM1, SIM6, SIM1C, SIM9, SIM10, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.14308, 40.545288 ] } }, -{ "type": "Feature", "properties": { "id": 201141, "name": "Hylan Blvd/Nelson Av", "direction": "SW", "lat": 40.54223, "lon": -74.14625, "routes": "SIM10, SIM1, SIM1C, SIM7, SIM9, S79+, S54, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.14625, 40.54223 ] } }, -{ "type": "Feature", "properties": { "id": 201171, "name": "Hylan Blvd/Hales Av", "direction": "SW", "lat": 40.531933, "lon": -74.15636, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.15636, 40.531933 ] } }, -{ "type": "Feature", "properties": { "id": 201172, "name": "Hylan Blvd/Woods Of Arden Rd", "direction": "W", "lat": 40.53044, "lon": -74.15892, "routes": "S78, S59, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.15892, 40.53044 ] } }, -{ "type": "Feature", "properties": { "id": 201173, "name": "Hylan Blvd/Arden Av", "direction": "SW", "lat": 40.529266, "lon": -74.16173, "routes": "S59, S78, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.16173, 40.529266 ] } }, -{ "type": "Feature", "properties": { "id": 201174, "name": "Hylan Blvd/Holdridge Av", "direction": "SW", "lat": 40.527836, "lon": -74.1653, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.1653, 40.527836 ] } }, -{ "type": "Feature", "properties": { "id": 201175, "name": "Hylan Blvd/Barclay Av", "direction": "W", "lat": 40.52686, "lon": -74.16768, "routes": "S78, SIM23, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.16768, 40.52686 ] } }, -{ "type": "Feature", "properties": { "id": 201176, "name": "Hylan Blvd/Lipsett Av", "direction": "W", "lat": 40.526676, "lon": -74.16958, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.16958, 40.526676 ] } }, -{ "type": "Feature", "properties": { "id": 201177, "name": "Hylan Blvd/Lipsett Av", "direction": "W", "lat": 40.526768, "lon": -74.172585, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.172585, 40.526768 ] } }, -{ "type": "Feature", "properties": { "id": 201178, "name": "Hylan Blvd/Poillon Av", "direction": "W", "lat": 40.52685, "lon": -74.17523, "routes": "S59, S78, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.17523, 40.52685 ] } }, -{ "type": "Feature", "properties": { "id": 201179, "name": "Hylan Blvd/Wendy Dr", "direction": "W", "lat": 40.5268, "lon": -74.17826, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.17826, 40.5268 ] } }, -{ "type": "Feature", "properties": { "id": 201181, "name": "Hylan Blvd/Huguenot Av", "direction": "W", "lat": 40.523956, "lon": -74.1865, "routes": "S78, S59, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.1865, 40.523956 ] } }, -{ "type": "Feature", "properties": { "id": 201182, "name": "Hylan Blvd/Luten Av", "direction": "W", "lat": 40.52312, "lon": -74.18865, "routes": "S56, SIM2, S59, S78, S55" }, "geometry": { "type": "Point", "coordinates": [ -74.18865, 40.52312 ] } }, -{ "type": "Feature", "properties": { "id": 201183, "name": "Hylan Blvd/Cornelia Av", "direction": "W", "lat": 40.522526, "lon": -74.190445, "routes": "S56, S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.190445, 40.522526 ] } }, -{ "type": "Feature", "properties": { "id": 201184, "name": "Hylan Blvd/Seguine Av", "direction": "W", "lat": 40.519245, "lon": -74.19696, "routes": "S78, S55, SIM2, S56, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.19696, 40.519245 ] } }, -{ "type": "Feature", "properties": { "id": 201185, "name": "Hylan Blvd/Inez St", "direction": "SW", "lat": 40.518326, "lon": -74.20032, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.20032, 40.518326 ] } }, -{ "type": "Feature", "properties": { "id": 201186, "name": "Hylan Blvd/Bayview Av", "direction": "SW", "lat": 40.516804, "lon": -74.202705, "routes": "S78, S59, SIM2, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.202705, 40.516804 ] } }, -{ "type": "Feature", "properties": { "id": 201187, "name": "Hylan Blvd/Woodvale Av", "direction": "SW", "lat": 40.51428, "lon": -74.20659, "routes": "SIM2, SIM25, S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.20659, 40.51428 ] } }, -{ "type": "Feature", "properties": { "id": 201188, "name": "Hylan Blvd/Sharrott Av", "direction": "SW", "lat": 40.51189, "lon": -74.21027, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.21027, 40.51189 ] } }, -{ "type": "Feature", "properties": { "id": 201189, "name": "Hylan Blvd/Kenny Rd", "direction": "W", "lat": 40.50976, "lon": -74.217926, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.217926, 40.50976 ] } }, -{ "type": "Feature", "properties": { "id": 201190, "name": "Hylan Blvd/Cunningham Rd", "direction": "W", "lat": 40.509052, "lon": -74.22136, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.22136, 40.509052 ] } }, -{ "type": "Feature", "properties": { "id": 201191, "name": "Hylan Blvd/Richard Av", "direction": "W", "lat": 40.50872, "lon": -74.22358, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.22358, 40.50872 ] } }, -{ "type": "Feature", "properties": { "id": 201192, "name": "Hylan Blvd/Page Av", "direction": "W", "lat": 40.50787, "lon": -74.2299, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.2299, 40.50787 ] } }, -{ "type": "Feature", "properties": { "id": 201193, "name": "Hylan Blvd/Bedell Av", "direction": "W", "lat": 40.506863, "lon": -74.232956, "routes": "S59, S78, SIM25, SIM2, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.232956, 40.506863 ] } }, -{ "type": "Feature", "properties": { "id": 201194, "name": "Hylan Blvd/Joline Av", "direction": "W", "lat": 40.5063, "lon": -74.23478, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.23478, 40.5063 ] } }, -{ "type": "Feature", "properties": { "id": 201195, "name": "Hylan Blvd/Sprague Av", "direction": "W", "lat": 40.50565, "lon": -74.238014, "routes": "SIM26, SIM25, SIM2, S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.238014, 40.50565 ] } }, -{ "type": "Feature", "properties": { "id": 201196, "name": "Hylan Blvd/Brighton St", "direction": "W", "lat": 40.504578, "lon": -74.243355, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.243355, 40.504578 ] } }, -{ "type": "Feature", "properties": { "id": 201198, "name": "Hylan Blvd/Carteret St", "direction": "W", "lat": 40.503864, "lon": -74.24692, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24692, 40.503864 ] } }, -{ "type": "Feature", "properties": { "id": 201220, "name": "Fingerboard Rd/Hylan Blvd", "direction": "E", "lat": 40.60157, "lon": -74.07193, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07193, 40.60157 ] } }, -{ "type": "Feature", "properties": { "id": 201221, "name": "Fingerboard Rd/Cleveland Pl", "direction": "N", "lat": 40.603264, "lon": -74.06933, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06933, 40.603264 ] } }, -{ "type": "Feature", "properties": { "id": 201222, "name": "Fingerboard Rd/Lincoln Pl", "direction": "NE", "lat": 40.604736, "lon": -74.06878, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06878, 40.604736 ] } }, -{ "type": "Feature", "properties": { "id": 201223, "name": "Fingerboard Rd/Tompkins Av", "direction": "NE", "lat": 40.606907, "lon": -74.06717, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06717, 40.606907 ] } }, -{ "type": "Feature", "properties": { "id": 201224, "name": "Tompkins Av/Belair Rd", "direction": "NW", "lat": 40.609077, "lon": -74.069016, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.069016, 40.609077 ] } }, -{ "type": "Feature", "properties": { "id": 201225, "name": "Tompkins Av/Hylan Blvd", "direction": "NW", "lat": 40.611286, "lon": -74.070915, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.070915, 40.611286 ] } }, -{ "type": "Feature", "properties": { "id": 201235, "name": "Beach St/Van Duzer St", "direction": "NW", "lat": 40.62884, "lon": -74.07941, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07941, 40.62884 ] } }, -{ "type": "Feature", "properties": { "id": 201236, "name": "Cebra Av/Saint Pauls Av", "direction": "NW", "lat": 40.63062, "lon": -74.08163, "routes": "SIM30, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08163, 40.63062 ] } }, -{ "type": "Feature", "properties": { "id": 201237, "name": "Cebra Av/Ward Av", "direction": "NW", "lat": 40.632534, "lon": -74.08362, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08362, 40.632534 ] } }, -{ "type": "Feature", "properties": { "id": 201238, "name": "Cebra Av/Victory Blvd", "direction": "W", "lat": 40.633972, "lon": -74.08558, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08558, 40.633972 ] } }, -{ "type": "Feature", "properties": { "id": 201241, "name": "Jersey St/Scribner Av", "direction": "NW", "lat": 40.63779, "lon": -74.08697, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08697, 40.63779 ] } }, -{ "type": "Feature", "properties": { "id": 201256, "name": "Richmond Terr/Saint George Ferry", "direction": "NW", "lat": 40.643257, "lon": -74.0758, "routes": "S40, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.0758, 40.643257 ] } }, -{ "type": "Feature", "properties": { "id": 201269, "name": "Jersey St/Castleton Av", "direction": "SE", "lat": 40.63647, "lon": -74.08551, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08551, 40.63647 ] } }, -{ "type": "Feature", "properties": { "id": 201271, "name": "Cebra Av/Victory Blvd", "direction": "E", "lat": 40.63396, "lon": -74.08591, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08591, 40.63396 ] } }, -{ "type": "Feature", "properties": { "id": 201272, "name": "Cebra Av/Ward Av", "direction": "SE", "lat": 40.63201, "lon": -74.08327, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08327, 40.63201 ] } }, -{ "type": "Feature", "properties": { "id": 201273, "name": "Cebra Av/Saint Pauls Av", "direction": "SE", "lat": 40.63053, "lon": -74.08174, "routes": "S52, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.08174, 40.63053 ] } }, -{ "type": "Feature", "properties": { "id": 201282, "name": "Tompkins Av/Saint Marys Av", "direction": "SE", "lat": 40.61379, "lon": -74.0723, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.0723, 40.61379 ] } }, -{ "type": "Feature", "properties": { "id": 201283, "name": "Tompkins Av/Hylan Blvd", "direction": "SE", "lat": 40.61126, "lon": -74.07111, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07111, 40.61126 ] } }, -{ "type": "Feature", "properties": { "id": 201284, "name": "Tompkins Av/Belair Rd", "direction": "SE", "lat": 40.60944, "lon": -74.06948, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06948, 40.60944 ] } }, -{ "type": "Feature", "properties": { "id": 201285, "name": "Tompkins Av/Fingerboard Rd", "direction": "SE", "lat": 40.607014, "lon": -74.06729, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06729, 40.607014 ] } }, -{ "type": "Feature", "properties": { "id": 201286, "name": "Fingerboard Rd/Lincoln Pl", "direction": "S", "lat": 40.604893, "lon": -74.06895, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06895, 40.604893 ] } }, -{ "type": "Feature", "properties": { "id": 201288, "name": "Fingerboard Rd/Grasmere Dr", "direction": "SW", "lat": 40.60188, "lon": -74.07166, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07166, 40.60188 ] } }, -{ "type": "Feature", "properties": { "id": 201289, "name": "Sand Ln/Hylan Blvd", "direction": "S", "lat": 40.598236, "lon": -74.07209, "routes": "S52, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.07209, 40.598236 ] } }, -{ "type": "Feature", "properties": { "id": 201291, "name": "Mcclean Av/Linwood Av", "direction": "W", "lat": 40.59611, "lon": -74.072525, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.072525, 40.59611 ] } }, -{ "type": "Feature", "properties": { "id": 201294, "name": "Mcclean Av/Mallory Av", "direction": "W", "lat": 40.594284, "lon": -74.07817, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07817, 40.594284 ] } }, -{ "type": "Feature", "properties": { "id": 201315, "name": "Decker Av/Palmer Av", "direction": "SW", "lat": 40.6305, "lon": -74.134735, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.134735, 40.6305 ] } }, -{ "type": "Feature", "properties": { "id": 201316, "name": "Decker Av/Catherine St", "direction": "SW", "lat": 40.628544, "lon": -74.13709, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13709, 40.628544 ] } }, -{ "type": "Feature", "properties": { "id": 201317, "name": "Decker Av/Beekman St", "direction": "SW", "lat": 40.627544, "lon": -74.1382, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.1382, 40.627544 ] } }, -{ "type": "Feature", "properties": { "id": 201318, "name": "Decker Av/Hagaman Pl", "direction": "SW", "lat": 40.62592, "lon": -74.140175, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.140175, 40.62592 ] } }, -{ "type": "Feature", "properties": { "id": 201319, "name": "Decker Av/Forest Av", "direction": "SW", "lat": 40.624775, "lon": -74.14164, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14164, 40.624775 ] } }, -{ "type": "Feature", "properties": { "id": 201320, "name": "Willowbrook Rd/Forest Av", "direction": "S", "lat": 40.624683, "lon": -74.14414, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14414, 40.624683 ] } }, -{ "type": "Feature", "properties": { "id": 201321, "name": "Willowbrook Rd/Houston St", "direction": "S", "lat": 40.622635, "lon": -74.14441, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14441, 40.622635 ] } }, -{ "type": "Feature", "properties": { "id": 201322, "name": "Willowbrook Rd/Vedder Av", "direction": "S", "lat": 40.620785, "lon": -74.14465, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14465, 40.620785 ] } }, -{ "type": "Feature", "properties": { "id": 201323, "name": "Willowbrook Rd/Devens St", "direction": "S", "lat": 40.61918, "lon": -74.14494, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14494, 40.61918 ] } }, -{ "type": "Feature", "properties": { "id": 201324, "name": "Willowbrook Rd/Watchogue Rd", "direction": "S", "lat": 40.617054, "lon": -74.1452, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.1452, 40.617054 ] } }, -{ "type": "Feature", "properties": { "id": 201325, "name": "Watchogue Rd/Crystal Av", "direction": "E", "lat": 40.61649, "lon": -74.14205, "routes": "S57, SIM3C, SIM3, SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.14205, 40.61649 ] } }, -{ "type": "Feature", "properties": { "id": 201326, "name": "Watchogue Rd/Glascoe Av", "direction": "E", "lat": 40.616276, "lon": -74.140465, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.140465, 40.616276 ] } }, -{ "type": "Feature", "properties": { "id": 201356, "name": "Bradley Av/Purdy Av", "direction": "S", "lat": 40.61038, "lon": -74.13245, "routes": "S57, S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.13245, 40.61038 ] } }, -{ "type": "Feature", "properties": { "id": 201358, "name": "Bradley Av/Westwood Av", "direction": "S", "lat": 40.605698, "lon": -74.13193, "routes": "S61, S57, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.13193, 40.605698 ] } }, -{ "type": "Feature", "properties": { "id": 201359, "name": "Bradley Av/Willowbrook Rd", "direction": "S", "lat": 40.603798, "lon": -74.13164, "routes": "SIM31, S91, S61, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13164, 40.603798 ] } }, -{ "type": "Feature", "properties": { "id": 201360, "name": "Bradley Av/Harold St", "direction": "S", "lat": 40.601524, "lon": -74.13136, "routes": "S91, SIM31, S61, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13136, 40.601524 ] } }, -{ "type": "Feature", "properties": { "id": 201363, "name": "Brielle Av/Roanoke St", "direction": "SW", "lat": 40.59713, "lon": -74.133156, "routes": "S57, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.133156, 40.59713 ] } }, -{ "type": "Feature", "properties": { "id": 201366, "name": "Brielle Av/Rockland Av", "direction": "SW", "lat": 40.589134, "lon": -74.13872, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13872, 40.589134 ] } }, -{ "type": "Feature", "properties": { "id": 201369, "name": "Rockland Av/Meisner Av", "direction": "SE", "lat": 40.58263, "lon": -74.13037, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13037, 40.58263 ] } }, -{ "type": "Feature", "properties": { "id": 201370, "name": "Rockland Av/Nevada Av", "direction": "SE", "lat": 40.579636, "lon": -74.127525, "routes": "S57, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.127525, 40.579636 ] } }, -{ "type": "Feature", "properties": { "id": 201373, "name": "Richmond Rd/Summit Av", "direction": "E", "lat": 40.57577, "lon": -74.12421, "routes": "S57, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.12421, 40.57577 ] } }, -{ "type": "Feature", "properties": { "id": 201374, "name": "Richmond Rd/Rose Av", "direction": "NE", "lat": 40.575157, "lon": -74.12128, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12128, 40.575157 ] } }, -{ "type": "Feature", "properties": { "id": 201375, "name": "Rose Av/3 St", "direction": "SE", "lat": 40.57414, "lon": -74.11951, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.11951, 40.57414 ] } }, -{ "type": "Feature", "properties": { "id": 201378, "name": "New Dorp Ln/3 St", "direction": "NW", "lat": 40.57525, "lon": -74.1186, "routes": "S57, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.1186, 40.57525 ] } }, -{ "type": "Feature", "properties": { "id": 201380, "name": "Amboy Rd/Oakley Pl", "direction": "S", "lat": 40.57393, "lon": -74.12182, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12182, 40.57393 ] } }, -{ "type": "Feature", "properties": { "id": 201382, "name": "Amboy Rd/Belfast Av", "direction": "SW", "lat": 40.570244, "lon": -74.12311, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12311, 40.570244 ] } }, -{ "type": "Feature", "properties": { "id": 201383, "name": "Amboy Rd/Tysens Ln", "direction": "SW", "lat": 40.568764, "lon": -74.125305, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.125305, 40.568764 ] } }, -{ "type": "Feature", "properties": { "id": 201385, "name": "Guyon Av/Amboy Rd", "direction": "E", "lat": 40.565067, "lon": -74.12967, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12967, 40.565067 ] } }, -{ "type": "Feature", "properties": { "id": 201387, "name": "Guyon Av/South Railroad Av", "direction": "SE", "lat": 40.56445, "lon": -74.12691, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12691, 40.56445 ] } }, -{ "type": "Feature", "properties": { "id": 201388, "name": "Guyon Av/Tarring St", "direction": "SE", "lat": 40.5633, "lon": -74.12501, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12501, 40.5633 ] } }, -{ "type": "Feature", "properties": { "id": 201389, "name": "Guyon Av/Whitehall St", "direction": "SE", "lat": 40.56241, "lon": -74.12351, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12351, 40.56241 ] } }, -{ "type": "Feature", "properties": { "id": 201390, "name": "Guyon Av/Clawson St", "direction": "SE", "lat": 40.56108, "lon": -74.121315, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.121315, 40.56108 ] } }, -{ "type": "Feature", "properties": { "id": 201422, "name": "Victory Blvd/Jewett Av", "direction": "W", "lat": 40.612625, "lon": -74.1304, "routes": "SIM34, S93, S91, S61, S62, S66, SIM3, S92, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.1304, 40.612625 ] } }, -{ "type": "Feature", "properties": { "id": 201427, "name": "Watchogue Rd/Glascoe Av", "direction": "W", "lat": 40.616516, "lon": -74.1411, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.1411, 40.616516 ] } }, -{ "type": "Feature", "properties": { "id": 201428, "name": "Watchogue Rd/Crystal Av", "direction": "W", "lat": 40.61671, "lon": -74.14266, "routes": "SIM34, S57, SIM3C, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -74.14266, 40.61671 ] } }, -{ "type": "Feature", "properties": { "id": 201429, "name": "Watchogue Rd/Willowbrook Rd", "direction": "W", "lat": 40.61703, "lon": -74.14497, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14497, 40.61703 ] } }, -{ "type": "Feature", "properties": { "id": 201430, "name": "Willowbrook Rd/Leonard Av", "direction": "N", "lat": 40.619133, "lon": -74.14471, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14471, 40.619133 ] } }, -{ "type": "Feature", "properties": { "id": 201431, "name": "Willowbrook Rd/Lathrop Av", "direction": "N", "lat": 40.620277, "lon": -74.144554, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.144554, 40.620277 ] } }, -{ "type": "Feature", "properties": { "id": 201432, "name": "Willowbrook Rd/College Av", "direction": "N", "lat": 40.622814, "lon": -74.14421, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.14421, 40.622814 ] } }, -{ "type": "Feature", "properties": { "id": 201433, "name": "Willowbrook Rd/Forest Av", "direction": "N", "lat": 40.624863, "lon": -74.143936, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.143936, 40.624863 ] } }, -{ "type": "Feature", "properties": { "id": 201434, "name": "Decker Av/Forest Av", "direction": "NE", "lat": 40.62499, "lon": -74.141014, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.141014, 40.62499 ] } }, -{ "type": "Feature", "properties": { "id": 201435, "name": "Decker Av/Hagaman Pl", "direction": "NE", "lat": 40.626244, "lon": -74.13954, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13954, 40.626244 ] } }, -{ "type": "Feature", "properties": { "id": 201436, "name": "Decker Av/Barrett Av", "direction": "NE", "lat": 40.62743, "lon": -74.138054, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.138054, 40.62743 ] } }, -{ "type": "Feature", "properties": { "id": 201437, "name": "Decker Av/Catherine St", "direction": "NE", "lat": 40.628803, "lon": -74.13645, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13645, 40.628803 ] } }, -{ "type": "Feature", "properties": { "id": 201448, "name": "Guyan Av/South Railroad Av", "direction": "NW", "lat": 40.564697, "lon": -74.12705, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12705, 40.564697 ] } }, -{ "type": "Feature", "properties": { "id": 201450, "name": "Amboy Rd/East Broadway", "direction": "NE", "lat": 40.567913, "lon": -74.12642, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12642, 40.567913 ] } }, -{ "type": "Feature", "properties": { "id": 201451, "name": "Amboy Rd/Tysens Ln", "direction": "NE", "lat": 40.569088, "lon": -74.12455, "routes": "S57, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.12455, 40.569088 ] } }, -{ "type": "Feature", "properties": { "id": 201453, "name": "Amboy Rd/Beach Av", "direction": "N", "lat": 40.571636, "lon": -74.1214, "routes": "SIM15, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.1214, 40.571636 ] } }, -{ "type": "Feature", "properties": { "id": 201455, "name": "Rose Av/3 St", "direction": "SE", "lat": 40.57408, "lon": -74.119385, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.119385, 40.57408 ] } }, -{ "type": "Feature", "properties": { "id": 201459, "name": "Richmond Rd/New Dorp Ln", "direction": "NE", "lat": 40.575928, "lon": -74.11938, "routes": "S76, S74, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.11938, 40.575928 ] } }, -{ "type": "Feature", "properties": { "id": 201460, "name": "Richmond Rd/Beacon Av", "direction": "W", "lat": 40.575874, "lon": -74.12329, "routes": "S57, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.12329, 40.575874 ] } }, -{ "type": "Feature", "properties": { "id": 201462, "name": "Rockland Av/Saint George Rd", "direction": "N", "lat": 40.57747, "lon": -74.12716, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12716, 40.57747 ] } }, -{ "type": "Feature", "properties": { "id": 201463, "name": "Rockland Av/Nevada Av", "direction": "NW", "lat": 40.57971, "lon": -74.12739, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12739, 40.57971 ] } }, -{ "type": "Feature", "properties": { "id": 201464, "name": "Rockland Av/Florida Terr", "direction": "NW", "lat": 40.581074, "lon": -74.128456, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.128456, 40.581074 ] } }, -{ "type": "Feature", "properties": { "id": 201465, "name": "Rockland Av/Manor Rd", "direction": "NW", "lat": 40.58311, "lon": -74.13059, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13059, 40.58311 ] } }, -{ "type": "Feature", "properties": { "id": 201473, "name": "Bradley Av/Brielle Av", "direction": "N", "lat": 40.599083, "lon": -74.13078, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13078, 40.599083 ] } }, -{ "type": "Feature", "properties": { "id": 201474, "name": "Bradley Av/Portage Av", "direction": "N", "lat": 40.600254, "lon": -74.131004, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.131004, 40.600254 ] } }, -{ "type": "Feature", "properties": { "id": 201476, "name": "Bradley Av/Holden Blvd", "direction": "N", "lat": 40.60389, "lon": -74.131485, "routes": "S91, S57, S61, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.131485, 40.60389 ] } }, -{ "type": "Feature", "properties": { "id": 201477, "name": "Bradley Av/Westwood Av", "direction": "N", "lat": 40.605373, "lon": -74.13163, "routes": "S57, S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.13163, 40.605373 ] } }, -{ "type": "Feature", "properties": { "id": 201480, "name": "Bradley Av/Victory Blvd", "direction": "N", "lat": 40.61231, "lon": -74.1322, "routes": "S57, S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.1322, 40.61231 ] } }, -{ "type": "Feature", "properties": { "id": 201484, "name": "Forest Av/Harbor Plaza", "direction": "E", "lat": 40.626755, "lon": -74.16349, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.16349, 40.626755 ] } }, -{ "type": "Feature", "properties": { "id": 201485, "name": "Forest Av/Amity Pl", "direction": "E", "lat": 40.626465, "lon": -74.160774, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.160774, 40.626465 ] } }, -{ "type": "Feature", "properties": { "id": 201488, "name": "Forest Av/Eunice Pl", "direction": "E", "lat": 40.625435, "lon": -74.15241, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.15241, 40.625435 ] } }, -{ "type": "Feature", "properties": { "id": 201489, "name": "Forest Av/Sanders St", "direction": "E", "lat": 40.62528, "lon": -74.15094, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.15094, 40.62528 ] } }, -{ "type": "Feature", "properties": { "id": 201492, "name": "Forest Av/Crystal Av", "direction": "E", "lat": 40.62455, "lon": -74.14142, "routes": "SIM35, SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.14142, 40.62455 ] } }, -{ "type": "Feature", "properties": { "id": 201493, "name": "Forest Av/Target", "direction": "E", "lat": 40.62426, "lon": -74.13917, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.13917, 40.62426 ] } }, -{ "type": "Feature", "properties": { "id": 201494, "name": "Forest Av/Livermore Av", "direction": "E", "lat": 40.624172, "lon": -74.137474, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.137474, 40.624172 ] } }, -{ "type": "Feature", "properties": { "id": 201495, "name": "Forest Av/Burnside Av", "direction": "NE", "lat": 40.625423, "lon": -74.13513, "routes": "SIM30, SIM35, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.13513, 40.625423 ] } }, -{ "type": "Feature", "properties": { "id": 201496, "name": "Forest Av/Hamlin Pl", "direction": "E", "lat": 40.62631, "lon": -74.13301, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.13301, 40.62631 ] } }, -{ "type": "Feature", "properties": { "id": 201497, "name": "Forest Av/Jewett Av", "direction": "E", "lat": 40.626274, "lon": -74.13092, "routes": "S48, SIM35, SIM30, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.13092, 40.626274 ] } }, -{ "type": "Feature", "properties": { "id": 201498, "name": "Forest Av/Dubois Av", "direction": "E", "lat": 40.62659, "lon": -74.12838, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.12838, 40.62659 ] } }, -{ "type": "Feature", "properties": { "id": 201499, "name": "Forest Av/Manor Rd", "direction": "E", "lat": 40.627014, "lon": -74.125305, "routes": "S48, SIM30, S98, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.125305, 40.627014 ] } }, -{ "type": "Feature", "properties": { "id": 201500, "name": "Forest Av/Raymond Pl", "direction": "E", "lat": 40.627193, "lon": -74.12374, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.12374, 40.627193 ] } }, -{ "type": "Feature", "properties": { "id": 201501, "name": "Forest Av/Clove Rd", "direction": "E", "lat": 40.627728, "lon": -74.12129, "routes": "SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.12129, 40.627728 ] } }, -{ "type": "Feature", "properties": { "id": 201502, "name": "Forest Av/Elizabeth St", "direction": "E", "lat": 40.62858, "lon": -74.119156, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.119156, 40.62858 ] } }, -{ "type": "Feature", "properties": { "id": 201503, "name": "Forest Av/Broadway", "direction": "E", "lat": 40.628857, "lon": -74.11632, "routes": "S98, SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.11632, 40.628857 ] } }, -{ "type": "Feature", "properties": { "id": 201504, "name": "Forest Av/North Burgher Av", "direction": "E", "lat": 40.629204, "lon": -74.113464, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.113464, 40.629204 ] } }, -{ "type": "Feature", "properties": { "id": 201505, "name": "Forest Av/Bement Av", "direction": "E", "lat": 40.629677, "lon": -74.11089, "routes": "SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.11089, 40.629677 ] } }, -{ "type": "Feature", "properties": { "id": 201506, "name": "Forest Av/Pelton Av", "direction": "E", "lat": 40.630043, "lon": -74.10892, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.10892, 40.630043 ] } }, -{ "type": "Feature", "properties": { "id": 201508, "name": "Forest Av/Sharon Av", "direction": "E", "lat": 40.630898, "lon": -74.10234, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.10234, 40.630898 ] } }, -{ "type": "Feature", "properties": { "id": 201509, "name": "Forest Av/Hart Blvd", "direction": "E", "lat": 40.631203, "lon": -74.10012, "routes": "S98, SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.10012, 40.631203 ] } }, -{ "type": "Feature", "properties": { "id": 201510, "name": "Forest Av/University Pl", "direction": "E", "lat": 40.63135, "lon": -74.09911, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.09911, 40.63135 ] } }, -{ "type": "Feature", "properties": { "id": 201511, "name": "Forest Av/Silver Lake Park", "direction": "E", "lat": 40.63159, "lon": -74.09559, "routes": "S48, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.09559, 40.63159 ] } }, -{ "type": "Feature", "properties": { "id": 201512, "name": "Forest Av/Haven Esplanade", "direction": "E", "lat": 40.63109, "lon": -74.09293, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.09293, 40.63109 ] } }, -{ "type": "Feature", "properties": { "id": 201513, "name": "Forest Av/Victory Blvd", "direction": "E", "lat": 40.63041, "lon": -74.08939, "routes": "S98, SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.08939, 40.63041 ] } }, -{ "type": "Feature", "properties": { "id": 201525, "name": "South Av/Arlington Pl", "direction": "N", "lat": 40.636116, "lon": -74.1661, "routes": "SIM33C, S90, S40, SIM34, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.1661, 40.636116 ] } }, -{ "type": "Feature", "properties": { "id": 201542, "name": "Forest Av/Oxford Pl", "direction": "W", "lat": 40.630592, "lon": -74.08952, "routes": "S98, S48, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.08952, 40.630592 ] } }, -{ "type": "Feature", "properties": { "id": 201543, "name": "Forest Av/Haven Esplanade", "direction": "W", "lat": 40.631298, "lon": -74.09335, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.09335, 40.631298 ] } }, -{ "type": "Feature", "properties": { "id": 201545, "name": "Forest Av/Randall Av", "direction": "W", "lat": 40.63146, "lon": -74.09927, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.09927, 40.63146 ] } }, -{ "type": "Feature", "properties": { "id": 201546, "name": "Forest Av/Hart Blvd", "direction": "W", "lat": 40.631207, "lon": -74.10096, "routes": "S48, SIM30, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.10096, 40.631207 ] } }, -{ "type": "Feature", "properties": { "id": 201547, "name": "Forest Av/Walbrooke Av", "direction": "W", "lat": 40.63094, "lon": -74.10306, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.10306, 40.63094 ] } }, -{ "type": "Feature", "properties": { "id": 201548, "name": "Forest Av/Bard Av", "direction": "W", "lat": 40.630665, "lon": -74.10548, "routes": "SIM30, S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.10548, 40.630665 ] } }, -{ "type": "Feature", "properties": { "id": 201549, "name": "Forest Av/Pelton Av", "direction": "W", "lat": 40.630135, "lon": -74.1091, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.1091, 40.630135 ] } }, -{ "type": "Feature", "properties": { "id": 201550, "name": "Forest Av/Bement Av", "direction": "W", "lat": 40.629665, "lon": -74.11165, "routes": "SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.11165, 40.629665 ] } }, -{ "type": "Feature", "properties": { "id": 201551, "name": "Forest Av/North Burgher Av", "direction": "W", "lat": 40.629288, "lon": -74.11374, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.11374, 40.629288 ] } }, -{ "type": "Feature", "properties": { "id": 201552, "name": "Forest Av/Broadway", "direction": "W", "lat": 40.629044, "lon": -74.115974, "routes": "S48, S98, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.115974, 40.629044 ] } }, -{ "type": "Feature", "properties": { "id": 201553, "name": "Forest Av/Elizabeth St", "direction": "SW", "lat": 40.628838, "lon": -74.11886, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.11886, 40.628838 ] } }, -{ "type": "Feature", "properties": { "id": 201554, "name": "Forest Av/Clove Rd", "direction": "W", "lat": 40.627937, "lon": -74.12116, "routes": "S48, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.12116, 40.627937 ] } }, -{ "type": "Feature", "properties": { "id": 201556, "name": "Forest Av/Manor Rd", "direction": "W", "lat": 40.62717, "lon": -74.12501, "routes": "S98, S48, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.12501, 40.62717 ] } }, -{ "type": "Feature", "properties": { "id": 201557, "name": "Forest Av/Dubois Av", "direction": "W", "lat": 40.626743, "lon": -74.12818, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.12818, 40.626743 ] } }, -{ "type": "Feature", "properties": { "id": 201558, "name": "Forest Av/Jewett Av", "direction": "W", "lat": 40.626415, "lon": -74.13208, "routes": "S98, SIM30, S48, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.13208, 40.626415 ] } }, -{ "type": "Feature", "properties": { "id": 201560, "name": "Forest Av/Barrett Av", "direction": "SW", "lat": 40.625137, "lon": -74.1358, "routes": "S48, SIM30, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.1358, 40.625137 ] } }, -{ "type": "Feature", "properties": { "id": 201561, "name": "Forest Av/Marianne St", "direction": "W", "lat": 40.624294, "lon": -74.138145, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.138145, 40.624294 ] } }, -{ "type": "Feature", "properties": { "id": 201562, "name": "Forest Av/Decker Av", "direction": "W", "lat": 40.624638, "lon": -74.14115, "routes": "SIM35, SIM30, S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.14115, 40.624638 ] } }, -{ "type": "Feature", "properties": { "id": 201563, "name": "Forest Av/Willowbrook Rd", "direction": "W", "lat": 40.62506, "lon": -74.14448, "routes": "SIM3, S59, SIM3C, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.14448, 40.62506 ] } }, -{ "type": "Feature", "properties": { "id": 201566, "name": "Forest Av/Sanders St", "direction": "W", "lat": 40.625484, "lon": -74.15131, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.15131, 40.625484 ] } }, -{ "type": "Feature", "properties": { "id": 201567, "name": "Forest Av/Simonson Av", "direction": "W", "lat": 40.62572, "lon": -74.153496, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.153496, 40.62572 ] } }, -{ "type": "Feature", "properties": { "id": 201568, "name": "Forest Av/Van Pelt Av", "direction": "W", "lat": 40.626064, "lon": -74.156204, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.156204, 40.626064 ] } }, -{ "type": "Feature", "properties": { "id": 201569, "name": "Forest Av/Union Av", "direction": "W", "lat": 40.626358, "lon": -74.15823, "routes": "SIM34, SIM33, SIM33C, S48, S98, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.15823, 40.626358 ] } }, -{ "type": "Feature", "properties": { "id": 201570, "name": "Forest Av/Harbor Rd", "direction": "W", "lat": 40.62666, "lon": -74.16092, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.16092, 40.62666 ] } }, -{ "type": "Feature", "properties": { "id": 201571, "name": "Forest Av/Harbor Plaza", "direction": "W", "lat": 40.62703, "lon": -74.163826, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.163826, 40.62703 ] } }, -{ "type": "Feature", "properties": { "id": 201572, "name": "Forest Av/Grandview Av", "direction": "W", "lat": 40.62718, "lon": -74.165146, "routes": "SIM33, S98, S48, SIM34, SIM33C, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.165146, 40.62718 ] } }, -{ "type": "Feature", "properties": { "id": 201574, "name": "South Av/Netherland Av", "direction": "N", "lat": 40.629326, "lon": -74.166306, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.166306, 40.629326 ] } }, -{ "type": "Feature", "properties": { "id": 201576, "name": "South Av/Brabant St", "direction": "N", "lat": 40.632053, "lon": -74.16623, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.16623, 40.632053 ] } }, -{ "type": "Feature", "properties": { "id": 201593, "name": "Richmond Rd/Midland Av", "direction": "E", "lat": 40.58224, "lon": -74.109886, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.109886, 40.58224 ] } }, -{ "type": "Feature", "properties": { "id": 201595, "name": "Richmond Rd/Hull Av", "direction": "NE", "lat": 40.58556, "lon": -74.10559, "routes": "S76, S74, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.10559, 40.58556 ] } }, -{ "type": "Feature", "properties": { "id": 201596, "name": "Richmond Rd/Seaver Av", "direction": "NE", "lat": 40.58725, "lon": -74.10362, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.10362, 40.58725 ] } }, -{ "type": "Feature", "properties": { "id": 201597, "name": "Richmond Rd/Dongan Hills Av", "direction": "NE", "lat": 40.588966, "lon": -74.101746, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.101746, 40.588966 ] } }, -{ "type": "Feature", "properties": { "id": 201598, "name": "Richmond Rd/Seaview Av", "direction": "N", "lat": 40.59128, "lon": -74.10085, "routes": "SIM15, S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10085, 40.59128 ] } }, -{ "type": "Feature", "properties": { "id": 201600, "name": "Richmond Rd/Raritan Av", "direction": "NE", "lat": 40.594604, "lon": -74.09837, "routes": "S74, SIM15, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09837, 40.594604 ] } }, -{ "type": "Feature", "properties": { "id": 201601, "name": "Richmond Rd/Burgher Av", "direction": "NE", "lat": 40.595474, "lon": -74.096855, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.096855, 40.595474 ] } }, -{ "type": "Feature", "properties": { "id": 201602, "name": "Richmond Rd/Mark St", "direction": "E", "lat": 40.59632, "lon": -74.0945, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.0945, 40.59632 ] } }, -{ "type": "Feature", "properties": { "id": 201604, "name": "Richmond Rd/Hunton St", "direction": "NE", "lat": 40.59841, "lon": -74.0919, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.0919, 40.59841 ] } }, -{ "type": "Feature", "properties": { "id": 201605, "name": "Targee St/West Fingerboard Rd", "direction": "N", "lat": 40.60018, "lon": -74.09151, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.09151, 40.60018 ] } }, -{ "type": "Feature", "properties": { "id": 201606, "name": "Targee St/Rome Av", "direction": "N", "lat": 40.60201, "lon": -74.09131, "routes": "SIM15, S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.09131, 40.60201 ] } }, -{ "type": "Feature", "properties": { "id": 201608, "name": "Targee St/Baltic Av", "direction": "N", "lat": 40.605824, "lon": -74.09089, "routes": "S74, S76, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.09089, 40.605824 ] } }, -{ "type": "Feature", "properties": { "id": 201609, "name": "Targee St/Clove Rd", "direction": "NE", "lat": 40.607445, "lon": -74.08959, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08959, 40.607445 ] } }, -{ "type": "Feature", "properties": { "id": 201611, "name": "Targee St/Steuben St", "direction": "NE", "lat": 40.61091, "lon": -74.08606, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.08606, 40.61091 ] } }, -{ "type": "Feature", "properties": { "id": 201612, "name": "Targee St/Palma Dr", "direction": "N", "lat": 40.61236, "lon": -74.08506, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.08506, 40.61236 ] } }, -{ "type": "Feature", "properties": { "id": 201613, "name": "Targee St/Sobel Ct", "direction": "N", "lat": 40.613884, "lon": -74.0847, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.0847, 40.613884 ] } }, -{ "type": "Feature", "properties": { "id": 201615, "name": "Vanderbilt Av/Roff St", "direction": "NE", "lat": 40.616222, "lon": -74.083115, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.083115, 40.616222 ] } }, -{ "type": "Feature", "properties": { "id": 201616, "name": "Vanderbilt Av/Osgood Av", "direction": "NE", "lat": 40.61789, "lon": -74.080765, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.080765, 40.61789 ] } }, -{ "type": "Feature", "properties": { "id": 201617, "name": "Vanderbilt Av/Park Hill Ln", "direction": "NE", "lat": 40.618675, "lon": -74.079636, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.079636, 40.618675 ] } }, -{ "type": "Feature", "properties": { "id": 201623, "name": "Van Duzer St/Baltic St", "direction": "NE", "lat": 40.631798, "lon": -74.07732, "routes": "S78, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.07732, 40.631798 ] } }, -{ "type": "Feature", "properties": { "id": 201630, "name": "Hylan Blvd/Lincoln Av", "direction": "NE", "lat": 40.576817, "lon": -74.10332, "routes": "SIM6, SIM11, SIM1C, SIM7, SIM10, SIM5, S78, SIM9, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.10332, 40.576817 ] } }, -{ "type": "Feature", "properties": { "id": 201638, "name": "Bay St/Sands St", "direction": "S", "lat": 40.629337, "lon": -74.07669, "routes": "S76, S74, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07669, 40.629337 ] } }, -{ "type": "Feature", "properties": { "id": 201644, "name": "Vanderbilt Av/Pleasant Pl", "direction": "SW", "lat": 40.61877, "lon": -74.07975, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07975, 40.61877 ] } }, -{ "type": "Feature", "properties": { "id": 201645, "name": "Vanderbilt Av/Osgood Av", "direction": "SW", "lat": 40.61762, "lon": -74.08145, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.08145, 40.61762 ] } }, -{ "type": "Feature", "properties": { "id": 201646, "name": "Vanderbilt Av/Irving Pl", "direction": "SW", "lat": 40.61642, "lon": -74.08307, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.08307, 40.61642 ] } }, -{ "type": "Feature", "properties": { "id": 201647, "name": "Vanderbilt Av/Hillside Av", "direction": "SW", "lat": 40.61498, "lon": -74.08514, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.08514, 40.61498 ] } }, -{ "type": "Feature", "properties": { "id": 201648, "name": "Vanderbilt Av/Van Duzer St", "direction": "SW", "lat": 40.61359, "lon": -74.08692, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.08692, 40.61359 ] } }, -{ "type": "Feature", "properties": { "id": 201649, "name": "Richmond Rd/Longview Rd", "direction": "SW", "lat": 40.611794, "lon": -74.08835, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.08835, 40.611794 ] } }, -{ "type": "Feature", "properties": { "id": 201650, "name": "Richmond Rd/Narrows Rd South", "direction": "SW", "lat": 40.60889, "lon": -74.09078, "routes": "S74, S84, S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.09078, 40.60889 ] } }, -{ "type": "Feature", "properties": { "id": 201651, "name": "Richmond Rd/Douglas Rd", "direction": "SW", "lat": 40.607185, "lon": -74.092384, "routes": "S74, S76, S86, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.092384, 40.607185 ] } }, -{ "type": "Feature", "properties": { "id": 201653, "name": "Richmond Rd/Spring St", "direction": "S", "lat": 40.602936, "lon": -74.092735, "routes": "S74, S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.092735, 40.602936 ] } }, -{ "type": "Feature", "properties": { "id": 201654, "name": "Richmond Rd/Rome Av", "direction": "S", "lat": 40.601555, "lon": -74.09294, "routes": "S74, SIM15, S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09294, 40.601555 ] } }, -{ "type": "Feature", "properties": { "id": 201655, "name": "Richmond Rd/Targee St", "direction": "SE", "lat": 40.599705, "lon": -74.09204, "routes": "S74, S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09204, 40.599705 ] } }, -{ "type": "Feature", "properties": { "id": 201656, "name": "Richmond Rd/Hunton St", "direction": "SW", "lat": 40.598305, "lon": -74.0922, "routes": "S86, S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.0922, 40.598305 ] } }, -{ "type": "Feature", "properties": { "id": 201658, "name": "Richmond Rd/Mark St", "direction": "W", "lat": 40.596256, "lon": -74.09524, "routes": "S74, S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09524, 40.596256 ] } }, -{ "type": "Feature", "properties": { "id": 201659, "name": "Richmond Rd/Burgher Av", "direction": "SW", "lat": 40.595222, "lon": -74.09761, "routes": "S86, S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.09761, 40.595222 ] } }, -{ "type": "Feature", "properties": { "id": 201662, "name": "Richmond Rd/Four Corners Rd", "direction": "S", "lat": 40.59058, "lon": -74.10093, "routes": "S86, S76, SIM15, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.10093, 40.59058 ] } }, -{ "type": "Feature", "properties": { "id": 201663, "name": "Richmond Rd/Buel Av", "direction": "SW", "lat": 40.58909, "lon": -74.10184, "routes": "S74, S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10184, 40.58909 ] } }, -{ "type": "Feature", "properties": { "id": 201664, "name": "Richmond Rd/Strobe Av", "direction": "SW", "lat": 40.587185, "lon": -74.1039, "routes": "S76, S74, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.1039, 40.587185 ] } }, -{ "type": "Feature", "properties": { "id": 201665, "name": "Richmond Rd/Hull Av", "direction": "SW", "lat": 40.585167, "lon": -74.10628, "routes": "S76, S86, SIM15, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.10628, 40.585167 ] } }, -{ "type": "Feature", "properties": { "id": 201680, "name": "Midland Av/Father Capodanno Blvd", "direction": "SE", "lat": 40.570824, "lon": -74.09053, "routes": "SIM9, SIM6, SIM5, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.09053, 40.570824 ] } }, -{ "type": "Feature", "properties": { "id": 201684, "name": "Brielle Av/Bradley Av", "direction": "E", "lat": 40.59859, "lon": -74.13035, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13035, 40.59859 ] } }, -{ "type": "Feature", "properties": { "id": 201685, "name": "Brielle Av/Livingston Av", "direction": "E", "lat": 40.598343, "lon": -74.12815, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12815, 40.598343 ] } }, -{ "type": "Feature", "properties": { "id": 201686, "name": "Brielle Av/Gansevoort Blvd", "direction": "E", "lat": 40.598076, "lon": -74.12559, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12559, 40.598076 ] } }, -{ "type": "Feature", "properties": { "id": 201687, "name": "Brielle Av/Manor Rd", "direction": "NE", "lat": 40.59899, "lon": -74.123276, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.123276, 40.59899 ] } }, -{ "type": "Feature", "properties": { "id": 201688, "name": "Manor Rd/Ocean Terr", "direction": "N", "lat": 40.602055, "lon": -74.12055, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12055, 40.602055 ] } }, -{ "type": "Feature", "properties": { "id": 201689, "name": "Manor Rd/Croak Av", "direction": "N", "lat": 40.6033, "lon": -74.12057, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12057, 40.6033 ] } }, -{ "type": "Feature", "properties": { "id": 201690, "name": "Manor Rd/Tillman St", "direction": "N", "lat": 40.60483, "lon": -74.12074, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12074, 40.60483 ] } }, -{ "type": "Feature", "properties": { "id": 201691, "name": "Manor Rd/Westwood Av", "direction": "N", "lat": 40.60667, "lon": -74.12084, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12084, 40.60667 ] } }, -{ "type": "Feature", "properties": { "id": 201692, "name": "Manor Rd/Schmidts Ln", "direction": "N", "lat": 40.60871, "lon": -74.121056, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.121056, 40.60871 ] } }, -{ "type": "Feature", "properties": { "id": 201693, "name": "Manor Rd/North Gannon Av", "direction": "NW", "lat": 40.610497, "lon": -74.12139, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12139, 40.610497 ] } }, -{ "type": "Feature", "properties": { "id": 201694, "name": "Manor Rd/Victory Blvd", "direction": "N", "lat": 40.61295, "lon": -74.12245, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12245, 40.61295 ] } }, -{ "type": "Feature", "properties": { "id": 201695, "name": "Manor Rd/Dongan Av", "direction": "N", "lat": 40.614544, "lon": -74.12252, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12252, 40.614544 ] } }, -{ "type": "Feature", "properties": { "id": 201696, "name": "Manor Rd/Sturges St", "direction": "NW", "lat": 40.61588, "lon": -74.1231, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.1231, 40.61588 ] } }, -{ "type": "Feature", "properties": { "id": 201697, "name": "Manor Rd/Rice Av", "direction": "N", "lat": 40.61727, "lon": -74.123505, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.123505, 40.61727 ] } }, -{ "type": "Feature", "properties": { "id": 201698, "name": "Manor Rd/Drake Av", "direction": "N", "lat": 40.619038, "lon": -74.12326, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12326, 40.619038 ] } }, -{ "type": "Feature", "properties": { "id": 201699, "name": "Manor Rd/Martling Av", "direction": "NW", "lat": 40.621292, "lon": -74.12375, "routes": "SIM35, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12375, 40.621292 ] } }, -{ "type": "Feature", "properties": { "id": 201700, "name": "Manor Rd/Kingsley Av", "direction": "N", "lat": 40.622566, "lon": -74.1243, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.1243, 40.622566 ] } }, -{ "type": "Feature", "properties": { "id": 201701, "name": "Manor Rd/Curtis Av", "direction": "N", "lat": 40.624638, "lon": -74.12468, "routes": "SIM35, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12468, 40.624638 ] } }, -{ "type": "Feature", "properties": { "id": 201711, "name": "Broadway/Henderson Av", "direction": "N", "lat": 40.63686, "lon": -74.11744, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11744, 40.63686 ] } }, -{ "type": "Feature", "properties": { "id": 201712, "name": "Broadway/Wayne St", "direction": "N", "lat": 40.63795, "lon": -74.11754, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11754, 40.63795 ] } }, -{ "type": "Feature", "properties": { "id": 201713, "name": "Wayne St/North Burgher Av", "direction": "E", "lat": 40.638245, "lon": -74.11528, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11528, 40.638245 ] } }, -{ "type": "Feature", "properties": { "id": 201719, "name": "Broadway/Wayne St", "direction": "S", "lat": 40.638157, "lon": -74.11776, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11776, 40.638157 ] } }, -{ "type": "Feature", "properties": { "id": 201720, "name": "Broadway/Henderson Av", "direction": "S", "lat": 40.636654, "lon": -74.1177, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.1177, 40.636654 ] } }, -{ "type": "Feature", "properties": { "id": 201721, "name": "Broadway/Castleton Av", "direction": "S", "lat": 40.634712, "lon": -74.11736, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11736, 40.634712 ] } }, -{ "type": "Feature", "properties": { "id": 201730, "name": "Manor Rd/Ravenhurst Av", "direction": "S", "lat": 40.623764, "lon": -74.124794, "routes": "S54, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.124794, 40.623764 ] } }, -{ "type": "Feature", "properties": { "id": 201731, "name": "Manor Rd/Kingsley Av", "direction": "SE", "lat": 40.62201, "lon": -74.12429, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12429, 40.62201 ] } }, -{ "type": "Feature", "properties": { "id": 201732, "name": "Manor Rd/Maine Av", "direction": "S", "lat": 40.620678, "lon": -74.12371, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12371, 40.620678 ] } }, -{ "type": "Feature", "properties": { "id": 201733, "name": "Manor Rd/Constant Av", "direction": "S", "lat": 40.619297, "lon": -74.12351, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12351, 40.619297 ] } }, -{ "type": "Feature", "properties": { "id": 201734, "name": "Manor Rd/Joan Pl", "direction": "S", "lat": 40.617558, "lon": -74.12373, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12373, 40.617558 ] } }, -{ "type": "Feature", "properties": { "id": 201735, "name": "Manor Rd/Crowell Av", "direction": "SE", "lat": 40.616077, "lon": -74.12346, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12346, 40.616077 ] } }, -{ "type": "Feature", "properties": { "id": 201736, "name": "Manor Rd/Dongan Av", "direction": "S", "lat": 40.614655, "lon": -74.12278, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12278, 40.614655 ] } }, -{ "type": "Feature", "properties": { "id": 201737, "name": "Manor Rd/Victory Blvd", "direction": "S", "lat": 40.6132, "lon": -74.12272, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12272, 40.6132 ] } }, -{ "type": "Feature", "properties": { "id": 201738, "name": "Manor Rd/North Gannon Av", "direction": "S", "lat": 40.609993, "lon": -74.121414, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.121414, 40.609993 ] } }, -{ "type": "Feature", "properties": { "id": 201739, "name": "Manor Rd/Schmidts Ln", "direction": "S", "lat": 40.60853, "lon": -74.12121, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12121, 40.60853 ] } }, -{ "type": "Feature", "properties": { "id": 201740, "name": "Manor Rd/Westwood Av", "direction": "S", "lat": 40.606464, "lon": -74.12101, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12101, 40.606464 ] } }, -{ "type": "Feature", "properties": { "id": 201741, "name": "Manor Rd/Holden Blvd", "direction": "S", "lat": 40.604286, "lon": -74.12094, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12094, 40.604286 ] } }, -{ "type": "Feature", "properties": { "id": 201742, "name": "Manor Rd/Queen St", "direction": "S", "lat": 40.60271, "lon": -74.12083, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12083, 40.60271 ] } }, -{ "type": "Feature", "properties": { "id": 201743, "name": "Manor Rd/Harold St", "direction": "S", "lat": 40.601574, "lon": -74.12076, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12076, 40.601574 ] } }, -{ "type": "Feature", "properties": { "id": 201744, "name": "Brielle Av/Gower St", "direction": "SW", "lat": 40.599335, "lon": -74.12308, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12308, 40.599335 ] } }, -{ "type": "Feature", "properties": { "id": 201745, "name": "Brielle Av/Gansevoort Blvd", "direction": "W", "lat": 40.598213, "lon": -74.12567, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12567, 40.598213 ] } }, -{ "type": "Feature", "properties": { "id": 201746, "name": "Brielle Av/Livingston Av", "direction": "W", "lat": 40.598488, "lon": -74.12787, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12787, 40.598488 ] } }, -{ "type": "Feature", "properties": { "id": 201747, "name": "Brielle Av/Bradley Av", "direction": "W", "lat": 40.598698, "lon": -74.130554, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.130554, 40.598698 ] } }, -{ "type": "Feature", "properties": { "id": 201754, "name": "Guyon Av/Clawson St", "direction": "NW", "lat": 40.561295, "lon": -74.121414, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.121414, 40.561295 ] } }, -{ "type": "Feature", "properties": { "id": 201755, "name": "Guyon Av/Elmira St", "direction": "NW", "lat": 40.562416, "lon": -74.12324, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12324, 40.562416 ] } }, -{ "type": "Feature", "properties": { "id": 201756, "name": "Guyon Av/Tarring St", "direction": "NW", "lat": 40.563763, "lon": -74.12546, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12546, 40.563763 ] } }, -{ "type": "Feature", "properties": { "id": 201758, "name": "Amboy Rd/Guyon Av", "direction": "NE", "lat": 40.565453, "lon": -74.12978, "routes": "S57, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.12978, 40.565453 ] } }, -{ "type": "Feature", "properties": { "id": 201933, "name": "Victory Blvd/Feldmeyers Ln", "direction": "NE", "lat": 40.588543, "lon": -74.19586, "routes": "SIM32, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.19586, 40.588543 ] } }, -{ "type": "Feature", "properties": { "id": 201934, "name": "Victory Blvd/Alberta Av", "direction": "NE", "lat": 40.59088, "lon": -74.19196, "routes": "S62, SIM32, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.19196, 40.59088 ] } }, -{ "type": "Feature", "properties": { "id": 201936, "name": "Victory Blvd/Burke Av", "direction": "NE", "lat": 40.59314, "lon": -74.18811, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.18811, 40.59314 ] } }, -{ "type": "Feature", "properties": { "id": 201940, "name": "Victory Blvd/Baron Blvd", "direction": "NE", "lat": 40.59727, "lon": -74.181625, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.181625, 40.59727 ] } }, -{ "type": "Feature", "properties": { "id": 201942, "name": "Victory Blvd/Travis Av", "direction": "NE", "lat": 40.59962, "lon": -74.17837, "routes": "SIM32, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.17837, 40.59962 ] } }, -{ "type": "Feature", "properties": { "id": 201943, "name": "Victory Blvd/Travis Av Fun Station", "direction": "NE", "lat": 40.60082, "lon": -74.17673, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.17673, 40.60082 ] } }, -{ "type": "Feature", "properties": { "id": 201944, "name": "Victory Blvd/Signs Rd", "direction": "NE", "lat": 40.60367, "lon": -74.17305, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.17305, 40.60367 ] } }, -{ "type": "Feature", "properties": { "id": 201946, "name": "Victory Blvd/Lisa Pl", "direction": "E", "lat": 40.606133, "lon": -74.167984, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.167984, 40.606133 ] } }, -{ "type": "Feature", "properties": { "id": 201947, "name": "Victory Blvd/Arlene St", "direction": "E", "lat": 40.60676, "lon": -74.165474, "routes": "SIM32, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.165474, 40.60676 ] } }, -{ "type": "Feature", "properties": { "id": 201948, "name": "Victory Blvd/Richmond Av (Far)", "direction": "E", "lat": 40.607246, "lon": -74.16121, "routes": "S92, SIM32, S62, SIM33C, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.16121, 40.607246 ] } }, -{ "type": "Feature", "properties": { "id": 201949, "name": "Victory Blvd/Goller Pl", "direction": "E", "lat": 40.60762, "lon": -74.15905, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.15905, 40.60762 ] } }, -{ "type": "Feature", "properties": { "id": 201950, "name": "Victory Blvd/Morani St", "direction": "E", "lat": 40.608078, "lon": -74.15684, "routes": "S62, S92, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.15684, 40.608078 ] } }, -{ "type": "Feature", "properties": { "id": 201951, "name": "Victory Blvd/Willowbrook Pk", "direction": "E", "lat": 40.608685, "lon": -74.15377, "routes": "SIM32, SIM33C, SIM33, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.15377, 40.608685 ] } }, -{ "type": "Feature", "properties": { "id": 201959, "name": "Victory Blvd/North Gannon Av", "direction": "E", "lat": 40.609505, "lon": -74.149666, "routes": "S93, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.149666, 40.609505 ] } }, -{ "type": "Feature", "properties": { "id": 201960, "name": "Victory Blvd/Neptune Pl", "direction": "E", "lat": 40.609783, "lon": -74.14823, "routes": "S62, S92, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.14823, 40.609783 ] } }, -{ "type": "Feature", "properties": { "id": 201961, "name": "Victory Blvd/Willowbrook Rd", "direction": "E", "lat": 40.610188, "lon": -74.14648, "routes": "S62, S92, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.14648, 40.610188 ] } }, -{ "type": "Feature", "properties": { "id": 201962, "name": "Victory Blvd/Decatur Av", "direction": "E", "lat": 40.610565, "lon": -74.14459, "routes": "S62, S93, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.14459, 40.610565 ] } }, -{ "type": "Feature", "properties": { "id": 201964, "name": "Victory Blvd/Martin Av", "direction": "E", "lat": 40.61151, "lon": -74.139824, "routes": "S62, S93, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.139824, 40.61151 ] } }, -{ "type": "Feature", "properties": { "id": 201965, "name": "Victory Blvd/Sheraden Av", "direction": "E", "lat": 40.61184, "lon": -74.13809, "routes": "S62, S93, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.13809, 40.61184 ] } }, -{ "type": "Feature", "properties": { "id": 202022, "name": "Victory Blvd/Mann Av", "direction": "W", "lat": 40.61244, "lon": -74.13313, "routes": "S62, S93, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.13313, 40.61244 ] } }, -{ "type": "Feature", "properties": { "id": 202025, "name": "Victory Blvd/Oconnor Av", "direction": "W", "lat": 40.611996, "lon": -74.13803, "routes": "S62, S92, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.13803, 40.611996 ] } }, -{ "type": "Feature", "properties": { "id": 202026, "name": "Victory Blvd/Livermore Av", "direction": "W", "lat": 40.611473, "lon": -74.14062, "routes": "S62, S93, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.14062, 40.611473 ] } }, -{ "type": "Feature", "properties": { "id": 202027, "name": "Victory Blvd/Crystal Av", "direction": "W", "lat": 40.61092, "lon": -74.143456, "routes": "S93, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.143456, 40.61092 ] } }, -{ "type": "Feature", "properties": { "id": 202028, "name": "Victory Blvd/Bryson Av", "direction": "W", "lat": 40.610516, "lon": -74.145454, "routes": "S92, S93, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.145454, 40.610516 ] } }, -{ "type": "Feature", "properties": { "id": 202029, "name": "Victory Blvd/Willowbrook Rd", "direction": "W", "lat": 40.610153, "lon": -74.147415, "routes": "S92, S93, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.147415, 40.610153 ] } }, -{ "type": "Feature", "properties": { "id": 202039, "name": "Victory Blvd/Morani St", "direction": "W", "lat": 40.608055, "lon": -74.15778, "routes": "S62, S92, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.15778, 40.608055 ] } }, -{ "type": "Feature", "properties": { "id": 202040, "name": "Victory Blvd/Goller Pl", "direction": "W", "lat": 40.60763, "lon": -74.15988, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.15988, 40.60763 ] } }, -{ "type": "Feature", "properties": { "id": 202041, "name": "Victory Blvd/Richmond Av", "direction": "W", "lat": 40.60722, "lon": -74.162926, "routes": "S92, S62, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.162926, 40.60722 ] } }, -{ "type": "Feature", "properties": { "id": 202042, "name": "Victory Blvd/Arlene St", "direction": "W", "lat": 40.606705, "lon": -74.16628, "routes": "S92, S62, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.16628, 40.606705 ] } }, -{ "type": "Feature", "properties": { "id": 202043, "name": "Victory Blvd/Graham Av", "direction": "SW", "lat": 40.605587, "lon": -74.169624, "routes": "S62, S92, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.169624, 40.605587 ] } }, -{ "type": "Feature", "properties": { "id": 202044, "name": "Victory Blvd/Signs Rd", "direction": "SW", "lat": 40.603367, "lon": -74.17368, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.17368, 40.603367 ] } }, -{ "type": "Feature", "properties": { "id": 202047, "name": "Victory Blvd/Travis Av", "direction": "SW", "lat": 40.599537, "lon": -74.17872, "routes": "S92, SIM32, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.17872, 40.599537 ] } }, -{ "type": "Feature", "properties": { "id": 202048, "name": "Victory Blvd/Shenandoah Av", "direction": "SW", "lat": 40.598392, "lon": -74.18034, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.18034, 40.598392 ] } }, -{ "type": "Feature", "properties": { "id": 202049, "name": "Victory Blvd/Baron Blvd", "direction": "SW", "lat": 40.597248, "lon": -74.18193, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.18193, 40.597248 ] } }, -{ "type": "Feature", "properties": { "id": 202051, "name": "Victory Blvd/Cannon Av", "direction": "SW", "lat": 40.595154, "lon": -74.184906, "routes": "S62, SIM32, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.184906, 40.595154 ] } }, -{ "type": "Feature", "properties": { "id": 202052, "name": "Victory Blvd/Leroy St", "direction": "SW", "lat": 40.594215, "lon": -74.18651, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.18651, 40.594215 ] } }, -{ "type": "Feature", "properties": { "id": 202053, "name": "Victory Blvd/Burke Av", "direction": "SW", "lat": 40.593227, "lon": -74.188255, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.188255, 40.593227 ] } }, -{ "type": "Feature", "properties": { "id": 202054, "name": "Victory Blvd/Wild Av", "direction": "SW", "lat": 40.59176, "lon": -74.19075, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.19075, 40.59176 ] } }, -{ "type": "Feature", "properties": { "id": 202055, "name": "Victory Blvd/Glen St", "direction": "SW", "lat": 40.590584, "lon": -74.1928, "routes": "SIM32, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.1928, 40.590584 ] } }, -{ "type": "Feature", "properties": { "id": 202056, "name": "Victory Blvd/Feldmeyers Ln", "direction": "SW", "lat": 40.588783, "lon": -74.19574, "routes": "S62, S92, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.19574, 40.588783 ] } }, -{ "type": "Feature", "properties": { "id": 202057, "name": "Victory Blvd/Con Edison", "direction": "SW", "lat": 40.58763, "lon": -74.19773, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.19773, 40.58763 ] } }, -{ "type": "Feature", "properties": { "id": 202066, "name": "Arthur Kill Rd/Yetman Av", "direction": "NE", "lat": 40.513577, "lon": -74.24735, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24735, 40.513577 ] } }, -{ "type": "Feature", "properties": { "id": 202067, "name": "Arthur Kill Rd/Wood Av", "direction": "NE", "lat": 40.514572, "lon": -74.245865, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.245865, 40.514572 ] } }, -{ "type": "Feature", "properties": { "id": 202068, "name": "Arthur Kill Rd/Arthur Kill Station", "direction": "E", "lat": 40.516003, "lon": -74.24263, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24263, 40.516003 ] } }, -{ "type": "Feature", "properties": { "id": 202069, "name": "Arthur Kill Rd/Nassau Pl", "direction": "N", "lat": 40.519024, "lon": -74.24009, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24009, 40.519024 ] } }, -{ "type": "Feature", "properties": { "id": 202073, "name": "Arthur Kill Rd/Veterans Rd West", "direction": "N", "lat": 40.52851, "lon": -74.23927, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23927, 40.52851 ] } }, -{ "type": "Feature", "properties": { "id": 202076, "name": "Arthur Kill Rd/Sharrotts Rd", "direction": "N", "lat": 40.538258, "lon": -74.237335, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.237335, 40.538258 ] } }, -{ "type": "Feature", "properties": { "id": 202078, "name": "Arthur Kill Rd/Ellis Rd", "direction": "N", "lat": 40.541264, "lon": -74.23744, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23744, 40.541264 ] } }, -{ "type": "Feature", "properties": { "id": 202079, "name": "Arthur Kill Rd/Clay Pit Rd", "direction": "NE", "lat": 40.54247, "lon": -74.236404, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.236404, 40.54247 ] } }, -{ "type": "Feature", "properties": { "id": 202080, "name": "Arthur Kill Rd/Johnson St", "direction": "NE", "lat": 40.545387, "lon": -74.23052, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23052, 40.545387 ] } }, -{ "type": "Feature", "properties": { "id": 202083, "name": "Arthur Kill Rd/Broadway Stages Staten Island", "direction": "E", "lat": 40.54793, "lon": -74.226166, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.226166, 40.54793 ] } }, -{ "type": "Feature", "properties": { "id": 202084, "name": "Arthur Kill Rd/Bloomingdale Rd", "direction": "SE", "lat": 40.55005, "lon": -74.22133, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.22133, 40.55005 ] } }, -{ "type": "Feature", "properties": { "id": 202089, "name": "Arthur Kill Rd/Veterans Rd West", "direction": "E", "lat": 40.5575, "lon": -74.207275, "routes": "SIM25, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.207275, 40.5575 ] } }, -{ "type": "Feature", "properties": { "id": 202090, "name": "Arthur Kill Rd/Carlyle Green", "direction": "NE", "lat": 40.557354, "lon": -74.19921, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.19921, 40.557354 ] } }, -{ "type": "Feature", "properties": { "id": 202091, "name": "Arthur Kill Rd/Arden Av", "direction": "NE", "lat": 40.55914, "lon": -74.19725, "routes": "SIM22, S56, SIM4C, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.19725, 40.55914 ] } }, -{ "type": "Feature", "properties": { "id": 202094, "name": "Arthur Kill Rd/Woodrow Rd", "direction": "E", "lat": 40.565228, "lon": -74.18151, "routes": "SIM4C, S74, S56, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.18151, 40.565228 ] } }, -{ "type": "Feature", "properties": { "id": 202095, "name": "Arthur Kill Rd/Annadale Rd", "direction": "SE", "lat": 40.563465, "lon": -74.17719, "routes": "S56, S55, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.17719, 40.563465 ] } }, -{ "type": "Feature", "properties": { "id": 202096, "name": "Arthur Kill Rd/Crossfield Av", "direction": "E", "lat": 40.562805, "lon": -74.175, "routes": "S56, S55, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.175, 40.562805 ] } }, -{ "type": "Feature", "properties": { "id": 202097, "name": "Eltingville/Transit Center", "direction": "S", "lat": 40.560593, "lon": -74.17124, "routes": "SIM5, SIM1, SIM7, SIM6, SIM1C, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -74.17124, 40.560593 ] } }, -{ "type": "Feature", "properties": { "id": 202099, "name": "Arthur Kill Rd/Armstrong Av", "direction": "NE", "lat": 40.560898, "lon": -74.16228, "routes": "S74, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.16228, 40.560898 ] } }, -{ "type": "Feature", "properties": { "id": 202100, "name": "Arthur Kill Rd/Colon Av", "direction": "E", "lat": 40.561825, "lon": -74.15932, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.15932, 40.561825 ] } }, -{ "type": "Feature", "properties": { "id": 202101, "name": "Arthur Kill Rd/Elverton Av", "direction": "E", "lat": 40.562397, "lon": -74.1575, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.1575, 40.562397 ] } }, -{ "type": "Feature", "properties": { "id": 202103, "name": "Arthur Kill Rd/Greaves Av", "direction": "NE", "lat": 40.566048, "lon": -74.15371, "routes": "S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.15371, 40.566048 ] } }, -{ "type": "Feature", "properties": { "id": 202121, "name": "Richmond Rd/Steele Av", "direction": "NE", "lat": 40.576797, "lon": -74.118225, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.118225, 40.576797 ] } }, -{ "type": "Feature", "properties": { "id": 202122, "name": "Richmond Rd/Locust Av", "direction": "NE", "lat": 40.577946, "lon": -74.11722, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11722, 40.577946 ] } }, -{ "type": "Feature", "properties": { "id": 202123, "name": "Richmond Rd/Bancroft Av", "direction": "NE", "lat": 40.579365, "lon": -74.11451, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.11451, 40.579365 ] } }, -{ "type": "Feature", "properties": { "id": 202124, "name": "Richmond Rd/Greeley Av", "direction": "NE", "lat": 40.580482, "lon": -74.11335, "routes": "SIM15, S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.11335, 40.580482 ] } }, -{ "type": "Feature", "properties": { "id": 202125, "name": "Richmond Rd/Lincoln Av", "direction": "NE", "lat": 40.581154, "lon": -74.11226, "routes": "S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11226, 40.581154 ] } }, -{ "type": "Feature", "properties": { "id": 202147, "name": "Targee St/Vanderbilt Av", "direction": "N", "lat": 40.61488, "lon": -74.08462, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08462, 40.61488 ] } }, -{ "type": "Feature", "properties": { "id": 202149, "name": "Targee St/Osgood Av", "direction": "N", "lat": 40.61929, "lon": -74.08463, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08463, 40.61929 ] } }, -{ "type": "Feature", "properties": { "id": 202150, "name": "Targee St/Young St", "direction": "N", "lat": 40.62068, "lon": -74.08428, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08428, 40.62068 ] } }, -{ "type": "Feature", "properties": { "id": 202151, "name": "Targee St/Broad St", "direction": "N", "lat": 40.622997, "lon": -74.08378, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08378, 40.622997 ] } }, -{ "type": "Feature", "properties": { "id": 202152, "name": "Broad St/Gordon St", "direction": "E", "lat": 40.623623, "lon": -74.08239, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08239, 40.623623 ] } }, -{ "type": "Feature", "properties": { "id": 202153, "name": "Broad St/Tompkins Av", "direction": "E", "lat": 40.624336, "lon": -74.08015, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08015, 40.624336 ] } }, -{ "type": "Feature", "properties": { "id": 202176, "name": "Broad St/Cedar St", "direction": "W", "lat": 40.624313, "lon": -74.08072, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08072, 40.624313 ] } }, -{ "type": "Feature", "properties": { "id": 202177, "name": "Broad St/Gordon St", "direction": "W", "lat": 40.62353, "lon": -74.0832, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.0832, 40.62353 ] } }, -{ "type": "Feature", "properties": { "id": 202179, "name": "Van Duzer St/Broad St", "direction": "S", "lat": 40.622368, "lon": -74.0854, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.0854, 40.622368 ] } }, -{ "type": "Feature", "properties": { "id": 202180, "name": "Van Duzer St/Young St", "direction": "S", "lat": 40.621223, "lon": -74.08565, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08565, 40.621223 ] } }, -{ "type": "Feature", "properties": { "id": 202181, "name": "Van Duzer St/Oakland Terr", "direction": "S", "lat": 40.620045, "lon": -74.08593, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08593, 40.620045 ] } }, -{ "type": "Feature", "properties": { "id": 202182, "name": "Van Duzer St/Baring Pl", "direction": "S", "lat": 40.618587, "lon": -74.08612, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08612, 40.618587 ] } }, -{ "type": "Feature", "properties": { "id": 202184, "name": "Van Duzer St/Hillside Av", "direction": "SW", "lat": 40.61568, "lon": -74.087654, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.087654, 40.61568 ] } }, -{ "type": "Feature", "properties": { "id": 202185, "name": "Van Duzer St/Vanderbilt Av", "direction": "S", "lat": 40.61374, "lon": -74.087395, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.087395, 40.61374 ] } }, -{ "type": "Feature", "properties": { "id": 202187, "name": "Richmond Rd/De Kalb St", "direction": "SW", "lat": 40.610016, "lon": -74.08954, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08954, 40.610016 ] } }, -{ "type": "Feature", "properties": { "id": 202205, "name": "Richmond Rd/Midland Av", "direction": "W", "lat": 40.582283, "lon": -74.11027, "routes": "S86, S74, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11027, 40.582283 ] } }, -{ "type": "Feature", "properties": { "id": 202206, "name": "Richmond Rd/Lincoln Av", "direction": "SW", "lat": 40.5811, "lon": -74.11264, "routes": "S86, S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.11264, 40.5811 ] } }, -{ "type": "Feature", "properties": { "id": 202207, "name": "Richmond Rd/Todt Hill Rd", "direction": "SW", "lat": 40.580402, "lon": -74.11369, "routes": "S76, S86, S74, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.11369, 40.580402 ] } }, -{ "type": "Feature", "properties": { "id": 202208, "name": "Richmond Rd/Bancroft Av", "direction": "SW", "lat": 40.578968, "lon": -74.11515, "routes": "S74, S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11515, 40.578968 ] } }, -{ "type": "Feature", "properties": { "id": 202209, "name": "Richmond Rd/Altamont St", "direction": "SW", "lat": 40.577637, "lon": -74.11782, "routes": "S76, S74, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11782, 40.577637 ] } }, -{ "type": "Feature", "properties": { "id": 202210, "name": "Richmond Rd/Steele Av", "direction": "SW", "lat": 40.576397, "lon": -74.11886, "routes": "S76, S74, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11886, 40.576397 ] } }, -{ "type": "Feature", "properties": { "id": 202228, "name": "Arthur Kill Rd/Giffords Ln", "direction": "SW", "lat": 40.564266, "lon": -74.15561, "routes": "SIM15, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.15561, 40.564266 ] } }, -{ "type": "Feature", "properties": { "id": 202229, "name": "Arthur Kill Rd/Elverton Av", "direction": "SW", "lat": 40.562862, "lon": -74.15697, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.15697, 40.562862 ] } }, -{ "type": "Feature", "properties": { "id": 202230, "name": "Arthur Kill Rd/Brookfield Av", "direction": "W", "lat": 40.56191, "lon": -74.15949, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.15949, 40.56191 ] } }, -{ "type": "Feature", "properties": { "id": 202231, "name": "Arthur Kill Rd/Armstrong Av", "direction": "SW", "lat": 40.561092, "lon": -74.16211, "routes": "S84, S74, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.16211, 40.561092 ] } }, -{ "type": "Feature", "properties": { "id": 202232, "name": "Arthur Kill Rd/Ridgewood Av", "direction": "W", "lat": 40.560184, "lon": -74.16517, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.16517, 40.560184 ] } }, -{ "type": "Feature", "properties": { "id": 202234, "name": "Arthur Kill Rd/Crossfield Av", "direction": "W", "lat": 40.563065, "lon": -74.17567, "routes": "S55, S84, S56, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.17567, 40.563065 ] } }, -{ "type": "Feature", "properties": { "id": 202235, "name": "Arthur Kill Rd/Annadale Rd", "direction": "NW", "lat": 40.563774, "lon": -74.17748, "routes": "S74, S56, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.17748, 40.563774 ] } }, -{ "type": "Feature", "properties": { "id": 202236, "name": "Arthur Kill Rd/Woodrow Rd", "direction": "W", "lat": 40.56518, "lon": -74.18108, "routes": "S56, S74, SIM22, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.18108, 40.56518 ] } }, -{ "type": "Feature", "properties": { "id": 202237, "name": "Arthur Kill Rd/Arden Heights Plaza", "direction": "W", "lat": 40.56265, "lon": -74.191986, "routes": "S56, S84, S74, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.191986, 40.56265 ] } }, -{ "type": "Feature", "properties": { "id": 202239, "name": "Arthur Kill Rd/Arden Av", "direction": "SW", "lat": 40.55858, "lon": -74.19812, "routes": "S74, SIM22, SIM2, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.19812, 40.55858 ] } }, -{ "type": "Feature", "properties": { "id": 202240, "name": "Arthur Kill Rd/Carlyle Green", "direction": "SW", "lat": 40.556976, "lon": -74.19975, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.19975, 40.556976 ] } }, -{ "type": "Feature", "properties": { "id": 202241, "name": "Arthur Kill Rd East/Veterans Rd East", "direction": "NW", "lat": 40.55669, "lon": -74.203995, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.203995, 40.55669 ] } }, -{ "type": "Feature", "properties": { "id": 202242, "name": "Arthur Kill Rd/West Service Rd", "direction": "W", "lat": 40.557636, "lon": -74.20717, "routes": "S74, S84, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.20717, 40.557636 ] } }, -{ "type": "Feature", "properties": { "id": 202248, "name": "Arthur Kill Rd/Broadway Stages Staten Island", "direction": "W", "lat": 40.54806, "lon": -74.22629, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.22629, 40.54806 ] } }, -{ "type": "Feature", "properties": { "id": 202249, "name": "Arthur Kill Rd/Johnson St", "direction": "SW", "lat": 40.54525, "lon": -74.23093, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23093, 40.54525 ] } }, -{ "type": "Feature", "properties": { "id": 202253, "name": "Arthur Kill Rd/Sharrotts Rd", "direction": "S", "lat": 40.53796, "lon": -74.23737, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23737, 40.53796 ] } }, -{ "type": "Feature", "properties": { "id": 202254, "name": "Arthur Kill Rd/Winant Pl", "direction": "SE", "lat": 40.536255, "lon": -74.23743, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.23743, 40.536255 ] } }, -{ "type": "Feature", "properties": { "id": 202255, "name": "Arthur Kill Rd/Androvette St", "direction": "SW", "lat": 40.534546, "lon": -74.23611, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23611, 40.534546 ] } }, -{ "type": "Feature", "properties": { "id": 202256, "name": "Arthur Kill Rd/Allentown Ln", "direction": "S", "lat": 40.527897, "lon": -74.23943, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.23943, 40.527897 ] } }, -{ "type": "Feature", "properties": { "id": 202260, "name": "Arthur Kill Rd/Nassau Pl", "direction": "S", "lat": 40.518555, "lon": -74.240364, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.240364, 40.518555 ] } }, -{ "type": "Feature", "properties": { "id": 202262, "name": "Arthur Kill Rd/Wood Av", "direction": "SW", "lat": 40.514835, "lon": -74.24574, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24574, 40.514835 ] } }, -{ "type": "Feature", "properties": { "id": 202263, "name": "Arthur Kill Rd/Yetman Av", "direction": "SW", "lat": 40.513943, "lon": -74.24715, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24715, 40.513943 ] } }, -{ "type": "Feature", "properties": { "id": 202264, "name": "Arthur Kill Rd/Main St", "direction": "SW", "lat": 40.512444, "lon": -74.24995, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24995, 40.512444 ] } }, -{ "type": "Feature", "properties": { "id": 202275, "name": "Foster Rd/Amboy Rd", "direction": "NW", "lat": 40.52718, "lon": -74.201324, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.201324, 40.52718 ] } }, -{ "type": "Feature", "properties": { "id": 202277, "name": "Foster Rd/Drumgoole Rd West", "direction": "NW", "lat": 40.532734, "lon": -74.20313, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20313, 40.532734 ] } }, -{ "type": "Feature", "properties": { "id": 202278, "name": "Foster Rd/Darlington Av", "direction": "NW", "lat": 40.534126, "lon": -74.2038, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.2038, 40.534126 ] } }, -{ "type": "Feature", "properties": { "id": 202279, "name": "Foster Rd/Ramona Av", "direction": "NW", "lat": 40.536728, "lon": -74.20503, "routes": "SIM25, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20503, 40.536728 ] } }, -{ "type": "Feature", "properties": { "id": 202280, "name": "Foster Rd/Sinclair Av", "direction": "NW", "lat": 40.53913, "lon": -74.206154, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.206154, 40.53913 ] } }, -{ "type": "Feature", "properties": { "id": 202289, "name": "Arthur Kill Rd/Veterans Rd East", "direction": "SE", "lat": 40.556293, "lon": -74.203766, "routes": "SIM24, SIM23, SIM2, S74, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.203766, 40.556293 ] } }, -{ "type": "Feature", "properties": { "id": 202292, "name": "Arden Av/Arthur Kill Rd", "direction": "SE", "lat": 40.558517, "lon": -74.1975, "routes": "SIM23, SIM4C, SIM2, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.1975, 40.558517 ] } }, -{ "type": "Feature", "properties": { "id": 202293, "name": "Arden Av/Dover Green", "direction": "SE", "lat": 40.557632, "lon": -74.19652, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19652, 40.557632 ] } }, -{ "type": "Feature", "properties": { "id": 202294, "name": "Arden Av/Forest Green", "direction": "SE", "lat": 40.555756, "lon": -74.19464, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19464, 40.555756 ] } }, -{ "type": "Feature", "properties": { "id": 202295, "name": "Arden Av/Hampton Green", "direction": "SE", "lat": 40.554943, "lon": -74.193756, "routes": "SIM4C, S56, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.193756, 40.554943 ] } }, -{ "type": "Feature", "properties": { "id": 202304, "name": "Annadale Rd/North Pine Terr", "direction": "SW", "lat": 40.537937, "lon": -74.178825, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.178825, 40.537937 ] } }, -{ "type": "Feature", "properties": { "id": 202305, "name": "Annadale Rd/Amboy Rd", "direction": "SW", "lat": 40.536137, "lon": -74.18064, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.18064, 40.536137 ] } }, -{ "type": "Feature", "properties": { "id": 202306, "name": "Amboy Rd/Alvine Av", "direction": "W", "lat": 40.53523, "lon": -74.18313, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.18313, 40.53523 ] } }, -{ "type": "Feature", "properties": { "id": 202307, "name": "Amboy Rd/Arbutus Av", "direction": "W", "lat": 40.534184, "lon": -74.186195, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.186195, 40.534184 ] } }, -{ "type": "Feature", "properties": { "id": 202309, "name": "Amboy Rd/Huguenot Av", "direction": "SW", "lat": 40.532074, "lon": -74.191605, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.191605, 40.532074 ] } }, -{ "type": "Feature", "properties": { "id": 202329, "name": "Amboy Rd/Kingdom Av", "direction": "NE", "lat": 40.532597, "lon": -74.19034, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.19034, 40.532597 ] } }, -{ "type": "Feature", "properties": { "id": 202330, "name": "Amboy Rd/Arbutus Av", "direction": "E", "lat": 40.534027, "lon": -74.18635, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.18635, 40.534027 ] } }, -{ "type": "Feature", "properties": { "id": 202331, "name": "Amboy Rd/Ruggles St", "direction": "E", "lat": 40.534946, "lon": -74.1837, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.1837, 40.534946 ] } }, -{ "type": "Feature", "properties": { "id": 202332, "name": "Annadale Rd/Amboy Rd", "direction": "NE", "lat": 40.536068, "lon": -74.18048, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.18048, 40.536068 ] } }, -{ "type": "Feature", "properties": { "id": 202333, "name": "Annadale Rd/Hillis St", "direction": "NE", "lat": 40.53857, "lon": -74.17794, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17794, 40.53857 ] } }, -{ "type": "Feature", "properties": { "id": 202335, "name": "Annadale Rd/Arden Av", "direction": "NE", "lat": 40.544777, "lon": -74.17617, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17617, 40.544777 ] } }, -{ "type": "Feature", "properties": { "id": 202383, "name": "New Dorp Ln/Roma Av", "direction": "NW", "lat": 40.565952, "lon": -74.10053, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10053, 40.565952 ] } }, -{ "type": "Feature", "properties": { "id": 202384, "name": "New Dorp Ln/Finley Av", "direction": "NW", "lat": 40.566673, "lon": -74.102005, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.102005, 40.566673 ] } }, -{ "type": "Feature", "properties": { "id": 202385, "name": "New Dorp Ln/Winham St", "direction": "NW", "lat": 40.56742, "lon": -74.10357, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10357, 40.56742 ] } }, -{ "type": "Feature", "properties": { "id": 202386, "name": "New Dorp Ln/Cuba Av", "direction": "NW", "lat": 40.568172, "lon": -74.10516, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10516, 40.568172 ] } }, -{ "type": "Feature", "properties": { "id": 202387, "name": "New Dorp Ln/Mill Rd", "direction": "NW", "lat": 40.56882, "lon": -74.106636, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.106636, 40.56882 ] } }, -{ "type": "Feature", "properties": { "id": 202388, "name": "New Dorp Ln/Hylan Blvd", "direction": "NW", "lat": 40.57041, "lon": -74.10952, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10952, 40.57041 ] } }, -{ "type": "Feature", "properties": { "id": 202389, "name": "New Dorp Ln/Clawson St", "direction": "NW", "lat": 40.57147, "lon": -74.11149, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11149, 40.57147 ] } }, -{ "type": "Feature", "properties": { "id": 202390, "name": "New Dorp Ln/Edison St", "direction": "NW", "lat": 40.572643, "lon": -74.11371, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11371, 40.572643 ] } }, -{ "type": "Feature", "properties": { "id": 202391, "name": "New Dorp Ln/New Dorp Plaza", "direction": "NW", "lat": 40.57412, "lon": -74.116585, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.116585, 40.57412 ] } }, -{ "type": "Feature", "properties": { "id": 202453, "name": "Van Duzer St/Roff St", "direction": "SW", "lat": 40.61725, "lon": -74.086586, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.086586, 40.61725 ] } }, -{ "type": "Feature", "properties": { "id": 202482, "name": "New Dorp Ln/New Dorp Plaza", "direction": "SE", "lat": 40.57403, "lon": -74.11651, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11651, 40.57403 ] } }, -{ "type": "Feature", "properties": { "id": 202483, "name": "New Dorp Ln/10 St", "direction": "SE", "lat": 40.57252, "lon": -74.11374, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11374, 40.57252 ] } }, -{ "type": "Feature", "properties": { "id": 202484, "name": "New Dorp Ln/Clawson St", "direction": "SE", "lat": 40.571648, "lon": -74.1121, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.1121, 40.571648 ] } }, -{ "type": "Feature", "properties": { "id": 202486, "name": "New Dorp Ln/Mill Rd", "direction": "SE", "lat": 40.568596, "lon": -74.10635, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10635, 40.568596 ] } }, -{ "type": "Feature", "properties": { "id": 202487, "name": "New Dorp Ln/Cuba Av", "direction": "SE", "lat": 40.567867, "lon": -74.10479, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10479, 40.567867 ] } }, -{ "type": "Feature", "properties": { "id": 202488, "name": "New Dorp Ln/Winham Av", "direction": "SE", "lat": 40.56712, "lon": -74.10321, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10321, 40.56712 ] } }, -{ "type": "Feature", "properties": { "id": 202489, "name": "New Dorp Ln/Finley Av", "direction": "SE", "lat": 40.566395, "lon": -74.101715, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.101715, 40.566395 ] } }, -{ "type": "Feature", "properties": { "id": 202490, "name": "New Dorp Ln/Roma Av", "direction": "SE", "lat": 40.565624, "lon": -74.100136, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.100136, 40.565624 ] } }, -{ "type": "Feature", "properties": { "id": 202491, "name": "New Dorp Ln/Cedar Grove Av", "direction": "SE", "lat": 40.564526, "lon": -74.09786, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09786, 40.564526 ] } }, -{ "type": "Feature", "properties": { "id": 202494, "name": "Cedar Grove Av/Topping St", "direction": "SW", "lat": 40.56227, "lon": -74.099625, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.099625, 40.56227 ] } }, -{ "type": "Feature", "properties": { "id": 202501, "name": "Mill Rd/Ebbitts St", "direction": "SW", "lat": 40.56405, "lon": -74.110535, "routes": "S86, S76, S57, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -74.110535, 40.56405 ] } }, -{ "type": "Feature", "properties": { "id": 202502, "name": "Mill Rd/Isernia Av", "direction": "SW", "lat": 40.56263, "lon": -74.11154, "routes": "S57, S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11154, 40.56263 ] } }, -{ "type": "Feature", "properties": { "id": 202503, "name": "Mill Rd/Tysens Ln", "direction": "SW", "lat": 40.561623, "lon": -74.11226, "routes": "S76, S57, S86, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -74.11226, 40.561623 ] } }, -{ "type": "Feature", "properties": { "id": 202519, "name": "Vanderbilt Av/Tompkins Av", "direction": "SW", "lat": 40.620136, "lon": -74.07727, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.07727, 40.620136 ] } }, -{ "type": "Feature", "properties": { "id": 202522, "name": "Morningstar Rd/Innis St", "direction": "N", "lat": 40.634388, "lon": -74.14569, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.14569, 40.634388 ] } }, -{ "type": "Feature", "properties": { "id": 202524, "name": "Victory Blvd/Wild Av", "direction": "NE", "lat": 40.587334, "lon": -74.19781, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.19781, 40.587334 ] } }, -{ "type": "Feature", "properties": { "id": 202532, "name": "Richmond Terr/Snug Harbor Rd East", "direction": "E", "lat": 40.64524, "lon": -74.10477, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.10477, 40.64524 ] } }, -{ "type": "Feature", "properties": { "id": 202536, "name": "Grandview Av/Forest Av", "direction": "N", "lat": 40.62757, "lon": -74.16535, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.16535, 40.62757 ] } }, -{ "type": "Feature", "properties": { "id": 202537, "name": "Grandview Av/Continental Pl", "direction": "N", "lat": 40.630585, "lon": -74.16524, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.16524, 40.630585 ] } }, -{ "type": "Feature", "properties": { "id": 202538, "name": "Saint George Ferry/Ramp C S46 & S96", "direction": "W", "lat": 40.643353, "lon": -74.07378, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.07378, 40.643353 ] } }, -{ "type": "Feature", "properties": { "id": 202545, "name": "Amboy Rd/Behan Ct", "direction": "NE", "lat": 40.570435, "lon": -74.12262, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12262, 40.570435 ] } }, -{ "type": "Feature", "properties": { "id": 202546, "name": "Brielle Av/Roanoke St", "direction": "NE", "lat": 40.597244, "lon": -74.13262, "routes": "S57, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13262, 40.597244 ] } }, -{ "type": "Feature", "properties": { "id": 202548, "name": "Bradley Av/Victory Blvd", "direction": "S", "lat": 40.612053, "lon": -74.13245, "routes": "S91, S57, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.13245, 40.612053 ] } }, -{ "type": "Feature", "properties": { "id": 202549, "name": "Amboy Rd/Beach Av", "direction": "S", "lat": 40.57185, "lon": -74.12151, "routes": "S57, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.12151, 40.57185 ] } }, -{ "type": "Feature", "properties": { "id": 202550, "name": "Amboy Rd/Thomas St", "direction": "SW", "lat": 40.566154, "lon": -74.12892, "routes": "SIM15, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12892, 40.566154 ] } }, -{ "type": "Feature", "properties": { "id": 202553, "name": "Tysens Ln/Falcon Av", "direction": "NW", "lat": 40.56271, "lon": -74.11419, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.11419, 40.56271 ] } }, -{ "type": "Feature", "properties": { "id": 202563, "name": "Clyde Pl/Arnold St", "direction": "S", "lat": 40.639114, "lon": -74.09019, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.09019, 40.639114 ] } }, -{ "type": "Feature", "properties": { "id": 202567, "name": "Hylan Blvd/Beach Av", "direction": "NE", "lat": 40.567913, "lon": -74.11215, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.11215, 40.567913 ] } }, -{ "type": "Feature", "properties": { "id": 202569, "name": "Saint George Ferry/Ramp D S44 & S94", "direction": "W", "lat": 40.643585, "lon": -74.07347, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.07347, 40.643585 ] } }, -{ "type": "Feature", "properties": { "id": 202572, "name": "Richmond Rd/New Dorp Ln", "direction": "W", "lat": 40.57582, "lon": -74.120094, "routes": "S57, SIM15, S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.120094, 40.57582 ] } }, -{ "type": "Feature", "properties": { "id": 202577, "name": "Saint George Ferry/Ramp D S40 & S90", "direction": "W", "lat": 40.64338, "lon": -74.074135, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.074135, 40.64338 ] } }, -{ "type": "Feature", "properties": { "id": 202579, "name": "Saint George Ferry/Ramp D S42 & S52", "direction": "W", "lat": 40.643333, "lon": -74.07421, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07421, 40.643333 ] } }, -{ "type": "Feature", "properties": { "id": 202581, "name": "Richmond Rd/Barton Av", "direction": "NE", "lat": 40.58409, "lon": -74.10732, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.10732, 40.58409 ] } }, -{ "type": "Feature", "properties": { "id": 202586, "name": "Broadway/Richmond Terr", "direction": "S", "lat": 40.63984, "lon": -74.11794, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11794, 40.63984 ] } }, -{ "type": "Feature", "properties": { "id": 202588, "name": "Victory Blvd/Sparks Ln", "direction": "NE", "lat": 40.602177, "lon": -74.17487, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.17487, 40.602177 ] } }, -{ "type": "Feature", "properties": { "id": 202589, "name": "Victory Blvd/Dinsmore St", "direction": "NE", "lat": 40.60488, "lon": -74.170654, "routes": "S92, S62, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.170654, 40.60488 ] } }, -{ "type": "Feature", "properties": { "id": 202590, "name": "Victory Blvd/Richmond Av (Near)", "direction": "E", "lat": 40.607098, "lon": -74.162766, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.162766, 40.607098 ] } }, -{ "type": "Feature", "properties": { "id": 202592, "name": "Saint George Ferry/Ramp A S62 & S92", "direction": "W", "lat": 40.643005, "lon": -74.074, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.074, 40.643005 ] } }, -{ "type": "Feature", "properties": { "id": 202600, "name": "Morningstar Rd/Kalver Pl", "direction": "S", "lat": 40.632435, "lon": -74.14658, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.14658, 40.632435 ] } }, -{ "type": "Feature", "properties": { "id": 202601, "name": "Saint Pauls Av/Paxton St", "direction": "S", "lat": 40.632942, "lon": -74.07914, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07914, 40.632942 ] } }, -{ "type": "Feature", "properties": { "id": 202602, "name": "Hylan Blvd/Otis Av", "direction": "NE", "lat": 40.573387, "lon": -74.10665, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.10665, 40.573387 ] } }, -{ "type": "Feature", "properties": { "id": 202603, "name": "Clove Rd/Cheshire Pl", "direction": "SE", "lat": 40.618065, "lon": -74.10514, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.10514, 40.618065 ] } }, -{ "type": "Feature", "properties": { "id": 202604, "name": "Victory Blvd/Labau Av", "direction": "W", "lat": 40.61503, "lon": -74.107506, "routes": "S61, S66, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.107506, 40.61503 ] } }, -{ "type": "Feature", "properties": { "id": 202605, "name": "Hylan Blvd/Yetman Av", "direction": "W", "lat": 40.504845, "lon": -74.24203, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.24203, 40.504845 ] } }, -{ "type": "Feature", "properties": { "id": 202608, "name": "Hamilton Av/Egmont Pl", "direction": "E", "lat": 40.645115, "lon": -74.0842, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.0842, 40.645115 ] } }, -{ "type": "Feature", "properties": { "id": 202610, "name": "Arthur Kill Rd/Kenilworth Av", "direction": "SW", "lat": 40.56539, "lon": -74.183784, "routes": "S56, S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.183784, 40.56539 ] } }, -{ "type": "Feature", "properties": { "id": 202611, "name": "Arthur Kill Rd/Corbin Av", "direction": "SW", "lat": 40.566708, "lon": -74.15314, "routes": "SIM15, S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15314, 40.566708 ] } }, -{ "type": "Feature", "properties": { "id": 202613, "name": "Saint Marks Pl/83 Saint Marks Pl", "direction": "W", "lat": 40.646618, "lon": -74.083534, "routes": "S42, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.083534, 40.646618 ] } }, -{ "type": "Feature", "properties": { "id": 202615, "name": "Victory Blvd/Silver Mount Cemetery", "direction": "NE", "lat": 40.62221, "lon": -74.096436, "routes": "S66, S61, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.096436, 40.62221 ] } }, -{ "type": "Feature", "properties": { "id": 202616, "name": "Richmond Av/Armand St", "direction": "NE", "lat": 40.618988, "lon": -74.154434, "routes": "SIM34, S94, S59, S44, SIM33, SIM3C, SIM3, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.154434, 40.618988 ] } }, -{ "type": "Feature", "properties": { "id": 202618, "name": "Yukon Av/Watchmans Office", "direction": "SE", "lat": 40.574875, "lon": -74.16547, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.16547, 40.574875 ] } }, -{ "type": "Feature", "properties": { "id": 202620, "name": "Arthur Kill Rd/Ladd Av", "direction": "NW", "lat": 40.561897, "lon": -74.17244, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.17244, 40.561897 ] } }, -{ "type": "Feature", "properties": { "id": 202622, "name": "Port Richmond Av/Hooker Pl", "direction": "SW", "lat": 40.63035, "lon": -74.139885, "routes": "S59, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.139885, 40.63035 ] } }, -{ "type": "Feature", "properties": { "id": 202625, "name": "Victory Blvd/Ingram Av", "direction": "W", "lat": 40.61226, "lon": -74.13647, "routes": "S62, S92, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.13647, 40.61226 ] } }, -{ "type": "Feature", "properties": { "id": 202626, "name": "Fingerboard Rd/Narrows Rd South", "direction": "S", "lat": 40.60375, "lon": -74.069336, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.069336, 40.60375 ] } }, -{ "type": "Feature", "properties": { "id": 202628, "name": "Arthur Kill Rd/Verizon Facility", "direction": "SW", "lat": 40.5559, "lon": -74.2133, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.2133, 40.5559 ] } }, -{ "type": "Feature", "properties": { "id": 202631, "name": "Annadale Rd/Belfield Av", "direction": "S", "lat": 40.54007, "lon": -74.17726, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17726, 40.54007 ] } }, -{ "type": "Feature", "properties": { "id": 202632, "name": "Luten Av/Eylandt St", "direction": "SE", "lat": 40.527, "lon": -74.19135, "routes": "S55, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19135, 40.527 ] } }, -{ "type": "Feature", "properties": { "id": 202635, "name": "Seguine Av/Knox St", "direction": "NW", "lat": 40.523003, "lon": -74.199326, "routes": "S56, S55" }, "geometry": { "type": "Point", "coordinates": [ -74.199326, 40.523003 ] } }, -{ "type": "Feature", "properties": { "id": 202641, "name": "Luten Av/Eylandt St", "direction": "NW", "lat": 40.526997, "lon": -74.19116, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.19116, 40.526997 ] } }, -{ "type": "Feature", "properties": { "id": 202646, "name": "Richmond Av/Shirley Av", "direction": "NW", "lat": 40.537548, "lon": -74.1587, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.1587, 40.537548 ] } }, -{ "type": "Feature", "properties": { "id": 202647, "name": "Port Richmond Av/Dixon Av", "direction": "S", "lat": 40.62733, "lon": -74.142426, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.142426, 40.62733 ] } }, -{ "type": "Feature", "properties": { "id": 202650, "name": "Richmond Av/Forest St", "direction": "S", "lat": 40.60572, "lon": -74.16245, "routes": "S44, S59, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.16245, 40.60572 ] } }, -{ "type": "Feature", "properties": { "id": 202651, "name": "Richmond Rd/St Patricks Pl", "direction": "E", "lat": 40.572037, "lon": -74.14381, "routes": "SIM15, S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14381, 40.572037 ] } }, -{ "type": "Feature", "properties": { "id": 202652, "name": "Cedar Grove Av/Wave Crest Av", "direction": "SW", "lat": 40.563477, "lon": -74.09854, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09854, 40.563477 ] } }, -{ "type": "Feature", "properties": { "id": 202657, "name": "Hylan Blvd/Wendy Dr", "direction": "E", "lat": 40.52668, "lon": -74.17825, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.17825, 40.52668 ] } }, -{ "type": "Feature", "properties": { "id": 202658, "name": "Jersey St/Pauw St", "direction": "S", "lat": 40.640057, "lon": -74.08723, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.08723, 40.640057 ] } }, -{ "type": "Feature", "properties": { "id": 202659, "name": "Richmond Av/Amsterdam Pl", "direction": "S", "lat": 40.600132, "lon": -74.16308, "routes": "S59, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.16308, 40.600132 ] } }, -{ "type": "Feature", "properties": { "id": 202660, "name": "Victory Blvd/Cypress Av", "direction": "W", "lat": 40.61476, "lon": -74.10878, "routes": "S62, S66, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.10878, 40.61476 ] } }, -{ "type": "Feature", "properties": { "id": 202661, "name": "Victory Blvd/Cheshire Pl", "direction": "SW", "lat": 40.6195, "lon": -74.10005, "routes": "S61, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.10005, 40.6195 ] } }, -{ "type": "Feature", "properties": { "id": 202663, "name": "Victory Blvd/Ingram Av", "direction": "E", "lat": 40.612213, "lon": -74.13572, "routes": "S92, S62, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.13572, 40.612213 ] } }, -{ "type": "Feature", "properties": { "id": 202664, "name": "Hylan Blvd/Pacific Av", "direction": "SW", "lat": 40.53632, "lon": -74.151794, "routes": "S78, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.151794, 40.53632 ] } }, -{ "type": "Feature", "properties": { "id": 202665, "name": "Hylan Blvd/Winchester Av", "direction": "SW", "lat": 40.53529, "lon": -74.15295, "routes": "S54, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.15295, 40.53529 ] } }, -{ "type": "Feature", "properties": { "id": 202669, "name": "Victory Blvd/Simmons Ln", "direction": "NE", "lat": 40.59492, "lon": -74.18504, "routes": "S92, S62, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.18504, 40.59492 ] } }, -{ "type": "Feature", "properties": { "id": 202672, "name": "Victory Blvd/Spark Pl", "direction": "SW", "lat": 40.6024, "lon": -74.17477, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.17477, 40.6024 ] } }, -{ "type": "Feature", "properties": { "id": 202678, "name": "Rockland Av/Brielle Av", "direction": "W", "lat": 40.589058, "lon": -74.13847, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13847, 40.589058 ] } }, -{ "type": "Feature", "properties": { "id": 202681, "name": "Richmond Av/Signs Rd", "direction": "N", "lat": 40.602013, "lon": -74.16303, "routes": "SIM4C, SIM4, S59, S94, S44, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.16303, 40.602013 ] } }, -{ "type": "Feature", "properties": { "id": 202683, "name": "Walker St/Trantor Pl", "direction": "E", "lat": 40.630566, "lon": -74.14415, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.14415, 40.630566 ] } }, -{ "type": "Feature", "properties": { "id": 202684, "name": "Walker St/Trantor Pl", "direction": "W", "lat": 40.630604, "lon": -74.14388, "routes": "S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.14388, 40.630604 ] } }, -{ "type": "Feature", "properties": { "id": 202685, "name": "Morningstar Rd/Walker St", "direction": "S", "lat": 40.631046, "lon": -74.147064, "routes": "S89, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.147064, 40.631046 ] } }, -{ "type": "Feature", "properties": { "id": 202686, "name": "Ebbitts St/Hylan Blvd", "direction": "SE", "lat": 40.56552, "lon": -74.1123, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.1123, 40.56552 ] } }, -{ "type": "Feature", "properties": { "id": 202692, "name": "Victory Blvd/Silver Lake Apartments", "direction": "NE", "lat": 40.62093, "lon": -74.09801, "routes": "S62, S61, S91, S66, S92, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.09801, 40.62093 ] } }, -{ "type": "Feature", "properties": { "id": 202697, "name": "Travis Av/Nehring Av", "direction": "SE", "lat": 40.589783, "lon": -74.156715, "routes": "S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.156715, 40.589783 ] } }, -{ "type": "Feature", "properties": { "id": 202699, "name": "Travis Av/Evans St", "direction": "SE", "lat": 40.586403, "lon": -74.15057, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.15057, 40.586403 ] } }, -{ "type": "Feature", "properties": { "id": 202700, "name": "Travis Av/Lewiston St", "direction": "SE", "lat": 40.58562, "lon": -74.14901, "routes": "S61, S91, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.14901, 40.58562 ] } }, -{ "type": "Feature", "properties": { "id": 202702, "name": "Forest Hill Rd/Field St", "direction": "NE", "lat": 40.59453, "lon": -74.14291, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.14291, 40.59453 ] } }, -{ "type": "Feature", "properties": { "id": 202703, "name": "Forest Hill Rd/Steers St", "direction": "NE", "lat": 40.596855, "lon": -74.14117, "routes": "SIM31, S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.14117, 40.596855 ] } }, -{ "type": "Feature", "properties": { "id": 202704, "name": "Forest Hill Rd/Dorothy St", "direction": "NE", "lat": 40.59848, "lon": -74.13997, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.13997, 40.59848 ] } }, -{ "type": "Feature", "properties": { "id": 202705, "name": "Harold St/Forest Hill Rd", "direction": "E", "lat": 40.60069, "lon": -74.139305, "routes": "SIM31, S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.139305, 40.60069 ] } }, -{ "type": "Feature", "properties": { "id": 202707, "name": "Harold St/Sunset Av", "direction": "E", "lat": 40.60107, "lon": -74.13414, "routes": "S61, SIM31, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.13414, 40.60107 ] } }, -{ "type": "Feature", "properties": { "id": 202708, "name": "Harold St/Bradley Av", "direction": "E", "lat": 40.60127, "lon": -74.13148, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.13148, 40.60127 ] } }, -{ "type": "Feature", "properties": { "id": 202709, "name": "Harold St/Roosevelt Av", "direction": "W", "lat": 40.601345, "lon": -74.132614, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.132614, 40.601345 ] } }, -{ "type": "Feature", "properties": { "id": 202710, "name": "Harold St/Sunset Av", "direction": "W", "lat": 40.601147, "lon": -74.134995, "routes": "SIM31, S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.134995, 40.601147 ] } }, -{ "type": "Feature", "properties": { "id": 202711, "name": "Harold St/Joseph Av", "direction": "W", "lat": 40.60096, "lon": -74.13718, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.13718, 40.60096 ] } }, -{ "type": "Feature", "properties": { "id": 202712, "name": "Harold St/Forest Hill Rd", "direction": "W", "lat": 40.6008, "lon": -74.140076, "routes": "S91, S61, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.140076, 40.6008 ] } }, -{ "type": "Feature", "properties": { "id": 202715, "name": "Forest Hill Rd/Staten Island Developmental Office", "direction": "SW", "lat": 40.592663, "lon": -74.14457, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.14457, 40.592663 ] } }, -{ "type": "Feature", "properties": { "id": 202716, "name": "Travis Av/Bogota St", "direction": "NW", "lat": 40.585655, "lon": -74.1487, "routes": "SIM31, S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.1487, 40.585655 ] } }, -{ "type": "Feature", "properties": { "id": 202717, "name": "Travis Av/Evans St", "direction": "NW", "lat": 40.586864, "lon": -74.15111, "routes": "S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.15111, 40.586864 ] } }, -{ "type": "Feature", "properties": { "id": 202718, "name": "Travis Av/Denker Pl", "direction": "NW", "lat": 40.588757, "lon": -74.15454, "routes": "S91, S61, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.15454, 40.588757 ] } }, -{ "type": "Feature", "properties": { "id": 202719, "name": "Travis Av/Nehring Av", "direction": "NW", "lat": 40.590233, "lon": -74.157166, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.157166, 40.590233 ] } }, -{ "type": "Feature", "properties": { "id": 202720, "name": "Merrymount St/Travis Av", "direction": "SW", "lat": 40.590637, "lon": -74.1589, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.1589, 40.590637 ] } }, -{ "type": "Feature", "properties": { "id": 202721, "name": "Merrymount St/Shiloh St", "direction": "SW", "lat": 40.588776, "lon": -74.1607, "routes": "S61, S91, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.1607, 40.588776 ] } }, -{ "type": "Feature", "properties": { "id": 202724, "name": "Arthur Kill Rd/Corbin Av", "direction": "NE", "lat": 40.56699, "lon": -74.15259, "routes": "SIM15, S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.15259, 40.56699 ] } }, -{ "type": "Feature", "properties": { "id": 202725, "name": "Arthur Kill Rd/Franklin Ln", "direction": "SW", "lat": 40.568672, "lon": -74.150795, "routes": "SIM15, S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.150795, 40.568672 ] } }, -{ "type": "Feature", "properties": { "id": 202726, "name": "Arthur Kill Rd/Miles Av", "direction": "SW", "lat": 40.565163, "lon": -74.155106, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.155106, 40.565163 ] } }, -{ "type": "Feature", "properties": { "id": 202733, "name": "Olympia Blvd/Andrews St", "direction": "NE", "lat": 40.592323, "lon": -74.072685, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.072685, 40.592323 ] } }, -{ "type": "Feature", "properties": { "id": 202738, "name": "Richmond Terr/Park Av", "direction": "SE", "lat": 40.63973, "lon": -74.13014, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.13014, 40.63973 ] } }, -{ "type": "Feature", "properties": { "id": 202740, "name": "Richmond Terr/Park Av", "direction": "SE", "lat": 40.640034, "lon": -74.1305, "routes": "S53, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.1305, 40.640034 ] } }, -{ "type": "Feature", "properties": { "id": 202741, "name": "Richmond Terr/Port Richmond Av", "direction": "SE", "lat": 40.640213, "lon": -74.13088, "routes": "S66, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13088, 40.640213 ] } }, -{ "type": "Feature", "properties": { "id": 202744, "name": "Richmond Terr/Port Richmond Av", "direction": "SE", "lat": 40.640247, "lon": -74.130936, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.130936, 40.640247 ] } }, -{ "type": "Feature", "properties": { "id": 202782, "name": "Post Av/Port Richmond Av", "direction": "NW", "lat": 40.633938, "lon": -74.13597, "routes": "S57, S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.13597, 40.633938 ] } }, -{ "type": "Feature", "properties": { "id": 202784, "name": "Post Av/Port Richmond Av", "direction": "SE", "lat": 40.633743, "lon": -74.13586, "routes": "S57, S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.13586, 40.633743 ] } }, -{ "type": "Feature", "properties": { "id": 202785, "name": "Hylan Blvd/Spratt Av", "direction": "NE", "lat": 40.555134, "lon": -74.12948, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.12948, 40.555134 ] } }, -{ "type": "Feature", "properties": { "id": 202786, "name": "Amboy Rd/1 St", "direction": "N", "lat": 40.574177, "lon": -74.12169, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12169, 40.574177 ] } }, -{ "type": "Feature", "properties": { "id": 202787, "name": "Clove Rd/Foote Av", "direction": "SE", "lat": 40.613358, "lon": -74.10053, "routes": "S66, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.10053, 40.613358 ] } }, -{ "type": "Feature", "properties": { "id": 202788, "name": "Canal St/Canal St", "direction": "NE", "lat": 40.62638, "lon": -74.07805, "routes": "S74, SIM30, S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07805, 40.62638 ] } }, -{ "type": "Feature", "properties": { "id": 202800, "name": "Arthur Kill Rd/United Hebrew Cemetery", "direction": "NE", "lat": 40.570484, "lon": -74.148315, "routes": "S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.148315, 40.570484 ] } }, -{ "type": "Feature", "properties": { "id": 202801, "name": "Bay St/Virginia Av", "direction": "NW", "lat": 40.615864, "lon": -74.06736, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06736, 40.615864 ] } }, -{ "type": "Feature", "properties": { "id": 202802, "name": "Olga Pl/Hylan Blvd", "direction": "SW", "lat": 40.60412, "lon": -74.07615, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07615, 40.60412 ] } }, -{ "type": "Feature", "properties": { "id": 202809, "name": "Richmond Terr/Arlington Av", "direction": "E", "lat": 40.640587, "lon": -74.16726, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.16726, 40.640587 ] } }, -{ "type": "Feature", "properties": { "id": 202823, "name": "South Av/Richmond Terr", "direction": "S", "lat": 40.640133, "lon": -74.16612, "routes": "S48, SIM33C, S90, SIM34, S40, S98, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.16612, 40.640133 ] } }, -{ "type": "Feature", "properties": { "id": 202824, "name": "South Av/Arlington Pl", "direction": "S", "lat": 40.63543, "lon": -74.16628, "routes": "S98, S90, SIM33, SIM33C, SIM34, S48, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.16628, 40.63543 ] } }, -{ "type": "Feature", "properties": { "id": 202830, "name": "South Av/Cable Way", "direction": "S", "lat": 40.62977, "lon": -74.16652, "routes": "S98, S40, S48, S46, S90, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.16652, 40.62977 ] } }, -{ "type": "Feature", "properties": { "id": 202839, "name": "Richmond Av/Marc St", "direction": "NE", "lat": 40.62035, "lon": -74.15264, "routes": "S94, S59, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.15264, 40.62035 ] } }, -{ "type": "Feature", "properties": { "id": 202840, "name": "Marsh Av/Westport St", "direction": "NE", "lat": 40.584267, "lon": -74.16063, "routes": "S91, SIM31, SIM8X, S61, SIM4X, SIM4C, SIM8, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.16063, 40.584267 ] } }, -{ "type": "Feature", "properties": { "id": 202841, "name": "Marsh Av/Elmwood Pk Dr", "direction": "N", "lat": 40.581512, "lon": -74.162575, "routes": "SIM4C, SIM31, SIM8, SIM4, S61, S91, S55, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.162575, 40.581512 ] } }, -{ "type": "Feature", "properties": { "id": 202842, "name": "Marsh Av/Windham Loop", "direction": "N", "lat": 40.578094, "lon": -74.163536, "routes": "SIM4, S61, SIM4C, S56, SIM31, S55, SIM8, S89, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.163536, 40.578094 ] } }, -{ "type": "Feature", "properties": { "id": 202844, "name": "Staten Island Mall At Platinum Av/Best Buy", "direction": "SE", "lat": 40.578247, "lon": -74.167366, "routes": "S61, S55, S91, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.167366, 40.578247 ] } }, -{ "type": "Feature", "properties": { "id": 202845, "name": "Richmond Av/Yukon Av", "direction": "N", "lat": 40.576424, "lon": -74.16954, "routes": "S79+, SIM31, S44, S56, S94, SIM4, S61, S55, S91, SIM4C, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.16954, 40.576424 ] } }, -{ "type": "Feature", "properties": { "id": 202846, "name": "Independence Av/Ashley Homegoods", "direction": "W", "lat": 40.574005, "lon": -74.168686, "routes": "S44, S94, S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.168686, 40.574005 ] } }, -{ "type": "Feature", "properties": { "id": 202849, "name": "Marsh Av/Elmwood Park Dr", "direction": "S", "lat": 40.58085, "lon": -74.16308, "routes": "SIM31, S91, SIM8, S55, SIM4, S56, SIM4C, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.16308, 40.58085 ] } }, -{ "type": "Feature", "properties": { "id": 202850, "name": "Marsh Av/Windham Loop", "direction": "S", "lat": 40.577858, "lon": -74.16377, "routes": "SIM8, SIM4, S56, S91, S89, SIM4X, SIM4C, S61, S55, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.16377, 40.577858 ] } }, -{ "type": "Feature", "properties": { "id": 202855, "name": "Richmond Av/Koch Blvd", "direction": "NW", "lat": 40.53861, "lon": -74.15978, "routes": "S59, SIM22, SIM1, SIM10, SIM1C, SIM7, S89" }, "geometry": { "type": "Point", "coordinates": [ -74.15978, 40.53861 ] } }, -{ "type": "Feature", "properties": { "id": 202856, "name": "Hylan Blvd/Richmond Av", "direction": "SW", "lat": 40.53412, "lon": -74.15416, "routes": "S89, S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.15416, 40.53412 ] } }, -{ "type": "Feature", "properties": { "id": 202861, "name": "Arthur Kill Rd/Saint John Newmann", "direction": "E", "lat": 40.564148, "lon": -74.186485, "routes": "SIM4C, S56, S74, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.186485, 40.564148 ] } }, -{ "type": "Feature", "properties": { "id": 202864, "name": "Saint George Ferry/Ramp B S74 & S84", "direction": "W", "lat": 40.64323, "lon": -74.073715, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.073715, 40.64323 ] } }, -{ "type": "Feature", "properties": { "id": 202881, "name": "Saint George Ferry/Ramp C S48 & S98", "direction": "W", "lat": 40.64347, "lon": -74.0734, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.0734, 40.64347 ] } }, -{ "type": "Feature", "properties": { "id": 202883, "name": "Arden Av/Arthur Kill Rd", "direction": "NW", "lat": 40.55885, "lon": -74.197464, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.197464, 40.55885 ] } }, -{ "type": "Feature", "properties": { "id": 202884, "name": "Arden Av/Dover Green", "direction": "NW", "lat": 40.557785, "lon": -74.19649, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19649, 40.557785 ] } }, -{ "type": "Feature", "properties": { "id": 202885, "name": "Arden Av/Forest Green", "direction": "NW", "lat": 40.555973, "lon": -74.19462, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19462, 40.555973 ] } }, -{ "type": "Feature", "properties": { "id": 202886, "name": "Arden Av/Hampton Green", "direction": "NW", "lat": 40.554844, "lon": -74.19345, "routes": "SIM23, SIM2, S56, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.19345, 40.554844 ] } }, -{ "type": "Feature", "properties": { "id": 202887, "name": "Arden Av/Correll Av", "direction": "NW", "lat": 40.552353, "lon": -74.19086, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19086, 40.552353 ] } }, -{ "type": "Feature", "properties": { "id": 202888, "name": "Arden Av/Woodrow Rd", "direction": "NW", "lat": 40.55041, "lon": -74.187935, "routes": "S56, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.187935, 40.55041 ] } }, -{ "type": "Feature", "properties": { "id": 202889, "name": "Woodrow Rd/Holcomb Av", "direction": "NE", "lat": 40.547543, "lon": -74.19041, "routes": "SIM4C, SIM2, S56, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.19041, 40.547543 ] } }, -{ "type": "Feature", "properties": { "id": 202890, "name": "Woodrow Rd/Delmar Av", "direction": "NE", "lat": 40.545967, "lon": -74.19289, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19289, 40.545967 ] } }, -{ "type": "Feature", "properties": { "id": 202892, "name": "Woodrow Rd/Deseree Av", "direction": "E", "lat": 40.542465, "lon": -74.201225, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.201225, 40.542465 ] } }, -{ "type": "Feature", "properties": { "id": 202893, "name": "Woodrow Rd/Foster Rd", "direction": "E", "lat": 40.541706, "lon": -74.206604, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.206604, 40.541706 ] } }, -{ "type": "Feature", "properties": { "id": 202894, "name": "Foster Rd/Albourne Av", "direction": "N", "lat": 40.529522, "lon": -74.20249, "routes": "SIM25, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20249, 40.529522 ] } }, -{ "type": "Feature", "properties": { "id": 202897, "name": "Hylan Blvd/Luten Av", "direction": "E", "lat": 40.523014, "lon": -74.18855, "routes": "S56, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.18855, 40.523014 ] } }, -{ "type": "Feature", "properties": { "id": 202899, "name": "Seguine Av/Waterbury Av", "direction": "SE", "lat": 40.524967, "lon": -74.20075, "routes": "SIM25, S56, S55" }, "geometry": { "type": "Point", "coordinates": [ -74.20075, 40.524967 ] } }, -{ "type": "Feature", "properties": { "id": 202903, "name": "Foster Rd/Drumgoole Rd East", "direction": "S", "lat": 40.53159, "lon": -74.20296, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20296, 40.53159 ] } }, -{ "type": "Feature", "properties": { "id": 202904, "name": "Foster Rd/Darlington Av", "direction": "SE", "lat": 40.53353, "lon": -74.20367, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20367, 40.53353 ] } }, -{ "type": "Feature", "properties": { "id": 202905, "name": "Foster Rd/Ratbun Av", "direction": "SE", "lat": 40.536877, "lon": -74.20526, "routes": "S56, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.20526, 40.536877 ] } }, -{ "type": "Feature", "properties": { "id": 202906, "name": "Foster Rd/Sinclair Av", "direction": "SE", "lat": 40.53886, "lon": -74.20619, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20619, 40.53886 ] } }, -{ "type": "Feature", "properties": { "id": 202907, "name": "Foster Rd/Woodrow Rd", "direction": "S", "lat": 40.541477, "lon": -74.20707, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20707, 40.541477 ] } }, -{ "type": "Feature", "properties": { "id": 202908, "name": "Woodrow Rd/Alverson Av", "direction": "W", "lat": 40.542053, "lon": -74.20517, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20517, 40.542053 ] } }, -{ "type": "Feature", "properties": { "id": 202909, "name": "Woodrow Rd/Ellsworth Av", "direction": "W", "lat": 40.54295, "lon": -74.200165, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.200165, 40.54295 ] } }, -{ "type": "Feature", "properties": { "id": 202910, "name": "Woodrow Rd/Boulder St", "direction": "SW", "lat": 40.543785, "lon": -74.196655, "routes": "SIM2, SIM4C, S56, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.196655, 40.543785 ] } }, -{ "type": "Feature", "properties": { "id": 202911, "name": "Woodrow Rd/Delmar Av", "direction": "SW", "lat": 40.54613, "lon": -74.1929, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.1929, 40.54613 ] } }, -{ "type": "Feature", "properties": { "id": 202912, "name": "Woodrow Rd/Canton Av", "direction": "SW", "lat": 40.54774, "lon": -74.19032, "routes": "S56, SIM8, SIM2, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.19032, 40.54774 ] } }, -{ "type": "Feature", "properties": { "id": 202913, "name": "Woodrow Rd/Almond St", "direction": "SW", "lat": 40.549656, "lon": -74.18808, "routes": "S56, SIM2, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.18808, 40.549656 ] } }, -{ "type": "Feature", "properties": { "id": 202914, "name": "Arden Av/Rolling Hill Green", "direction": "SE", "lat": 40.551792, "lon": -74.19051, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19051, 40.551792 ] } }, -{ "type": "Feature", "properties": { "id": 202917, "name": "Richmond Av/Forest Hill Rd", "direction": "N", "lat": 40.57082, "lon": -74.16961, "routes": "S55, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.16961, 40.57082 ] } }, -{ "type": "Feature", "properties": { "id": 202918, "name": "Annadale Rd/Token St", "direction": "N", "lat": 40.56169, "lon": -74.17719, "routes": "S55, SIM4C, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.17719, 40.56169 ] } }, -{ "type": "Feature", "properties": { "id": 202921, "name": "Annadale Rd/Genesee Av", "direction": "N", "lat": 40.55191, "lon": -74.17527, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17527, 40.55191 ] } }, -{ "type": "Feature", "properties": { "id": 202922, "name": "Annadale Rd/Rye Av", "direction": "N", "lat": 40.546844, "lon": -74.174904, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.174904, 40.546844 ] } }, -{ "type": "Feature", "properties": { "id": 202923, "name": "Annadale Rd/Arden Av", "direction": "SW", "lat": 40.5443, "lon": -74.17677, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17677, 40.5443 ] } }, -{ "type": "Feature", "properties": { "id": 202924, "name": "Annadale Rd/Rye Av", "direction": "S", "lat": 40.54759, "lon": -74.17509, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17509, 40.54759 ] } }, -{ "type": "Feature", "properties": { "id": 202925, "name": "Annadale Rd/Notus Av", "direction": "S", "lat": 40.550903, "lon": -74.17529, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17529, 40.550903 ] } }, -{ "type": "Feature", "properties": { "id": 202926, "name": "Annadale Rd/Drumgoole Rd W", "direction": "S", "lat": 40.55551, "lon": -74.17614, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17614, 40.55551 ] } }, -{ "type": "Feature", "properties": { "id": 202927, "name": "Annadale Rd/Dorval Pl", "direction": "S", "lat": 40.558624, "lon": -74.17678, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17678, 40.558624 ] } }, -{ "type": "Feature", "properties": { "id": 202931, "name": "Marsh Av/Richmond Hill Rd", "direction": "SW", "lat": 40.584576, "lon": -74.16072, "routes": "S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.16072, 40.584576 ] } }, -{ "type": "Feature", "properties": { "id": 202933, "name": "Richmond Rd/Spruce St", "direction": "W", "lat": 40.57283, "lon": -74.13846, "routes": "S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.13846, 40.57283 ] } }, -{ "type": "Feature", "properties": { "id": 202934, "name": "Seguine Av/Direnzo Ct", "direction": "SE", "lat": 40.52031, "lon": -74.1975, "routes": "S55, S56, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.1975, 40.52031 ] } }, -{ "type": "Feature", "properties": { "id": 202935, "name": "Forest Av/Willow Rd West", "direction": "W", "lat": 40.625023, "lon": -74.14705, "routes": "S59, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.14705, 40.625023 ] } }, -{ "type": "Feature", "properties": { "id": 202936, "name": "Forest Av/Brighton Av", "direction": "W", "lat": 40.631966, "lon": -74.09686, "routes": "SIM30, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.09686, 40.631966 ] } }, -{ "type": "Feature", "properties": { "id": 202937, "name": "Forest Hill Rd/Rockland Av", "direction": "N", "lat": 40.589035, "lon": -74.14574, "routes": "S91, S61, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.14574, 40.589035 ] } }, -{ "type": "Feature", "properties": { "id": 202939, "name": "Annadale Rd/Tynan St", "direction": "S", "lat": 40.56255, "lon": -74.17751, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17751, 40.56255 ] } }, -{ "type": "Feature", "properties": { "id": 202941, "name": "Clove Rd/Niagara St", "direction": "SE", "lat": 40.61553, "lon": -74.10294, "routes": "S66, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.10294, 40.61553 ] } }, -{ "type": "Feature", "properties": { "id": 202978, "name": "Manor Rd/Forest Av", "direction": "N", "lat": 40.626965, "lon": -74.12501, "routes": "SIM35, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12501, 40.626965 ] } }, -{ "type": "Feature", "properties": { "id": 202981, "name": "Beach St/Water St", "direction": "NW", "lat": 40.627357, "lon": -74.076675, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.076675, 40.627357 ] } }, -{ "type": "Feature", "properties": { "id": 202985, "name": "South Av/Forest Av", "direction": "N", "lat": 40.627914, "lon": -74.166435, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.166435, 40.627914 ] } }, -{ "type": "Feature", "properties": { "id": 202990, "name": "Richmond Hill Rd/Vassar St", "direction": "NW", "lat": 40.58616, "lon": -74.16256, "routes": "S61, S91, SIM8, SIM4C, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.16256, 40.58616 ] } }, -{ "type": "Feature", "properties": { "id": 202991, "name": "Richmond Hill Rd/Vassar St", "direction": "SE", "lat": 40.585777, "lon": -74.16227, "routes": "SIM4C, S91, S61, SIM8, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.16227, 40.585777 ] } }, -{ "type": "Feature", "properties": { "id": 202993, "name": "Port Richmond Av/Richmond Terr", "direction": "NE", "lat": 40.640125, "lon": -74.13166, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.13166, 40.640125 ] } }, -{ "type": "Feature", "properties": { "id": 202994, "name": "Richmond Terr/Union Av", "direction": "E", "lat": 40.636776, "lon": -74.157555, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.157555, 40.636776 ] } }, -{ "type": "Feature", "properties": { "id": 202995, "name": "Richmond Terr/Lafayette Av", "direction": "E", "lat": 40.64474, "lon": -74.096085, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.096085, 40.64474 ] } }, -{ "type": "Feature", "properties": { "id": 202998, "name": "Forest Av/Lilac Ct", "direction": "E", "lat": 40.6276, "lon": -74.168015, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.168015, 40.6276 ] } }, -{ "type": "Feature", "properties": { "id": 203001, "name": "Annadale Rd/Crossfield Av", "direction": "N", "lat": 40.557583, "lon": -74.176346, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.176346, 40.557583 ] } }, -{ "type": "Feature", "properties": { "id": 203002, "name": "Woodrow Rd/Vineland Av", "direction": "NE", "lat": 40.543644, "lon": -74.19672, "routes": "SIM2, SIM8, SIM4C, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19672, 40.543644 ] } }, -{ "type": "Feature", "properties": { "id": 203006, "name": "Saint George Ferry/Ramp A S61 & S91", "direction": "W", "lat": 40.642963, "lon": -74.07409, "routes": "S61, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.07409, 40.642963 ] } }, -{ "type": "Feature", "properties": { "id": 203008, "name": "Midland Av/Mason Av", "direction": "SE", "lat": 40.575066, "lon": -74.09833, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.09833, 40.575066 ] } }, -{ "type": "Feature", "properties": { "id": 203009, "name": "Brielle Av/Babe Ruth Field", "direction": "NE", "lat": 40.594364, "lon": -74.13509, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13509, 40.594364 ] } }, -{ "type": "Feature", "properties": { "id": 203012, "name": "Richmond Rd/Rose Av", "direction": "NE", "lat": 40.57513, "lon": -74.12127, "routes": "S57, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.12127, 40.57513 ] } }, -{ "type": "Feature", "properties": { "id": 203013, "name": "Hylan Blvd/West Fingerboard Rd", "direction": "N", "lat": 40.60036, "lon": -74.07209, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07209, 40.60036 ] } }, -{ "type": "Feature", "properties": { "id": 203016, "name": "Hylan Blvd/Naughton Av", "direction": "SW", "lat": 40.584064, "lon": -74.09507, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.09507, 40.584064 ] } }, -{ "type": "Feature", "properties": { "id": 203017, "name": "Seguine Av/Waterbury Av", "direction": "NW", "lat": 40.525284, "lon": -74.200836, "routes": "S55, S56, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.200836, 40.525284 ] } }, -{ "type": "Feature", "properties": { "id": 203018, "name": "Bradley Av/Brielle Av", "direction": "SW", "lat": 40.598698, "lon": -74.13113, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13113, 40.598698 ] } }, -{ "type": "Feature", "properties": { "id": 203026, "name": "Harold St/Washington Av", "direction": "E", "lat": 40.600906, "lon": -74.13599, "routes": "S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.13599, 40.600906 ] } }, -{ "type": "Feature", "properties": { "id": 203028, "name": "Rockland Av/Saint George Rd", "direction": "S", "lat": 40.57773, "lon": -74.12733, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12733, 40.57773 ] } }, -{ "type": "Feature", "properties": { "id": 203030, "name": "Clove Rd/Cary Av", "direction": "NW", "lat": 40.631603, "lon": -74.12475, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12475, 40.631603 ] } }, -{ "type": "Feature", "properties": { "id": 203031, "name": "Clove Rd/Castleton Av", "direction": "N", "lat": 40.633743, "lon": -74.12586, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12586, 40.633743 ] } }, -{ "type": "Feature", "properties": { "id": 203032, "name": "Castleton Av/Clove Rd", "direction": "E", "lat": 40.633842, "lon": -74.1254, "routes": "S53, S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.1254, 40.633842 ] } }, -{ "type": "Feature", "properties": { "id": 203034, "name": "Broadway/Cary Av", "direction": "S", "lat": 40.632767, "lon": -74.11692, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11692, 40.632767 ] } }, -{ "type": "Feature", "properties": { "id": 203035, "name": "Broadway/Delafield Av", "direction": "S", "lat": 40.63082, "lon": -74.11658, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11658, 40.63082 ] } }, -{ "type": "Feature", "properties": { "id": 203036, "name": "Broadway/Forest Av", "direction": "S", "lat": 40.629044, "lon": -74.11627, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11627, 40.629044 ] } }, -{ "type": "Feature", "properties": { "id": 203037, "name": "Broadway/West Raleigh Av", "direction": "SE", "lat": 40.626957, "lon": -74.11538, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11538, 40.626957 ] } }, -{ "type": "Feature", "properties": { "id": 203038, "name": "Broadway/Colonial Ct", "direction": "SE", "lat": 40.625523, "lon": -74.11464, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11464, 40.625523 ] } }, -{ "type": "Feature", "properties": { "id": 203039, "name": "Broadway/Clove Rd", "direction": "SE", "lat": 40.623325, "lon": -74.1135, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.1135, 40.623325 ] } }, -{ "type": "Feature", "properties": { "id": 203040, "name": "Broadway/Coughlin Av", "direction": "NW", "lat": 40.624187, "lon": -74.11379, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11379, 40.624187 ] } }, -{ "type": "Feature", "properties": { "id": 203043, "name": "Broadway/Forest Av", "direction": "N", "lat": 40.628784, "lon": -74.116104, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.116104, 40.628784 ] } }, -{ "type": "Feature", "properties": { "id": 203044, "name": "Broadway/Delafield Av", "direction": "N", "lat": 40.630688, "lon": -74.11643, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11643, 40.630688 ] } }, -{ "type": "Feature", "properties": { "id": 203045, "name": "Broadway/Cary Av", "direction": "N", "lat": 40.632565, "lon": -74.11675, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11675, 40.632565 ] } }, -{ "type": "Feature", "properties": { "id": 203046, "name": "Broadway/Castleton Av", "direction": "N", "lat": 40.63439, "lon": -74.11709, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11709, 40.63439 ] } }, -{ "type": "Feature", "properties": { "id": 203047, "name": "Clove Rd/Post Av", "direction": "SE", "lat": 40.6318, "lon": -74.125015, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.125015, 40.6318 ] } }, -{ "type": "Feature", "properties": { "id": 203048, "name": "Clove Rd/Delafield Av", "direction": "SE", "lat": 40.629314, "lon": -74.123405, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.123405, 40.629314 ] } }, -{ "type": "Feature", "properties": { "id": 203049, "name": "Manor Rd/Forest Av", "direction": "S", "lat": 40.62683, "lon": -74.125206, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.125206, 40.62683 ] } }, -{ "type": "Feature", "properties": { "id": 203050, "name": "Victory Blvd/South Greenleaf Av", "direction": "W", "lat": 40.612984, "lon": -74.12504, "routes": "S61, S66, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.12504, 40.612984 ] } }, -{ "type": "Feature", "properties": { "id": 203051, "name": "Jersey St/Carlyle St", "direction": "S", "lat": 40.642017, "lon": -74.086716, "routes": "S52, S42" }, "geometry": { "type": "Point", "coordinates": [ -74.086716, 40.642017 ] } }, -{ "type": "Feature", "properties": { "id": 203052, "name": "Clove Rd/Tioga St", "direction": "SE", "lat": 40.61226, "lon": -74.09927, "routes": "SIM35, S53, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.09927, 40.61226 ] } }, -{ "type": "Feature", "properties": { "id": 203057, "name": "Richmond Rd/Old Town Rd", "direction": "NE", "lat": 40.59722, "lon": -74.09295, "routes": "S74, SIM15, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09295, 40.59722 ] } }, -{ "type": "Feature", "properties": { "id": 203059, "name": "Richmond Rd/Raritan Av", "direction": "SW", "lat": 40.594364, "lon": -74.09905, "routes": "S74, SIM15, S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09905, 40.594364 ] } }, -{ "type": "Feature", "properties": { "id": 203061, "name": "Goethals Rd North/Mobile Home Park Row A", "direction": "NW", "lat": 40.627525, "lon": -74.18036, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.18036, 40.627525 ] } }, -{ "type": "Feature", "properties": { "id": 203063, "name": "Forest Av/Hamlin Pl", "direction": "W", "lat": 40.626408, "lon": -74.13373, "routes": "S48" }, "geometry": { "type": "Point", "coordinates": [ -74.13373, 40.626408 ] } }, -{ "type": "Feature", "properties": { "id": 203065, "name": "New Dorp Ln/New Dorp Plaza", "direction": "NW", "lat": 40.574104, "lon": -74.11655, "routes": "S57, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11655, 40.574104 ] } }, -{ "type": "Feature", "properties": { "id": 203066, "name": "Father Capodanno Blvd/Linda Av", "direction": "S", "lat": 40.593967, "lon": -74.06309, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06309, 40.593967 ] } }, -{ "type": "Feature", "properties": { "id": 203067, "name": "Victory Blvd/Con Edison Bus Loop", "direction": "N", "lat": 40.586533, "lon": -74.1988, "routes": "S92, S62, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.1988, 40.586533 ] } }, -{ "type": "Feature", "properties": { "id": 203068, "name": "Main St/Craig Av", "direction": "SE", "lat": 40.510155, "lon": -74.24806, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24806, 40.510155 ] } }, -{ "type": "Feature", "properties": { "id": 203071, "name": "Arthur Kill Rd/Storer Av", "direction": "N", "lat": 40.539974, "lon": -74.2375, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.2375, 40.539974 ] } }, -{ "type": "Feature", "properties": { "id": 203072, "name": "Arthur Kill Rd/Storer Av", "direction": "S", "lat": 40.53951, "lon": -74.237595, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.237595, 40.53951 ] } }, -{ "type": "Feature", "properties": { "id": 203073, "name": "New Dorp Ln/Hylan Blvd", "direction": "SE", "lat": 40.569622, "lon": -74.10837, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.10837, 40.569622 ] } }, -{ "type": "Feature", "properties": { "id": 203074, "name": "Forest Hill Rd/Steers St", "direction": "SW", "lat": 40.596844, "lon": -74.141426, "routes": "SIM31, S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.141426, 40.596844 ] } }, -{ "type": "Feature", "properties": { "id": 203075, "name": "Richmond Av/Augusta Av", "direction": "S", "lat": 40.552063, "lon": -74.16801, "routes": "S59, S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.16801, 40.552063 ] } }, -{ "type": "Feature", "properties": { "id": 203078, "name": "Richmond Av/Yukon Av", "direction": "S", "lat": 40.576378, "lon": -74.16998, "routes": "S55, SIM8, S56, SIM4, SIM4C, SIM31, S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.16998, 40.576378 ] } }, -{ "type": "Feature", "properties": { "id": 203080, "name": "Arthur Kill Rd/Arden Heights Plaza", "direction": "E", "lat": 40.562504, "lon": -74.192184, "routes": "S74, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.192184, 40.562504 ] } }, -{ "type": "Feature", "properties": { "id": 203081, "name": "Rose Av/New Dorp Plaza", "direction": "SE", "lat": 40.573174, "lon": -74.11769, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.11769, 40.573174 ] } }, -{ "type": "Feature", "properties": { "id": 203082, "name": "Hylan Blvd/Reno Av", "direction": "NE", "lat": 40.56459, "lon": -74.11549, "routes": "S78, S57, S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.11549, 40.56459 ] } }, -{ "type": "Feature", "properties": { "id": 203083, "name": "Father Capodanno Blvd/Sand Ln", "direction": "NE", "lat": 40.59064, "lon": -74.06609, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06609, 40.59064 ] } }, -{ "type": "Feature", "properties": { "id": 203087, "name": "South Av/Brabant St", "direction": "S", "lat": 40.6319, "lon": -74.16641, "routes": "SIM33C, S40, S48, S98, SIM33, S90, SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.16641, 40.6319 ] } }, -{ "type": "Feature", "properties": { "id": 203088, "name": "Victory Blvd/Ridgeway Av", "direction": "NE", "lat": 40.595997, "lon": -74.18351, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.18351, 40.595997 ] } }, -{ "type": "Feature", "properties": { "id": 203092, "name": "Victory Blvd/Silver Lake Apartments", "direction": "SW", "lat": 40.6209, "lon": -74.09829, "routes": "SIM30, S91, S62, S61, S92, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09829, 40.6209 ] } }, -{ "type": "Feature", "properties": { "id": 203093, "name": "Arthur Kill Rd/Ridgewood Av", "direction": "E", "lat": 40.560253, "lon": -74.166046, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.166046, 40.560253 ] } }, -{ "type": "Feature", "properties": { "id": 203095, "name": "Hylan Blvd/West Fingerboard Rd", "direction": "SW", "lat": 40.59853, "lon": -74.07264, "routes": "S78, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.07264, 40.59853 ] } }, -{ "type": "Feature", "properties": { "id": 203096, "name": "Father Capodanno Blvd/Alter Av", "direction": "SW", "lat": 40.582375, "lon": -74.07458, "routes": "S52, S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.07458, 40.582375 ] } }, -{ "type": "Feature", "properties": { "id": 203097, "name": "Father Capodanno Blvd/Cromwell Av", "direction": "SW", "lat": 40.580154, "lon": -74.07694, "routes": "S52, S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07694, 40.580154 ] } }, -{ "type": "Feature", "properties": { "id": 203098, "name": "Ebbitts St/Hylan Blvd", "direction": "SE", "lat": 40.565987, "lon": -74.113106, "routes": "SIM11, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.113106, 40.565987 ] } }, -{ "type": "Feature", "properties": { "id": 203100, "name": "Broadway/East Raleigh Av", "direction": "NW", "lat": 40.627464, "lon": -74.11546, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11546, 40.627464 ] } }, -{ "type": "Feature", "properties": { "id": 203102, "name": "Richmond Terr/Taylor St", "direction": "W", "lat": 40.637756, "lon": -74.12396, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.12396, 40.637756 ] } }, -{ "type": "Feature", "properties": { "id": 203104, "name": "Father Capodanno Blvd/Atlantic Av", "direction": "NE", "lat": 40.58686, "lon": -74.06984, "routes": "SIM5, SIM6, SIM9, S51, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06984, 40.58686 ] } }, -{ "type": "Feature", "properties": { "id": 203110, "name": "Richmond Av/Rivington Av", "direction": "N", "lat": 40.59768, "lon": -74.1622, "routes": "S44, S59, SIM4C, SIM4, S94, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.1622, 40.59768 ] } }, -{ "type": "Feature", "properties": { "id": 203113, "name": "Arthur Kill Rd/Newvale Av", "direction": "NE", "lat": 40.568813, "lon": -74.15034, "routes": "SIM15, S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15034, 40.568813 ] } }, -{ "type": "Feature", "properties": { "id": 203116, "name": "Tompkins Av/Chestnut Av", "direction": "NW", "lat": 40.615337, "lon": -74.07335, "routes": "S52, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07335, 40.615337 ] } }, -{ "type": "Feature", "properties": { "id": 203117, "name": "Amboy Rd/Kingdom Av", "direction": "SW", "lat": 40.532833, "lon": -74.190186, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.190186, 40.532833 ] } }, -{ "type": "Feature", "properties": { "id": 203118, "name": "Arthur Kill Rd/1666 Arthur Kill Rd", "direction": "NE", "lat": 40.561214, "lon": -74.19498, "routes": "S74, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19498, 40.561214 ] } }, -{ "type": "Feature", "properties": { "id": 203128, "name": "Richmond Rd/Dellwood Rd", "direction": "SW", "lat": 40.597134, "lon": -74.09335, "routes": "S76, S74, S86, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.09335, 40.597134 ] } }, -{ "type": "Feature", "properties": { "id": 203130, "name": "Cedar Grove Av/Garibaldi Av", "direction": "SW", "lat": 40.56171, "lon": -74.10019, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10019, 40.56171 ] } }, -{ "type": "Feature", "properties": { "id": 203131, "name": "Hylan Blvd/Arbutus Av", "direction": "W", "lat": 40.526054, "lon": -74.18069, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.18069, 40.526054 ] } }, -{ "type": "Feature", "properties": { "id": 203133, "name": "Merrymount St/Shiloh St", "direction": "NE", "lat": 40.588936, "lon": -74.16027, "routes": "S91, SIM31, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.16027, 40.588936 ] } }, -{ "type": "Feature", "properties": { "id": 203141, "name": "Victory Blvd/Fun Station", "direction": "SW", "lat": 40.60064, "lon": -74.17717, "routes": "S62, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.17717, 40.60064 ] } }, -{ "type": "Feature", "properties": { "id": 203146, "name": "Giffords Ln/Arthur Kill Rd", "direction": "SE", "lat": 40.56335, "lon": -74.1558, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.1558, 40.56335 ] } }, -{ "type": "Feature", "properties": { "id": 203147, "name": "Giffords Ln/Gurley Av", "direction": "SE", "lat": 40.561195, "lon": -74.15486, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15486, 40.561195 ] } }, -{ "type": "Feature", "properties": { "id": 203149, "name": "Ebbitts St/Cuba Av", "direction": "SE", "lat": 40.56353, "lon": -74.10876, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10876, 40.56353 ] } }, -{ "type": "Feature", "properties": { "id": 203150, "name": "Ebbitts St/Manila Pl", "direction": "SE", "lat": 40.56266, "lon": -74.10703, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10703, 40.56266 ] } }, -{ "type": "Feature", "properties": { "id": 203151, "name": "Ebbitts St/Finley Av", "direction": "SE", "lat": 40.561825, "lon": -74.10541, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10541, 40.561825 ] } }, -{ "type": "Feature", "properties": { "id": 203152, "name": "Ebbitts St/Roma Av", "direction": "SE", "lat": 40.561188, "lon": -74.1043, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.1043, 40.561188 ] } }, -{ "type": "Feature", "properties": { "id": 203153, "name": "Ebbitts St/Cedar Grove Av", "direction": "SE", "lat": 40.559914, "lon": -74.10192, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10192, 40.559914 ] } }, -{ "type": "Feature", "properties": { "id": 203154, "name": "Cedar Grove Av/Cedar Grove Ct", "direction": "NE", "lat": 40.560795, "lon": -74.10085, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10085, 40.560795 ] } }, -{ "type": "Feature", "properties": { "id": 203155, "name": "Cedar Grove Av/New Dorp Ln", "direction": "NE", "lat": 40.564358, "lon": -74.09768, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09768, 40.564358 ] } }, -{ "type": "Feature", "properties": { "id": 203156, "name": "Ebbitts St/Cuba Av", "direction": "NW", "lat": 40.563705, "lon": -74.10883, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10883, 40.563705 ] } }, -{ "type": "Feature", "properties": { "id": 203157, "name": "Ebbitts St/Winham Av", "direction": "NW", "lat": 40.562767, "lon": -74.10696, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.10696, 40.562767 ] } }, -{ "type": "Feature", "properties": { "id": 203158, "name": "Ebbitts St/Finley Av", "direction": "NW", "lat": 40.56198, "lon": -74.10543, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.10543, 40.56198 ] } }, -{ "type": "Feature", "properties": { "id": 203159, "name": "Ebbitts St/Roma Av", "direction": "NW", "lat": 40.561184, "lon": -74.10401, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.10401, 40.561184 ] } }, -{ "type": "Feature", "properties": { "id": 203161, "name": "Watchogue Rd/Livermore Av", "direction": "E", "lat": 40.616035, "lon": -74.13857, "routes": "SIM34, SIM3, S57, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.13857, 40.616035 ] } }, -{ "type": "Feature", "properties": { "id": 203162, "name": "Cedar Grove Av/Maple Terr", "direction": "NE", "lat": 40.563084, "lon": -74.09881, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.09881, 40.563084 ] } }, -{ "type": "Feature", "properties": { "id": 203163, "name": "Watchogue Rd/Neal Dow Av", "direction": "E", "lat": 40.615627, "lon": -74.13582, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13582, 40.615627 ] } }, -{ "type": "Feature", "properties": { "id": 203164, "name": "Watchogue Rd/Frederick St", "direction": "SE", "lat": 40.614586, "lon": -74.13348, "routes": "SIM34, S57, SIM3C, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -74.13348, 40.614586 ] } }, -{ "type": "Feature", "properties": { "id": 203165, "name": "Watchogue Rd/Smith Ct", "direction": "NW", "lat": 40.614742, "lon": -74.133415, "routes": "SIM3C, SIM3, SIM34, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.133415, 40.614742 ] } }, -{ "type": "Feature", "properties": { "id": 203166, "name": "Watchogue Rd/Neal Dow Av", "direction": "W", "lat": 40.615875, "lon": -74.13646, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13646, 40.615875 ] } }, -{ "type": "Feature", "properties": { "id": 203167, "name": "Watchogue Rd/Livermore Av", "direction": "W", "lat": 40.616287, "lon": -74.1393, "routes": "S57, SIM3, SIM34, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.1393, 40.616287 ] } }, -{ "type": "Feature", "properties": { "id": 203173, "name": "Father Capodanno Blvd/Hempstead Av", "direction": "SW", "lat": 40.57123, "lon": -74.09004, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.09004, 40.57123 ] } }, -{ "type": "Feature", "properties": { "id": 203174, "name": "Amboy Rd/Farrell Ct", "direction": "NE", "lat": 40.566544, "lon": -74.128105, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.128105, 40.566544 ] } }, -{ "type": "Feature", "properties": { "id": 203175, "name": "Victory Blvd/Con Edison Bus Loop", "direction": "N", "lat": 40.586613, "lon": -74.19876, "routes": "S62, SIM32, S92" }, "geometry": { "type": "Point", "coordinates": [ -74.19876, 40.586613 ] } }, -{ "type": "Feature", "properties": { "id": 203180, "name": "Foster Rd/Albourne Av", "direction": "SE", "lat": 40.529243, "lon": -74.20254, "routes": "S56, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.20254, 40.529243 ] } }, -{ "type": "Feature", "properties": { "id": 203183, "name": "Arthur Kill Rd/Arthur Kill Station", "direction": "W", "lat": 40.51627, "lon": -74.24228, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24228, 40.51627 ] } }, -{ "type": "Feature", "properties": { "id": 203184, "name": "Port Richmond Av/Smith Pl", "direction": "SW", "lat": 40.626015, "lon": -74.142975, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.142975, 40.626015 ] } }, -{ "type": "Feature", "properties": { "id": 203190, "name": "Bay St/Van Duzer St", "direction": "S", "lat": 40.634895, "lon": -74.07545, "routes": "S51, S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.07545, 40.634895 ] } }, -{ "type": "Feature", "properties": { "id": 203192, "name": "Amboy Rd/Finley St", "direction": "E", "lat": 40.508102, "lon": -74.24989, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.24989, 40.508102 ] } }, -{ "type": "Feature", "properties": { "id": 203197, "name": "Staten Island Mall At Platinum Av/Primark", "direction": "NW", "lat": 40.57805, "lon": -74.16655, "routes": "S61, S56, S55, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.16655, 40.57805 ] } }, -{ "type": "Feature", "properties": { "id": 203199, "name": "Staten Island Mall At Ring Rd/Platinum Av", "direction": "NW", "lat": 40.580093, "lon": -74.1684, "routes": "S94, S44, S79+, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.1684, 40.580093 ] } }, -{ "type": "Feature", "properties": { "id": 203200, "name": "Victory Blvd/Willowbrook Park", "direction": "W", "lat": 40.608776, "lon": -74.1541, "routes": "SIM33, S62, SIM32, S92, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.1541, 40.608776 ] } }, -{ "type": "Feature", "properties": { "id": 203204, "name": "Targee St/Naples St", "direction": "N", "lat": 40.603485, "lon": -74.09115, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.09115, 40.603485 ] } }, -{ "type": "Feature", "properties": { "id": 203205, "name": "Bay St/Bayley Seton Hospital", "direction": "SE", "lat": 40.623837, "lon": -74.07391, "routes": "S76, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07391, 40.623837 ] } }, -{ "type": "Feature", "properties": { "id": 203206, "name": "Victory Blvd/Shenandoah Av", "direction": "NE", "lat": 40.598347, "lon": -74.1802, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.1802, 40.598347 ] } }, -{ "type": "Feature", "properties": { "id": 203208, "name": "Arthur Kill Rd/United Hebrew Cemetery", "direction": "SW", "lat": 40.570946, "lon": -74.14793, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14793, 40.570946 ] } }, -{ "type": "Feature", "properties": { "id": 203209, "name": "Foster Rd/Wheeling Av", "direction": "SE", "lat": 40.52728, "lon": -74.20155, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.20155, 40.52728 ] } }, -{ "type": "Feature", "properties": { "id": 203210, "name": "Bradley Av/Portage Av", "direction": "S", "lat": 40.599976, "lon": -74.13114, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13114, 40.599976 ] } }, -{ "type": "Feature", "properties": { "id": 203214, "name": "Giffords Ln/Barlow Av", "direction": "NW", "lat": 40.559696, "lon": -74.154, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.154, 40.559696 ] } }, -{ "type": "Feature", "properties": { "id": 203215, "name": "Giffords Ln/Gurley Av", "direction": "NW", "lat": 40.561687, "lon": -74.15488, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15488, 40.561687 ] } }, -{ "type": "Feature", "properties": { "id": 203222, "name": "Richmond Terr/Snug Harbor Rd East", "direction": "W", "lat": 40.645405, "lon": -74.10464, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.10464, 40.645405 ] } }, -{ "type": "Feature", "properties": { "id": 203225, "name": "Vanderbilt Av/Bayley Seton Hospital", "direction": "SW", "lat": 40.621338, "lon": -74.07481, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07481, 40.621338 ] } }, -{ "type": "Feature", "properties": { "id": 203226, "name": "Father Capodanno Blvd/Sand Ln", "direction": "SW", "lat": 40.590145, "lon": -74.06699, "routes": "SIM9, SIM6, S81, S51, SIM5, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06699, 40.590145 ] } }, -{ "type": "Feature", "properties": { "id": 203231, "name": "Seaview Av/Psych Center East", "direction": "NW", "lat": 40.580173, "lon": -74.079285, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.079285, 40.580173 ] } }, -{ "type": "Feature", "properties": { "id": 203232, "name": "Seaview Av/Psych Center West", "direction": "NW", "lat": 40.581245, "lon": -74.081314, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.081314, 40.581245 ] } }, -{ "type": "Feature", "properties": { "id": 203236, "name": "Father Capodanno Blvd/Seaview Av", "direction": "NE", "lat": 40.579437, "lon": -74.077415, "routes": "S51, SIM6, SIM9, SIM5, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.077415, 40.579437 ] } }, -{ "type": "Feature", "properties": { "id": 203238, "name": "Cedar Grove Av/Ebbitts St", "direction": "SW", "lat": 40.56006, "lon": -74.101685, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.101685, 40.56006 ] } }, -{ "type": "Feature", "properties": { "id": 203342, "name": "Steuben St/West Fingerboard Rd", "direction": "NE", "lat": 40.6008, "lon": -74.07641, "routes": "SIM7, SIM1C, SIM11, SIM10, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.07641, 40.6008 ] } }, -{ "type": "Feature", "properties": { "id": 203343, "name": "Narrows Rd South/Hylan Blvd", "direction": "E", "lat": 40.60534, "lon": -74.07608, "routes": "SIM15, SIM33C, SIM3C, S93, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.07608, 40.60534 ] } }, -{ "type": "Feature", "properties": { "id": 203344, "name": "Narrows Rd South/Fingerboard Rd", "direction": "E", "lat": 40.603428, "lon": -74.06899, "routes": "SIM11, S93, SIM10, SIM15, SIM35, SIM7, SIM1, SIM3C, S79+, SIM1C, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.06899, 40.603428 ] } }, -{ "type": "Feature", "properties": { "id": 203345, "name": "Narrows Rd North/Fingerboard Rd", "direction": "NW", "lat": 40.604595, "lon": -74.06937, "routes": "S93, SIM11, SIM7, SIM15, SIM10, SIM33C, S79+, SIM35, SIM1, SIM1C, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.06937, 40.604595 ] } }, -{ "type": "Feature", "properties": { "id": 203359, "name": "Travis Av/Denker Pl", "direction": "SE", "lat": 40.588543, "lon": -74.15452, "routes": "S61, S91, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.15452, 40.588543 ] } }, -{ "type": "Feature", "properties": { "id": 203361, "name": "Hylan Blvd/Goodall St", "direction": "NE", "lat": 40.53986, "lon": -74.14793, "routes": "S78, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14793, 40.53986 ] } }, -{ "type": "Feature", "properties": { "id": 203363, "name": "Walker St/Port Richmond Av", "direction": "E", "lat": 40.6297, "lon": -74.140854, "routes": "S44, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.140854, 40.6297 ] } }, -{ "type": "Feature", "properties": { "id": 203364, "name": "Henderson Av/Clinton Av", "direction": "E", "lat": 40.640343, "lon": -74.09749, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.09749, 40.640343 ] } }, -{ "type": "Feature", "properties": { "id": 203365, "name": "Henderson Av/Clinton Av", "direction": "W", "lat": 40.64034, "lon": -74.09831, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.09831, 40.64034 ] } }, -{ "type": "Feature", "properties": { "id": 203368, "name": "College Of Staten Island/Victory Blvd", "direction": "N", "lat": 40.608772, "lon": -74.15326, "routes": "S93, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.15326, 40.608772 ] } }, -{ "type": "Feature", "properties": { "id": 203369, "name": "College Of Staten Island/Victory Blvd", "direction": "N", "lat": 40.608532, "lon": -74.15318, "routes": "S92, S62, S93, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.15318, 40.608532 ] } }, -{ "type": "Feature", "properties": { "id": 203378, "name": "Brighton Av/Lafayette Av", "direction": "W", "lat": 40.63568, "lon": -74.09235, "routes": "S42" }, "geometry": { "type": "Point", "coordinates": [ -74.09235, 40.63568 ] } }, -{ "type": "Feature", "properties": { "id": 203379, "name": "Bay St/Clinton St", "direction": "NE", "lat": 40.632084, "lon": -74.0758, "routes": "S76, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.0758, 40.632084 ] } }, -{ "type": "Feature", "properties": { "id": 203381, "name": "South Av/Forest Av", "direction": "S", "lat": 40.627205, "lon": -74.166794, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.166794, 40.627205 ] } }, -{ "type": "Feature", "properties": { "id": 203382, "name": "South Av/Amador St", "direction": "S", "lat": 40.62357, "lon": -74.16759, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.16759, 40.62357 ] } }, -{ "type": "Feature", "properties": { "id": 203383, "name": "South Av/Goethals Rd North", "direction": "SW", "lat": 40.621696, "lon": -74.168495, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.168495, 40.621696 ] } }, -{ "type": "Feature", "properties": { "id": 203384, "name": "South Av/Teleport Dr", "direction": "SW", "lat": 40.607662, "lon": -74.17945, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.17945, 40.607662 ] } }, -{ "type": "Feature", "properties": { "id": 203386, "name": "South Av/West Shore Plaza", "direction": "E", "lat": 40.601887, "lon": -74.19175, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.19175, 40.601887 ] } }, -{ "type": "Feature", "properties": { "id": 203387, "name": "South Av/Teleport Dr", "direction": "NE", "lat": 40.60819, "lon": -74.17874, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.17874, 40.60819 ] } }, -{ "type": "Feature", "properties": { "id": 203388, "name": "South Av/Goethals Rd North", "direction": "NE", "lat": 40.621643, "lon": -74.16832, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.16832, 40.621643 ] } }, -{ "type": "Feature", "properties": { "id": 203389, "name": "South Av/Amador St", "direction": "N", "lat": 40.624195, "lon": -74.16723, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.16723, 40.624195 ] } }, -{ "type": "Feature", "properties": { "id": 203390, "name": "Hylan Blvd/Chelsea St", "direction": "W", "lat": 40.504307, "lon": -74.2447, "routes": "SIM26, S78, SIM2, S59, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.2447, 40.504307 ] } }, -{ "type": "Feature", "properties": { "id": 203391, "name": "Seaview Av/Olympia Blvd", "direction": "SE", "lat": 40.582275, "lon": -74.08396, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08396, 40.582275 ] } }, -{ "type": "Feature", "properties": { "id": 203393, "name": "Seguine Av/Singleton St", "direction": "NW", "lat": 40.521996, "lon": -74.198586, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.198586, 40.521996 ] } }, -{ "type": "Feature", "properties": { "id": 203399, "name": "Hylan Blvd/Armstrong Av", "direction": "NE", "lat": 40.53757, "lon": -74.14999, "routes": "S78, SIM10, SIM1C, SIM7, SIM9, SIM1, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14999, 40.53757 ] } }, -{ "type": "Feature", "properties": { "id": 203402, "name": "Arlington Pl/Holland Av", "direction": "W", "lat": 40.636, "lon": -74.171074, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.171074, 40.636 ] } }, -{ "type": "Feature", "properties": { "id": 203404, "name": "Giffords Ln/Baltimore St", "direction": "S", "lat": 40.551807, "lon": -74.1507, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.1507, 40.551807 ] } }, -{ "type": "Feature", "properties": { "id": 203406, "name": "Bradley Av/Purdy Av", "direction": "N", "lat": 40.610558, "lon": -74.13222, "routes": "S91, S61, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13222, 40.610558 ] } }, -{ "type": "Feature", "properties": { "id": 203407, "name": "Forest Av/Elizabeth Grove Rd", "direction": "SW", "lat": 40.62647, "lon": -74.174866, "routes": "S90, SIM30, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.174866, 40.62647 ] } }, -{ "type": "Feature", "properties": { "id": 203408, "name": "Henderson Av/Westbury Av", "direction": "E", "lat": 40.6389, "lon": -74.10487, "routes": "S44" }, "geometry": { "type": "Point", "coordinates": [ -74.10487, 40.6389 ] } }, -{ "type": "Feature", "properties": { "id": 203409, "name": "Victory Blvd/Willow Rd", "direction": "W", "lat": 40.609764, "lon": -74.14936, "routes": "S92, S93, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.14936, 40.609764 ] } }, -{ "type": "Feature", "properties": { "id": 203410, "name": "Vanderbilt Av/Tompkins Av", "direction": "NE", "lat": 40.619965, "lon": -74.07718, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07718, 40.619965 ] } }, -{ "type": "Feature", "properties": { "id": 203411, "name": "Mcclean Av/Lily Pond Av", "direction": "E", "lat": 40.59913, "lon": -74.06297, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06297, 40.59913 ] } }, -{ "type": "Feature", "properties": { "id": 203412, "name": "New York Av/Drum Av", "direction": "NW", "lat": 40.604248, "lon": -74.058784, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.058784, 40.604248 ] } }, -{ "type": "Feature", "properties": { "id": 203413, "name": "New York Av/Drum Av", "direction": "SE", "lat": 40.604362, "lon": -74.05905, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.05905, 40.604362 ] } }, -{ "type": "Feature", "properties": { "id": 203414, "name": "Richmond Rd/Edgar Pl", "direction": "S", "lat": 40.605267, "lon": -74.09268, "routes": "S76, S86, SIM15, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.09268, 40.605267 ] } }, -{ "type": "Feature", "properties": { "id": 203417, "name": "Victory Blvd/Wild Av", "direction": "NE", "lat": 40.59218, "lon": -74.18967, "routes": "S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.18967, 40.59218 ] } }, -{ "type": "Feature", "properties": { "id": 203418, "name": "Arlington Pl/South Av", "direction": "W", "lat": 40.635906, "lon": -74.16656, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.16656, 40.635906 ] } }, -{ "type": "Feature", "properties": { "id": 203419, "name": "Arlington Pl/Northfield Av", "direction": "W", "lat": 40.635944, "lon": -74.168564, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.168564, 40.635944 ] } }, -{ "type": "Feature", "properties": { "id": 203420, "name": "Holland Av/Benjamin Pl", "direction": "N", "lat": 40.639324, "lon": -74.17119, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.17119, 40.639324 ] } }, -{ "type": "Feature", "properties": { "id": 203423, "name": "Holland Av/Benjamin Pl", "direction": "N", "lat": 40.637627, "lon": -74.17115, "routes": "S48, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.17115, 40.637627 ] } }, -{ "type": "Feature", "properties": { "id": 203426, "name": "Midland Av/Patterson Av", "direction": "NW", "lat": 40.5712, "lon": -74.0909, "routes": "S51, SIM6, S81, SIM5, SIM9" }, "geometry": { "type": "Point", "coordinates": [ -74.0909, 40.5712 ] } }, -{ "type": "Feature", "properties": { "id": 203427, "name": "Richmond Terr/Federal Pl", "direction": "E", "lat": 40.64071, "lon": -74.17029, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.17029, 40.64071 ] } }, -{ "type": "Feature", "properties": { "id": 203428, "name": "Sand Ln/Father Capodanno Blvd", "direction": "NW", "lat": 40.590565, "lon": -74.06671, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06671, 40.590565 ] } }, -{ "type": "Feature", "properties": { "id": 203429, "name": "Olympia Blvd/Piave Av", "direction": "W", "lat": 40.59283, "lon": -74.06901, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.06901, 40.59283 ] } }, -{ "type": "Feature", "properties": { "id": 203430, "name": "Olympia Blvd/Orlando St", "direction": "W", "lat": 40.59285, "lon": -74.07034, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07034, 40.59285 ] } }, -{ "type": "Feature", "properties": { "id": 203431, "name": "Hylan Blvd/Richmond Av", "direction": "NE", "lat": 40.53413, "lon": -74.15402, "routes": "SIM9, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.15402, 40.53413 ] } }, -{ "type": "Feature", "properties": { "id": 203433, "name": "Olympia Blvd/Orlando St", "direction": "E", "lat": 40.59277, "lon": -74.070045, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.070045, 40.59277 ] } }, -{ "type": "Feature", "properties": { "id": 203449, "name": "Arthur Kill Rd/Clay Pit Rd", "direction": "W", "lat": 40.54241, "lon": -74.236916, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.236916, 40.54241 ] } }, -{ "type": "Feature", "properties": { "id": 203450, "name": "Arthur Kill Rd/Kreischer St", "direction": "S", "lat": 40.532204, "lon": -74.23919, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23919, 40.532204 ] } }, -{ "type": "Feature", "properties": { "id": 203453, "name": "Brielle Av/Babe Ruth Field", "direction": "SW", "lat": 40.594673, "lon": -74.135086, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.135086, 40.594673 ] } }, -{ "type": "Feature", "properties": { "id": 203454, "name": "Castleton Av/Haven Esplanade", "direction": "E", "lat": 40.63327, "lon": -74.0921, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.0921, 40.63327 ] } }, -{ "type": "Feature", "properties": { "id": 203456, "name": "Clove Rd/Saint Peters Cemetery", "direction": "SE", "lat": 40.62228, "lon": -74.11258, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11258, 40.62228 ] } }, -{ "type": "Feature", "properties": { "id": 203457, "name": "Clove Rd/Saint Peters Cemetery", "direction": "NW", "lat": 40.622375, "lon": -74.11239, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.11239, 40.622375 ] } }, -{ "type": "Feature", "properties": { "id": 203460, "name": "Giffords Ln/Baltimore St", "direction": "N", "lat": 40.551888, "lon": -74.150536, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.150536, 40.551888 ] } }, -{ "type": "Feature", "properties": { "id": 203461, "name": "Howard Av/Campus Rd", "direction": "NE", "lat": 40.615555, "lon": -74.096405, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.096405, 40.615555 ] } }, -{ "type": "Feature", "properties": { "id": 203463, "name": "Hylan Blvd/Richmond Av (Lot)", "direction": "NW", "lat": 40.533924, "lon": -74.15414, "routes": "S59, S89, S54, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.15414, 40.533924 ] } }, -{ "type": "Feature", "properties": { "id": 203464, "name": "Mcclean Av/Railroad Av", "direction": "W", "lat": 40.59818, "lon": -74.06625, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.06625, 40.59818 ] } }, -{ "type": "Feature", "properties": { "id": 203466, "name": "Midland Av/North Railroad Av", "direction": "SE", "lat": 40.58057, "lon": -74.10745, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.10745, 40.58057 ] } }, -{ "type": "Feature", "properties": { "id": 203469, "name": "Richmond Terr/Sailors Snug Harbor Gate", "direction": "W", "lat": 40.645184, "lon": -74.101845, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.101845, 40.645184 ] } }, -{ "type": "Feature", "properties": { "id": 203470, "name": "Rose Av/New Dorp Plaza", "direction": "SE", "lat": 40.573162, "lon": -74.11767, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.11767, 40.573162 ] } }, -{ "type": "Feature", "properties": { "id": 203471, "name": "Targee St/Roff St", "direction": "N", "lat": 40.616882, "lon": -74.08473, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08473, 40.616882 ] } }, -{ "type": "Feature", "properties": { "id": 203472, "name": "Vanderbilt Av/Errington Pl", "direction": "NE", "lat": 40.6216, "lon": -74.074036, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.074036, 40.6216 ] } }, -{ "type": "Feature", "properties": { "id": 203474, "name": "Victory Blvd/Crystal Av", "direction": "E", "lat": 40.61095, "lon": -74.142685, "routes": "S93, S92, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.142685, 40.61095 ] } }, -{ "type": "Feature", "properties": { "id": 203478, "name": "Marsh Av/Ring Rd", "direction": "SW", "lat": 40.583366, "lon": -74.16175, "routes": "SIM4, S89, S61, SIM8, S91, SIM4C, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.16175, 40.583366 ] } }, -{ "type": "Feature", "properties": { "id": 203480, "name": "Broadway/Colonial Ct", "direction": "NW", "lat": 40.62618, "lon": -74.114845, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.114845, 40.62618 ] } }, -{ "type": "Feature", "properties": { "id": 203481, "name": "Richmond Terr/Snug Harbor Rd West", "direction": "W", "lat": 40.64533, "lon": -74.10764, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.10764, 40.64533 ] } }, -{ "type": "Feature", "properties": { "id": 203482, "name": "Midland Av/Colony St", "direction": "NW", "lat": 40.57234, "lon": -74.092964, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.092964, 40.57234 ] } }, -{ "type": "Feature", "properties": { "id": 203483, "name": "Hylan Blvd/Craig Av", "direction": "N", "lat": 40.502983, "lon": -74.25129, "routes": "S59, SIM25, SIM26, S78, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.25129, 40.502983 ] } }, -{ "type": "Feature", "properties": { "id": 203485, "name": "Craig Av/Amboy Rd", "direction": "N", "lat": 40.507484, "lon": -74.252014, "routes": "S59, S78, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.252014, 40.507484 ] } }, -{ "type": "Feature", "properties": { "id": 203487, "name": "Seaview Av/Nugent Av", "direction": "NW", "lat": 40.583954, "lon": -74.08664, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08664, 40.583954 ] } }, -{ "type": "Feature", "properties": { "id": 203492, "name": "Wilder Av/Pinewood Av", "direction": "S", "lat": 40.570602, "lon": -74.13434, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.13434, 40.570602 ] } }, -{ "type": "Feature", "properties": { "id": 203496, "name": "Clarke Av/Wilder Av", "direction": "SW", "lat": 40.56544, "lon": -74.134575, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.134575, 40.56544 ] } }, -{ "type": "Feature", "properties": { "id": 203499, "name": "Clove Rd/Rhine Av", "direction": "SE", "lat": 40.608185, "lon": -74.09048, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.09048, 40.608185 ] } }, -{ "type": "Feature", "properties": { "id": 203500, "name": "Clove Rd/Targee St", "direction": "SE", "lat": 40.607704, "lon": -74.08957, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08957, 40.607704 ] } }, -{ "type": "Feature", "properties": { "id": 203501, "name": "Clove Rd/Britton Av", "direction": "SE", "lat": 40.606644, "lon": -74.087776, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.087776, 40.606644 ] } }, -{ "type": "Feature", "properties": { "id": 203502, "name": "Clove Rd/Neckar Av", "direction": "SE", "lat": 40.605778, "lon": -74.0863, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.0863, 40.605778 ] } }, -{ "type": "Feature", "properties": { "id": 203503, "name": "Clove Rd/Elbe Av", "direction": "SE", "lat": 40.605003, "lon": -74.08495, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08495, 40.605003 ] } }, -{ "type": "Feature", "properties": { "id": 203504, "name": "Clove Rd/Grasmere Station", "direction": "SE", "lat": 40.603626, "lon": -74.08353, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08353, 40.603626 ] } }, -{ "type": "Feature", "properties": { "id": 203505, "name": "Clove Rd/West Fingerboard Rd", "direction": "SE", "lat": 40.60159, "lon": -74.08197, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08197, 40.60159 ] } }, -{ "type": "Feature", "properties": { "id": 203506, "name": "Clove Rd/West Fingerboard Rd", "direction": "NW", "lat": 40.60172, "lon": -74.0818, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.0818, 40.60172 ] } }, -{ "type": "Feature", "properties": { "id": 203507, "name": "Clove Rd/Grasmere Station", "direction": "NW", "lat": 40.603798, "lon": -74.08345, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08345, 40.603798 ] } }, -{ "type": "Feature", "properties": { "id": 203508, "name": "Clove Rd/Mosel Av", "direction": "NW", "lat": 40.60502, "lon": -74.08467, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08467, 40.60502 ] } }, -{ "type": "Feature", "properties": { "id": 203509, "name": "Clove Rd/Neckar Av", "direction": "NW", "lat": 40.60627, "lon": -74.08684, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08684, 40.60627 ] } }, -{ "type": "Feature", "properties": { "id": 203510, "name": "Clove Rd/Britton Av", "direction": "NW", "lat": 40.607113, "lon": -74.088295, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.088295, 40.607113 ] } }, -{ "type": "Feature", "properties": { "id": 203511, "name": "Clove Rd/Targee St", "direction": "NW", "lat": 40.6077, "lon": -74.08922, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.08922, 40.6077 ] } }, -{ "type": "Feature", "properties": { "id": 203513, "name": "Sand Ln/Olympia Blvd", "direction": "SE", "lat": 40.592484, "lon": -74.068245, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.068245, 40.592484 ] } }, -{ "type": "Feature", "properties": { "id": 203515, "name": "New Dorp Ln/2 St", "direction": "SE", "lat": 40.575165, "lon": -74.11878, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11878, 40.575165 ] } }, -{ "type": "Feature", "properties": { "id": 203516, "name": "Hylan Blvd/Connecticut St", "direction": "W", "lat": 40.503178, "lon": -74.25011, "routes": "S78, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.25011, 40.503178 ] } }, -{ "type": "Feature", "properties": { "id": 203517, "name": "Rossville Av/Barry St", "direction": "S", "lat": 40.551186, "lon": -74.21183, "routes": "S84, S74, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.21183, 40.551186 ] } }, -{ "type": "Feature", "properties": { "id": 203519, "name": "Rossville Av/Correll Av", "direction": "S", "lat": 40.546673, "lon": -74.210045, "routes": "SIM25, S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.210045, 40.546673 ] } }, -{ "type": "Feature", "properties": { "id": 203521, "name": "Woodrow Rd/Helios Pl", "direction": "W", "lat": 40.541576, "lon": -74.21031, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.21031, 40.541576 ] } }, -{ "type": "Feature", "properties": { "id": 203522, "name": "Woodrow Rd/Winant Av", "direction": "W", "lat": 40.541443, "lon": -74.21519, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.21519, 40.541443 ] } }, -{ "type": "Feature", "properties": { "id": 203523, "name": "Bloomingdale Rd/Kramer Av", "direction": "NW", "lat": 40.54195, "lon": -74.21794, "routes": "SIM26, S55, S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.21794, 40.54195 ] } }, -{ "type": "Feature", "properties": { "id": 203524, "name": "Bloomingdale Rd/Correll Av", "direction": "N", "lat": 40.54538, "lon": -74.21929, "routes": "S55, S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.21929, 40.54538 ] } }, -{ "type": "Feature", "properties": { "id": 203525, "name": "Bloomingdale Rd/Veterans Rd East", "direction": "NW", "lat": 40.548214, "lon": -74.22038, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.22038, 40.548214 ] } }, -{ "type": "Feature", "properties": { "id": 203526, "name": "Bloomingdale Rd/Veterans Rd East", "direction": "SE", "lat": 40.547962, "lon": -74.220535, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.220535, 40.547962 ] } }, -{ "type": "Feature", "properties": { "id": 203527, "name": "Bloomingdale Rd/Shiel Av", "direction": "S", "lat": 40.544415, "lon": -74.21915, "routes": "S55, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.21915, 40.544415 ] } }, -{ "type": "Feature", "properties": { "id": 203528, "name": "Bloomingdale Rd/Opp Kramer Av", "direction": "SE", "lat": 40.54201, "lon": -74.218185, "routes": "S55, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.218185, 40.54201 ] } }, -{ "type": "Feature", "properties": { "id": 203531, "name": "Rossville Av/Woodrow Rd", "direction": "N", "lat": 40.542652, "lon": -74.20832, "routes": "S74, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.20832, 40.542652 ] } }, -{ "type": "Feature", "properties": { "id": 203532, "name": "Rossville Av/Correll Av", "direction": "N", "lat": 40.546364, "lon": -74.20978, "routes": "S74, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.20978, 40.546364 ] } }, -{ "type": "Feature", "properties": { "id": 203533, "name": "Rossville Av/Selkirk St", "direction": "NW", "lat": 40.549847, "lon": -74.2111, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.2111, 40.549847 ] } }, -{ "type": "Feature", "properties": { "id": 203534, "name": "Rossville Av/Pond St", "direction": "N", "lat": 40.55188, "lon": -74.21189, "routes": "SIM25, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.21189, 40.55188 ] } }, -{ "type": "Feature", "properties": { "id": 203536, "name": "Arthur Kill Rd/Bloomingdale Rd", "direction": "SW", "lat": 40.549713, "lon": -74.22225, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.22225, 40.549713 ] } }, -{ "type": "Feature", "properties": { "id": 203537, "name": "Forest Av/Maple Pkwy", "direction": "E", "lat": 40.625973, "lon": -74.15681, "routes": "SIM33C, SIM33, S48, SIM34, SIM30, S98" }, "geometry": { "type": "Point", "coordinates": [ -74.15681, 40.625973 ] } }, -{ "type": "Feature", "properties": { "id": 203540, "name": "Saint George Ferry/Ramp A S66", "direction": "W", "lat": 40.643097, "lon": -74.073715, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.073715, 40.643097 ] } }, -{ "type": "Feature", "properties": { "id": 203541, "name": "Decker Av/Palmer Av", "direction": "NE", "lat": 40.630573, "lon": -74.13424, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13424, 40.630573 ] } }, -{ "type": "Feature", "properties": { "id": 203542, "name": "Arthur Kill Rd/Richmond Valley Rd", "direction": "N", "lat": 40.5212, "lon": -74.23942, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.23942, 40.5212 ] } }, -{ "type": "Feature", "properties": { "id": 203543, "name": "Arthur Kill Rd/Major League Plaza", "direction": "N", "lat": 40.522587, "lon": -74.23902, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.23902, 40.522587 ] } }, -{ "type": "Feature", "properties": { "id": 203544, "name": "Arthur Kill Rd/South Bridge St", "direction": "N", "lat": 40.524765, "lon": -74.2392, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.2392, 40.524765 ] } }, -{ "type": "Feature", "properties": { "id": 203545, "name": "Arthur Kill Rd/Englewood Av", "direction": "NE", "lat": 40.533848, "lon": -74.23669, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23669, 40.533848 ] } }, -{ "type": "Feature", "properties": { "id": 203546, "name": "Arthur Kill Rd/Winant Pl", "direction": "N", "lat": 40.536564, "lon": -74.23738, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23738, 40.536564 ] } }, -{ "type": "Feature", "properties": { "id": 203547, "name": "Richmond Rd/Hunter Av", "direction": "SW", "lat": 40.583805, "lon": -74.10788, "routes": "S74, S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10788, 40.583805 ] } }, -{ "type": "Feature", "properties": { "id": 203548, "name": "Arthur Kill Rd/Ellis Rd", "direction": "S", "lat": 40.541256, "lon": -74.2376, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.2376, 40.541256 ] } }, -{ "type": "Feature", "properties": { "id": 203549, "name": "Arthur Kill Rd/South Bridge St", "direction": "S", "lat": 40.525085, "lon": -74.23933, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.23933, 40.525085 ] } }, -{ "type": "Feature", "properties": { "id": 203550, "name": "Arthur Kill Rd/Richmond Valley Rd", "direction": "S", "lat": 40.521374, "lon": -74.239586, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.239586, 40.521374 ] } }, -{ "type": "Feature", "properties": { "id": 203551, "name": "Rossville Av/Mason Blvd", "direction": "N", "lat": 40.544674, "lon": -74.2091, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.2091, 40.544674 ] } }, -{ "type": "Feature", "properties": { "id": 203552, "name": "Rossville Av/Mason Blvd", "direction": "S", "lat": 40.54399, "lon": -74.209045, "routes": "S84, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.209045, 40.54399 ] } }, -{ "type": "Feature", "properties": { "id": 203553, "name": "Lincoln Av/Edison St", "direction": "NW", "lat": 40.57878, "lon": -74.10744, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.10744, 40.57878 ] } }, -{ "type": "Feature", "properties": { "id": 203554, "name": "Clove Rd/Niagara St", "direction": "SE", "lat": 40.615623, "lon": -74.10304, "routes": "S93, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.10304, 40.615623 ] } }, -{ "type": "Feature", "properties": { "id": 203556, "name": "Mill Rd/Fox Ln", "direction": "NE", "lat": 40.555614, "lon": -74.116394, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.116394, 40.555614 ] } }, -{ "type": "Feature", "properties": { "id": 203557, "name": "Merry Mount St/Travis Av", "direction": "NE", "lat": 40.590687, "lon": -74.15861, "routes": "S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.15861, 40.590687 ] } }, -{ "type": "Feature", "properties": { "id": 203558, "name": "Mill Rd/Promenade Av", "direction": "NE", "lat": 40.556995, "lon": -74.114914, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.114914, 40.556995 ] } }, -{ "type": "Feature", "properties": { "id": 203559, "name": "North Gannon Av/Bradley Av", "direction": "W", "lat": 40.60856, "lon": -74.13246, "routes": "SIM32, SIM33C, S61, S91, S57, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.13246, 40.60856 ] } }, -{ "type": "Feature", "properties": { "id": 203560, "name": "Mill Rd/Roberts Dr", "direction": "NE", "lat": 40.560352, "lon": -74.112915, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.112915, 40.560352 ] } }, -{ "type": "Feature", "properties": { "id": 203561, "name": "Mill Rd/Tysens Ln", "direction": "NE", "lat": 40.561707, "lon": -74.11198, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11198, 40.561707 ] } }, -{ "type": "Feature", "properties": { "id": 203562, "name": "Mill Rd/Ebbitts St", "direction": "SE", "lat": 40.564194, "lon": -74.110115, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.110115, 40.564194 ] } }, -{ "type": "Feature", "properties": { "id": 203563, "name": "Mill Rd/Peter Av", "direction": "SW", "lat": 40.56023, "lon": -74.11315, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11315, 40.56023 ] } }, -{ "type": "Feature", "properties": { "id": 203564, "name": "Mill Rd/Isabella Av", "direction": "S", "lat": 40.55788, "lon": -74.11332, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11332, 40.55788 ] } }, -{ "type": "Feature", "properties": { "id": 203565, "name": "Mill Rd/Guyon Av", "direction": "W", "lat": 40.557217, "lon": -74.1146, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.1146, 40.557217 ] } }, -{ "type": "Feature", "properties": { "id": 203566, "name": "Mill Rd/Aviston St", "direction": "SW", "lat": 40.55569, "lon": -74.11661, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11661, 40.55569 ] } }, -{ "type": "Feature", "properties": { "id": 203568, "name": "Goethals Rd North/Lambert St", "direction": "NW", "lat": 40.61775, "lon": -74.16042, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.16042, 40.61775 ] } }, -{ "type": "Feature", "properties": { "id": 203569, "name": "Rossville Av/Veterans Rd West", "direction": "SE", "lat": 40.554913, "lon": -74.21328, "routes": "S74, SIM25, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.21328, 40.554913 ] } }, -{ "type": "Feature", "properties": { "id": 203570, "name": "Rossville Av/Veterans Rd East", "direction": "N", "lat": 40.55455, "lon": -74.21294, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.21294, 40.55455 ] } }, -{ "type": "Feature", "properties": { "id": 203572, "name": "Woodrow Rd/Lenevar Av", "direction": "E", "lat": 40.54144, "lon": -74.21008, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.21008, 40.54144 ] } }, -{ "type": "Feature", "properties": { "id": 203574, "name": "South Av/Travis Av", "direction": "NE", "lat": 40.60248, "lon": -74.18413, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.18413, 40.60248 ] } }, -{ "type": "Feature", "properties": { "id": 203575, "name": "South Av/Opp 1000 South Av", "direction": "NE", "lat": 40.616077, "lon": -74.17234, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.17234, 40.616077 ] } }, -{ "type": "Feature", "properties": { "id": 203576, "name": "South Av/1000 South Av", "direction": "SW", "lat": 40.615562, "lon": -74.17316, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.17316, 40.615562 ] } }, -{ "type": "Feature", "properties": { "id": 203577, "name": "South Av/Travis Av", "direction": "SW", "lat": 40.60241, "lon": -74.18456, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.18456, 40.60241 ] } }, -{ "type": "Feature", "properties": { "id": 203580, "name": "Huguenot Av/Rathbun Av", "direction": "SE", "lat": 40.539894, "lon": -74.19584, "routes": "SIM24, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.19584, 40.539894 ] } }, -{ "type": "Feature", "properties": { "id": 203582, "name": "Huguenot Av/ Drumgoole Rd East", "direction": "SE", "lat": 40.53452, "lon": -74.193214, "routes": "SIM24, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.193214, 40.53452 ] } }, -{ "type": "Feature", "properties": { "id": 203585, "name": "Arden Av/Drumgoole Rd East", "direction": "NW", "lat": 40.546833, "lon": -74.18101, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.18101, 40.546833 ] } }, -{ "type": "Feature", "properties": { "id": 203586, "name": "Arden Av/Woodrow Rd", "direction": "NW", "lat": 40.550224, "lon": -74.18766, "routes": "SIM23, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.18766, 40.550224 ] } }, -{ "type": "Feature", "properties": { "id": 203588, "name": "Arden Av/Hampton Green", "direction": "SE", "lat": 40.554745, "lon": -74.19348, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.19348, 40.554745 ] } }, -{ "type": "Feature", "properties": { "id": 203592, "name": "Veterans Rd East/Arthur Kill Rd", "direction": "NE", "lat": 40.55713, "lon": -74.20282, "routes": "SIM24, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.20282, 40.55713 ] } }, -{ "type": "Feature", "properties": { "id": 203593, "name": "Arthur Kill Rd/Woodrow Rd", "direction": "W", "lat": 40.565266, "lon": -74.18129, "routes": "SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.18129, 40.565266 ] } }, -{ "type": "Feature", "properties": { "id": 203597, "name": "Annadale Rd/Drumgoole Rd East", "direction": "N", "lat": 40.5546, "lon": -74.17579, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17579, 40.5546 ] } }, -{ "type": "Feature", "properties": { "id": 203598, "name": "Annadale Rd/Dorval Av", "direction": "N", "lat": 40.559185, "lon": -74.17673, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.17673, 40.559185 ] } }, -{ "type": "Feature", "properties": { "id": 203601, "name": "Leverett Av/Doane Av", "direction": "E", "lat": 40.556503, "lon": -74.15591, "routes": "SIM6, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.15591, 40.556503 ] } }, -{ "type": "Feature", "properties": { "id": 203602, "name": "Giffords Ln/Katan Av", "direction": "S", "lat": 40.552998, "lon": -74.15115, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15115, 40.552998 ] } }, -{ "type": "Feature", "properties": { "id": 203603, "name": "Watchogue Rd/Willow Rd East", "direction": "E", "lat": 40.61745, "lon": -74.151726, "routes": "SIM3, SIM34, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.151726, 40.61745 ] } }, -{ "type": "Feature", "properties": { "id": 203605, "name": "Port Richmond Av/Walker St", "direction": "SW", "lat": 40.629726, "lon": -74.1406, "routes": "SIM3C, SIM3, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.1406, 40.629726 ] } }, -{ "type": "Feature", "properties": { "id": 203607, "name": "Watchogue Rd/Cambridge Av", "direction": "E", "lat": 40.617107, "lon": -74.14838, "routes": "SIM3C, SIM3, SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.14838, 40.617107 ] } }, -{ "type": "Feature", "properties": { "id": 203608, "name": "South Gannon Av/Willowbrook Rd", "direction": "E", "lat": 40.607594, "lon": -74.14702, "routes": "SIM33C, SIM32, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.14702, 40.607594 ] } }, -{ "type": "Feature", "properties": { "id": 203609, "name": "South Gannon Av/Wooley Av", "direction": "E", "lat": 40.60726, "lon": -74.14045, "routes": "SIM33C, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.14045, 40.60726 ] } }, -{ "type": "Feature", "properties": { "id": 203611, "name": "South Gannon Av/Bradley Av", "direction": "E", "lat": 40.607693, "lon": -74.13171, "routes": "SIM31, SIM33, SIM32, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.13171, 40.607693 ] } }, -{ "type": "Feature", "properties": { "id": 203612, "name": "South Gannon Av/Gansevoort Blvd", "direction": "E", "lat": 40.608166, "lon": -74.126854, "routes": "SIM31, SIM33, SIM32, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.126854, 40.608166 ] } }, -{ "type": "Feature", "properties": { "id": 203613, "name": "Schmidts Ln/Manor Rd", "direction": "E", "lat": 40.608814, "lon": -74.12062, "routes": "SIM31, SIM32, SIM33C, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.12062, 40.608814 ] } }, -{ "type": "Feature", "properties": { "id": 203614, "name": "Schmidts Ln/Slosson Av", "direction": "E", "lat": 40.609303, "lon": -74.11669, "routes": "SIM32, SIM31, SIM33C, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.11669, 40.609303 ] } }, -{ "type": "Feature", "properties": { "id": 203615, "name": "Slosson Av/Victory Blvd", "direction": "S", "lat": 40.612793, "lon": -74.11706, "routes": "SIM34, SIM3, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.11706, 40.612793 ] } }, -{ "type": "Feature", "properties": { "id": 203616, "name": "Martling Av/Manor Rd", "direction": "E", "lat": 40.621006, "lon": -74.12336, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.12336, 40.621006 ] } }, -{ "type": "Feature", "properties": { "id": 203617, "name": "Martling Av/Slosson Av", "direction": "E", "lat": 40.621655, "lon": -74.11978, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.11978, 40.621655 ] } }, -{ "type": "Feature", "properties": { "id": 203625, "name": "Richmond Rd/Mckinley Av", "direction": "E", "lat": 40.57254, "lon": -74.13975, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13975, 40.57254 ] } }, -{ "type": "Feature", "properties": { "id": 203634, "name": "Father Capodanno Blvd/Graham Blvd", "direction": "SW", "lat": 40.57484, "lon": -74.08478, "routes": "SIM9, S81, SIM5, SIM6, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.08478, 40.57484 ] } }, -{ "type": "Feature", "properties": { "id": 203635, "name": "Mill Rd/Stoneham St", "direction": "N", "lat": 40.55853, "lon": -74.11331, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11331, 40.55853 ] } }, -{ "type": "Feature", "properties": { "id": 203637, "name": "Saint George Ferry/Ramp B S51 & S81", "direction": "W", "lat": 40.64313, "lon": -74.074, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.074, 40.64313 ] } }, -{ "type": "Feature", "properties": { "id": 203638, "name": "Targee St/De Kalb St", "direction": "NE", "lat": 40.608788, "lon": -74.08823, "routes": "S76, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.08823, 40.608788 ] } }, -{ "type": "Feature", "properties": { "id": 203642, "name": "Hylan Blvd/Cunningham Rd", "direction": "E", "lat": 40.508846, "lon": -74.22172, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.22172, 40.508846 ] } }, -{ "type": "Feature", "properties": { "id": 203643, "name": "Delafield Av/Clove Rd", "direction": "E", "lat": 40.629154, "lon": -74.12326, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12326, 40.629154 ] } }, -{ "type": "Feature", "properties": { "id": 203644, "name": "Richmond Rd/Andrews Av", "direction": "E", "lat": 40.572926, "lon": -74.13648, "routes": "S54, S74, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.13648, 40.572926 ] } }, -{ "type": "Feature", "properties": { "id": 203645, "name": "Richmond Rd/Lighthouse Av", "direction": "W", "lat": 40.572456, "lon": -74.14123, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.14123, 40.572456 ] } }, -{ "type": "Feature", "properties": { "id": 203646, "name": "Richmond Rd/St Patricks Pl", "direction": "W", "lat": 40.572037, "lon": -74.146706, "routes": "S54, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.146706, 40.572037 ] } }, -{ "type": "Feature", "properties": { "id": 203647, "name": "Hylan Blvd/Kenny Rd", "direction": "E", "lat": 40.509506, "lon": -74.218285, "routes": "S59, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.218285, 40.509506 ] } }, -{ "type": "Feature", "properties": { "id": 203649, "name": "Arthur Kill Rd/Opp Aspen Knolls", "direction": "W", "lat": 40.564358, "lon": -74.18638, "routes": "S74, SIM4C, S56, S84, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.18638, 40.564358 ] } }, -{ "type": "Feature", "properties": { "id": 203650, "name": "Bay St/Borough Pl", "direction": "N", "lat": 40.640614, "lon": -74.07567, "routes": "S46, S62, S92, S74, S76, S48, S78, S98, S66, S52, S91, S61, S96, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07567, 40.640614 ] } }, -{ "type": "Feature", "properties": { "id": 203651, "name": "Rockland Av/Manor Rd", "direction": "NW", "lat": 40.58775, "lon": -74.13636, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13636, 40.58775 ] } }, -{ "type": "Feature", "properties": { "id": 203652, "name": "Richmond Av/Christopher Ln", "direction": "N", "lat": 40.6147, "lon": -74.15744, "routes": "SIM8, SIM8X, S44, S59, S94, S89" }, "geometry": { "type": "Point", "coordinates": [ -74.15744, 40.6147 ] } }, -{ "type": "Feature", "properties": { "id": 203653, "name": "Richmond Av/Jules Dr", "direction": "SW", "lat": 40.618526, "lon": -74.15527, "routes": "SIM33C, SIM33, SIM34, SIM3, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.15527, 40.618526 ] } }, -{ "type": "Feature", "properties": { "id": 203655, "name": "Arthur Kill Rd/Center St", "direction": "NE", "lat": 40.571396, "lon": -74.14721, "routes": "S74, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.14721, 40.571396 ] } }, -{ "type": "Feature", "properties": { "id": 203656, "name": "Seguine Av/Johanna Ln", "direction": "SE", "lat": 40.522762, "lon": -74.19942, "routes": "S56, S55" }, "geometry": { "type": "Point", "coordinates": [ -74.19942, 40.522762 ] } }, -{ "type": "Feature", "properties": { "id": 203662, "name": "Seaview Hospital/Traffic Loop", "direction": "SE", "lat": 40.593, "lon": -74.13438, "routes": "S57, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13438, 40.593 ] } }, -{ "type": "Feature", "properties": { "id": 203663, "name": "Seaview Hospital/Dr E Robitzek Building", "direction": "S", "lat": 40.59142, "lon": -74.132454, "routes": "S57, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.132454, 40.59142 ] } }, -{ "type": "Feature", "properties": { "id": 203664, "name": "Seaview Hospital Exit/Traffic Loop", "direction": "NW", "lat": 40.593266, "lon": -74.134186, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.134186, 40.593266 ] } }, -{ "type": "Feature", "properties": { "id": 203665, "name": "Rossville Av/Woodrow Rd", "direction": "SE", "lat": 40.541805, "lon": -74.208115, "routes": "S84, S74, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.208115, 40.541805 ] } }, -{ "type": "Feature", "properties": { "id": 203672, "name": "Richmond Rd/Rockland Av", "direction": "E", "lat": 40.576233, "lon": -74.12683, "routes": "S57, S74" }, "geometry": { "type": "Point", "coordinates": [ -74.12683, 40.576233 ] } }, -{ "type": "Feature", "properties": { "id": 203674, "name": "Tompkins Av/Saint Marys Av", "direction": "NW", "lat": 40.61398, "lon": -74.072296, "routes": "S78, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.072296, 40.61398 ] } }, -{ "type": "Feature", "properties": { "id": 203677, "name": "Forest Av/Goethals Rd North", "direction": "NE", "lat": 40.625576, "lon": -74.176285, "routes": "S40, SIM30, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.176285, 40.625576 ] } }, -{ "type": "Feature", "properties": { "id": 203680, "name": "Hylan Blvd/Spratt Av", "direction": "SW", "lat": 40.555157, "lon": -74.1298, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.1298, 40.555157 ] } }, -{ "type": "Feature", "properties": { "id": 203682, "name": "Richmond Rd/Rockland Av", "direction": "N", "lat": 40.576214, "lon": -74.12699, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.12699, 40.576214 ] } }, -{ "type": "Feature", "properties": { "id": 203683, "name": "Hylan Blvd/Ross Av", "direction": "NE", "lat": 40.56862, "lon": -74.11145, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.11145, 40.56862 ] } }, -{ "type": "Feature", "properties": { "id": 203685, "name": "Richmond Av/Forest Hill Rd", "direction": "N", "lat": 40.57071, "lon": -74.16957, "routes": "SIM8, SIM31, SIM4C, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.16957, 40.57071 ] } }, -{ "type": "Feature", "properties": { "id": 203687, "name": "Castleton Av/Treadwell Av", "direction": "E", "lat": 40.635983, "lon": -74.137924, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.137924, 40.635983 ] } }, -{ "type": "Feature", "properties": { "id": 203688, "name": "Richmond Rd/Norden St", "direction": "NE", "lat": 40.59358, "lon": -74.100075, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.100075, 40.59358 ] } }, -{ "type": "Feature", "properties": { "id": 203689, "name": "Forest Hill Rd/Rockland Av", "direction": "S", "lat": 40.589153, "lon": -74.14585, "routes": "SIM31, S91, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.14585, 40.589153 ] } }, -{ "type": "Feature", "properties": { "id": 203690, "name": "Bay St/Nautilus St", "direction": "NW", "lat": 40.610386, "lon": -74.06331, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06331, 40.610386 ] } }, -{ "type": "Feature", "properties": { "id": 203691, "name": "Cedar Grove Av/Garibaldi Av", "direction": "NE", "lat": 40.5616, "lon": -74.10014, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10014, 40.5616 ] } }, -{ "type": "Feature", "properties": { "id": 203692, "name": "Bay St/Shore Acres Dr", "direction": "NW", "lat": 40.60877, "lon": -74.06212, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.06212, 40.60877 ] } }, -{ "type": "Feature", "properties": { "id": 203693, "name": "Richmond Av/Monsey Pl", "direction": "S", "lat": 40.624336, "lon": -74.14903, "routes": "SIM33C, S44, SIM3C, SIM33, S94, S59, SIM3, SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.14903, 40.624336 ] } }, -{ "type": "Feature", "properties": { "id": 203694, "name": "Narrows Rd North/Saint Johns Av", "direction": "W", "lat": 40.60671, "lon": -74.075615, "routes": "SIM3C, SIM7, SIM33C, SIM10, SIM11, S93, S79+, SIM1, SIM15, SIM1C, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.075615, 40.60671 ] } }, -{ "type": "Feature", "properties": { "id": 203695, "name": "Hylan Blvd/Old Town Rd", "direction": "SW", "lat": 40.59556, "lon": -74.08617, "routes": "SIM1, SIM11, S79+, SIM10, SIM7, SIM1C, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08617, 40.59556 ] } }, -{ "type": "Feature", "properties": { "id": 203696, "name": "Hylan Blvd/Coddington Av", "direction": "SW", "lat": 40.57017, "lon": -74.11024, "routes": "SIM5, SIM10, SIM1, SIM7, SIM1C, SIM9, SIM6, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -74.11024, 40.57017 ] } }, -{ "type": "Feature", "properties": { "id": 203697, "name": "Hylan Blvd/Isabella Av", "direction": "SW", "lat": 40.56118, "lon": -74.119415, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.119415, 40.56118 ] } }, -{ "type": "Feature", "properties": { "id": 203698, "name": "Hylan Blvd/Liberty Av", "direction": "NE", "lat": 40.586117, "lon": -74.09228, "routes": "S79+, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.09228, 40.586117 ] } }, -{ "type": "Feature", "properties": { "id": 203699, "name": "Hylan Blvd/Reid Av", "direction": "N", "lat": 40.59454, "lon": -74.08627, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.08627, 40.59454 ] } }, -{ "type": "Feature", "properties": { "id": 203700, "name": "Hylan Blvd/Quintard St", "direction": "NE", "lat": 40.596233, "lon": -74.085655, "routes": "SIM10, S78, SIM7, S79+, SIM1, SIM11, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -74.085655, 40.596233 ] } }, -{ "type": "Feature", "properties": { "id": 203701, "name": "Hylan Blvd/Mallory Av", "direction": "E", "lat": 40.598553, "lon": -74.08082, "routes": "SIM1C, SIM11, SIM1, SIM7, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -74.08082, 40.598553 ] } }, -{ "type": "Feature", "properties": { "id": 203709, "name": "Victory Blvd/Cebra Av", "direction": "SW", "lat": 40.633778, "lon": -74.08598, "routes": "S48, S61, S66" }, "geometry": { "type": "Point", "coordinates": [ -74.08598, 40.633778 ] } }, -{ "type": "Feature", "properties": { "id": 203710, "name": "Victory Blvd/Westcott Blvd", "direction": "W", "lat": 40.612785, "lon": -74.1274, "routes": "SIM3C, SIM3, S61, SIM34, S66, S62" }, "geometry": { "type": "Point", "coordinates": [ -74.1274, 40.612785 ] } }, -{ "type": "Feature", "properties": { "id": 203714, "name": "Watchogue Rd/Levit Av", "direction": "W", "lat": 40.617268, "lon": -74.14881, "routes": "SIM34, SIM3, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.14881, 40.617268 ] } }, -{ "type": "Feature", "properties": { "id": 203715, "name": "Watchogue Rd/Willow Rd East", "direction": "W", "lat": 40.61762, "lon": -74.15224, "routes": "SIM3, SIM34, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.15224, 40.61762 ] } }, -{ "type": "Feature", "properties": { "id": 203718, "name": "Richmond Rd/Norden St", "direction": "SW", "lat": 40.593063, "lon": -74.10071, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.10071, 40.593063 ] } }, -{ "type": "Feature", "properties": { "id": 203720, "name": "South Av/Brabant St", "direction": "N", "lat": 40.632065, "lon": -74.16627, "routes": "S90, SIM33C, S40, SIM34, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.16627, 40.632065 ] } }, -{ "type": "Feature", "properties": { "id": 203721, "name": "Arden Av/Drumgoole Rd West", "direction": "SE", "lat": 40.546947, "lon": -74.18144, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.18144, 40.546947 ] } }, -{ "type": "Feature", "properties": { "id": 203723, "name": "Narrows Rd South/Richmond Rd", "direction": "SE", "lat": 40.60863, "lon": -74.090675, "routes": "S93" }, "geometry": { "type": "Point", "coordinates": [ -74.090675, 40.60863 ] } }, -{ "type": "Feature", "properties": { "id": 203724, "name": "Narrows Rd South/Targee St", "direction": "E", "lat": 40.607754, "lon": -74.08903, "routes": "SIM33C, SIM35, SIM3C, S93, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.08903, 40.607754 ] } }, -{ "type": "Feature", "properties": { "id": 203728, "name": "Steuben St/West Fingerboard Rd", "direction": "S", "lat": 40.601192, "lon": -74.07655, "routes": "SIM11, SIM1C, SIM7, SIM1, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -74.07655, 40.601192 ] } }, -{ "type": "Feature", "properties": { "id": 203730, "name": "Forest Av/South Av", "direction": "E", "lat": 40.627113, "lon": -74.16596, "routes": "SIM34, SIM33C, SIM33, S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.16596, 40.627113 ] } }, -{ "type": "Feature", "properties": { "id": 203731, "name": "Martling Av/Brookspond Pl", "direction": "SW", "lat": 40.623917, "lon": -74.118256, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.118256, 40.623917 ] } }, -{ "type": "Feature", "properties": { "id": 203732, "name": "Richmond Terr/Nicholas Av", "direction": "E", "lat": 40.639664, "lon": -74.13918, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.13918, 40.639664 ] } }, -{ "type": "Feature", "properties": { "id": 203733, "name": "Narrows Rd North/Targee St", "direction": "W", "lat": 40.608746, "lon": -74.08812, "routes": "SIM15, SIM33C, SIM3C, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.08812, 40.608746 ] } }, -{ "type": "Feature", "properties": { "id": 203735, "name": "Martling Av/Slosson Av", "direction": "W", "lat": 40.62178, "lon": -74.11959, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.11959, 40.62178 ] } }, -{ "type": "Feature", "properties": { "id": 203737, "name": "Norway Av/Scott Av", "direction": "SE", "lat": 40.592766, "lon": -74.07825, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.07825, 40.592766 ] } }, -{ "type": "Feature", "properties": { "id": 203739, "name": "South Av/Forest Av", "direction": "N", "lat": 40.62752, "lon": -74.166435, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.166435, 40.62752 ] } }, -{ "type": "Feature", "properties": { "id": 203740, "name": "South Av/Netherland Av", "direction": "N", "lat": 40.629223, "lon": -74.16636, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.16636, 40.629223 ] } }, -{ "type": "Feature", "properties": { "id": 203741, "name": "New York Av/Coast Guard Dr", "direction": "SE", "lat": 40.605667, "lon": -74.060005, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.060005, 40.605667 ] } }, -{ "type": "Feature", "properties": { "id": 203742, "name": "Battery Rd/Air Force Reserve", "direction": "W", "lat": 40.60101, "lon": -74.05773, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.05773, 40.60101 ] } }, -{ "type": "Feature", "properties": { "id": 203743, "name": "Battery Rd/Tennessee Rd", "direction": "W", "lat": 40.600388, "lon": -74.05964, "routes": "S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.05964, 40.600388 ] } }, -{ "type": "Feature", "properties": { "id": 203744, "name": "New York Av/Marshall Rd", "direction": "SE", "lat": 40.602646, "lon": -74.057846, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.057846, 40.602646 ] } }, -{ "type": "Feature", "properties": { "id": 203745, "name": "New York Av/South Rd", "direction": "NW", "lat": 40.60555, "lon": -74.059746, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.059746, 40.60555 ] } }, -{ "type": "Feature", "properties": { "id": 203746, "name": "New York Av/Tompkins Av", "direction": "W", "lat": 40.602764, "lon": -74.05763, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.05763, 40.602764 ] } }, -{ "type": "Feature", "properties": { "id": 203747, "name": "Battery Rd/Tennessee Rd", "direction": "E", "lat": 40.60014, "lon": -74.05986, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.05986, 40.60014 ] } }, -{ "type": "Feature", "properties": { "id": 203753, "name": "Forest Av/Lawrence Av", "direction": "E", "lat": 40.630363, "lon": -74.10707, "routes": "S98, S48, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.10707, 40.630363 ] } }, -{ "type": "Feature", "properties": { "id": 203756, "name": "Hylan Blvd/Reynolds St", "direction": "SW", "lat": 40.60998, "lon": -74.07446, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07446, 40.60998 ] } }, -{ "type": "Feature", "properties": { "id": 203757, "name": "Richmond Rd/Lighthouse Av", "direction": "W", "lat": 40.572487, "lon": -74.141556, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.141556, 40.572487 ] } }, -{ "type": "Feature", "properties": { "id": 203760, "name": "Forest Av/United Artists Theaters", "direction": "NE", "lat": 40.626904, "lon": -74.17353, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.17353, 40.626904 ] } }, -{ "type": "Feature", "properties": { "id": 203762, "name": "Forest Av/South Av", "direction": "W", "lat": 40.62766, "lon": -74.16778, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.16778, 40.62766 ] } }, -{ "type": "Feature", "properties": { "id": 203763, "name": "Forest Av/Home Depot", "direction": "W", "lat": 40.627594, "lon": -74.17219, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.17219, 40.627594 ] } }, -{ "type": "Feature", "properties": { "id": 203765, "name": "Reon Av/Henning St", "direction": "W", "lat": 40.611366, "lon": -74.11716, "routes": "SIM33C, SIM31, SIM33, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.11716, 40.611366 ] } }, -{ "type": "Feature", "properties": { "id": 203766, "name": "North Gannon Av/Manor Rd", "direction": "W", "lat": 40.610123, "lon": -74.12184, "routes": "SIM33, SIM32, SIM33C, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.12184, 40.610123 ] } }, -{ "type": "Feature", "properties": { "id": 203767, "name": "North Gannon Av/Gansevoort Blvd", "direction": "W", "lat": 40.60897, "lon": -74.12767, "routes": "SIM33, SIM31, SIM33C, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.12767, 40.60897 ] } }, -{ "type": "Feature", "properties": { "id": 203770, "name": "North Gannon Av/Willowbrook Rd", "direction": "W", "lat": 40.60857, "lon": -74.14705, "routes": "SIM32, SIM33C, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.14705, 40.60857 ] } }, -{ "type": "Feature", "properties": { "id": 203772, "name": "Richmond Av/Yona Av", "direction": "NE", "lat": 40.61243, "lon": -74.15908, "routes": "SIM33C, S59, SIM4, S44, SIM4C, SIM33, SIM8, S94" }, "geometry": { "type": "Point", "coordinates": [ -74.15908, 40.61243 ] } }, -{ "type": "Feature", "properties": { "id": 203776, "name": "Wilder Av/Pinewood Av", "direction": "N", "lat": 40.569942, "lon": -74.13399, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.13399, 40.569942 ] } }, -{ "type": "Feature", "properties": { "id": 203778, "name": "Clarke Av/Wilder Av", "direction": "W", "lat": 40.5653, "lon": -74.1344, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.1344, 40.5653 ] } }, -{ "type": "Feature", "properties": { "id": 203786, "name": "Richmond Rd/Aultman Av", "direction": "W", "lat": 40.57306, "lon": -74.13675, "routes": "SIM15, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13675, 40.57306 ] } }, -{ "type": "Feature", "properties": { "id": 203793, "name": "Saint George Ferry/Ramp B", "direction": "W", "lat": 40.643482, "lon": -74.07293, "routes": "S51, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.07293, 40.643482 ] } }, -{ "type": "Feature", "properties": { "id": 203805, "name": "Arden Av/Crown Av", "direction": "SE", "lat": 40.549683, "lon": -74.186844, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.186844, 40.549683 ] } }, -{ "type": "Feature", "properties": { "id": 203808, "name": "Bradley Av/Harold St", "direction": "N", "lat": 40.601494, "lon": -74.131165, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.131165, 40.601494 ] } }, -{ "type": "Feature", "properties": { "id": 203810, "name": "Clove Rd/Martling Av", "direction": "E", "lat": 40.624405, "lon": -74.116844, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.116844, 40.624405 ] } }, -{ "type": "Feature", "properties": { "id": 203814, "name": "Drumgoole Rd West/Annadale Rd", "direction": "SW", "lat": 40.556644, "lon": -74.17585, "routes": "SIM4, SIM4C, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.17585, 40.556644 ] } }, -{ "type": "Feature", "properties": { "id": 203815, "name": "Lamberts Ln/ Richmond Av", "direction": "W", "lat": 40.614853, "lon": -74.15829, "routes": "SIM4X, SIM4, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.15829, 40.614853 ] } }, -{ "type": "Feature", "properties": { "id": 203817, "name": "Richmond Hill Rd/Richmond Av", "direction": "SE", "lat": 40.588806, "lon": -74.1674, "routes": "S89" }, "geometry": { "type": "Point", "coordinates": [ -74.1674, 40.588806 ] } }, -{ "type": "Feature", "properties": { "id": 203824, "name": "Huguenot Av/Ramona Av", "direction": "NW", "lat": 40.53939, "lon": -74.195465, "routes": "SIM24, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.195465, 40.53939 ] } }, -{ "type": "Feature", "properties": { "id": 203827, "name": "Arthur Kill Rd/West Service Rd", "direction": "SW", "lat": 40.557796, "lon": -74.20679, "routes": "SIM2, SIM23, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.20679, 40.557796 ] } }, -{ "type": "Feature", "properties": { "id": 203828, "name": "Seaview Av/Olympia Blvd", "direction": "NW", "lat": 40.58253, "lon": -74.08379, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08379, 40.58253 ] } }, -{ "type": "Feature", "properties": { "id": 203829, "name": "South Av/Lois Ln", "direction": "SW", "lat": 40.612026, "lon": -74.17596, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.17596, 40.612026 ] } }, -{ "type": "Feature", "properties": { "id": 203830, "name": "South Av/Lois Ln", "direction": "NE", "lat": 40.612965, "lon": -74.174736, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.174736, 40.612965 ] } }, -{ "type": "Feature", "properties": { "id": 203831, "name": "Yukon Av/Target Driveway", "direction": "SE", "lat": 40.575935, "lon": -74.16769, "routes": "S94, S61, S44, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.16769, 40.575935 ] } }, -{ "type": "Feature", "properties": { "id": 203833, "name": "Craig Av/Hylan Blvd", "direction": "S", "lat": 40.50298, "lon": -74.25147, "routes": "SIM26, SIM2, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.25147, 40.50298 ] } }, -{ "type": "Feature", "properties": { "id": 203834, "name": "Page Av/Hylan Blvd", "direction": "N", "lat": 40.508102, "lon": -74.23007, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.23007, 40.508102 ] } }, -{ "type": "Feature", "properties": { "id": 203846, "name": "Richmond Terr/Grandview Av", "direction": "W", "lat": 40.639957, "lon": -74.16504, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.16504, 40.639957 ] } }, -{ "type": "Feature", "properties": { "id": 203849, "name": "Bloomingdale Rd/Veterans Rd East", "direction": "SE", "lat": 40.52848, "lon": -74.216805, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.216805, 40.52848 ] } }, -{ "type": "Feature", "properties": { "id": 203850, "name": "Howard Av/Hillside Av", "direction": "NE", "lat": 40.618324, "lon": -74.093864, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.093864, 40.618324 ] } }, -{ "type": "Feature", "properties": { "id": 203855, "name": "Rossville Av/Wood Ct", "direction": "S", "lat": 40.549168, "lon": -74.211044, "routes": "S74, S84" }, "geometry": { "type": "Point", "coordinates": [ -74.211044, 40.549168 ] } }, -{ "type": "Feature", "properties": { "id": 203867, "name": "Annadale Rd/Posen St", "direction": "N", "lat": 40.54079, "lon": -74.177284, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.177284, 40.54079 ] } }, -{ "type": "Feature", "properties": { "id": 203872, "name": "Armstrong Av/East Brandis Av", "direction": "S", "lat": 40.559258, "lon": -74.162254, "routes": "SIM5, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.162254, 40.559258 ] } }, -{ "type": "Feature", "properties": { "id": 203874, "name": "Armstrong Av/East Brandis Av", "direction": "N", "lat": 40.559563, "lon": -74.16219, "routes": "SIM5, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -74.16219, 40.559563 ] } }, -{ "type": "Feature", "properties": { "id": 203875, "name": "Leverett Av/Colon Av", "direction": "W", "lat": 40.5564, "lon": -74.15704, "routes": "SIM6, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.15704, 40.5564 ] } }, -{ "type": "Feature", "properties": { "id": 203876, "name": "Amboy Rd/Carteret St", "direction": "E", "lat": 40.508488, "lon": -74.248604, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.248604, 40.508488 ] } }, -{ "type": "Feature", "properties": { "id": 203884, "name": "Port Richmond Av/Clinton Pl", "direction": "SW", "lat": 40.632416, "lon": -74.13763, "routes": "S94, S44, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.13763, 40.632416 ] } }, -{ "type": "Feature", "properties": { "id": 203891, "name": "Mcclean Av/Conger St", "direction": "E", "lat": 40.598015, "lon": -74.06638, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.06638, 40.598015 ] } }, -{ "type": "Feature", "properties": { "id": 203896, "name": "Mill Rd/Delwit Av", "direction": "E", "lat": 40.55342, "lon": -74.11725, "routes": "S76" }, "geometry": { "type": "Point", "coordinates": [ -74.11725, 40.55342 ] } }, -{ "type": "Feature", "properties": { "id": 203900, "name": "Seaview Av/Patterson Av", "direction": "SE", "lat": 40.58112, "lon": -74.08166, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08166, 40.58112 ] } }, -{ "type": "Feature", "properties": { "id": 203902, "name": "Eltingville/Transit Center", "direction": "W", "lat": 40.56078, "lon": -74.17073, "routes": "S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.17073, 40.56078 ] } }, -{ "type": "Feature", "properties": { "id": 203903, "name": "Eltingville/Transit Center", "direction": "S", "lat": 40.560387, "lon": -74.17124, "routes": "SIM4C, SIM22, SIM4, SIM31, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.17124, 40.560387 ] } }, -{ "type": "Feature", "properties": { "id": 203919, "name": "Bloomingdale Rd/Englewood Av", "direction": "N", "lat": 40.531414, "lon": -74.217674, "routes": "S55, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.217674, 40.531414 ] } }, -{ "type": "Feature", "properties": { "id": 203922, "name": "Victory Blvd/Brook St", "direction": "SW", "lat": 40.63735, "lon": -74.08059, "routes": "S61, S62, S46, S66, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.08059, 40.63735 ] } }, -{ "type": "Feature", "properties": { "id": 203927, "name": "Lamberts Ln/May Av", "direction": "E", "lat": 40.615562, "lon": -74.16158, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.16158, 40.615562 ] } }, -{ "type": "Feature", "properties": { "id": 203928, "name": "Goethals Rd North/South Av", "direction": "NW", "lat": 40.621773, "lon": -74.168655, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.168655, 40.621773 ] } }, -{ "type": "Feature", "properties": { "id": 203938, "name": "Richmond Terr/Morningstar Rd", "direction": "W", "lat": 40.63794, "lon": -74.1451, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.1451, 40.63794 ] } }, -{ "type": "Feature", "properties": { "id": 203941, "name": "Richmond Av/Rockland Av", "direction": "S", "lat": 40.595207, "lon": -74.16212, "routes": "SIM4, S59, S44, S94, SIM8, SIM4C, S89" }, "geometry": { "type": "Point", "coordinates": [ -74.16212, 40.595207 ] } }, -{ "type": "Feature", "properties": { "id": 203949, "name": "Bloomingdale Rd/Pembrook Loop", "direction": "S", "lat": 40.536415, "lon": -74.21816, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21816, 40.536415 ] } }, -{ "type": "Feature", "properties": { "id": 203951, "name": "Amboy Rd/Bayview Av", "direction": "E", "lat": 40.525513, "lon": -74.20507, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.20507, 40.525513 ] } }, -{ "type": "Feature", "properties": { "id": 203952, "name": "Amboy Rd/Scudder Av", "direction": "W", "lat": 40.525616, "lon": -74.205154, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.205154, 40.525616 ] } }, -{ "type": "Feature", "properties": { "id": 203957, "name": "Luten Av/Deisius St", "direction": "NW", "lat": 40.528263, "lon": -74.19205, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.19205, 40.528263 ] } }, -{ "type": "Feature", "properties": { "id": 203958, "name": "Amboy Rd/Petersons Ln", "direction": "W", "lat": 40.52449, "lon": -74.21137, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21137, 40.52449 ] } }, -{ "type": "Feature", "properties": { "id": 203959, "name": "Amboy Rd/Petersons Ln", "direction": "E", "lat": 40.52449, "lon": -74.21068, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21068, 40.52449 ] } }, -{ "type": "Feature", "properties": { "id": 203965, "name": "Father Capodanno Blvd/Wentworth Av", "direction": "SW", "lat": 40.588356, "lon": -74.068825, "routes": "S52, S51, S81" }, "geometry": { "type": "Point", "coordinates": [ -74.068825, 40.588356 ] } }, -{ "type": "Feature", "properties": { "id": 203966, "name": "Fr Capodanno Bl/Winfield St", "direction": "SW", "lat": 40.586327, "lon": -74.07054, "routes": "S51" }, "geometry": { "type": "Point", "coordinates": [ -74.07054, 40.586327 ] } }, -{ "type": "Feature", "properties": { "id": 203967, "name": "Hylan Blvd/Brook Av", "direction": "E", "lat": 40.55939, "lon": -74.122574, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.122574, 40.55939 ] } }, -{ "type": "Feature", "properties": { "id": 203968, "name": "Amboy Rd/Bloomingdale Rd", "direction": "W", "lat": 40.524033, "lon": -74.21542, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21542, 40.524033 ] } }, -{ "type": "Feature", "properties": { "id": 203972, "name": "Victory Blvd/ Brook St", "direction": "NE", "lat": 40.637306, "lon": -74.080444, "routes": "S62, S61, S48, S66, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.080444, 40.637306 ] } }, -{ "type": "Feature", "properties": { "id": 203973, "name": "Seaview Hospital/Park Ln", "direction": "S", "lat": 40.592384, "lon": -74.13079, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13079, 40.592384 ] } }, -{ "type": "Feature", "properties": { "id": 203975, "name": "Howard Av/Wagner College Driveway", "direction": "N", "lat": 40.616894, "lon": -74.0941, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.0941, 40.616894 ] } }, -{ "type": "Feature", "properties": { "id": 203991, "name": "Seguine Av/Direnzo Ct", "direction": "NW", "lat": 40.520454, "lon": -74.19746, "routes": "SIM25, S56, S55" }, "geometry": { "type": "Point", "coordinates": [ -74.19746, 40.520454 ] } }, -{ "type": "Feature", "properties": { "id": 203996, "name": "Richmond Terr/Simonson Av", "direction": "E", "lat": 40.636936, "lon": -74.151276, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.151276, 40.636936 ] } }, -{ "type": "Feature", "properties": { "id": 203997, "name": "Port Richmond Av/Richmond Terr", "direction": "NE", "lat": 40.64, "lon": -74.131744, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.131744, 40.64 ] } }, -{ "type": "Feature", "properties": { "id": 204000, "name": "College Of Staten Island Loop Rd/South Admin", "direction": "E", "lat": 40.59889, "lon": -74.15169, "routes": "S93" }, "geometry": { "type": "Point", "coordinates": [ -74.15169, 40.59889 ] } }, -{ "type": "Feature", "properties": { "id": 204018, "name": "Richmond Terr/Van Name Av", "direction": "W", "lat": 40.636913, "lon": -74.152916, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.152916, 40.636913 ] } }, -{ "type": "Feature", "properties": { "id": 204019, "name": "Castleton Av/Alaska St", "direction": "E", "lat": 40.634266, "lon": -74.11998, "routes": "S46, S53, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11998, 40.634266 ] } }, -{ "type": "Feature", "properties": { "id": 204020, "name": "Bay St/Slosson Terr", "direction": "N", "lat": 40.64092, "lon": -74.07572, "routes": "S46" }, "geometry": { "type": "Point", "coordinates": [ -74.07572, 40.64092 ] } }, -{ "type": "Feature", "properties": { "id": 204058, "name": "Hylan Blvd/Narrows Rd South", "direction": "N", "lat": 40.605713, "lon": -74.07656, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07656, 40.605713 ] } }, -{ "type": "Feature", "properties": { "id": 204060, "name": "Chelsea Av/Bloomfield Av", "direction": "N", "lat": 40.61529, "lon": -74.186935, "routes": "S90, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.186935, 40.61529 ] } }, -{ "type": "Feature", "properties": { "id": 204061, "name": "5 St/Amazon Fulfillment Center", "direction": "NW", "lat": 40.619015, "lon": -74.18527, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.18527, 40.619015 ] } }, -{ "type": "Feature", "properties": { "id": 204062, "name": "Chelsea Av/Bloomfield Av", "direction": "S", "lat": 40.61495, "lon": -74.187225, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.187225, 40.61495 ] } }, -{ "type": "Feature", "properties": { "id": 204063, "name": "Victory Bl/Beechwood Pl", "direction": "W", "lat": 40.61329, "lon": -74.12034, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.12034, 40.61329 ] } }, -{ "type": "Feature", "properties": { "id": 204064, "name": "Richmond Terr/Nicholas St", "direction": "W", "lat": 40.647438, "lon": -74.080734, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.080734, 40.647438 ] } }, -{ "type": "Feature", "properties": { "id": 204074, "name": "Richmond Terr/Bement Av", "direction": "W", "lat": 40.64293, "lon": -74.11388, "routes": "S40" }, "geometry": { "type": "Point", "coordinates": [ -74.11388, 40.64293 ] } }, -{ "type": "Feature", "properties": { "id": 250000, "name": "Arden Av/Bathgate St", "direction": "NW", "lat": 40.5301, "lon": -74.161835, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.161835, 40.5301 ] } }, -{ "type": "Feature", "properties": { "id": 250002, "name": "Arden Av/Koch Blvd", "direction": "NW", "lat": 40.534966, "lon": -74.16532, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.16532, 40.534966 ] } }, -{ "type": "Feature", "properties": { "id": 250004, "name": "Arden Av/Mosely Av", "direction": "NW", "lat": 40.541527, "lon": -74.170006, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.170006, 40.541527 ] } }, -{ "type": "Feature", "properties": { "id": 250006, "name": "Arden Av/Annadale Rd", "direction": "NW", "lat": 40.544476, "lon": -74.17634, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.17634, 40.544476 ] } }, -{ "type": "Feature", "properties": { "id": 250010, "name": "Huguenot Av/Woodrow Rd", "direction": "NW", "lat": 40.54356, "lon": -74.19733, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.19733, 40.54356 ] } }, -{ "type": "Feature", "properties": { "id": 250011, "name": "Huguenot Av/Avon Green", "direction": "N", "lat": 40.54871, "lon": -74.19999, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.19999, 40.54871 ] } }, -{ "type": "Feature", "properties": { "id": 250016, "name": "Huguenot Av/Avon Green", "direction": "S", "lat": 40.548622, "lon": -74.20016, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.20016, 40.548622 ] } }, -{ "type": "Feature", "properties": { "id": 250020, "name": "Arden Av/Annadale Rd", "direction": "SE", "lat": 40.544315, "lon": -74.176315, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.176315, 40.544315 ] } }, -{ "type": "Feature", "properties": { "id": 250021, "name": "Arden Av/Mosely Av", "direction": "SE", "lat": 40.541206, "lon": -74.16961, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.16961, 40.541206 ] } }, -{ "type": "Feature", "properties": { "id": 250023, "name": "Arden Av/Koch Blvd", "direction": "SE", "lat": 40.534473, "lon": -74.16518, "routes": "SIM23" }, "geometry": { "type": "Point", "coordinates": [ -74.16518, 40.534473 ] } }, -{ "type": "Feature", "properties": { "id": 250028, "name": "Woodrow Rd/Carlton Blvd", "direction": "NE", "lat": 40.552177, "lon": -74.18598, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.18598, 40.552177 ] } }, -{ "type": "Feature", "properties": { "id": 250029, "name": "Woodrow Rd/Berry Av W", "direction": "N", "lat": 40.560204, "lon": -74.18036, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.18036, 40.560204 ] } }, -{ "type": "Feature", "properties": { "id": 250032, "name": "Woodrow Rd/Carlton Blvd", "direction": "SW", "lat": 40.552094, "lon": -74.18617, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.18617, 40.552094 ] } }, -{ "type": "Feature", "properties": { "id": 250036, "name": "Bloomingdale Rd/Sharrotts Rd", "direction": "S", "lat": 40.537495, "lon": -74.21792, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.21792, 40.537495 ] } }, -{ "type": "Feature", "properties": { "id": 250037, "name": "Amboy Rd/Bedell St", "direction": "SW", "lat": 40.52124, "lon": -74.217316, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.217316, 40.52124 ] } }, -{ "type": "Feature", "properties": { "id": 250038, "name": "Bloomingdale Rd/South Service Rd", "direction": "NW", "lat": 40.528152, "lon": -74.216545, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.216545, 40.528152 ] } }, -{ "type": "Feature", "properties": { "id": 250039, "name": "Bloomingdale Rd/Alysia Ct", "direction": "N", "lat": 40.53752, "lon": -74.21773, "routes": "S55, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.21773, 40.53752 ] } }, -{ "type": "Feature", "properties": { "id": 250041, "name": "Amboy Rd/Richmond Valley Rd", "direction": "W", "lat": 40.519123, "lon": -74.22941, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.22941, 40.519123 ] } }, -{ "type": "Feature", "properties": { "id": 250042, "name": "Amboy Rd/Murray St", "direction": "SW", "lat": 40.51674, "lon": -74.2325, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.2325, 40.51674 ] } }, -{ "type": "Feature", "properties": { "id": 250043, "name": "Amboy Rd/Barnard Av", "direction": "SW", "lat": 40.512035, "lon": -74.23963, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.23963, 40.512035 ] } }, -{ "type": "Feature", "properties": { "id": 250045, "name": "Amboy Rd/Main St", "direction": "W", "lat": 40.509, "lon": -74.24723, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.24723, 40.509 ] } }, -{ "type": "Feature", "properties": { "id": 250046, "name": "Amboy Rd/Connecticut St", "direction": "W", "lat": 40.50773, "lon": -74.251495, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.251495, 40.50773 ] } }, -{ "type": "Feature", "properties": { "id": 250047, "name": "Huguenot Av/Drumgoole Rd", "direction": "NW", "lat": 40.53423, "lon": -74.19287, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.19287, 40.53423 ] } }, -{ "type": "Feature", "properties": { "id": 250048, "name": "Amboy Rd/Main St", "direction": "E", "lat": 40.509056, "lon": -74.24677, "routes": "SIM26, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.24677, 40.509056 ] } }, -{ "type": "Feature", "properties": { "id": 250050, "name": "Amboy Rd/Brehaut Av", "direction": "NE", "lat": 40.512375, "lon": -74.23888, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.23888, 40.512375 ] } }, -{ "type": "Feature", "properties": { "id": 250051, "name": "Amboy Rd/Richmond Valley Rd", "direction": "E", "lat": 40.519135, "lon": -74.22731, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.22731, 40.519135 ] } }, -{ "type": "Feature", "properties": { "id": 250053, "name": "Huguenot Av/Lombard Ct", "direction": "NW", "lat": 40.553448, "lon": -74.202126, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.202126, 40.553448 ] } }, -{ "type": "Feature", "properties": { "id": 250054, "name": "Hylan Blvd/Cannon Blvd", "direction": "NE", "lat": 40.565113, "lon": -74.11484, "routes": "SIM5, SIM10, SIM6, SIM1C, SIM7, SIM1, SIM11, SIM9" }, "geometry": { "type": "Point", "coordinates": [ -74.11484, 40.565113 ] } }, -{ "type": "Feature", "properties": { "id": 250057, "name": "Huguenot Av/Drumgoole Rd East", "direction": "NW", "lat": 40.5345, "lon": -74.19301, "routes": "SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.19301, 40.5345 ] } }, -{ "type": "Feature", "properties": { "id": 250058, "name": "Glen St/Victory Blvd", "direction": "N", "lat": 40.591972, "lon": -74.19263, "routes": "SIM25, SIM2, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.19263, 40.591972 ] } }, -{ "type": "Feature", "properties": { "id": 250059, "name": "West Shore Expwy/Victory Blvd", "direction": "S", "lat": 40.589607, "lon": -74.19407, "routes": "SIM25, SIM2, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.19407, 40.589607 ] } }, -{ "type": "Feature", "properties": { "id": 250061, "name": "Woodrow Rd/Shotwell Av", "direction": "NE", "lat": 40.556034, "lon": -74.182144, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.182144, 40.556034 ] } }, -{ "type": "Feature", "properties": { "id": 250062, "name": "Amboy Rd/Bedell St", "direction": "N", "lat": 40.521477, "lon": -74.216995, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.216995, 40.521477 ] } }, -{ "type": "Feature", "properties": { "id": 250065, "name": "Huguenot Av/Amboy Rd", "direction": "NW", "lat": 40.531628, "lon": -74.19149, "routes": "SIM24, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.19149, 40.531628 ] } }, -{ "type": "Feature", "properties": { "id": 250066, "name": "Huguenot Av/Amboy Rd", "direction": "SE", "lat": 40.53177, "lon": -74.191696, "routes": "SIM2, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.191696, 40.53177 ] } }, -{ "type": "Feature", "properties": { "id": 250068, "name": "Amboy Rd/Page Av", "direction": "NE", "lat": 40.516197, "lon": -74.23289, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.23289, 40.516197 ] } }, -{ "type": "Feature", "properties": { "id": 300000, "name": "Oriental Blvd/Mackenzie St", "direction": "W", "lat": 40.57835, "lon": -73.940025, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.940025, 40.57835 ] } }, -{ "type": "Feature", "properties": { "id": 300002, "name": "Oriental Blvd/Jaffray St", "direction": "W", "lat": 40.578068, "lon": -73.94303, "routes": "B49, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.94303, 40.578068 ] } }, -{ "type": "Feature", "properties": { "id": 300003, "name": "Oriental Blvd/Hastings St", "direction": "W", "lat": 40.577908, "lon": -73.94464, "routes": "B1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94464, 40.577908 ] } }, -{ "type": "Feature", "properties": { "id": 300004, "name": "Oriental Blvd/Falmouth St", "direction": "W", "lat": 40.577717, "lon": -73.9462, "routes": "B49, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.9462, 40.577717 ] } }, -{ "type": "Feature", "properties": { "id": 300006, "name": "Oriental Blvd/Dover St", "direction": "W", "lat": 40.577354, "lon": -73.949554, "routes": "B1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.949554, 40.577354 ] } }, -{ "type": "Feature", "properties": { "id": 300007, "name": "Oriental Blvd/Beaumont St", "direction": "W", "lat": 40.57715, "lon": -73.951385, "routes": "B1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.951385, 40.57715 ] } }, -{ "type": "Feature", "properties": { "id": 300008, "name": "Oriental Blvd/West End Av", "direction": "W", "lat": 40.577003, "lon": -73.95272, "routes": "B1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95272, 40.577003 ] } }, -{ "type": "Feature", "properties": { "id": 300009, "name": "Brighton Beach Av/Corbin Pl", "direction": "W", "lat": 40.57738, "lon": -73.95441, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.95441, 40.57738 ] } }, -{ "type": "Feature", "properties": { "id": 300010, "name": "Brighton Beach Av/Brighton 14 St", "direction": "W", "lat": 40.577957, "lon": -73.95638, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.95638, 40.577957 ] } }, -{ "type": "Feature", "properties": { "id": 300011, "name": "Brighton Beach Av/Brighton 12 St", "direction": "W", "lat": 40.57837, "lon": -73.958176, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.958176, 40.57837 ] } }, -{ "type": "Feature", "properties": { "id": 300012, "name": "Brighton Beach Av/Coney Island Av", "direction": "W", "lat": 40.57797, "lon": -73.96025, "routes": "B1, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96025, 40.57797 ] } }, -{ "type": "Feature", "properties": { "id": 300013, "name": "Brighton Beach Av/Brighton 5 St", "direction": "W", "lat": 40.5774, "lon": -73.96284, "routes": "B68, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96284, 40.5774 ] } }, -{ "type": "Feature", "properties": { "id": 300014, "name": "Brighton Beach Av/Brighton 3 St", "direction": "W", "lat": 40.577034, "lon": -73.9646, "routes": "B1, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.9646, 40.577034 ] } }, -{ "type": "Feature", "properties": { "id": 300016, "name": "Brighton Beach Av/Ocean Pkwy", "direction": "W", "lat": 40.57642, "lon": -73.96744, "routes": "B1, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96744, 40.57642 ] } }, -{ "type": "Feature", "properties": { "id": 300017, "name": "Ocean Pkwy/Ocean View Av", "direction": "N", "lat": 40.57874, "lon": -73.96785, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96785, 40.57874 ] } }, -{ "type": "Feature", "properties": { "id": 300018, "name": "Ocean Pkwy/Neptune Av", "direction": "N", "lat": 40.58022, "lon": -73.96757, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96757, 40.58022 ] } }, -{ "type": "Feature", "properties": { "id": 300019, "name": "Ocean Pkwy/West Av", "direction": "N", "lat": 40.581413, "lon": -73.967255, "routes": "B36, B4, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.967255, 40.581413 ] } }, -{ "type": "Feature", "properties": { "id": 300020, "name": "Ocean Pkwy/Shore Pkwy", "direction": "N", "lat": 40.585484, "lon": -73.966324, "routes": "B36, B1, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.966324, 40.585484 ] } }, -{ "type": "Feature", "properties": { "id": 300022, "name": "Avenue X/E 2 St", "direction": "W", "lat": 40.59077, "lon": -73.96878, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96878, 40.59077 ] } }, -{ "type": "Feature", "properties": { "id": 300023, "name": "Avenue X/West St", "direction": "W", "lat": 40.590565, "lon": -73.97063, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.97063, 40.590565 ] } }, -{ "type": "Feature", "properties": { "id": 300025, "name": "Avenue X/Mcdonald Av", "direction": "W", "lat": 40.59019, "lon": -73.974, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.974, 40.59019 ] } }, -{ "type": "Feature", "properties": { "id": 300026, "name": "86 St/Van Sicklen St", "direction": "NW", "lat": 40.59131, "lon": -73.976135, "routes": "B4, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.976135, 40.59131 ] } }, -{ "type": "Feature", "properties": { "id": 300028, "name": "86 St/W 9 St", "direction": "NW", "lat": 40.593826, "lon": -73.98024, "routes": "B1, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98024, 40.593826 ] } }, -{ "type": "Feature", "properties": { "id": 300029, "name": "86 St/W 11 St", "direction": "NW", "lat": 40.595116, "lon": -73.982376, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.982376, 40.595116 ] } }, -{ "type": "Feature", "properties": { "id": 300030, "name": "86 St/Avenue U", "direction": "NW", "lat": 40.595737, "lon": -73.98341, "routes": "B4, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.98341, 40.595737 ] } }, -{ "type": "Feature", "properties": { "id": 300031, "name": "86 St/Stillwell Av", "direction": "NW", "lat": 40.59679, "lon": -73.98519, "routes": "B4, B3, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.98519, 40.59679 ] } }, -{ "type": "Feature", "properties": { "id": 300032, "name": "86 St/25 Av", "direction": "NW", "lat": 40.597874, "lon": -73.98705, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.98705, 40.597874 ] } }, -{ "type": "Feature", "properties": { "id": 300033, "name": "86 St/24 Av", "direction": "NW", "lat": 40.59921, "lon": -73.98923, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.98923, 40.59921 ] } }, -{ "type": "Feature", "properties": { "id": 300034, "name": "86 St/23 Av", "direction": "NW", "lat": 40.600525, "lon": -73.991425, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.991425, 40.600525 ] } }, -{ "type": "Feature", "properties": { "id": 300035, "name": "86 St/Bay Pkwy", "direction": "NW", "lat": 40.60188, "lon": -73.99364, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.99364, 40.60188 ] } }, -{ "type": "Feature", "properties": { "id": 300036, "name": "86 St/21 Av", "direction": "NW", "lat": 40.603237, "lon": -73.9959, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.9959, 40.603237 ] } }, -{ "type": "Feature", "properties": { "id": 300037, "name": "86 St/20 Av", "direction": "NW", "lat": 40.60457, "lon": -73.99809, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.99809, 40.60457 ] } }, -{ "type": "Feature", "properties": { "id": 300038, "name": "86 St/19 Av", "direction": "NW", "lat": 40.6059, "lon": -74.0003, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.0003, 40.6059 ] } }, -{ "type": "Feature", "properties": { "id": 300040, "name": "86 St/18 Av", "direction": "NW", "lat": 40.607723, "lon": -74.00326, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.00326, 40.607723 ] } }, -{ "type": "Feature", "properties": { "id": 300041, "name": "86 St/17 Av", "direction": "NW", "lat": 40.608868, "lon": -74.00512, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.00512, 40.608868 ] } }, -{ "type": "Feature", "properties": { "id": 300042, "name": "86 St/16 Av", "direction": "NW", "lat": 40.61035, "lon": -74.00758, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.00758, 40.61035 ] } }, -{ "type": "Feature", "properties": { "id": 300043, "name": "86 St/15 Av", "direction": "NW", "lat": 40.611706, "lon": -74.00983, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.00983, 40.611706 ] } }, -{ "type": "Feature", "properties": { "id": 300044, "name": "86 St/14 Av", "direction": "NW", "lat": 40.61322, "lon": -74.01241, "routes": "B64, X28, B1, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.01241, 40.61322 ] } }, -{ "type": "Feature", "properties": { "id": 300045, "name": "86 St/13 Av", "direction": "NW", "lat": 40.61406, "lon": -74.013725, "routes": "B1, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.013725, 40.61406 ] } }, -{ "type": "Feature", "properties": { "id": 300046, "name": "13 Av/84 St", "direction": "NE", "lat": 40.61539, "lon": -74.01242, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01242, 40.61539 ] } }, -{ "type": "Feature", "properties": { "id": 300047, "name": "13 Av/82 St", "direction": "NE", "lat": 40.616543, "lon": -74.01124, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01124, 40.616543 ] } }, -{ "type": "Feature", "properties": { "id": 300048, "name": "13 Av/79 St", "direction": "NE", "lat": 40.618206, "lon": -74.0095, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.0095, 40.618206 ] } }, -{ "type": "Feature", "properties": { "id": 300049, "name": "13 Av/77 St", "direction": "NE", "lat": 40.61931, "lon": -74.008354, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.008354, 40.61931 ] } }, -{ "type": "Feature", "properties": { "id": 300050, "name": "13 Av/Bay Ridge Pkwy", "direction": "NE", "lat": 40.62053, "lon": -74.00709, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00709, 40.62053 ] } }, -{ "type": "Feature", "properties": { "id": 300051, "name": "13 Av/73 St", "direction": "NE", "lat": 40.62166, "lon": -74.005905, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.005905, 40.62166 ] } }, -{ "type": "Feature", "properties": { "id": 300052, "name": "13 Av/71 St", "direction": "NE", "lat": 40.62276, "lon": -74.00477, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00477, 40.62276 ] } }, -{ "type": "Feature", "properties": { "id": 300053, "name": "Bay Ridge Av/13 Av", "direction": "NW", "lat": 40.624096, "lon": -74.004425, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.004425, 40.624096 ] } }, -{ "type": "Feature", "properties": { "id": 300054, "name": "Bay Ridge Av/12 Av", "direction": "NW", "lat": 40.62526, "lon": -74.00636, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00636, 40.62526 ] } }, -{ "type": "Feature", "properties": { "id": 300055, "name": "Bay Ridge Av/11 Av", "direction": "NW", "lat": 40.6266, "lon": -74.00859, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00859, 40.6266 ] } }, -{ "type": "Feature", "properties": { "id": 300056, "name": "Bay Ridge Av/10 Av", "direction": "NW", "lat": 40.62789, "lon": -74.01072, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01072, 40.62789 ] } }, -{ "type": "Feature", "properties": { "id": 300057, "name": "Bay Ridge Av/Fort Hamilton Pkwy", "direction": "NW", "lat": 40.628925, "lon": -74.012436, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.012436, 40.628925 ] } }, -{ "type": "Feature", "properties": { "id": 300060, "name": "Ovington Av/6 Av", "direction": "NW", "lat": 40.631428, "lon": -74.01874, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01874, 40.631428 ] } }, -{ "type": "Feature", "properties": { "id": 300061, "name": "Bay Ridge Av/6 Av", "direction": "NW", "lat": 40.632553, "lon": -74.018875, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.018875, 40.632553 ] } }, -{ "type": "Feature", "properties": { "id": 300062, "name": "Bay Ridge Av/5 Av", "direction": "NW", "lat": 40.633457, "lon": -74.02087, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.02087, 40.633457 ] } }, -{ "type": "Feature", "properties": { "id": 300063, "name": "Bay Ridge Av/4 Av", "direction": "NW", "lat": 40.63484, "lon": -74.02387, "routes": "B9, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.02387, 40.63484 ] } }, -{ "type": "Feature", "properties": { "id": 300064, "name": "Bay Ridge Av/3 Av", "direction": "W", "lat": 40.635937, "lon": -74.026505, "routes": "B9, X37, B64, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.026505, 40.635937 ] } }, -{ "type": "Feature", "properties": { "id": 300065, "name": "Bay Ridge Av/Ridge Blvd", "direction": "W", "lat": 40.63671, "lon": -74.02901, "routes": "B9, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.02901, 40.63671 ] } }, -{ "type": "Feature", "properties": { "id": 300066, "name": "Bay Ridge Av/Colonial Rd", "direction": "W", "lat": 40.637512, "lon": -74.03161, "routes": "X27, B9, X37, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.03161, 40.637512 ] } }, -{ "type": "Feature", "properties": { "id": 300067, "name": "Narrows Av/Bay Ridge Av", "direction": "SW", "lat": 40.63788, "lon": -74.03409, "routes": "B9, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.03409, 40.63788 ] } }, -{ "type": "Feature", "properties": { "id": 300068, "name": "Narrows Av/Mackay Pl", "direction": "S", "lat": 40.63658, "lon": -74.03462, "routes": "B9, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.03462, 40.63658 ] } }, -{ "type": "Feature", "properties": { "id": 300071, "name": "Bay Ridge Av/Shore Rd", "direction": "E", "lat": 40.63857, "lon": -74.03537, "routes": "X27, B9, X37, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.03537, 40.63857 ] } }, -{ "type": "Feature", "properties": { "id": 300073, "name": "Bay Ridge Av/Colonial Rd", "direction": "E", "lat": 40.63719, "lon": -74.03092, "routes": "B64, X27, X37, B9" }, "geometry": { "type": "Point", "coordinates": [ -74.03092, 40.63719 ] } }, -{ "type": "Feature", "properties": { "id": 300074, "name": "Bay Ridge Av/Ridge Blvd", "direction": "E", "lat": 40.63638, "lon": -74.02831, "routes": "B9, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.02831, 40.63638 ] } }, -{ "type": "Feature", "properties": { "id": 300075, "name": "Bay Ridge Av/3 Av", "direction": "SE", "lat": 40.635437, "lon": -74.02551, "routes": "B64, B9" }, "geometry": { "type": "Point", "coordinates": [ -74.02551, 40.635437 ] } }, -{ "type": "Feature", "properties": { "id": 300076, "name": "Bay Ridge Av/4 Av", "direction": "SE", "lat": 40.63441, "lon": -74.02321, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.02321, 40.63441 ] } }, -{ "type": "Feature", "properties": { "id": 300077, "name": "Bay Ridge Av/5 Av", "direction": "SE", "lat": 40.633495, "lon": -74.02121, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.02121, 40.633495 ] } }, -{ "type": "Feature", "properties": { "id": 300078, "name": "Bay Ridge Av/6 Av", "direction": "SE", "lat": 40.63216, "lon": -74.01833, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01833, 40.63216 ] } }, -{ "type": "Feature", "properties": { "id": 300079, "name": "Bay Ridge Av/7 Av", "direction": "SE", "lat": 40.631622, "lon": -74.01712, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01712, 40.631622 ] } }, -{ "type": "Feature", "properties": { "id": 300080, "name": "Bay Ridge Av/7 Av", "direction": "SE", "lat": 40.63078, "lon": -74.01573, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01573, 40.63078 ] } }, -{ "type": "Feature", "properties": { "id": 300082, "name": "Bay Ridge Av/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.628414, "lon": -74.01182, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01182, 40.628414 ] } }, -{ "type": "Feature", "properties": { "id": 300084, "name": "Bay Ridge Av/11 Av", "direction": "SE", "lat": 40.626114, "lon": -74.00801, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00801, 40.626114 ] } }, -{ "type": "Feature", "properties": { "id": 300085, "name": "Bay Ridge Av/12 Av", "direction": "SE", "lat": 40.624783, "lon": -74.005806, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.005806, 40.624783 ] } }, -{ "type": "Feature", "properties": { "id": 300086, "name": "Bay Ridge Av/13 Av", "direction": "SE", "lat": 40.62373, "lon": -74.00406, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00406, 40.62373 ] } }, -{ "type": "Feature", "properties": { "id": 300087, "name": "13 Av/71 St", "direction": "SW", "lat": 40.622353, "lon": -74.0054, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.0054, 40.622353 ] } }, -{ "type": "Feature", "properties": { "id": 300088, "name": "13 Av/73 St", "direction": "SW", "lat": 40.62123, "lon": -74.00658, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00658, 40.62123 ] } }, -{ "type": "Feature", "properties": { "id": 300089, "name": "13 Av/Bay Ridge Pkwy", "direction": "SW", "lat": 40.620064, "lon": -74.00778, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00778, 40.620064 ] } }, -{ "type": "Feature", "properties": { "id": 300090, "name": "13 Av/77 St", "direction": "SW", "lat": 40.618935, "lon": -74.00896, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00896, 40.618935 ] } }, -{ "type": "Feature", "properties": { "id": 300091, "name": "13 Av/79 St", "direction": "SW", "lat": 40.6178, "lon": -74.01014, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01014, 40.6178 ] } }, -{ "type": "Feature", "properties": { "id": 300092, "name": "13 Av/82 St", "direction": "SW", "lat": 40.616154, "lon": -74.011856, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.011856, 40.616154 ] } }, -{ "type": "Feature", "properties": { "id": 300093, "name": "13 Av/85 St", "direction": "SW", "lat": 40.614506, "lon": -74.013565, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.013565, 40.614506 ] } }, -{ "type": "Feature", "properties": { "id": 300094, "name": "86 St/13 Av", "direction": "SE", "lat": 40.613804, "lon": -74.013664, "routes": "B1, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.013664, 40.613804 ] } }, -{ "type": "Feature", "properties": { "id": 300095, "name": "86 St/14 Av", "direction": "SE", "lat": 40.612743, "lon": -74.011894, "routes": "X28, B64, B1, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.011894, 40.612743 ] } }, -{ "type": "Feature", "properties": { "id": 300096, "name": "86 St/15 Av", "direction": "SE", "lat": 40.611115, "lon": -74.00922, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.00922, 40.611115 ] } }, -{ "type": "Feature", "properties": { "id": 300097, "name": "86 St/16 Av", "direction": "SE", "lat": 40.61009, "lon": -74.007515, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.007515, 40.61009 ] } }, -{ "type": "Feature", "properties": { "id": 300098, "name": "86 St/17 Av", "direction": "SE", "lat": 40.60833, "lon": -74.0046, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.0046, 40.60833 ] } }, -{ "type": "Feature", "properties": { "id": 300099, "name": "86 St/18 Av", "direction": "SE", "lat": 40.606983, "lon": -74.00238, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.00238, 40.606983 ] } }, -{ "type": "Feature", "properties": { "id": 300100, "name": "86 St/19 Av", "direction": "SE", "lat": 40.60596, "lon": -74.00061, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.00061, 40.60596 ] } }, -{ "type": "Feature", "properties": { "id": 300101, "name": "86 St/20 Av", "direction": "SE", "lat": 40.60461, "lon": -73.99837, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.99837, 40.60461 ] } }, -{ "type": "Feature", "properties": { "id": 300102, "name": "86 St/21 Av", "direction": "SE", "lat": 40.60329, "lon": -73.99629, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.99629, 40.60329 ] } }, -{ "type": "Feature", "properties": { "id": 300103, "name": "86 St/Bay Pkwy", "direction": "SE", "lat": 40.601955, "lon": -73.994026, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.994026, 40.601955 ] } }, -{ "type": "Feature", "properties": { "id": 300104, "name": "86 St/23 Av", "direction": "SE", "lat": 40.600574, "lon": -73.9918, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.9918, 40.600574 ] } }, -{ "type": "Feature", "properties": { "id": 300105, "name": "86 St/24 Av", "direction": "SE", "lat": 40.599285, "lon": -73.98962, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.98962, 40.599285 ] } }, -{ "type": "Feature", "properties": { "id": 300106, "name": "86 St/25 Av", "direction": "SE", "lat": 40.597916, "lon": -73.987366, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.987366, 40.597916 ] } }, -{ "type": "Feature", "properties": { "id": 300107, "name": "86 St/Avenue U", "direction": "SE", "lat": 40.595566, "lon": -73.98349, "routes": "B1, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98349, 40.595566 ] } }, -{ "type": "Feature", "properties": { "id": 300109, "name": "86 St/Avenue V", "direction": "SE", "lat": 40.59372, "lon": -73.98043, "routes": "B4, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.98043, 40.59372 ] } }, -{ "type": "Feature", "properties": { "id": 300110, "name": "86 St/W 8 St", "direction": "SE", "lat": 40.592785, "lon": -73.97889, "routes": "B1, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.97889, 40.592785 ] } }, -{ "type": "Feature", "properties": { "id": 300111, "name": "86 St/Avenue W", "direction": "SE", "lat": 40.5917, "lon": -73.97702, "routes": "B1, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.97702, 40.5917 ] } }, -{ "type": "Feature", "properties": { "id": 300113, "name": "Avenue X/W 1 St", "direction": "E", "lat": 40.590412, "lon": -73.97081, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.97081, 40.590412 ] } }, -{ "type": "Feature", "properties": { "id": 300114, "name": "Avenue X/E 1 St", "direction": "E", "lat": 40.590626, "lon": -73.96889, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96889, 40.590626 ] } }, -{ "type": "Feature", "properties": { "id": 300115, "name": "Avenue X/E 3 St", "direction": "E", "lat": 40.590782, "lon": -73.9671, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.9671, 40.590782 ] } }, -{ "type": "Feature", "properties": { "id": 300116, "name": "Avenue X/Ocean Pkwy", "direction": "E", "lat": 40.590965, "lon": -73.96554, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96554, 40.590965 ] } }, -{ "type": "Feature", "properties": { "id": 300117, "name": "Ocean Pkwy/Shore Pkwy", "direction": "S", "lat": 40.584717, "lon": -73.96689, "routes": "B1, B36, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96689, 40.584717 ] } }, -{ "type": "Feature", "properties": { "id": 300118, "name": "Ocean Pkwy/West Av", "direction": "S", "lat": 40.581608, "lon": -73.967354, "routes": "B1, B36, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.967354, 40.581608 ] } }, -{ "type": "Feature", "properties": { "id": 300119, "name": "Ocean Pkwy/Neptune Av", "direction": "S", "lat": 40.58051, "lon": -73.9677, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.9677, 40.58051 ] } }, -{ "type": "Feature", "properties": { "id": 300120, "name": "Ocean Pkwy/Ocean View Av", "direction": "S", "lat": 40.57815, "lon": -73.96824, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96824, 40.57815 ] } }, -{ "type": "Feature", "properties": { "id": 300122, "name": "Brighton Beach Av/Brighton 1 Pl", "direction": "W", "lat": 40.576645, "lon": -73.966354, "routes": "B1, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.966354, 40.576645 ] } }, -{ "type": "Feature", "properties": { "id": 300123, "name": "Brighton Beach Av/Brighton 3 St", "direction": "E", "lat": 40.57701, "lon": -73.96378, "routes": "B68, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.96378, 40.57701 ] } }, -{ "type": "Feature", "properties": { "id": 300124, "name": "Brighton Beach Av/Brighton 6 St", "direction": "E", "lat": 40.577503, "lon": -73.961555, "routes": "B68, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.961555, 40.577503 ] } }, -{ "type": "Feature", "properties": { "id": 300126, "name": "Brighton Beach Av/Brighton 12 St", "direction": "E", "lat": 40.57816, "lon": -73.95771, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.95771, 40.57816 ] } }, -{ "type": "Feature", "properties": { "id": 300127, "name": "Brighton Beach Av/Brighton 14 St", "direction": "E", "lat": 40.577484, "lon": -73.95535, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.95535, 40.577484 ] } }, -{ "type": "Feature", "properties": { "id": 300128, "name": "Corbin Pl/Brighton Beach Av", "direction": "SE", "lat": 40.577335, "lon": -73.953995, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.953995, 40.577335 ] } }, -{ "type": "Feature", "properties": { "id": 300129, "name": "Oriental Blvd/West End Av", "direction": "E", "lat": 40.576805, "lon": -73.95306, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.95306, 40.576805 ] } }, -{ "type": "Feature", "properties": { "id": 300130, "name": "Oriental Blvd/Beaumont St", "direction": "E", "lat": 40.577, "lon": -73.950516, "routes": "B49, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.950516, 40.577 ] } }, -{ "type": "Feature", "properties": { "id": 300131, "name": "Oriental Blvd/Dover St", "direction": "E", "lat": 40.577175, "lon": -73.94879, "routes": "B1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94879, 40.577175 ] } }, -{ "type": "Feature", "properties": { "id": 300132, "name": "Oriental Blvd/Ocean Av", "direction": "E", "lat": 40.577328, "lon": -73.94738, "routes": "B49, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.94738, 40.577328 ] } }, -{ "type": "Feature", "properties": { "id": 300135, "name": "Oriental Blvd/Kensington St", "direction": "E", "lat": 40.578068, "lon": -73.94123, "routes": "B1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94123, 40.578068 ] } }, -{ "type": "Feature", "properties": { "id": 300137, "name": "E 16 St/Quentin Rd", "direction": "S", "lat": 40.607384, "lon": -73.95718, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.95718, 40.607384 ] } }, -{ "type": "Feature", "properties": { "id": 300138, "name": "E 16 St/Avenue R", "direction": "S", "lat": 40.605995, "lon": -73.9569, "routes": "B2, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.9569, 40.605995 ] } }, -{ "type": "Feature", "properties": { "id": 300139, "name": "Avenue R/E 18 St", "direction": "E", "lat": 40.606033, "lon": -73.954994, "routes": "B2, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.954994, 40.606033 ] } }, -{ "type": "Feature", "properties": { "id": 300140, "name": "Avenue R/Ocean Av", "direction": "E", "lat": 40.606262, "lon": -73.95289, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.95289, 40.606262 ] } }, -{ "type": "Feature", "properties": { "id": 300143, "name": "Avenue R/Bedford Av", "direction": "E", "lat": 40.60679, "lon": -73.9481, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.9481, 40.60679 ] } }, -{ "type": "Feature", "properties": { "id": 300146, "name": "Avenue R/Nostrand Av", "direction": "E", "lat": 40.607307, "lon": -73.94336, "routes": "B2, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.94336, 40.607307 ] } }, -{ "type": "Feature", "properties": { "id": 300147, "name": "Avenue R/Gerritsen Av", "direction": "E", "lat": 40.60749, "lon": -73.941696, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.941696, 40.60749 ] } }, -{ "type": "Feature", "properties": { "id": 300148, "name": "Avenue R/Stuart St", "direction": "NE", "lat": 40.608643, "lon": -73.94161, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.94161, 40.608643 ] } }, -{ "type": "Feature", "properties": { "id": 300150, "name": "Avenue R/E 31 St", "direction": "NE", "lat": 40.61057, "lon": -73.93862, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93862, 40.61057 ] } }, -{ "type": "Feature", "properties": { "id": 300151, "name": "Avenue R/E 33 St", "direction": "NE", "lat": 40.611492, "lon": -73.93719, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93719, 40.611492 ] } }, -{ "type": "Feature", "properties": { "id": 300152, "name": "Avenue R/E 35 St", "direction": "NE", "lat": 40.61241, "lon": -73.93577, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93577, 40.61241 ] } }, -{ "type": "Feature", "properties": { "id": 300153, "name": "Avenue R/E 36 St", "direction": "NE", "lat": 40.61288, "lon": -73.935036, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.935036, 40.61288 ] } }, -{ "type": "Feature", "properties": { "id": 300154, "name": "E 36 St/Fillmore Av", "direction": "SE", "lat": 40.611423, "lon": -73.93333, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93333, 40.611423 ] } }, -{ "type": "Feature", "properties": { "id": 300155, "name": "E 36 St/Avenue S", "direction": "SE", "lat": 40.6098, "lon": -73.931526, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.931526, 40.6098 ] } }, -{ "type": "Feature", "properties": { "id": 300157, "name": "Avenue S/Ryder St", "direction": "NE", "lat": 40.61104, "lon": -73.929214, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.929214, 40.61104 ] } }, -{ "type": "Feature", "properties": { "id": 300158, "name": "Avenue S/Coleman St", "direction": "NE", "lat": 40.611977, "lon": -73.92777, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.92777, 40.611977 ] } }, -{ "type": "Feature", "properties": { "id": 300159, "name": "Avenue S/Flatbush Av", "direction": "NE", "lat": 40.61286, "lon": -73.9264, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.9264, 40.61286 ] } }, -{ "type": "Feature", "properties": { "id": 300163, "name": "Flatbush Av/Avenue T", "direction": "NW", "lat": 40.611477, "lon": -73.92407, "routes": "B46, B9, B2, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92407, 40.611477 ] } }, -{ "type": "Feature", "properties": { "id": 300164, "name": "Avenue S/Flatbush Av", "direction": "SW", "lat": 40.612835, "lon": -73.92668, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.92668, 40.612835 ] } }, -{ "type": "Feature", "properties": { "id": 300165, "name": "Avenue S/Kimball St", "direction": "SW", "lat": 40.611725, "lon": -73.92843, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.92843, 40.611725 ] } }, -{ "type": "Feature", "properties": { "id": 300166, "name": "Avenue S/E 38 St", "direction": "SW", "lat": 40.61079, "lon": -73.929855, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.929855, 40.61079 ] } }, -{ "type": "Feature", "properties": { "id": 300168, "name": "E 36 St/Fillmore Av", "direction": "NW", "lat": 40.611332, "lon": -73.93301, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93301, 40.611332 ] } }, -{ "type": "Feature", "properties": { "id": 300169, "name": "E 36 St/Avenue R", "direction": "NW", "lat": 40.612957, "lon": -73.93482, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93482, 40.612957 ] } }, -{ "type": "Feature", "properties": { "id": 300170, "name": "Avenue R/E 34 St", "direction": "SW", "lat": 40.61217, "lon": -73.9364, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.9364, 40.61217 ] } }, -{ "type": "Feature", "properties": { "id": 300171, "name": "Avenue R/E 32 St", "direction": "SW", "lat": 40.61125, "lon": -73.937836, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.937836, 40.61125 ] } }, -{ "type": "Feature", "properties": { "id": 300172, "name": "Avenue R/Marine Pkwy", "direction": "SW", "lat": 40.610317, "lon": -73.93927, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93927, 40.610317 ] } }, -{ "type": "Feature", "properties": { "id": 300173, "name": "Avenue R/Burnett St", "direction": "SW", "lat": 40.60933, "lon": -73.9408, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.9408, 40.60933 ] } }, -{ "type": "Feature", "properties": { "id": 300174, "name": "Avenue R/Gerritsen Av", "direction": "SW", "lat": 40.608402, "lon": -73.94224, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.94224, 40.608402 ] } }, -{ "type": "Feature", "properties": { "id": 300175, "name": "Avenue R/Nostrand Av", "direction": "W", "lat": 40.607452, "lon": -73.94302, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.94302, 40.607452 ] } }, -{ "type": "Feature", "properties": { "id": 300178, "name": "Avenue R/Bedford Av", "direction": "W", "lat": 40.606956, "lon": -73.947815, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.947815, 40.606956 ] } }, -{ "type": "Feature", "properties": { "id": 300181, "name": "Avenue R/Ocean Av", "direction": "W", "lat": 40.60643, "lon": -73.952545, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.952545, 40.60643 ] } }, -{ "type": "Feature", "properties": { "id": 300182, "name": "Quentin Rd/E 19 St", "direction": "W", "lat": 40.608692, "lon": -73.95483, "routes": "B2, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.95483, 40.608692 ] } }, -{ "type": "Feature", "properties": { "id": 300183, "name": "Quentin Rd/E 16 St", "direction": "W", "lat": 40.60843, "lon": -73.95713, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.95713, 40.60843 ] } }, -{ "type": "Feature", "properties": { "id": 300184, "name": "25 Av/Harway Av", "direction": "NE", "lat": 40.59302, "lon": -73.99218, "routes": "B64, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.99218, 40.59302 ] } }, -{ "type": "Feature", "properties": { "id": 300185, "name": "25 Av/Bath Av", "direction": "NE", "lat": 40.59452, "lon": -73.99062, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.99062, 40.59452 ] } }, -{ "type": "Feature", "properties": { "id": 300186, "name": "25 Av/Benson Av", "direction": "NE", "lat": 40.596462, "lon": -73.9886, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.9886, 40.596462 ] } }, -{ "type": "Feature", "properties": { "id": 300187, "name": "25 Av/84 St", "direction": "NE", "lat": 40.598976, "lon": -73.98599, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.98599, 40.598976 ] } }, -{ "type": "Feature", "properties": { "id": 300188, "name": "25 Av/86 St", "direction": "NE", "lat": 40.5982, "lon": -73.9868, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.9868, 40.5982 ] } }, -{ "type": "Feature", "properties": { "id": 300189, "name": "Stillwell Av/85 St", "direction": "S", "lat": 40.597458, "lon": -73.98551, "routes": "B4, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.98551, 40.597458 ] } }, -{ "type": "Feature", "properties": { "id": 300190, "name": "Avenue U/W 12 St", "direction": "E", "lat": 40.595806, "lon": -73.98323, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.98323, 40.595806 ] } }, -{ "type": "Feature", "properties": { "id": 300191, "name": "Avenue U/W 11 St", "direction": "E", "lat": 40.595966, "lon": -73.981804, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.981804, 40.595966 ] } }, -{ "type": "Feature", "properties": { "id": 300192, "name": "Avenue U/W 9 St", "direction": "E", "lat": 40.59617, "lon": -73.97998, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.97998, 40.59617 ] } }, -{ "type": "Feature", "properties": { "id": 300194, "name": "Avenue U/W 5 St", "direction": "E", "lat": 40.596596, "lon": -73.97608, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.97608, 40.596596 ] } }, -{ "type": "Feature", "properties": { "id": 300195, "name": "Avenue U/Mcdonald Av", "direction": "E", "lat": 40.59689, "lon": -73.973434, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.973434, 40.59689 ] } }, -{ "type": "Feature", "properties": { "id": 300196, "name": "Avenue U/E 1 St", "direction": "E", "lat": 40.59725, "lon": -73.97014, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.97014, 40.59725 ] } }, -{ "type": "Feature", "properties": { "id": 300197, "name": "Avenue U/E 4 St", "direction": "E", "lat": 40.597557, "lon": -73.96738, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.96738, 40.597557 ] } }, -{ "type": "Feature", "properties": { "id": 300198, "name": "Avenue U/Ocean Pkwy", "direction": "E", "lat": 40.59772, "lon": -73.96587, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.96587, 40.59772 ] } }, -{ "type": "Feature", "properties": { "id": 300199, "name": "Avenue U/E 8 St", "direction": "E", "lat": 40.59808, "lon": -73.96263, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.96263, 40.59808 ] } }, -{ "type": "Feature", "properties": { "id": 300200, "name": "Avenue U/Coney Island Av", "direction": "E", "lat": 40.5983, "lon": -73.960396, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.960396, 40.5983 ] } }, -{ "type": "Feature", "properties": { "id": 300201, "name": "Avenue U/E 13 St", "direction": "E", "lat": 40.598602, "lon": -73.95787, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.95787, 40.598602 ] } }, -{ "type": "Feature", "properties": { "id": 300203, "name": "Avenue U/E 18 St", "direction": "E", "lat": 40.59912, "lon": -73.95315, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.95315, 40.59912 ] } }, -{ "type": "Feature", "properties": { "id": 300205, "name": "Avenue U/E 23 St", "direction": "E", "lat": 40.599674, "lon": -73.94811, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.94811, 40.599674 ] } }, -{ "type": "Feature", "properties": { "id": 300206, "name": "Avenue U/Bedford Av", "direction": "E", "lat": 40.599888, "lon": -73.9462, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.9462, 40.599888 ] } }, -{ "type": "Feature", "properties": { "id": 300207, "name": "Avenue U/E 28 St", "direction": "E", "lat": 40.60019, "lon": -73.94341, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.94341, 40.60019 ] } }, -{ "type": "Feature", "properties": { "id": 300208, "name": "Avenue U/Nostrand Av", "direction": "E", "lat": 40.600372, "lon": -73.941956, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.941956, 40.600372 ] } }, -{ "type": "Feature", "properties": { "id": 300209, "name": "Avenue U/Brown St", "direction": "E", "lat": 40.600616, "lon": -73.939545, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.939545, 40.600616 ] } }, -{ "type": "Feature", "properties": { "id": 300210, "name": "Avenue U/Ford St", "direction": "E", "lat": 40.60082, "lon": -73.93772, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.93772, 40.60082 ] } }, -{ "type": "Feature", "properties": { "id": 300211, "name": "Avenue U/Bragg St", "direction": "E", "lat": 40.600975, "lon": -73.93632, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.93632, 40.600975 ] } }, -{ "type": "Feature", "properties": { "id": 300212, "name": "Avenue U/Gerritsen Av", "direction": "NE", "lat": 40.60159, "lon": -73.93511, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.93511, 40.60159 ] } }, -{ "type": "Feature", "properties": { "id": 300213, "name": "Avenue U/Burnett St", "direction": "NE", "lat": 40.602837, "lon": -73.933174, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.933174, 40.602837 ] } }, -{ "type": "Feature", "properties": { "id": 300214, "name": "Avenue U/E 33 St", "direction": "NE", "lat": 40.60495, "lon": -73.9299, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.9299, 40.60495 ] } }, -{ "type": "Feature", "properties": { "id": 300215, "name": "Avenue U/E 35 St", "direction": "NE", "lat": 40.6061, "lon": -73.92812, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.92812, 40.6061 ] } }, -{ "type": "Feature", "properties": { "id": 300216, "name": "Avenue U/E 37 St", "direction": "NE", "lat": 40.606834, "lon": -73.926994, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.926994, 40.606834 ] } }, -{ "type": "Feature", "properties": { "id": 300218, "name": "Avenue U/Coleman St", "direction": "NE", "lat": 40.608707, "lon": -73.924164, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.924164, 40.608707 ] } }, -{ "type": "Feature", "properties": { "id": 300219, "name": "Avenue U/Hendrickson St", "direction": "NE", "lat": 40.609417, "lon": -73.92304, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.92304, 40.609417 ] } }, -{ "type": "Feature", "properties": { "id": 300220, "name": "Avenue U/Flatbush Av", "direction": "NE", "lat": 40.610107, "lon": -73.92179, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.92179, 40.610107 ] } }, -{ "type": "Feature", "properties": { "id": 300222, "name": "Avenue U/E 56 St", "direction": "NE", "lat": 40.612255, "lon": -73.918625, "routes": "B47, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.918625, 40.612255 ] } }, -{ "type": "Feature", "properties": { "id": 300223, "name": "Avenue U/E 57 St", "direction": "NE", "lat": 40.61323, "lon": -73.917206, "routes": "B47, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.917206, 40.61323 ] } }, -{ "type": "Feature", "properties": { "id": 300224, "name": "Avenue U/E 59 St", "direction": "NE", "lat": 40.61416, "lon": -73.91578, "routes": "B3, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91578, 40.61416 ] } }, -{ "type": "Feature", "properties": { "id": 300225, "name": "Avenue U/Mill Av", "direction": "NE", "lat": 40.615353, "lon": -73.91397, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.91397, 40.615353 ] } }, -{ "type": "Feature", "properties": { "id": 300226, "name": "Avenue U/E 64 St", "direction": "NE", "lat": 40.61652, "lon": -73.91203, "routes": "B100, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.91203, 40.61652 ] } }, -{ "type": "Feature", "properties": { "id": 300227, "name": "Avenue U/E 66 St", "direction": "NE", "lat": 40.617184, "lon": -73.91101, "routes": "B100, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.91101, 40.617184 ] } }, -{ "type": "Feature", "properties": { "id": 300228, "name": "Avenue U/E 69 St", "direction": "NE", "lat": 40.61905, "lon": -73.90851, "routes": "B3, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90851, 40.61905 ] } }, -{ "type": "Feature", "properties": { "id": 300229, "name": "Avenue U/E 71 St", "direction": "NE", "lat": 40.61988, "lon": -73.907265, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.907265, 40.61988 ] } }, -{ "type": "Feature", "properties": { "id": 300240, "name": "Avenue U/E 71 St", "direction": "SW", "lat": 40.619675, "lon": -73.90784, "routes": "BM1, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.90784, 40.619675 ] } }, -{ "type": "Feature", "properties": { "id": 300241, "name": "Avenue U/E 69 St", "direction": "SW", "lat": 40.619026, "lon": -73.90884, "routes": "B3, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90884, 40.619026 ] } }, -{ "type": "Feature", "properties": { "id": 300242, "name": "Avenue U/E 66 St", "direction": "SW", "lat": 40.61719, "lon": -73.911316, "routes": "B3, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.911316, 40.61719 ] } }, -{ "type": "Feature", "properties": { "id": 300244, "name": "Avenue U/Mill Av", "direction": "SW", "lat": 40.615234, "lon": -73.91428, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.91428, 40.615234 ] } }, -{ "type": "Feature", "properties": { "id": 300245, "name": "Avenue U/E 59 St", "direction": "SW", "lat": 40.613834, "lon": -73.91644, "routes": "B3, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91644, 40.613834 ] } }, -{ "type": "Feature", "properties": { "id": 300246, "name": "Avenue U/E 57 St", "direction": "SW", "lat": 40.61286, "lon": -73.91791, "routes": "B47, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.91791, 40.61286 ] } }, -{ "type": "Feature", "properties": { "id": 300247, "name": "Avenue U/E 56 St", "direction": "SW", "lat": 40.611916, "lon": -73.919334, "routes": "B47, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.919334, 40.611916 ] } }, -{ "type": "Feature", "properties": { "id": 300249, "name": "Avenue U/Flatbush Av", "direction": "SW", "lat": 40.610027, "lon": -73.92232, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.92232, 40.610027 ] } }, -{ "type": "Feature", "properties": { "id": 300250, "name": "Avenue U/Hendrickson St", "direction": "SW", "lat": 40.609333, "lon": -73.923325, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.923325, 40.609333 ] } }, -{ "type": "Feature", "properties": { "id": 300251, "name": "Avenue U/Kimball St", "direction": "SW", "lat": 40.608204, "lon": -73.92518, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.92518, 40.608204 ] } }, -{ "type": "Feature", "properties": { "id": 300252, "name": "Avenue U/E 37 St", "direction": "SW", "lat": 40.606823, "lon": -73.92731, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.92731, 40.606823 ] } }, -{ "type": "Feature", "properties": { "id": 300253, "name": "Avenue U/E 35 St", "direction": "SW", "lat": 40.60586, "lon": -73.928795, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.928795, 40.60586 ] } }, -{ "type": "Feature", "properties": { "id": 300254, "name": "Avenue U/E 33 St", "direction": "SW", "lat": 40.60492, "lon": -73.930244, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.930244, 40.60492 ] } }, -{ "type": "Feature", "properties": { "id": 300255, "name": "Avenue U/Stuart St", "direction": "SW", "lat": 40.602325, "lon": -73.93416, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.93416, 40.602325 ] } }, -{ "type": "Feature", "properties": { "id": 300256, "name": "Avenue U/Gerritsen Av", "direction": "SW", "lat": 40.60156, "lon": -73.935455, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.935455, 40.60156 ] } }, -{ "type": "Feature", "properties": { "id": 300257, "name": "Avenue U/Coyle St", "direction": "W", "lat": 40.600967, "lon": -73.93759, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.93759, 40.600967 ] } }, -{ "type": "Feature", "properties": { "id": 300258, "name": "Avenue U/Batchelder St", "direction": "W", "lat": 40.600758, "lon": -73.93948, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.93948, 40.600758 ] } }, -{ "type": "Feature", "properties": { "id": 300259, "name": "Avenue U/Nostrand Av", "direction": "W", "lat": 40.60049, "lon": -73.94168, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.94168, 40.60049 ] } }, -{ "type": "Feature", "properties": { "id": 300260, "name": "Avenue U/E 27 St", "direction": "W", "lat": 40.60013, "lon": -73.94519, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.94519, 40.60013 ] } }, -{ "type": "Feature", "properties": { "id": 300261, "name": "Avenue U/Bedford Av", "direction": "W", "lat": 40.59992, "lon": -73.9471, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.9471, 40.59992 ] } }, -{ "type": "Feature", "properties": { "id": 300262, "name": "Avenue U/E 23 St", "direction": "W", "lat": 40.599712, "lon": -73.94895, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.94895, 40.599712 ] } }, -{ "type": "Feature", "properties": { "id": 300263, "name": "Avenue U/Ocean Av", "direction": "W", "lat": 40.599392, "lon": -73.951904, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.951904, 40.599392 ] } }, -{ "type": "Feature", "properties": { "id": 300264, "name": "Avenue U/E 18 St", "direction": "W", "lat": 40.599167, "lon": -73.953926, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.953926, 40.599167 ] } }, -{ "type": "Feature", "properties": { "id": 300265, "name": "Avenue U/E 16 St", "direction": "W", "lat": 40.59894, "lon": -73.955956, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.955956, 40.59894 ] } }, -{ "type": "Feature", "properties": { "id": 300266, "name": "Avenue U/E 13 St", "direction": "W", "lat": 40.59865, "lon": -73.958664, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.958664, 40.59865 ] } }, -{ "type": "Feature", "properties": { "id": 300267, "name": "Avenue U/Coney Island Av", "direction": "W", "lat": 40.598316, "lon": -73.961655, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.961655, 40.598316 ] } }, -{ "type": "Feature", "properties": { "id": 300268, "name": "Avenue U/E 8 St", "direction": "W", "lat": 40.59812, "lon": -73.96344, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.96344, 40.59812 ] } }, -{ "type": "Feature", "properties": { "id": 300270, "name": "Avenue U/E 5 St", "direction": "W", "lat": 40.597713, "lon": -73.967155, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.967155, 40.597713 ] } }, -{ "type": "Feature", "properties": { "id": 300271, "name": "Avenue U/E 2 St", "direction": "W", "lat": 40.59739, "lon": -73.9701, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.9701, 40.59739 ] } }, -{ "type": "Feature", "properties": { "id": 300273, "name": "Avenue U/Mcdonald Av", "direction": "W", "lat": 40.59706, "lon": -73.97304, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.97304, 40.59706 ] } }, -{ "type": "Feature", "properties": { "id": 300274, "name": "Avenue U/Van Sicklen St", "direction": "W", "lat": 40.596855, "lon": -73.97492, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.97492, 40.596855 ] } }, -{ "type": "Feature", "properties": { "id": 300275, "name": "Avenue U/W 5 St", "direction": "W", "lat": 40.596634, "lon": -73.976906, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.976906, 40.596634 ] } }, -{ "type": "Feature", "properties": { "id": 300276, "name": "Avenue U/W 8 St", "direction": "W", "lat": 40.59637, "lon": -73.97933, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.97933, 40.59637 ] } }, -{ "type": "Feature", "properties": { "id": 300277, "name": "Avenue U/W 10 St", "direction": "W", "lat": 40.596107, "lon": -73.98169, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.98169, 40.596107 ] } }, -{ "type": "Feature", "properties": { "id": 300278, "name": "Avenue U/W 12 St", "direction": "W", "lat": 40.595905, "lon": -73.98356, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.98356, 40.595905 ] } }, -{ "type": "Feature", "properties": { "id": 300280, "name": "25 Av/86 St", "direction": "SW", "lat": 40.59768, "lon": -73.98756, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.98756, 40.59768 ] } }, -{ "type": "Feature", "properties": { "id": 300281, "name": "25 Av/Benson Av", "direction": "SW", "lat": 40.595997, "lon": -73.9893, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.9893, 40.595997 ] } }, -{ "type": "Feature", "properties": { "id": 300282, "name": "25 Av/Bath Av", "direction": "SW", "lat": 40.594116, "lon": -73.991264, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.991264, 40.594116 ] } }, -{ "type": "Feature", "properties": { "id": 300283, "name": "25 Av/Harway Av", "direction": "SW", "lat": 40.592834, "lon": -73.992516, "routes": "B64, B3" }, "geometry": { "type": "Point", "coordinates": [ -73.992516, 40.592834 ] } }, -{ "type": "Feature", "properties": { "id": 300284, "name": "Narrows Av/77 St", "direction": "N", "lat": 40.631832, "lon": -74.03638, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.03638, 40.631832 ] } }, -{ "type": "Feature", "properties": { "id": 300285, "name": "77 St/Colonial Rd", "direction": "E", "lat": 40.63116, "lon": -74.03339, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.03339, 40.63116 ] } }, -{ "type": "Feature", "properties": { "id": 300286, "name": "77 St/Ridge Blvd", "direction": "E", "lat": 40.630524, "lon": -74.03071, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.03071, 40.630524 ] } }, -{ "type": "Feature", "properties": { "id": 300287, "name": "77 St/3 Av", "direction": "E", "lat": 40.630005, "lon": -74.02852, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02852, 40.630005 ] } }, -{ "type": "Feature", "properties": { "id": 300288, "name": "4 Av/77 St", "direction": "N", "lat": 40.629658, "lon": -74.02543, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02543, 40.629658 ] } }, -{ "type": "Feature", "properties": { "id": 300289, "name": "Bay Ridge Pkwy/4 Av", "direction": "SE", "lat": 40.630627, "lon": -74.02469, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02469, 40.630627 ] } }, -{ "type": "Feature", "properties": { "id": 300290, "name": "Bay Ridge Pkwy/5 Av", "direction": "SE", "lat": 40.629498, "lon": -74.02281, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02281, 40.629498 ] } }, -{ "type": "Feature", "properties": { "id": 300291, "name": "Bay Ridge Pkwy/6 Av", "direction": "SE", "lat": 40.627827, "lon": -74.01997, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.01997, 40.627827 ] } }, -{ "type": "Feature", "properties": { "id": 300292, "name": "Bay Ridge Pkwy/7 Av", "direction": "SE", "lat": 40.62709, "lon": -74.01877, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.01877, 40.62709 ] } }, -{ "type": "Feature", "properties": { "id": 300293, "name": "Bay Ridge Pkwy/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.62584, "lon": -74.01667, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.01667, 40.62584 ] } }, -{ "type": "Feature", "properties": { "id": 300294, "name": "Bay Ridge Pkwy/10 Av", "direction": "SE", "lat": 40.62412, "lon": -74.01381, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.01381, 40.62412 ] } }, -{ "type": "Feature", "properties": { "id": 300295, "name": "Bay Ridge Pkwy/11 Av", "direction": "SE", "lat": 40.62276, "lon": -74.01157, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.01157, 40.62276 ] } }, -{ "type": "Feature", "properties": { "id": 300296, "name": "Bay Ridge Pkwy/12 Av", "direction": "SE", "lat": 40.62142, "lon": -74.00935, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.00935, 40.62142 ] } }, -{ "type": "Feature", "properties": { "id": 300297, "name": "Bay Ridge Pkwy/13 Av", "direction": "SE", "lat": 40.620354, "lon": -74.00758, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.00758, 40.620354 ] } }, -{ "type": "Feature", "properties": { "id": 300298, "name": "Bay Ridge Pkwy/14 Av", "direction": "SE", "lat": 40.61879, "lon": -74.00497, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.00497, 40.61879 ] } }, -{ "type": "Feature", "properties": { "id": 300299, "name": "Bay Ridge Pkwy/15 Av", "direction": "SE", "lat": 40.617683, "lon": -74.00318, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.00318, 40.617683 ] } }, -{ "type": "Feature", "properties": { "id": 300300, "name": "Bay Ridge Pkwy/New Utrecht Av", "direction": "SE", "lat": 40.615547, "lon": -73.9996, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9996, 40.615547 ] } }, -{ "type": "Feature", "properties": { "id": 300301, "name": "Bay Ridge Pkwy/17 Av", "direction": "SE", "lat": 40.614605, "lon": -73.998055, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.998055, 40.614605 ] } }, -{ "type": "Feature", "properties": { "id": 300302, "name": "Bay Ridge Pkwy/18 Av", "direction": "SE", "lat": 40.613434, "lon": -73.996124, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.996124, 40.613434 ] } }, -{ "type": "Feature", "properties": { "id": 300303, "name": "Bay Ridge Pkwy/19 Av", "direction": "SE", "lat": 40.611946, "lon": -73.99365, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.99365, 40.611946 ] } }, -{ "type": "Feature", "properties": { "id": 300304, "name": "Bay Ridge Pkwy/20 Av", "direction": "SE", "lat": 40.610634, "lon": -73.99149, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.99149, 40.610634 ] } }, -{ "type": "Feature", "properties": { "id": 300305, "name": "Bay Ridge Pkwy/21 Av", "direction": "SE", "lat": 40.609333, "lon": -73.98931, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98931, 40.609333 ] } }, -{ "type": "Feature", "properties": { "id": 300306, "name": "Stillwell Av/Bay Pkwy", "direction": "S", "lat": 40.607635, "lon": -73.98743, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98743, 40.607635 ] } }, -{ "type": "Feature", "properties": { "id": 300307, "name": "Stillwell Av/Kings Hwy", "direction": "S", "lat": 40.606167, "lon": -73.98717, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98717, 40.606167 ] } }, -{ "type": "Feature", "properties": { "id": 300308, "name": "Stillwell Av/23 Av", "direction": "S", "lat": 40.604645, "lon": -73.98688, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98688, 40.604645 ] } }, -{ "type": "Feature", "properties": { "id": 300309, "name": "Stillwell Av/80 St", "direction": "S", "lat": 40.60277, "lon": -73.986534, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.986534, 40.60277 ] } }, -{ "type": "Feature", "properties": { "id": 300310, "name": "Stillwell Av/82 St", "direction": "S", "lat": 40.60071, "lon": -73.98613, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98613, 40.60071 ] } }, -{ "type": "Feature", "properties": { "id": 300311, "name": "Stillwell Av/25 Av", "direction": "S", "lat": 40.59934, "lon": -73.98586, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98586, 40.59934 ] } }, -{ "type": "Feature", "properties": { "id": 300319, "name": "Shell Rd/Avenue Y", "direction": "S", "lat": 40.58764, "lon": -73.97442, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.97442, 40.58764 ] } }, -{ "type": "Feature", "properties": { "id": 300320, "name": "Avenue Z/Shell Rd", "direction": "E", "lat": 40.58574, "lon": -73.973946, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.973946, 40.58574 ] } }, -{ "type": "Feature", "properties": { "id": 300322, "name": "Avenue Z/West St", "direction": "E", "lat": 40.586227, "lon": -73.96954, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96954, 40.586227 ] } }, -{ "type": "Feature", "properties": { "id": 300323, "name": "Avenue Z/Ocean Pkwy", "direction": "E", "lat": 40.586548, "lon": -73.9666, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9666, 40.586548 ] } }, -{ "type": "Feature", "properties": { "id": 300326, "name": "Neptune Av/Ocean Pkwy", "direction": "E", "lat": 40.580395, "lon": -73.96695, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96695, 40.580395 ] } }, -{ "type": "Feature", "properties": { "id": 300328, "name": "Neptune Av/Brighton 6 St", "direction": "E", "lat": 40.58135, "lon": -73.96244, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96244, 40.58135 ] } }, -{ "type": "Feature", "properties": { "id": 300329, "name": "Neptune Av/Coney Island Av", "direction": "E", "lat": 40.581974, "lon": -73.959496, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.959496, 40.581974 ] } }, -{ "type": "Feature", "properties": { "id": 300332, "name": "Sheepshead Bay Rd/Emmons Av", "direction": "NW", "lat": 40.58416, "lon": -73.950714, "routes": "B4, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.950714, 40.58416 ] } }, -{ "type": "Feature", "properties": { "id": 300334, "name": "Voorhies Av/E 14 St", "direction": "W", "lat": 40.58568, "lon": -73.95473, "routes": "B49, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.95473, 40.58568 ] } }, -{ "type": "Feature", "properties": { "id": 300335, "name": "E 14 St/Sheepshead Bay Rd", "direction": "N", "lat": 40.58752, "lon": -73.955124, "routes": "B4, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.955124, 40.58752 ] } }, -{ "type": "Feature", "properties": { "id": 300338, "name": "Avenue Z/E 19 St", "direction": "E", "lat": 40.58836, "lon": -73.950134, "routes": "B49, B36, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.950134, 40.58836 ] } }, -{ "type": "Feature", "properties": { "id": 300339, "name": "Ocean Av/Voorhies Av", "direction": "N", "lat": 40.586613, "lon": -73.94886, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.94886, 40.586613 ] } }, -{ "type": "Feature", "properties": { "id": 300347, "name": "Nostrand Av/Shore Pkwy", "direction": "N", "lat": 40.5859, "lon": -73.93903, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.93903, 40.5859 ] } }, -{ "type": "Feature", "properties": { "id": 300350, "name": "Knapp St/Harkness Av", "direction": "S", "lat": 40.58644, "lon": -73.93159, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.93159, 40.58644 ] } }, -{ "type": "Feature", "properties": { "id": 300351, "name": "Knapp St/Shore Pkwy", "direction": "S", "lat": 40.585033, "lon": -73.93133, "routes": "B44+, B44, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.93133, 40.585033 ] } }, -{ "type": "Feature", "properties": { "id": 300356, "name": "Emmons Av/E 28 St", "direction": "W", "lat": 40.583935, "lon": -73.941086, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.941086, 40.583935 ] } }, -{ "type": "Feature", "properties": { "id": 300357, "name": "Emmons Av/E 26 St", "direction": "W", "lat": 40.583794, "lon": -73.94295, "routes": "B4, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.94295, 40.583794 ] } }, -{ "type": "Feature", "properties": { "id": 300358, "name": "Emmons Av/Dooley St", "direction": "W", "lat": 40.583817, "lon": -73.9452, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9452, 40.583817 ] } }, -{ "type": "Feature", "properties": { "id": 300361, "name": "Avenue Z/Ocean Av", "direction": "W", "lat": 40.58853, "lon": -73.949814, "routes": "B36, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.949814, 40.58853 ] } }, -{ "type": "Feature", "properties": { "id": 300362, "name": "Avenue Z/E 18 St", "direction": "W", "lat": 40.5883, "lon": -73.95188, "routes": "B49, B4, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.95188, 40.5883 ] } }, -{ "type": "Feature", "properties": { "id": 300363, "name": "E 16 St/Sheepshead Bay Rd", "direction": "S", "lat": 40.587307, "lon": -73.95334, "routes": "B4, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95334, 40.587307 ] } }, -{ "type": "Feature", "properties": { "id": 300364, "name": "Sheepshead Bay Rd/Voorhies Av", "direction": "SE", "lat": 40.58542, "lon": -73.95159, "routes": "B49, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.95159, 40.58542 ] } }, -{ "type": "Feature", "properties": { "id": 300366, "name": "Sheepshead Bay Rd/Emmons Av", "direction": "SE", "lat": 40.58362, "lon": -73.950516, "routes": "B49, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.950516, 40.58362 ] } }, -{ "type": "Feature", "properties": { "id": 300367, "name": "Emmons Av/E 16 St", "direction": "W", "lat": 40.58324, "lon": -73.95329, "routes": "B49, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.95329, 40.58324 ] } }, -{ "type": "Feature", "properties": { "id": 300368, "name": "Emmons Av/E 14 St", "direction": "W", "lat": 40.583076, "lon": -73.95458, "routes": "BM3, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.95458, 40.583076 ] } }, -{ "type": "Feature", "properties": { "id": 300369, "name": "Neptune Av/E 12 St", "direction": "W", "lat": 40.582485, "lon": -73.9576, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9576, 40.582485 ] } }, -{ "type": "Feature", "properties": { "id": 300370, "name": "Neptune Av/Coney Island Av", "direction": "W", "lat": 40.581875, "lon": -73.96042, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96042, 40.581875 ] } }, -{ "type": "Feature", "properties": { "id": 300372, "name": "Neptune Av/Brighton 6 St", "direction": "W", "lat": 40.58128, "lon": -73.96325, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96325, 40.58128 ] } }, -{ "type": "Feature", "properties": { "id": 300373, "name": "Neptune Av/Brighton 4 St", "direction": "W", "lat": 40.58093, "lon": -73.96495, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96495, 40.58093 ] } }, -{ "type": "Feature", "properties": { "id": 300374, "name": "Neptune Av/Ocean Pkwy", "direction": "W", "lat": 40.5805, "lon": -73.96715, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96715, 40.5805 ] } }, -{ "type": "Feature", "properties": { "id": 300377, "name": "Avenue Z/Ocean Pkwy", "direction": "W", "lat": 40.586617, "lon": -73.96681, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.96681, 40.586617 ] } }, -{ "type": "Feature", "properties": { "id": 300378, "name": "Avenue Z/West St", "direction": "W", "lat": 40.58633, "lon": -73.969315, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.969315, 40.58633 ] } }, -{ "type": "Feature", "properties": { "id": 300379, "name": "Avenue Z/W 2 St", "direction": "W", "lat": 40.586132, "lon": -73.971146, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.971146, 40.586132 ] } }, -{ "type": "Feature", "properties": { "id": 300380, "name": "Avenue Z/Shell Rd", "direction": "W", "lat": 40.585808, "lon": -73.9742, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9742, 40.585808 ] } }, -{ "type": "Feature", "properties": { "id": 300381, "name": "Shell Rd/Bouck Ct", "direction": "N", "lat": 40.588947, "lon": -73.9741, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9741, 40.588947 ] } }, -{ "type": "Feature", "properties": { "id": 300388, "name": "Stillwell Av/Avenue S", "direction": "N", "lat": 40.600655, "lon": -73.9859, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9859, 40.600655 ] } }, -{ "type": "Feature", "properties": { "id": 300389, "name": "Stillwell Av/Highlawn Av", "direction": "N", "lat": 40.602962, "lon": -73.986336, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.986336, 40.602962 ] } }, -{ "type": "Feature", "properties": { "id": 300390, "name": "Stillwell Av/Quentin Rd", "direction": "N", "lat": 40.60499, "lon": -73.98672, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98672, 40.60499 ] } }, -{ "type": "Feature", "properties": { "id": 300391, "name": "Stillwell Av/Kings Hwy", "direction": "N", "lat": 40.605877, "lon": -73.98688, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98688, 40.605877 ] } }, -{ "type": "Feature", "properties": { "id": 300393, "name": "Bay Ridge Pkwy/Bay Pkwy", "direction": "NW", "lat": 40.60843, "lon": -73.987625, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.987625, 40.60843 ] } }, -{ "type": "Feature", "properties": { "id": 300394, "name": "Bay Ridge Pkwy/21 Av", "direction": "NW", "lat": 40.60975, "lon": -73.98986, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98986, 40.60975 ] } }, -{ "type": "Feature", "properties": { "id": 300395, "name": "Bay Ridge Pkwy/20 Av", "direction": "NW", "lat": 40.611057, "lon": -73.99206, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.99206, 40.611057 ] } }, -{ "type": "Feature", "properties": { "id": 300396, "name": "Bay Ridge Pkwy/19 Av", "direction": "NW", "lat": 40.612408, "lon": -73.99427, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.99427, 40.612408 ] } }, -{ "type": "Feature", "properties": { "id": 300397, "name": "Bay Ridge Pkwy/18 Av", "direction": "NW", "lat": 40.61333, "lon": -73.99583, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.99583, 40.61333 ] } }, -{ "type": "Feature", "properties": { "id": 300398, "name": "Bay Ridge Pkwy/17 Av", "direction": "NW", "lat": 40.615063, "lon": -73.99867, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.99867, 40.615063 ] } }, -{ "type": "Feature", "properties": { "id": 300399, "name": "Bay Ridge Pkwy/New Utrecht Av", "direction": "NW", "lat": 40.61605, "lon": -74.00032, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.00032, 40.61605 ] } }, -{ "type": "Feature", "properties": { "id": 300400, "name": "Bay Ridge Pkwy/15 Av", "direction": "NW", "lat": 40.617886, "lon": -74.003334, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.003334, 40.617886 ] } }, -{ "type": "Feature", "properties": { "id": 300401, "name": "Bay Ridge Pkwy/14 Av", "direction": "NW", "lat": 40.619186, "lon": -74.0055, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.0055, 40.619186 ] } }, -{ "type": "Feature", "properties": { "id": 300402, "name": "Bay Ridge Pkwy/13 Av", "direction": "NW", "lat": 40.62025, "lon": -74.007286, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.007286, 40.62025 ] } }, -{ "type": "Feature", "properties": { "id": 300403, "name": "Bay Ridge Pkwy/12 Av", "direction": "NW", "lat": 40.621574, "lon": -74.0095, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.0095, 40.621574 ] } }, -{ "type": "Feature", "properties": { "id": 300404, "name": "Bay Ridge Pkwy/11 Av", "direction": "NW", "lat": 40.623165, "lon": -74.012115, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.012115, 40.623165 ] } }, -{ "type": "Feature", "properties": { "id": 300405, "name": "Bay Ridge Pkwy/10 Av", "direction": "NW", "lat": 40.624474, "lon": -74.01429, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.01429, 40.624474 ] } }, -{ "type": "Feature", "properties": { "id": 300406, "name": "Bay Ridge Pkwy/Fort Hamilton Pkwy", "direction": "NW", "lat": 40.62572, "lon": -74.016365, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.016365, 40.62572 ] } }, -{ "type": "Feature", "properties": { "id": 300407, "name": "Bay Ridge Pkwy/7 Av", "direction": "NW", "lat": 40.62658, "lon": -74.01776, "routes": "B4, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01776, 40.62658 ] } }, -{ "type": "Feature", "properties": { "id": 300408, "name": "Bay Ridge Pkwy/6 Av", "direction": "NW", "lat": 40.628223, "lon": -74.020515, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.020515, 40.628223 ] } }, -{ "type": "Feature", "properties": { "id": 300409, "name": "Bay Ridge Pkwy/5 Av", "direction": "NW", "lat": 40.629463, "lon": -74.02245, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02245, 40.629463 ] } }, -{ "type": "Feature", "properties": { "id": 300410, "name": "4 Av/Bay Ridge Pkwy", "direction": "S", "lat": 40.630535, "lon": -74.02531, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02531, 40.630535 ] } }, -{ "type": "Feature", "properties": { "id": 300411, "name": "4 Av/77 St", "direction": "S", "lat": 40.62957, "lon": -74.02571, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02571, 40.62957 ] } }, -{ "type": "Feature", "properties": { "id": 300412, "name": "78 St/4 Av", "direction": "W", "lat": 40.628784, "lon": -74.02634, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.02634, 40.628784 ] } }, -{ "type": "Feature", "properties": { "id": 300413, "name": "78 St/3 Av", "direction": "W", "lat": 40.629295, "lon": -74.0285, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.0285, 40.629295 ] } }, -{ "type": "Feature", "properties": { "id": 300414, "name": "78 St/Ridge Blvd", "direction": "W", "lat": 40.63007, "lon": -74.03174, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.03174, 40.63007 ] } }, -{ "type": "Feature", "properties": { "id": 300415, "name": "78 St/Colonial Rd", "direction": "W", "lat": 40.630688, "lon": -74.03436, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.03436, 40.630688 ] } }, -{ "type": "Feature", "properties": { "id": 300418, "name": "Cropsey Av/Bay 49 St", "direction": "NW", "lat": 40.586094, "lon": -73.98789, "routes": "B82, X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.98789, 40.586094 ] } }, -{ "type": "Feature", "properties": { "id": 300419, "name": "Cropsey Av/Bay 46 St", "direction": "NW", "lat": 40.58821, "lon": -73.98959, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98959, 40.58821 ] } }, -{ "type": "Feature", "properties": { "id": 300420, "name": "Cropsey Av/Bay 44 St", "direction": "NW", "lat": 40.58941, "lon": -73.99056, "routes": "B82, X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.99056, 40.58941 ] } }, -{ "type": "Feature", "properties": { "id": 300421, "name": "Cropsey Av/26 Av", "direction": "NW", "lat": 40.59074, "lon": -73.99164, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99164, 40.59074 ] } }, -{ "type": "Feature", "properties": { "id": 300422, "name": "Cropsey Av/25 Av", "direction": "NW", "lat": 40.592278, "lon": -73.99288, "routes": "X38, X28, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99288, 40.592278 ] } }, -{ "type": "Feature", "properties": { "id": 300424, "name": "Cropsey Av/23 Av", "direction": "NW", "lat": 40.59596, "lon": -73.99691, "routes": "B82, B6, X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.99691, 40.59596 ] } }, -{ "type": "Feature", "properties": { "id": 300427, "name": "Bay Pkwy/Bath Av", "direction": "NE", "lat": 40.598408, "lon": -73.99739, "routes": "B6, B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99739, 40.598408 ] } }, -{ "type": "Feature", "properties": { "id": 300428, "name": "Bay Pkwy/Benson Av", "direction": "NE", "lat": 40.600433, "lon": -73.99523, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99523, 40.600433 ] } }, -{ "type": "Feature", "properties": { "id": 300429, "name": "Bay Pkwy/86 St", "direction": "NE", "lat": 40.602337, "lon": -73.99332, "routes": "B82+, B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99332, 40.602337 ] } }, -{ "type": "Feature", "properties": { "id": 300432, "name": "Bay Pkwy/78 St", "direction": "NE", "lat": 40.606365, "lon": -73.98918, "routes": "B82+, B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98918, 40.606365 ] } }, -{ "type": "Feature", "properties": { "id": 300433, "name": "Kings Hwy/Stillwell Av", "direction": "E", "lat": 40.6059, "lon": -73.9866, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.9866, 40.6059 ] } }, -{ "type": "Feature", "properties": { "id": 300434, "name": "Kings Hwy/W 11 St", "direction": "E", "lat": 40.605564, "lon": -73.98435, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98435, 40.605564 ] } }, -{ "type": "Feature", "properties": { "id": 300437, "name": "Kings Hwy/W 5 St", "direction": "E", "lat": 40.604797, "lon": -73.97771, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.97771, 40.604797 ] } }, -{ "type": "Feature", "properties": { "id": 300438, "name": "Kings Hwy/W 3 St", "direction": "E", "lat": 40.60459, "lon": -73.97632, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.97632, 40.60459 ] } }, -{ "type": "Feature", "properties": { "id": 300440, "name": "Kings Hwy/Mcdonald Av", "direction": "E", "lat": 40.604153, "lon": -73.97242, "routes": "B82, B90, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.97242, 40.604153 ] } }, -{ "type": "Feature", "properties": { "id": 300441, "name": "Kings Hwy/E 3 St", "direction": "E", "lat": 40.604424, "lon": -73.969574, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.969574, 40.604424 ] } }, -{ "type": "Feature", "properties": { "id": 300442, "name": "Kings Hwy/Ocean Pkwy", "direction": "NE", "lat": 40.60544, "lon": -73.96736, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.96736, 40.60544 ] } }, -{ "type": "Feature", "properties": { "id": 300443, "name": "Kings Hwy/E 7 St", "direction": "E", "lat": 40.606182, "lon": -73.96527, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.96527, 40.606182 ] } }, -{ "type": "Feature", "properties": { "id": 300445, "name": "Kings Hwy/Coney Island Av", "direction": "E", "lat": 40.607468, "lon": -73.96137, "routes": "B7, B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.96137, 40.607468 ] } }, -{ "type": "Feature", "properties": { "id": 300446, "name": "Kings Hwy/E 13 St", "direction": "E", "lat": 40.607906, "lon": -73.96023, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.96023, 40.607906 ] } }, -{ "type": "Feature", "properties": { "id": 300447, "name": "Kings Hwy/E 16 St", "direction": "E", "lat": 40.608967, "lon": -73.95758, "routes": "B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.95758, 40.608967 ] } }, -{ "type": "Feature", "properties": { "id": 300448, "name": "Kings Hwy/E 18 St", "direction": "E", "lat": 40.61001, "lon": -73.95522, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.95522, 40.61001 ] } }, -{ "type": "Feature", "properties": { "id": 300449, "name": "Kings Hwy/Ocean Av", "direction": "E", "lat": 40.61054, "lon": -73.953735, "routes": "B82, B82+, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.953735, 40.61054 ] } }, -{ "type": "Feature", "properties": { "id": 300450, "name": "Kings Hwy/E 22 St", "direction": "E", "lat": 40.611336, "lon": -73.95118, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.95118, 40.611336 ] } }, -{ "type": "Feature", "properties": { "id": 300451, "name": "Kings Hwy/Bedford Av", "direction": "NE", "lat": 40.61283, "lon": -73.94928, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.94928, 40.61283 ] } }, -{ "type": "Feature", "properties": { "id": 300452, "name": "Kings Hwy/E 27 St", "direction": "NE", "lat": 40.614048, "lon": -73.947586, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.947586, 40.614048 ] } }, -{ "type": "Feature", "properties": { "id": 300453, "name": "Kings Hwy/E 29 St", "direction": "NE", "lat": 40.61524, "lon": -73.94581, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.94581, 40.61524 ] } }, -{ "type": "Feature", "properties": { "id": 300455, "name": "Kings Hwy/Avenue N", "direction": "NE", "lat": 40.617287, "lon": -73.94344, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.94344, 40.617287 ] } }, -{ "type": "Feature", "properties": { "id": 300456, "name": "Kings Hwy/New York Av", "direction": "NE", "lat": 40.61878, "lon": -73.94218, "routes": "B82, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.94218, 40.61878 ] } }, -{ "type": "Feature", "properties": { "id": 300458, "name": "Kings Hwy/E 37 St", "direction": "E", "lat": 40.621437, "lon": -73.939316, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.939316, 40.621437 ] } }, -{ "type": "Feature", "properties": { "id": 300461, "name": "Kings Hwy/E 37 St", "direction": "W", "lat": 40.621517, "lon": -73.93924, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.93924, 40.621517 ] } }, -{ "type": "Feature", "properties": { "id": 300464, "name": "Kings Hwy/Avenue N", "direction": "SW", "lat": 40.6175, "lon": -73.943344, "routes": "B82, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.943344, 40.6175 ] } }, -{ "type": "Feature", "properties": { "id": 300465, "name": "Kings Hwy/Nostrand Av", "direction": "SW", "lat": 40.6162, "lon": -73.94465, "routes": "B82, B7, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.94465, 40.6162 ] } }, -{ "type": "Feature", "properties": { "id": 300466, "name": "Kings Hwy/E 28 St", "direction": "SW", "lat": 40.614914, "lon": -73.946396, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.946396, 40.614914 ] } }, -{ "type": "Feature", "properties": { "id": 300469, "name": "Kings Hwy/E 22 St", "direction": "W", "lat": 40.61136, "lon": -73.951454, "routes": "B82, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.951454, 40.61136 ] } }, -{ "type": "Feature", "properties": { "id": 300470, "name": "Avenue P/Ocean Av", "direction": "W", "lat": 40.61093, "lon": -73.95407, "routes": "B82+, B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.95407, 40.61093 ] } }, -{ "type": "Feature", "properties": { "id": 300471, "name": "E 18 St/Avenue P", "direction": "S", "lat": 40.61034, "lon": -73.955734, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.955734, 40.61034 ] } }, -{ "type": "Feature", "properties": { "id": 300472, "name": "Kings Hwy/E 16 St", "direction": "SW", "lat": 40.608974, "lon": -73.95792, "routes": "B7, B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.95792, 40.608974 ] } }, -{ "type": "Feature", "properties": { "id": 300473, "name": "Kings Hwy/E 13 St", "direction": "W", "lat": 40.608116, "lon": -73.95995, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.95995, 40.608116 ] } }, -{ "type": "Feature", "properties": { "id": 300474, "name": "Kings Hwy/Coney Island Av", "direction": "W", "lat": 40.60725, "lon": -73.96237, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.96237, 40.60725 ] } }, -{ "type": "Feature", "properties": { "id": 300475, "name": "Kings Hwy/E 8 St", "direction": "W", "lat": 40.606373, "lon": -73.965126, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.965126, 40.606373 ] } }, -{ "type": "Feature", "properties": { "id": 300476, "name": "Kings Hwy/Ocean Pkwy", "direction": "W", "lat": 40.605846, "lon": -73.9666, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.9666, 40.605846 ] } }, -{ "type": "Feature", "properties": { "id": 300477, "name": "Kings Hwy/E 4 St", "direction": "W", "lat": 40.60457, "lon": -73.96949, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.96949, 40.60457 ] } }, -{ "type": "Feature", "properties": { "id": 300478, "name": "Kings Hwy/Mcdonald Av", "direction": "W", "lat": 40.604263, "lon": -73.97191, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.97191, 40.604263 ] } }, -{ "type": "Feature", "properties": { "id": 300480, "name": "Kings Hwy/W 2 St", "direction": "W", "lat": 40.60463, "lon": -73.97553, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.97553, 40.60463 ] } }, -{ "type": "Feature", "properties": { "id": 300481, "name": "Kings Hwy/W 4 St", "direction": "W", "lat": 40.60482, "lon": -73.97698, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.97698, 40.60482 ] } }, -{ "type": "Feature", "properties": { "id": 300482, "name": "Kings Hwy/W 6 St", "direction": "W", "lat": 40.605103, "lon": -73.9789, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.9789, 40.605103 ] } }, -{ "type": "Feature", "properties": { "id": 300486, "name": "Kings Hwy/Stillwell Av", "direction": "W", "lat": 40.606014, "lon": -73.98673, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98673, 40.606014 ] } }, -{ "type": "Feature", "properties": { "id": 300488, "name": "Bay Pkwy/79 St", "direction": "SW", "lat": 40.605938, "lon": -73.98971, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98971, 40.605938 ] } }, -{ "type": "Feature", "properties": { "id": 300490, "name": "Bay Pkwy/83 St", "direction": "SW", "lat": 40.60347, "lon": -73.99236, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99236, 40.60347 ] } }, -{ "type": "Feature", "properties": { "id": 300491, "name": "Bay Pkwy/86 St", "direction": "SW", "lat": 40.60212, "lon": -73.993774, "routes": "B6, B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.993774, 40.60212 ] } }, -{ "type": "Feature", "properties": { "id": 300492, "name": "Bay Pkwy/Benson Av", "direction": "SW", "lat": 40.60006, "lon": -73.99592, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99592, 40.60006 ] } }, -{ "type": "Feature", "properties": { "id": 300493, "name": "Bay Pkwy/Bath Av", "direction": "SW", "lat": 40.598675, "lon": -73.99729, "routes": "B82+, B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99729, 40.598675 ] } }, -{ "type": "Feature", "properties": { "id": 300495, "name": "Cropsey Av/Bay Pkwy", "direction": "SE", "lat": 40.596916, "lon": -73.99848, "routes": "B82, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.99848, 40.596916 ] } }, -{ "type": "Feature", "properties": { "id": 300496, "name": "Cropsey Av/23 Av", "direction": "SE", "lat": 40.59589, "lon": -73.99725, "routes": "X28, B82, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.99725, 40.59589 ] } }, -{ "type": "Feature", "properties": { "id": 300497, "name": "Cropsey Av/24 Av", "direction": "SE", "lat": 40.593925, "lon": -73.99485, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99485, 40.593925 ] } }, -{ "type": "Feature", "properties": { "id": 300499, "name": "Cropsey Av/25 Av", "direction": "SE", "lat": 40.59198, "lon": -73.99302, "routes": "X28, X38, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99302, 40.59198 ] } }, -{ "type": "Feature", "properties": { "id": 300500, "name": "Cropsey Av/26 Av", "direction": "SE", "lat": 40.590054, "lon": -73.991455, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.991455, 40.590054 ] } }, -{ "type": "Feature", "properties": { "id": 300501, "name": "Cropsey Av/Bay 44 St", "direction": "SE", "lat": 40.588726, "lon": -73.99039, "routes": "X38, B82, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.99039, 40.588726 ] } }, -{ "type": "Feature", "properties": { "id": 300502, "name": "Cropsey Av/Bay 46 St", "direction": "SE", "lat": 40.587574, "lon": -73.98946, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98946, 40.587574 ] } }, -{ "type": "Feature", "properties": { "id": 300503, "name": "Cropsey Av/Bay 49 St", "direction": "SE", "lat": 40.58599, "lon": -73.98819, "routes": "X38, B82, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.98819, 40.58599 ] } }, -{ "type": "Feature", "properties": { "id": 300505, "name": "Cropsey Av/Bay 37 St", "direction": "NW", "lat": 40.59347, "lon": -73.99399, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99399, 40.59347 ] } }, -{ "type": "Feature", "properties": { "id": 300515, "name": "Bay Pkwy/Stillwell Av", "direction": "NE", "lat": 40.607853, "lon": -73.98752, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98752, 40.607853 ] } }, -{ "type": "Feature", "properties": { "id": 300516, "name": "Bay Pkwy/W 12 St", "direction": "NE", "lat": 40.609802, "lon": -73.9855, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.9855, 40.609802 ] } }, -{ "type": "Feature", "properties": { "id": 300517, "name": "Bay Pkwy/W 10 St", "direction": "NE", "lat": 40.611412, "lon": -73.98382, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98382, 40.611412 ] } }, -{ "type": "Feature", "properties": { "id": 300519, "name": "Bay Pkwy/64 St", "direction": "NE", "lat": 40.614635, "lon": -73.98047, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98047, 40.614635 ] } }, -{ "type": "Feature", "properties": { "id": 300520, "name": "Bay Pkwy/62 St", "direction": "NE", "lat": 40.61574, "lon": -73.97931, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97931, 40.61574 ] } }, -{ "type": "Feature", "properties": { "id": 300521, "name": "Bay Pkwy/60 St", "direction": "NE", "lat": 40.616627, "lon": -73.97844, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97844, 40.616627 ] } }, -{ "type": "Feature", "properties": { "id": 300522, "name": "Bay Pkwy/Mcdonald Av", "direction": "NE", "lat": 40.621243, "lon": -73.97486, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97486, 40.621243 ] } }, -{ "type": "Feature", "properties": { "id": 300523, "name": "Bay Pkwy/E 3 St", "direction": "NE", "lat": 40.622677, "lon": -73.97351, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97351, 40.622677 ] } }, -{ "type": "Feature", "properties": { "id": 300524, "name": "Avenue J/E 5 St", "direction": "E", "lat": 40.624, "lon": -73.97152, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97152, 40.624 ] } }, -{ "type": "Feature", "properties": { "id": 300525, "name": "Avenue J/Ocean Pkwy", "direction": "E", "lat": 40.624187, "lon": -73.9698, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.9698, 40.624187 ] } }, -{ "type": "Feature", "properties": { "id": 300526, "name": "Avenue J/E 8 St", "direction": "E", "lat": 40.62443, "lon": -73.96763, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.96763, 40.62443 ] } }, -{ "type": "Feature", "properties": { "id": 300529, "name": "Avenue J/E 16 St", "direction": "E", "lat": 40.625206, "lon": -73.96057, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.96057, 40.625206 ] } }, -{ "type": "Feature", "properties": { "id": 300530, "name": "Avenue J/E 18 St", "direction": "E", "lat": 40.62547, "lon": -73.958145, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.958145, 40.62547 ] } }, -{ "type": "Feature", "properties": { "id": 300532, "name": "Avenue J/E 22 St", "direction": "E", "lat": 40.62592, "lon": -73.954056, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.954056, 40.62592 ] } }, -{ "type": "Feature", "properties": { "id": 300534, "name": "Bedford Av/Avenue J", "direction": "N", "lat": 40.62655, "lon": -73.951584, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.951584, 40.62655 ] } }, -{ "type": "Feature", "properties": { "id": 300535, "name": "Bedford Av/Avenue I", "direction": "N", "lat": 40.628784, "lon": -73.95195, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.95195, 40.628784 ] } }, -{ "type": "Feature", "properties": { "id": 300536, "name": "Bedford Av/Campus Rd", "direction": "N", "lat": 40.632484, "lon": -73.95271, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.95271, 40.632484 ] } }, -{ "type": "Feature", "properties": { "id": 300538, "name": "Glenwood Rd/Bedford Av", "direction": "E", "lat": 40.633377, "lon": -73.95282, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.95282, 40.633377 ] } }, -{ "type": "Feature", "properties": { "id": 300540, "name": "Glenwood Rd/Flatbush Av", "direction": "NE", "lat": 40.634365, "lon": -73.94954, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94954, 40.634365 ] } }, -{ "type": "Feature", "properties": { "id": 300541, "name": "Glenwood Rd/Nostrand Av", "direction": "E", "lat": 40.633953, "lon": -73.94782, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94782, 40.633953 ] } }, -{ "type": "Feature", "properties": { "id": 300542, "name": "Glenwood Rd/E 32 St", "direction": "E", "lat": 40.634075, "lon": -73.94549, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94549, 40.634075 ] } }, -{ "type": "Feature", "properties": { "id": 300543, "name": "Glenwood Rd/E 34 St", "direction": "E", "lat": 40.634193, "lon": -73.94359, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94359, 40.634193 ] } }, -{ "type": "Feature", "properties": { "id": 300544, "name": "Glenwood Rd/Brooklyn Av", "direction": "E", "lat": 40.63431, "lon": -73.94166, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94166, 40.63431 ] } }, -{ "type": "Feature", "properties": { "id": 300545, "name": "Glenwood Rd/E 38 St", "direction": "E", "lat": 40.634434, "lon": -73.939705, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.939705, 40.634434 ] } }, -{ "type": "Feature", "properties": { "id": 300547, "name": "Avenue H/Albany Av", "direction": "E", "lat": 40.63227, "lon": -73.936584, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.936584, 40.63227 ] } }, -{ "type": "Feature", "properties": { "id": 300548, "name": "Avenue H/E 43 St", "direction": "E", "lat": 40.632385, "lon": -73.93473, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.93473, 40.632385 ] } }, -{ "type": "Feature", "properties": { "id": 300549, "name": "Avenue H/E 45 St", "direction": "E", "lat": 40.632504, "lon": -73.9328, "routes": "BM2, B6, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.9328, 40.632504 ] } }, -{ "type": "Feature", "properties": { "id": 300550, "name": "Avenue H/E 48 St", "direction": "E", "lat": 40.632656, "lon": -73.930405, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.930405, 40.632656 ] } }, -{ "type": "Feature", "properties": { "id": 300551, "name": "Avenue H/Utica Av", "direction": "E", "lat": 40.632744, "lon": -73.92856, "routes": "B103, BM2, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.92856, 40.632744 ] } }, -{ "type": "Feature", "properties": { "id": 300552, "name": "Avenue H/E 52 St", "direction": "E", "lat": 40.632927, "lon": -73.92598, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.92598, 40.632927 ] } }, -{ "type": "Feature", "properties": { "id": 300553, "name": "Avenue H/E 54 St", "direction": "E", "lat": 40.633045, "lon": -73.924126, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.924126, 40.633045 ] } }, -{ "type": "Feature", "properties": { "id": 300557, "name": "Ralph Av/Farragut Rd", "direction": "S", "lat": 40.636986, "lon": -73.91923, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91923, 40.636986 ] } }, -{ "type": "Feature", "properties": { "id": 300559, "name": "Ralph Av/Glenwood Rd", "direction": "S", "lat": 40.63399, "lon": -73.91892, "routes": "B47, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.91892, 40.63399 ] } }, -{ "type": "Feature", "properties": { "id": 300560, "name": "Flatlands Av/Ralph Av", "direction": "NE", "lat": 40.632435, "lon": -73.91796, "routes": "B82, B6, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.91796, 40.632435 ] } }, -{ "type": "Feature", "properties": { "id": 300563, "name": "Flatlands Av/E 80 St", "direction": "NE", "lat": 40.63567, "lon": -73.912834, "routes": "B82, B6, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.912834, 40.63567 ] } }, -{ "type": "Feature", "properties": { "id": 300564, "name": "Flatlands Av/E 82 St", "direction": "NE", "lat": 40.636307, "lon": -73.91184, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.91184, 40.636307 ] } }, -{ "type": "Feature", "properties": { "id": 300565, "name": "Flatlands Av/E 84 St", "direction": "NE", "lat": 40.63748, "lon": -73.91004, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.91004, 40.63748 ] } }, -{ "type": "Feature", "properties": { "id": 300566, "name": "Flatlands Av/E 86 St", "direction": "NE", "lat": 40.63846, "lon": -73.90852, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.90852, 40.63846 ] } }, -{ "type": "Feature", "properties": { "id": 300567, "name": "Flatlands Av/E 88 St", "direction": "NE", "lat": 40.6394, "lon": -73.90707, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.90707, 40.6394 ] } }, -{ "type": "Feature", "properties": { "id": 300568, "name": "Flatlands Av/Remsen Av", "direction": "NE", "lat": 40.64016, "lon": -73.90602, "routes": "B6, B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.90602, 40.64016 ] } }, -{ "type": "Feature", "properties": { "id": 300569, "name": "Flatlands Av/E 92 St", "direction": "NE", "lat": 40.641224, "lon": -73.90424, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.90424, 40.641224 ] } }, -{ "type": "Feature", "properties": { "id": 300570, "name": "Flatlands Av/E 94 St", "direction": "NE", "lat": 40.64223, "lon": -73.90269, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.90269, 40.64223 ] } }, -{ "type": "Feature", "properties": { "id": 300578, "name": "Glenwood Rd/E 103 St", "direction": "NE", "lat": 40.64824, "lon": -73.89747, "routes": "B6, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89747, 40.64824 ] } }, -{ "type": "Feature", "properties": { "id": 300579, "name": "Glenwood Rd/E 105 St", "direction": "NE", "lat": 40.6492, "lon": -73.89599, "routes": "B6, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89599, 40.6492 ] } }, -{ "type": "Feature", "properties": { "id": 300580, "name": "Glenwood Rd/E 108 St", "direction": "NE", "lat": 40.65055, "lon": -73.893814, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.893814, 40.65055 ] } }, -{ "type": "Feature", "properties": { "id": 300582, "name": "Cozine Av/Alabama Av", "direction": "NE", "lat": 40.653156, "lon": -73.88939, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.88939, 40.653156 ] } }, -{ "type": "Feature", "properties": { "id": 300584, "name": "Wortman Av/Pennsylvania Av", "direction": "NE", "lat": 40.65565, "lon": -73.88787, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88787, 40.65565 ] } }, -{ "type": "Feature", "properties": { "id": 300585, "name": "Wortman Av/Vermont St", "direction": "NE", "lat": 40.65635, "lon": -73.88629, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88629, 40.65635 ] } }, -{ "type": "Feature", "properties": { "id": 300587, "name": "Wortman Av/Schenck Av", "direction": "NE", "lat": 40.658398, "lon": -73.88142, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88142, 40.658398 ] } }, -{ "type": "Feature", "properties": { "id": 300588, "name": "Wortman Av/Jerome St", "direction": "E", "lat": 40.6591, "lon": -73.87978, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.87978, 40.6591 ] } }, -{ "type": "Feature", "properties": { "id": 300590, "name": "Cozine Av/Ashford St", "direction": "SW", "lat": 40.65823, "lon": -73.87801, "routes": "BM5, B6, B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87801, 40.65823 ] } }, -{ "type": "Feature", "properties": { "id": 300591, "name": "Cozine Av/Jerome St", "direction": "SW", "lat": 40.657593, "lon": -73.8795, "routes": "BM5, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.8795, 40.657593 ] } }, -{ "type": "Feature", "properties": { "id": 300595, "name": "Cozine Av/Pennsylvania Av", "direction": "SW", "lat": 40.65401, "lon": -73.887764, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.887764, 40.65401 ] } }, -{ "type": "Feature", "properties": { "id": 300596, "name": "Cozine Av/Alabama Av", "direction": "SW", "lat": 40.652973, "lon": -73.890175, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.890175, 40.652973 ] } }, -{ "type": "Feature", "properties": { "id": 300602, "name": "Flatlands Av/E 101 St", "direction": "SW", "lat": 40.645386, "lon": -73.898094, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.898094, 40.645386 ] } }, -{ "type": "Feature", "properties": { "id": 300608, "name": "Flatlands Av/E 94 St", "direction": "SW", "lat": 40.642082, "lon": -73.90323, "routes": "B17, B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.90323, 40.642082 ] } }, -{ "type": "Feature", "properties": { "id": 300609, "name": "Flatlands Av/E 92 St", "direction": "SW", "lat": 40.641064, "lon": -73.904854, "routes": "B82, B6, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.904854, 40.641064 ] } }, -{ "type": "Feature", "properties": { "id": 300610, "name": "Flatlands Av/Remsen Av", "direction": "SW", "lat": 40.640396, "lon": -73.905914, "routes": "B6, B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.905914, 40.640396 ] } }, -{ "type": "Feature", "properties": { "id": 300611, "name": "Flatlands Av/E 88 St", "direction": "SW", "lat": 40.639153, "lon": -73.907845, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.907845, 40.639153 ] } }, -{ "type": "Feature", "properties": { "id": 300612, "name": "Flatlands Av/E 86 St", "direction": "SW", "lat": 40.638206, "lon": -73.909294, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.909294, 40.638206 ] } }, -{ "type": "Feature", "properties": { "id": 300613, "name": "Flatlands Av/E 84 St", "direction": "SW", "lat": 40.63726, "lon": -73.91077, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.91077, 40.63726 ] } }, -{ "type": "Feature", "properties": { "id": 300614, "name": "Flatlands Av/E 82 St", "direction": "SW", "lat": 40.63633, "lon": -73.912125, "routes": "B82+, B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.912125, 40.63633 ] } }, -{ "type": "Feature", "properties": { "id": 300615, "name": "Flatlands Av/E 80 St", "direction": "SW", "lat": 40.635345, "lon": -73.91372, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.91372, 40.635345 ] } }, -{ "type": "Feature", "properties": { "id": 300617, "name": "Flatlands Av/E 76 St", "direction": "SW", "lat": 40.63355, "lon": -73.916374, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.916374, 40.63355 ] } }, -{ "type": "Feature", "properties": { "id": 300618, "name": "Flatlands Av/Ralph Av", "direction": "SW", "lat": 40.632236, "lon": -73.91846, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.91846, 40.632236 ] } }, -{ "type": "Feature", "properties": { "id": 300619, "name": "Glenwood Rd/Ralph Av", "direction": "SW", "lat": 40.634262, "lon": -73.91935, "routes": "B103, BM2, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.91935, 40.634262 ] } }, -{ "type": "Feature", "properties": { "id": 300620, "name": "Glenwood Rd/E 58 St", "direction": "W", "lat": 40.633442, "lon": -73.920616, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.920616, 40.633442 ] } }, -{ "type": "Feature", "properties": { "id": 300621, "name": "Avenue H/E 56 St", "direction": "W", "lat": 40.63324, "lon": -73.923035, "routes": "BM2, B6, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.923035, 40.63324 ] } }, -{ "type": "Feature", "properties": { "id": 300622, "name": "Avenue H/E 54 St", "direction": "W", "lat": 40.633133, "lon": -73.92481, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.92481, 40.633133 ] } }, -{ "type": "Feature", "properties": { "id": 300623, "name": "Avenue H/E 52 St", "direction": "W", "lat": 40.633007, "lon": -73.92684, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.92684, 40.633007 ] } }, -{ "type": "Feature", "properties": { "id": 300624, "name": "Avenue H/Utica Av", "direction": "W", "lat": 40.63292, "lon": -73.9282, "routes": "B103, BM2, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.9282, 40.63292 ] } }, -{ "type": "Feature", "properties": { "id": 300626, "name": "Avenue H/Schenectady Av", "direction": "W", "lat": 40.6327, "lon": -73.93174, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.93174, 40.6327 ] } }, -{ "type": "Feature", "properties": { "id": 300627, "name": "Avenue H/E 45 St", "direction": "W", "lat": 40.632587, "lon": -73.93358, "routes": "B6, BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.93358, 40.632587 ] } }, -{ "type": "Feature", "properties": { "id": 300628, "name": "Avenue H/E 43 St", "direction": "W", "lat": 40.632465, "lon": -73.93548, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.93548, 40.632465 ] } }, -{ "type": "Feature", "properties": { "id": 300629, "name": "Avenue H/Albany Av", "direction": "W", "lat": 40.63237, "lon": -73.9369, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.9369, 40.63237 ] } }, -{ "type": "Feature", "properties": { "id": 300630, "name": "Glenwood Rd/Albany Av", "direction": "W", "lat": 40.6347, "lon": -73.93743, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.93743, 40.6347 ] } }, -{ "type": "Feature", "properties": { "id": 300631, "name": "Glenwood Rd/E 39 St", "direction": "W", "lat": 40.63458, "lon": -73.93955, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.93955, 40.63458 ] } }, -{ "type": "Feature", "properties": { "id": 300632, "name": "Glenwood Rd/E 37 St", "direction": "W", "lat": 40.634453, "lon": -73.94142, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94142, 40.634453 ] } }, -{ "type": "Feature", "properties": { "id": 300633, "name": "Glenwood Rd/E 35 St", "direction": "W", "lat": 40.634335, "lon": -73.943306, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.943306, 40.634335 ] } }, -{ "type": "Feature", "properties": { "id": 300634, "name": "Glenwood Rd/New York Av", "direction": "W", "lat": 40.634216, "lon": -73.945305, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.945305, 40.634216 ] } }, -{ "type": "Feature", "properties": { "id": 300635, "name": "Glenwood Rd/Nostrand Av", "direction": "W", "lat": 40.634056, "lon": -73.94766, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94766, 40.634056 ] } }, -{ "type": "Feature", "properties": { "id": 300636, "name": "Glenwood Rd/Flatbush Av", "direction": "SW", "lat": 40.634495, "lon": -73.94962, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.94962, 40.634495 ] } }, -{ "type": "Feature", "properties": { "id": 300637, "name": "Glenwood Rd/Amersfort Pl", "direction": "W", "lat": 40.633686, "lon": -73.951225, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.951225, 40.633686 ] } }, -{ "type": "Feature", "properties": { "id": 300638, "name": "Bedford Av/Glenwood Rd", "direction": "S", "lat": 40.633083, "lon": -73.953, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.953, 40.633083 ] } }, -{ "type": "Feature", "properties": { "id": 300640, "name": "Bedford Av/Avenue I", "direction": "S", "lat": 40.628338, "lon": -73.952095, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.952095, 40.628338 ] } }, -{ "type": "Feature", "properties": { "id": 300641, "name": "Bedford Av/Avenue J", "direction": "S", "lat": 40.626358, "lon": -73.95173, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.95173, 40.626358 ] } }, -{ "type": "Feature", "properties": { "id": 300652, "name": "Bay Pkwy/E 3 St", "direction": "SW", "lat": 40.62305, "lon": -73.97334, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97334, 40.62305 ] } }, -{ "type": "Feature", "properties": { "id": 300653, "name": "Bay Pkwy/Mcdonald Av", "direction": "SW", "lat": 40.620766, "lon": -73.97541, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97541, 40.620766 ] } }, -{ "type": "Feature", "properties": { "id": 300654, "name": "Bay Pkwy/60 St", "direction": "SW", "lat": 40.616814, "lon": -73.9784, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.9784, 40.616814 ] } }, -{ "type": "Feature", "properties": { "id": 300655, "name": "Bay Pkwy/61 St", "direction": "SW", "lat": 40.615944, "lon": -73.97939, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97939, 40.615944 ] } }, -{ "type": "Feature", "properties": { "id": 300656, "name": "Bay Pkwy/63 St", "direction": "SW", "lat": 40.61481, "lon": -73.98056, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98056, 40.61481 ] } }, -{ "type": "Feature", "properties": { "id": 300657, "name": "Bay Pkwy/65 St", "direction": "SW", "lat": 40.613663, "lon": -73.981766, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.981766, 40.613663 ] } }, -{ "type": "Feature", "properties": { "id": 300658, "name": "Bay Pkwy/67 St", "direction": "SW", "lat": 40.61249, "lon": -73.98298, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98298, 40.61249 ] } }, -{ "type": "Feature", "properties": { "id": 300659, "name": "Bay Pkwy/Bay Ridge Av", "direction": "SW", "lat": 40.611362, "lon": -73.98415, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98415, 40.611362 ] } }, -{ "type": "Feature", "properties": { "id": 300660, "name": "Bay Pkwy/71 St", "direction": "SW", "lat": 40.610264, "lon": -73.9853, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.9853, 40.610264 ] } }, -{ "type": "Feature", "properties": { "id": 300662, "name": "Bay Pkwy/Bay Ridge Pkwy", "direction": "SW", "lat": 40.608322, "lon": -73.98732, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98732, 40.608322 ] } }, -{ "type": "Feature", "properties": { "id": 300663, "name": "Bay Pkwy/77 St", "direction": "SW", "lat": 40.606808, "lon": -73.9889, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.9889, 40.606808 ] } }, -{ "type": "Feature", "properties": { "id": 300671, "name": "Shore Pkwy/Bay Pkwy", "direction": "E", "lat": 40.595585, "lon": -74.00005, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -74.00005, 40.595585 ] } }, -{ "type": "Feature", "properties": { "id": 300681, "name": "Kings Hwy/E 40 St", "direction": "N", "lat": 40.62362, "lon": -73.935555, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.935555, 40.62362 ] } }, -{ "type": "Feature", "properties": { "id": 300682, "name": "Kings Hwy/Avenue K", "direction": "NE", "lat": 40.625515, "lon": -73.93357, "routes": "B7, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.93357, 40.625515 ] } }, -{ "type": "Feature", "properties": { "id": 300683, "name": "Kings Hwy/Avenue J", "direction": "N", "lat": 40.627747, "lon": -73.93241, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.93241, 40.627747 ] } }, -{ "type": "Feature", "properties": { "id": 300684, "name": "Kings Hwy/Avenue I", "direction": "NE", "lat": 40.63011, "lon": -73.932495, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.932495, 40.63011 ] } }, -{ "type": "Feature", "properties": { "id": 300685, "name": "Kings Hwy/Schenectady Av", "direction": "NE", "lat": 40.631187, "lon": -73.93131, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.93131, 40.631187 ] } }, -{ "type": "Feature", "properties": { "id": 300687, "name": "Kings Hwy/Utica Av", "direction": "NE", "lat": 40.63385, "lon": -73.92869, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92869, 40.63385 ] } }, -{ "type": "Feature", "properties": { "id": 300688, "name": "Kings Hwy/Glenwood Rd", "direction": "NE", "lat": 40.635174, "lon": -73.927414, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.927414, 40.635174 ] } }, -{ "type": "Feature", "properties": { "id": 300689, "name": "Kings Hwy/Preston Ct", "direction": "N", "lat": 40.637417, "lon": -73.92614, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92614, 40.637417 ] } }, -{ "type": "Feature", "properties": { "id": 300690, "name": "Kings Hwy/Foster Av", "direction": "N", "lat": 40.639847, "lon": -73.925735, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.925735, 40.639847 ] } }, -{ "type": "Feature", "properties": { "id": 300691, "name": "Kings Hwy/Avenue D", "direction": "N", "lat": 40.642246, "lon": -73.925316, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.925316, 40.642246 ] } }, -{ "type": "Feature", "properties": { "id": 300692, "name": "Kings Hwy/Clarendon Rd", "direction": "N", "lat": 40.64454, "lon": -73.92491, "routes": "B7, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92491, 40.64454 ] } }, -{ "type": "Feature", "properties": { "id": 300693, "name": "Kings Hwy/Beverly Rd", "direction": "N", "lat": 40.646507, "lon": -73.92454, "routes": "B8, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92454, 40.646507 ] } }, -{ "type": "Feature", "properties": { "id": 300694, "name": "Kings Hwy/Tilden Av", "direction": "N", "lat": 40.64835, "lon": -73.924225, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.924225, 40.64835 ] } }, -{ "type": "Feature", "properties": { "id": 300695, "name": "Kings Hwy/Snyder Av", "direction": "N", "lat": 40.650356, "lon": -73.92357, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92357, 40.650356 ] } }, -{ "type": "Feature", "properties": { "id": 300696, "name": "Kings Hwy/Church Av", "direction": "N", "lat": 40.65226, "lon": -73.92286, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92286, 40.65226 ] } }, -{ "type": "Feature", "properties": { "id": 300697, "name": "Kings Hwy/Remsen Av", "direction": "N", "lat": 40.654987, "lon": -73.92166, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92166, 40.654987 ] } }, -{ "type": "Feature", "properties": { "id": 300698, "name": "Kings Hwy/Linden Blvd", "direction": "NE", "lat": 40.654163, "lon": -73.92198, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92198, 40.654163 ] } }, -{ "type": "Feature", "properties": { "id": 300701, "name": "Lenox Rd/E 95 St", "direction": "NE", "lat": 40.658558, "lon": -73.91964, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91964, 40.658558 ] } }, -{ "type": "Feature", "properties": { "id": 300702, "name": "Lenox Rd/Rockaway Pkwy", "direction": "NE", "lat": 40.659695, "lon": -73.91788, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91788, 40.659695 ] } }, -{ "type": "Feature", "properties": { "id": 300703, "name": "Riverdale Av/E 98 St", "direction": "E", "lat": 40.659786, "lon": -73.916534, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.916534, 40.659786 ] } }, -{ "type": "Feature", "properties": { "id": 300705, "name": "Saratoga Av/Livonia Av", "direction": "N", "lat": 40.661892, "lon": -73.91552, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91552, 40.661892 ] } }, -{ "type": "Feature", "properties": { "id": 300706, "name": "Saratoga Av/Dumont Av", "direction": "N", "lat": 40.663425, "lon": -73.91592, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91592, 40.663425 ] } }, -{ "type": "Feature", "properties": { "id": 300707, "name": "Saratoga Av/Blake Av", "direction": "N", "lat": 40.664925, "lon": -73.9163, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.9163, 40.664925 ] } }, -{ "type": "Feature", "properties": { "id": 300708, "name": "Saratoga Av/Sutter Av", "direction": "N", "lat": 40.666454, "lon": -73.91668, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91668, 40.666454 ] } }, -{ "type": "Feature", "properties": { "id": 300712, "name": "Thomas S Boyland St/Eastern Pkwy", "direction": "N", "lat": 40.671745, "lon": -73.91408, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91408, 40.671745 ] } }, -{ "type": "Feature", "properties": { "id": 300713, "name": "Thomas S Boyland St/Saint Marks Av", "direction": "N", "lat": 40.67352, "lon": -73.91393, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91393, 40.67352 ] } }, -{ "type": "Feature", "properties": { "id": 300714, "name": "Thomas S Boyland St/Dean St", "direction": "N", "lat": 40.675255, "lon": -73.91377, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91377, 40.675255 ] } }, -{ "type": "Feature", "properties": { "id": 300715, "name": "Thomas S Boyland St/Atlantic Av", "direction": "N", "lat": 40.676804, "lon": -73.913605, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.913605, 40.676804 ] } }, -{ "type": "Feature", "properties": { "id": 300716, "name": "Thomas S Boyland St/Fulton St", "direction": "N", "lat": 40.678307, "lon": -73.91351, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91351, 40.678307 ] } }, -{ "type": "Feature", "properties": { "id": 300717, "name": "Thomas S Boyland St/Macdougal St", "direction": "N", "lat": 40.68025, "lon": -73.9139, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.9139, 40.68025 ] } }, -{ "type": "Feature", "properties": { "id": 300718, "name": "Thomas S Boyland St/Marion St", "direction": "N", "lat": 40.681763, "lon": -73.9142, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.9142, 40.681763 ] } }, -{ "type": "Feature", "properties": { "id": 300719, "name": "Thomas S Boyland St/Bainbridge St", "direction": "N", "lat": 40.683125, "lon": -73.91448, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91448, 40.683125 ] } }, -{ "type": "Feature", "properties": { "id": 300733, "name": "Broadway/Halsey St", "direction": "NW", "lat": 40.685947, "lon": -73.915794, "routes": "B7, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.915794, 40.685947 ] } }, -{ "type": "Feature", "properties": { "id": 300735, "name": "Saratoga Av/Halsey St", "direction": "S", "lat": 40.68558, "lon": -73.91779, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91779, 40.68558 ] } }, -{ "type": "Feature", "properties": { "id": 300736, "name": "Saratoga Av/Macdonough St", "direction": "S", "lat": 40.68384, "lon": -73.91742, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91742, 40.68384 ] } }, -{ "type": "Feature", "properties": { "id": 300737, "name": "Saratoga Av/Bainbridge St", "direction": "S", "lat": 40.68228, "lon": -73.91713, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91713, 40.68228 ] } }, -{ "type": "Feature", "properties": { "id": 300738, "name": "Saratoga Av/Marion St", "direction": "S", "lat": 40.680824, "lon": -73.91681, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91681, 40.680824 ] } }, -{ "type": "Feature", "properties": { "id": 300740, "name": "Saratoga Av/Fulton St", "direction": "S", "lat": 40.678684, "lon": -73.91637, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91637, 40.678684 ] } }, -{ "type": "Feature", "properties": { "id": 300741, "name": "Saratoga Av/Atlantic Av", "direction": "S", "lat": 40.6763, "lon": -73.91655, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91655, 40.6763 ] } }, -{ "type": "Feature", "properties": { "id": 300742, "name": "Saratoga Av/Dean St", "direction": "S", "lat": 40.67475, "lon": -73.916695, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.916695, 40.67475 ] } }, -{ "type": "Feature", "properties": { "id": 300743, "name": "Saratoga Av/Saint Marks Av", "direction": "S", "lat": 40.673073, "lon": -73.916855, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.916855, 40.673073 ] } }, -{ "type": "Feature", "properties": { "id": 300748, "name": "Saratoga Av/Sutter Av", "direction": "S", "lat": 40.665897, "lon": -73.91665, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91665, 40.665897 ] } }, -{ "type": "Feature", "properties": { "id": 300749, "name": "Saratoga Av/Blake Av", "direction": "S", "lat": 40.66438, "lon": -73.916275, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.916275, 40.66438 ] } }, -{ "type": "Feature", "properties": { "id": 300750, "name": "Saratoga Av/Dumont Av", "direction": "S", "lat": 40.66279, "lon": -73.915855, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.915855, 40.66279 ] } }, -{ "type": "Feature", "properties": { "id": 300751, "name": "Saratoga Av/Livonia Av", "direction": "S", "lat": 40.661247, "lon": -73.91546, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91546, 40.661247 ] } }, -{ "type": "Feature", "properties": { "id": 300753, "name": "Riverdale Av/Legion St", "direction": "W", "lat": 40.659874, "lon": -73.91643, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91643, 40.659874 ] } }, -{ "type": "Feature", "properties": { "id": 300754, "name": "Lenox Rd/E 98 St", "direction": "SW", "lat": 40.65987, "lon": -73.91776, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91776, 40.65987 ] } }, -{ "type": "Feature", "properties": { "id": 300755, "name": "Lenox Rd/Rockaway Pkwy", "direction": "SW", "lat": 40.659264, "lon": -73.91869, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91869, 40.659264 ] } }, -{ "type": "Feature", "properties": { "id": 300757, "name": "Kings Hwy/E 94 St", "direction": "S", "lat": 40.658165, "lon": -73.92073, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92073, 40.658165 ] } }, -{ "type": "Feature", "properties": { "id": 300758, "name": "Kings Hwy/E 92 St", "direction": "S", "lat": 40.65604, "lon": -73.92151, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92151, 40.65604 ] } }, -{ "type": "Feature", "properties": { "id": 300759, "name": "Kings Hwy/Remsen Av", "direction": "S", "lat": 40.654938, "lon": -73.92207, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92207, 40.654938 ] } }, -{ "type": "Feature", "properties": { "id": 300760, "name": "Kings Hwy/Linden Blvd", "direction": "S", "lat": 40.65399, "lon": -73.92246, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92246, 40.65399 ] } }, -{ "type": "Feature", "properties": { "id": 300761, "name": "Kings Hwy/Church Av", "direction": "S", "lat": 40.652615, "lon": -73.923004, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.923004, 40.652615 ] } }, -{ "type": "Feature", "properties": { "id": 300762, "name": "Kings Hwy/Snyder Av", "direction": "S", "lat": 40.6507, "lon": -73.92374, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92374, 40.6507 ] } }, -{ "type": "Feature", "properties": { "id": 300763, "name": "Kings Hwy/Tilden Av", "direction": "S", "lat": 40.648144, "lon": -73.92436, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92436, 40.648144 ] } }, -{ "type": "Feature", "properties": { "id": 300764, "name": "Kings Hwy/Beverly Rd", "direction": "S", "lat": 40.646797, "lon": -73.92459, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92459, 40.646797 ] } }, -{ "type": "Feature", "properties": { "id": 300765, "name": "Kings Hwy/Clarendon Rd", "direction": "S", "lat": 40.64485, "lon": -73.92496, "routes": "B8, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92496, 40.64485 ] } }, -{ "type": "Feature", "properties": { "id": 300766, "name": "Kings Hwy/Avenue D", "direction": "S", "lat": 40.642517, "lon": -73.92538, "routes": "B7, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92538, 40.642517 ] } }, -{ "type": "Feature", "properties": { "id": 300767, "name": "Kings Hwy/Foster Av", "direction": "S", "lat": 40.64015, "lon": -73.92578, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92578, 40.64015 ] } }, -{ "type": "Feature", "properties": { "id": 300768, "name": "Kings Hwy/Preston Ct", "direction": "S", "lat": 40.63714, "lon": -73.92632, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92632, 40.63714 ] } }, -{ "type": "Feature", "properties": { "id": 300769, "name": "Kings Hwy/Glenwood Rd", "direction": "SW", "lat": 40.63536, "lon": -73.9274, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.9274, 40.63536 ] } }, -{ "type": "Feature", "properties": { "id": 300770, "name": "Kings Hwy/Utica Av", "direction": "SW", "lat": 40.634365, "lon": -73.92832, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92832, 40.634365 ] } }, -{ "type": "Feature", "properties": { "id": 300771, "name": "Kings Hwy/Avenue H", "direction": "SW", "lat": 40.632862, "lon": -73.929794, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.929794, 40.632862 ] } }, -{ "type": "Feature", "properties": { "id": 300772, "name": "Kings Hwy/Schenectady Av", "direction": "SW", "lat": 40.63162, "lon": -73.931, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.931, 40.63162 ] } }, -{ "type": "Feature", "properties": { "id": 300773, "name": "Kings Hwy/Avenue I", "direction": "SW", "lat": 40.63032, "lon": -73.93242, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.93242, 40.63032 ] } }, -{ "type": "Feature", "properties": { "id": 300774, "name": "Kings Hwy/Avenue J", "direction": "S", "lat": 40.628025, "lon": -73.93255, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.93255, 40.628025 ] } }, -{ "type": "Feature", "properties": { "id": 300776, "name": "Kings Hwy/E 40 St", "direction": "SW", "lat": 40.62401, "lon": -73.935394, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.935394, 40.62401 ] } }, -{ "type": "Feature", "properties": { "id": 300788, "name": "E 16 St / Kings Hwy", "direction": "S", "lat": 40.608437, "lon": -73.95736, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.95736, 40.608437 ] } }, -{ "type": "Feature", "properties": { "id": 300790, "name": "Cropsey Av/15 Av", "direction": "SE", "lat": 40.606255, "lon": -74.01451, "routes": "B8, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.01451, 40.606255 ] } }, -{ "type": "Feature", "properties": { "id": 300791, "name": "Cropsey Av/16 Av", "direction": "SE", "lat": 40.60502, "lon": -74.012146, "routes": "B8, X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.012146, 40.60502 ] } }, -{ "type": "Feature", "properties": { "id": 300792, "name": "Cropsey Av/17 Av", "direction": "SE", "lat": 40.603645, "lon": -74.009514, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.009514, 40.603645 ] } }, -{ "type": "Feature", "properties": { "id": 300794, "name": "18 Av/Bath Av", "direction": "NE", "lat": 40.60376, "lon": -74.0062, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.0062, 40.60376 ] } }, -{ "type": "Feature", "properties": { "id": 300795, "name": "18 Av/Benson Av", "direction": "NE", "lat": 40.60534, "lon": -74.00455, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.00455, 40.60534 ] } }, -{ "type": "Feature", "properties": { "id": 300796, "name": "18 Av/86 St", "direction": "NE", "lat": 40.607124, "lon": -74.0027, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.0027, 40.607124 ] } }, -{ "type": "Feature", "properties": { "id": 300797, "name": "18 Av/85 St", "direction": "NE", "lat": 40.60771, "lon": -74.001976, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.001976, 40.60771 ] } }, -{ "type": "Feature", "properties": { "id": 300798, "name": "18 Av/84 St", "direction": "NE", "lat": 40.608517, "lon": -74.00097, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.00097, 40.608517 ] } }, -{ "type": "Feature", "properties": { "id": 300799, "name": "18 Av/81 St", "direction": "NE", "lat": 40.61017, "lon": -73.99913, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99913, 40.61017 ] } }, -{ "type": "Feature", "properties": { "id": 300800, "name": "18 Av/79 St", "direction": "NE", "lat": 40.611282, "lon": -73.99801, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99801, 40.611282 ] } }, -{ "type": "Feature", "properties": { "id": 300801, "name": "18 Av/77 St", "direction": "NE", "lat": 40.612404, "lon": -73.99687, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99687, 40.612404 ] } }, -{ "type": "Feature", "properties": { "id": 300802, "name": "18 Av/Bay Ridge Pkwy", "direction": "NE", "lat": 40.613625, "lon": -73.99562, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99562, 40.613625 ] } }, -{ "type": "Feature", "properties": { "id": 300803, "name": "18 Av/72 St", "direction": "NE", "lat": 40.615326, "lon": -73.9939, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9939, 40.615326 ] } }, -{ "type": "Feature", "properties": { "id": 300804, "name": "18 Av/70 St", "direction": "NE", "lat": 40.616444, "lon": -73.992775, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.992775, 40.616444 ] } }, -{ "type": "Feature", "properties": { "id": 300805, "name": "18 Av/68 St", "direction": "NE", "lat": 40.617577, "lon": -73.99163, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99163, 40.617577 ] } }, -{ "type": "Feature", "properties": { "id": 300806, "name": "18 Av/66 St", "direction": "NE", "lat": 40.618717, "lon": -73.99048, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99048, 40.618717 ] } }, -{ "type": "Feature", "properties": { "id": 300807, "name": "18 Av/64 St", "direction": "NE", "lat": 40.619926, "lon": -73.98925, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98925, 40.619926 ] } }, -{ "type": "Feature", "properties": { "id": 300808, "name": "18 Av/62 St", "direction": "NE", "lat": 40.62106, "lon": -73.988106, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.988106, 40.62106 ] } }, -{ "type": "Feature", "properties": { "id": 300809, "name": "18 Av/60 St", "direction": "NE", "lat": 40.621883, "lon": -73.987274, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.987274, 40.621883 ] } }, -{ "type": "Feature", "properties": { "id": 300811, "name": "18 Av/55 St", "direction": "NE", "lat": 40.62509, "lon": -73.98408, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98408, 40.62509 ] } }, -{ "type": "Feature", "properties": { "id": 300812, "name": "18 Av/53 St", "direction": "NE", "lat": 40.62622, "lon": -73.982956, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.982956, 40.62622 ] } }, -{ "type": "Feature", "properties": { "id": 300814, "name": "18 Av/50 St", "direction": "NE", "lat": 40.62793, "lon": -73.981255, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.981255, 40.62793 ] } }, -{ "type": "Feature", "properties": { "id": 300815, "name": "18 Av/49 St", "direction": "NE", "lat": 40.6285, "lon": -73.980675, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.980675, 40.6285 ] } }, -{ "type": "Feature", "properties": { "id": 300816, "name": "18 Av/47 St", "direction": "NE", "lat": 40.62956, "lon": -73.9795, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9795, 40.62956 ] } }, -{ "type": "Feature", "properties": { "id": 300817, "name": "18 Av/Mcdonald Av", "direction": "NE", "lat": 40.63058, "lon": -73.977325, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.977325, 40.63058 ] } }, -{ "type": "Feature", "properties": { "id": 300818, "name": "18 Av/E 3 St", "direction": "NE", "lat": 40.631798, "lon": -73.974754, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.974754, 40.631798 ] } }, -{ "type": "Feature", "properties": { "id": 300819, "name": "18 Av/Ocean Pkwy", "direction": "NE", "lat": 40.63286, "lon": -73.97251, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.97251, 40.63286 ] } }, -{ "type": "Feature", "properties": { "id": 300820, "name": "18 Av/E 8 St", "direction": "NE", "lat": 40.634277, "lon": -73.969536, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.969536, 40.634277 ] } }, -{ "type": "Feature", "properties": { "id": 300821, "name": "Coney Island Av/18 Av", "direction": "S", "lat": 40.634888, "lon": -73.96767, "routes": "B8, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96767, 40.634888 ] } }, -{ "type": "Feature", "properties": { "id": 300822, "name": "Coney Island Av/Newkirk Av", "direction": "S", "lat": 40.633377, "lon": -73.96723, "routes": "B8, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96723, 40.633377 ] } }, -{ "type": "Feature", "properties": { "id": 300823, "name": "Foster Av/Coney Island Av", "direction": "NE", "lat": 40.632404, "lon": -73.96639, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96639, 40.632404 ] } }, -{ "type": "Feature", "properties": { "id": 300824, "name": "Foster Av/Argyle Rd", "direction": "NE", "lat": 40.63334, "lon": -73.96445, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96445, 40.63334 ] } }, -{ "type": "Feature", "properties": { "id": 300825, "name": "Foster Av/E 16 St", "direction": "NE", "lat": 40.634403, "lon": -73.96225, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96225, 40.634403 ] } }, -{ "type": "Feature", "properties": { "id": 300826, "name": "Foster Av/E 18 St", "direction": "NE", "lat": 40.635483, "lon": -73.96, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96, 40.635483 ] } }, -{ "type": "Feature", "properties": { "id": 300827, "name": "Foster Av/Ocean Av", "direction": "NE", "lat": 40.636456, "lon": -73.95798, "routes": "B8, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95798, 40.636456 ] } }, -{ "type": "Feature", "properties": { "id": 300828, "name": "Foster Av/E 22 St", "direction": "NE", "lat": 40.637314, "lon": -73.95619, "routes": "B8, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95619, 40.637314 ] } }, -{ "type": "Feature", "properties": { "id": 300830, "name": "Foster Av/Flatbush Av", "direction": "E", "lat": 40.638355, "lon": -73.95274, "routes": "B8, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95274, 40.638355 ] } }, -{ "type": "Feature", "properties": { "id": 300831, "name": "Rogers Av/Foster Av", "direction": "N", "lat": 40.638798, "lon": -73.95111, "routes": "B49, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.95111, 40.638798 ] } }, -{ "type": "Feature", "properties": { "id": 300832, "name": "Avenue D/Rogers Av", "direction": "E", "lat": 40.64073, "lon": -73.95085, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.95085, 40.64073 ] } }, -{ "type": "Feature", "properties": { "id": 300833, "name": "Avenue D/Nostrand Av", "direction": "E", "lat": 40.640865, "lon": -73.94868, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.94868, 40.640865 ] } }, -{ "type": "Feature", "properties": { "id": 300834, "name": "Avenue D/E 31 St", "direction": "E", "lat": 40.64097, "lon": -73.947136, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.947136, 40.64097 ] } }, -{ "type": "Feature", "properties": { "id": 300835, "name": "Avenue D/New York Av", "direction": "E", "lat": 40.641087, "lon": -73.94521, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.94521, 40.641087 ] } }, -{ "type": "Feature", "properties": { "id": 300836, "name": "Avenue D/E 35 St", "direction": "E", "lat": 40.641197, "lon": -73.94332, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.94332, 40.641197 ] } }, -{ "type": "Feature", "properties": { "id": 300837, "name": "Avenue D/E 37 St", "direction": "E", "lat": 40.641327, "lon": -73.9414, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9414, 40.641327 ] } }, -{ "type": "Feature", "properties": { "id": 300838, "name": "Avenue D/E 39 St", "direction": "E", "lat": 40.641438, "lon": -73.9395, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9395, 40.641438 ] } }, -{ "type": "Feature", "properties": { "id": 300839, "name": "Avenue D/E 45 St", "direction": "E", "lat": 40.641792, "lon": -73.93376, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.93376, 40.641792 ] } }, -{ "type": "Feature", "properties": { "id": 300841, "name": "Avenue D/Schenectady Av", "direction": "E", "lat": 40.64191, "lon": -73.93186, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.93186, 40.64191 ] } }, -{ "type": "Feature", "properties": { "id": 300842, "name": "Avenue D/Utica Av", "direction": "E", "lat": 40.642094, "lon": -73.92891, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92891, 40.642094 ] } }, -{ "type": "Feature", "properties": { "id": 300843, "name": "Avenue D/E 53 St", "direction": "E", "lat": 40.64224, "lon": -73.92662, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92662, 40.64224 ] } }, -{ "type": "Feature", "properties": { "id": 300844, "name": "Avenue D/Kings Hwy", "direction": "E", "lat": 40.642292, "lon": -73.92568, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92568, 40.642292 ] } }, -{ "type": "Feature", "properties": { "id": 300847, "name": "Beverly Rd/E 57 St", "direction": "E", "lat": 40.646694, "lon": -73.922646, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.922646, 40.646694 ] } }, -{ "type": "Feature", "properties": { "id": 300848, "name": "Beverly Rd/E 59 St", "direction": "E", "lat": 40.646805, "lon": -73.92083, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92083, 40.646805 ] } }, -{ "type": "Feature", "properties": { "id": 300853, "name": "Remsen Av/Avenue D", "direction": "SE", "lat": 40.64631, "lon": -73.91291, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91291, 40.64631 ] } }, -{ "type": "Feature", "properties": { "id": 300857, "name": "Ralph Av/Clarendon Rd", "direction": "N", "lat": 40.645386, "lon": -73.91994, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91994, 40.645386 ] } }, -{ "type": "Feature", "properties": { "id": 300858, "name": "Beverly Rd/Ralph Av", "direction": "W", "lat": 40.64695, "lon": -73.92068, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92068, 40.64695 ] } }, -{ "type": "Feature", "properties": { "id": 300859, "name": "Beverly Rd/E 58 St", "direction": "W", "lat": 40.64684, "lon": -73.922455, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.922455, 40.64684 ] } }, -{ "type": "Feature", "properties": { "id": 300862, "name": "Avenue D/E 52 St", "direction": "W", "lat": 40.642326, "lon": -73.9273, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9273, 40.642326 ] } }, -{ "type": "Feature", "properties": { "id": 300863, "name": "Avenue D/Utica Av", "direction": "W", "lat": 40.64217, "lon": -73.92988, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92988, 40.64217 ] } }, -{ "type": "Feature", "properties": { "id": 300864, "name": "Avenue D/E 48 St", "direction": "W", "lat": 40.642056, "lon": -73.93165, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.93165, 40.642056 ] } }, -{ "type": "Feature", "properties": { "id": 300865, "name": "Avenue D/E 46 St", "direction": "W", "lat": 40.641937, "lon": -73.93363, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.93363, 40.641937 ] } }, -{ "type": "Feature", "properties": { "id": 300866, "name": "Avenue D/E 43 St", "direction": "W", "lat": 40.641754, "lon": -73.936516, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.936516, 40.641754 ] } }, -{ "type": "Feature", "properties": { "id": 300867, "name": "Avenue D/E 40 St", "direction": "W", "lat": 40.64158, "lon": -73.93932, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.93932, 40.64158 ] } }, -{ "type": "Feature", "properties": { "id": 300868, "name": "Avenue D/E 38 St", "direction": "W", "lat": 40.64146, "lon": -73.94122, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.94122, 40.64146 ] } }, -{ "type": "Feature", "properties": { "id": 300869, "name": "Avenue D/Brooklyn Av", "direction": "W", "lat": 40.641342, "lon": -73.94316, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.94316, 40.641342 ] } }, -{ "type": "Feature", "properties": { "id": 300873, "name": "Foster Av/E 29 St", "direction": "W", "lat": 40.638584, "lon": -73.94969, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.94969, 40.638584 ] } }, -{ "type": "Feature", "properties": { "id": 300874, "name": "Foster Av/Rogers Av", "direction": "W", "lat": 40.6385, "lon": -73.95103, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.95103, 40.6385 ] } }, -{ "type": "Feature", "properties": { "id": 300875, "name": "Foster Av/Flatbush Av", "direction": "W", "lat": 40.638496, "lon": -73.953476, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.953476, 40.638496 ] } }, -{ "type": "Feature", "properties": { "id": 300876, "name": "Foster Av/Bedford Av", "direction": "SW", "lat": 40.638172, "lon": -73.95477, "routes": "B49, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.95477, 40.638172 ] } }, -{ "type": "Feature", "properties": { "id": 300877, "name": "Foster Av/E 22 St", "direction": "SW", "lat": 40.6371, "lon": -73.95694, "routes": "B8, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95694, 40.6371 ] } }, -{ "type": "Feature", "properties": { "id": 300878, "name": "Foster Av/Ocean Av", "direction": "SW", "lat": 40.636204, "lon": -73.9588, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9588, 40.636204 ] } }, -{ "type": "Feature", "properties": { "id": 300879, "name": "Foster Av/E 18 St", "direction": "SW", "lat": 40.635246, "lon": -73.96079, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96079, 40.635246 ] } }, -{ "type": "Feature", "properties": { "id": 300880, "name": "Foster Av/Marlborough Rd", "direction": "SW", "lat": 40.63419, "lon": -73.963, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.963, 40.63419 ] } }, -{ "type": "Feature", "properties": { "id": 300881, "name": "Foster Av/Rugby Rd", "direction": "SW", "lat": 40.63355, "lon": -73.964325, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.964325, 40.63355 ] } }, -{ "type": "Feature", "properties": { "id": 300882, "name": "Foster Av/Coney Island Av", "direction": "SW", "lat": 40.63245, "lon": -73.96661, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96661, 40.63245 ] } }, -{ "type": "Feature", "properties": { "id": 300883, "name": "Coney Island Av/Newkirk Av", "direction": "N", "lat": 40.634, "lon": -73.96714, "routes": "B68, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96714, 40.634 ] } }, -{ "type": "Feature", "properties": { "id": 300884, "name": "18 Av/Coney Island Av", "direction": "SW", "lat": 40.63509, "lon": -73.96814, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.96814, 40.63509 ] } }, -{ "type": "Feature", "properties": { "id": 300885, "name": "18 Av/E 8 St", "direction": "SW", "lat": 40.63409, "lon": -73.970245, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.970245, 40.63409 ] } }, -{ "type": "Feature", "properties": { "id": 300886, "name": "18 Av/Ocean Pkwy", "direction": "SW", "lat": 40.63335, "lon": -73.97181, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.97181, 40.63335 ] } }, -{ "type": "Feature", "properties": { "id": 300887, "name": "18 Av/E 5 St", "direction": "SW", "lat": 40.632526, "lon": -73.97357, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.97357, 40.632526 ] } }, -{ "type": "Feature", "properties": { "id": 300888, "name": "18 Av/E 2 St", "direction": "SW", "lat": 40.631165, "lon": -73.97646, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.97646, 40.631165 ] } }, -{ "type": "Feature", "properties": { "id": 300889, "name": "18 Av/Mcdonald Av", "direction": "SW", "lat": 40.630642, "lon": -73.97757, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.97757, 40.630642 ] } }, -{ "type": "Feature", "properties": { "id": 300890, "name": "18 Av/45 St", "direction": "SW", "lat": 40.63013, "lon": -73.97864, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.97864, 40.63013 ] } }, -{ "type": "Feature", "properties": { "id": 300891, "name": "18 Av/47 St", "direction": "SW", "lat": 40.62926, "lon": -73.98017, "routes": "B11, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98017, 40.62926 ] } }, -{ "type": "Feature", "properties": { "id": 300892, "name": "18 Av/49 St", "direction": "SW", "lat": 40.628113, "lon": -73.981316, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.981316, 40.628113 ] } }, -{ "type": "Feature", "properties": { "id": 300893, "name": "18 Av/50 St", "direction": "SW", "lat": 40.627544, "lon": -73.98189, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98189, 40.627544 ] } }, -{ "type": "Feature", "properties": { "id": 300895, "name": "18 Av/55 St", "direction": "SW", "lat": 40.62469, "lon": -73.98472, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98472, 40.62469 ] } }, -{ "type": "Feature", "properties": { "id": 300898, "name": "18 Av/62 St", "direction": "SW", "lat": 40.620663, "lon": -73.98875, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98875, 40.620663 ] } }, -{ "type": "Feature", "properties": { "id": 300899, "name": "18 Av/64 St", "direction": "SW", "lat": 40.619514, "lon": -73.98991, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98991, 40.619514 ] } }, -{ "type": "Feature", "properties": { "id": 300900, "name": "18 Av/66 St", "direction": "SW", "lat": 40.618298, "lon": -73.99114, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99114, 40.618298 ] } }, -{ "type": "Feature", "properties": { "id": 300901, "name": "18 Av/68 St", "direction": "SW", "lat": 40.61712, "lon": -73.99233, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99233, 40.61712 ] } }, -{ "type": "Feature", "properties": { "id": 300902, "name": "18 Av/70 St", "direction": "SW", "lat": 40.616043, "lon": -73.993416, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.993416, 40.616043 ] } }, -{ "type": "Feature", "properties": { "id": 300903, "name": "18 Av/72 St", "direction": "SW", "lat": 40.61492, "lon": -73.99455, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.99455, 40.61492 ] } }, -{ "type": "Feature", "properties": { "id": 300904, "name": "18 Av/Bay Ridge Pkwy", "direction": "SW", "lat": 40.61316, "lon": -73.996315, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.996315, 40.61316 ] } }, -{ "type": "Feature", "properties": { "id": 300905, "name": "18 Av/77 St", "direction": "SW", "lat": 40.611984, "lon": -73.9975, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9975, 40.611984 ] } }, -{ "type": "Feature", "properties": { "id": 300906, "name": "18 Av/79 St", "direction": "SW", "lat": 40.6109, "lon": -73.9986, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.9986, 40.6109 ] } }, -{ "type": "Feature", "properties": { "id": 300908, "name": "18 Av/New Utrecht Av", "direction": "SW", "lat": 40.608192, "lon": -74.0016, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.0016, 40.608192 ] } }, -{ "type": "Feature", "properties": { "id": 300909, "name": "18 Av/86 St", "direction": "SW", "lat": 40.607418, "lon": -74.002556, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.002556, 40.607418 ] } }, -{ "type": "Feature", "properties": { "id": 300910, "name": "18 Av/Benson Av", "direction": "SW", "lat": 40.605385, "lon": -74.004715, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.004715, 40.605385 ] } }, -{ "type": "Feature", "properties": { "id": 300911, "name": "18 Av/Bath Av", "direction": "SW", "lat": 40.604004, "lon": -74.00615, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.00615, 40.604004 ] } }, -{ "type": "Feature", "properties": { "id": 300912, "name": "18 Av/Cropsey Av", "direction": "SW", "lat": 40.602753, "lon": -74.007454, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.007454, 40.602753 ] } }, -{ "type": "Feature", "properties": { "id": 300913, "name": "Cropsey Av/17 Av", "direction": "NW", "lat": 40.604095, "lon": -74.010086, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.010086, 40.604095 ] } }, -{ "type": "Feature", "properties": { "id": 300914, "name": "Cropsey Av/16 Av", "direction": "NW", "lat": 40.605446, "lon": -74.01268, "routes": "B8, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.01268, 40.605446 ] } }, -{ "type": "Feature", "properties": { "id": 300915, "name": "Cropsey Av/15 Av", "direction": "NW", "lat": 40.606598, "lon": -74.014946, "routes": "B8, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.014946, 40.606598 ] } }, -{ "type": "Feature", "properties": { "id": 300916, "name": "Cropsey Av/Bay 7 St", "direction": "NW", "lat": 40.607216, "lon": -74.01612, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.01612, 40.607216 ] } }, -{ "type": "Feature", "properties": { "id": 300922, "name": "3 Av/Bay Ridge Av", "direction": "N", "lat": 40.636044, "lon": -74.025826, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.025826, 40.636044 ] } }, -{ "type": "Feature", "properties": { "id": 300924, "name": "3 Av/65 St", "direction": "NE", "lat": 40.63922, "lon": -74.02359, "routes": "B37, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.02359, 40.63922 ] } }, -{ "type": "Feature", "properties": { "id": 300926, "name": "60 St/4 Av", "direction": "SE", "lat": 40.64058, "lon": -74.01813, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.01813, 40.64058 ] } }, -{ "type": "Feature", "properties": { "id": 300927, "name": "60 St/5 Av", "direction": "SE", "lat": 40.63926, "lon": -74.01595, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.01595, 40.63926 ] } }, -{ "type": "Feature", "properties": { "id": 300928, "name": "60 St/6 Av", "direction": "SE", "lat": 40.63793, "lon": -74.01373, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.01373, 40.63793 ] } }, -{ "type": "Feature", "properties": { "id": 300930, "name": "60 St/8 Av", "direction": "SE", "lat": 40.635242, "lon": -74.00928, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00928, 40.635242 ] } }, -{ "type": "Feature", "properties": { "id": 300934, "name": "60 St/12 Av", "direction": "SE", "lat": 40.62993, "lon": -74.00048, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00048, 40.62993 ] } }, -{ "type": "Feature", "properties": { "id": 300935, "name": "60 St/13 Av", "direction": "SE", "lat": 40.62886, "lon": -73.99871, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99871, 40.62886 ] } }, -{ "type": "Feature", "properties": { "id": 300936, "name": "60 St/14 Av", "direction": "SE", "lat": 40.627213, "lon": -73.99599, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99599, 40.627213 ] } }, -{ "type": "Feature", "properties": { "id": 300937, "name": "60 St/15 Av", "direction": "SE", "lat": 40.625923, "lon": -73.99385, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99385, 40.625923 ] } }, -{ "type": "Feature", "properties": { "id": 300938, "name": "60 St/16 Av", "direction": "SE", "lat": 40.62459, "lon": -73.99165, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99165, 40.62459 ] } }, -{ "type": "Feature", "properties": { "id": 300940, "name": "60 St/18 Av", "direction": "SE", "lat": 40.621777, "lon": -73.98699, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98699, 40.621777 ] } }, -{ "type": "Feature", "properties": { "id": 300942, "name": "60 St/20 Av", "direction": "SE", "lat": 40.619118, "lon": -73.98258, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98258, 40.619118 ] } }, -{ "type": "Feature", "properties": { "id": 300944, "name": "60 St/Bay Pkwy", "direction": "SE", "lat": 40.616425, "lon": -73.978134, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.978134, 40.616425 ] } }, -{ "type": "Feature", "properties": { "id": 300945, "name": "60 St/23 Av", "direction": "SE", "lat": 40.615376, "lon": -73.97639, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.97639, 40.615376 ] } }, -{ "type": "Feature", "properties": { "id": 300950, "name": "Ocean Pkwy South/Avenue M", "direction": "N", "lat": 40.61691, "lon": -73.96898, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96898, 40.61691 ] } }, -{ "type": "Feature", "properties": { "id": 300952, "name": "Avenue M/E 9 St", "direction": "E", "lat": 40.61735, "lon": -73.96539, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96539, 40.61735 ] } }, -{ "type": "Feature", "properties": { "id": 300956, "name": "Avenue M/E 18 St", "direction": "E", "lat": 40.618294, "lon": -73.95681, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95681, 40.618294 ] } }, -{ "type": "Feature", "properties": { "id": 300957, "name": "Ocean Av/Avenue M", "direction": "N", "lat": 40.61889, "lon": -73.95496, "routes": "B49, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95496, 40.61889 ] } }, -{ "type": "Feature", "properties": { "id": 300958, "name": "Avenue L/Ocean Av", "direction": "E", "lat": 40.62093, "lon": -73.95503, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95503, 40.62093 ] } }, -{ "type": "Feature", "properties": { "id": 300959, "name": "Avenue L/E 22 St", "direction": "E", "lat": 40.621136, "lon": -73.95315, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95315, 40.621136 ] } }, -{ "type": "Feature", "properties": { "id": 300962, "name": "Avenue L/E 28 St", "direction": "E", "lat": 40.621754, "lon": -73.94752, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.94752, 40.621754 ] } }, -{ "type": "Feature", "properties": { "id": 300963, "name": "Avenue L/Nostrand Av", "direction": "E", "lat": 40.621975, "lon": -73.945526, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.945526, 40.621975 ] } }, -{ "type": "Feature", "properties": { "id": 300966, "name": "Avenue L/E 36 St", "direction": "E", "lat": 40.622593, "lon": -73.93991, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.93991, 40.622593 ] } }, -{ "type": "Feature", "properties": { "id": 300969, "name": "Kings Plaza/Kings Plaza", "direction": "NW", "lat": 40.608513, "lon": -73.92069, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.92069, 40.608513 ] } }, -{ "type": "Feature", "properties": { "id": 300971, "name": "Avenue L/Flatbush Av", "direction": "W", "lat": 40.622955, "lon": -73.937805, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.937805, 40.622955 ] } }, -{ "type": "Feature", "properties": { "id": 300974, "name": "Avenue L/New York Av", "direction": "W", "lat": 40.62234, "lon": -73.943436, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.943436, 40.62234 ] } }, -{ "type": "Feature", "properties": { "id": 300975, "name": "Avenue L/Nostrand Av", "direction": "W", "lat": 40.622074, "lon": -73.94619, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.94619, 40.622074 ] } }, -{ "type": "Feature", "properties": { "id": 300977, "name": "Avenue L/Bedford Av", "direction": "W", "lat": 40.621506, "lon": -73.95103, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95103, 40.621506 ] } }, -{ "type": "Feature", "properties": { "id": 300978, "name": "Avenue L/E 23 St", "direction": "W", "lat": 40.621292, "lon": -73.95296, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95296, 40.621292 ] } }, -{ "type": "Feature", "properties": { "id": 300980, "name": "Ocean Av/Avenue L", "direction": "S", "lat": 40.620583, "lon": -73.955475, "routes": "B49, BM3, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.955475, 40.620583 ] } }, -{ "type": "Feature", "properties": { "id": 300981, "name": "Avenue M/Ocean Av", "direction": "W", "lat": 40.61857, "lon": -73.95551, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95551, 40.61857 ] } }, -{ "type": "Feature", "properties": { "id": 300982, "name": "Avenue M/E 18 St", "direction": "W", "lat": 40.618347, "lon": -73.95757, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95757, 40.618347 ] } }, -{ "type": "Feature", "properties": { "id": 300991, "name": "Avenue N/E 3 St", "direction": "W", "lat": 40.61428, "lon": -73.9723, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.9723, 40.61428 ] } }, -{ "type": "Feature", "properties": { "id": 300993, "name": "60 St/23 Av", "direction": "NW", "lat": 40.615597, "lon": -73.97648, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.97648, 40.615597 ] } }, -{ "type": "Feature", "properties": { "id": 300996, "name": "60 St/20 Av", "direction": "NW", "lat": 40.619663, "lon": -73.98322, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98322, 40.619663 ] } }, -{ "type": "Feature", "properties": { "id": 300998, "name": "60 St/18 Av", "direction": "NW", "lat": 40.62228, "lon": -73.98754, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98754, 40.62228 ] } }, -{ "type": "Feature", "properties": { "id": 300999, "name": "60 St/17 Av", "direction": "NW", "lat": 40.62335, "lon": -73.98932, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98932, 40.62335 ] } }, -{ "type": "Feature", "properties": { "id": 301000, "name": "60 St/16 Av", "direction": "NW", "lat": 40.62484, "lon": -73.99179, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99179, 40.62484 ] } }, -{ "type": "Feature", "properties": { "id": 301002, "name": "60 St/New Utrecht Av", "direction": "NW", "lat": 40.62796, "lon": -73.99695, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99695, 40.62796 ] } }, -{ "type": "Feature", "properties": { "id": 301003, "name": "60 St/13 Av", "direction": "NW", "lat": 40.629086, "lon": -73.99881, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99881, 40.629086 ] } }, -{ "type": "Feature", "properties": { "id": 301006, "name": "60 St/Fort Hamilton Pkwy", "direction": "NW", "lat": 40.633343, "lon": -74.00587, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00587, 40.633343 ] } }, -{ "type": "Feature", "properties": { "id": 301008, "name": "60 St/8 Av", "direction": "NW", "lat": 40.63575, "lon": -74.00985, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00985, 40.63575 ] } }, -{ "type": "Feature", "properties": { "id": 301010, "name": "60 St/6 Av", "direction": "NW", "lat": 40.63839, "lon": -74.01421, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.01421, 40.63839 ] } }, -{ "type": "Feature", "properties": { "id": 301016, "name": "3 Av/65 St", "direction": "SW", "lat": 40.63926, "lon": -74.02365, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.02365, 40.63926 ] } }, -{ "type": "Feature", "properties": { "id": 301017, "name": "3 Av/Senator St", "direction": "SW", "lat": 40.636894, "lon": -74.025665, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.025665, 40.636894 ] } }, -{ "type": "Feature", "properties": { "id": 301028, "name": "Eldert Ln/Linden Blvd", "direction": "N", "lat": 40.669212, "lon": -73.86271, "routes": "B13, B20, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.86271, 40.669212 ] } }, -{ "type": "Feature", "properties": { "id": 301029, "name": "Linden Blvd/Eldert Ln", "direction": "W", "lat": 40.66958, "lon": -73.8634, "routes": "B15, BM5, B14, B13, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.8634, 40.66958 ] } }, -{ "type": "Feature", "properties": { "id": 301030, "name": "Linden Blvd/Sheridan Av", "direction": "W", "lat": 40.669376, "lon": -73.86474, "routes": "B15, B13, B14, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.86474, 40.669376 ] } }, -{ "type": "Feature", "properties": { "id": 301031, "name": "Linden Blvd/Autumn Av", "direction": "W", "lat": 40.6691, "lon": -73.86673, "routes": "B13, B20, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.86673, 40.6691 ] } }, -{ "type": "Feature", "properties": { "id": 301032, "name": "Linden Blvd/Crescent St", "direction": "W", "lat": 40.66884, "lon": -73.868546, "routes": "B20, B15, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.868546, 40.66884 ] } }, -{ "type": "Feature", "properties": { "id": 301033, "name": "Linden Blvd/Euclid Av", "direction": "SW", "lat": 40.668076, "lon": -73.87027, "routes": "B15, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.87027, 40.668076 ] } }, -{ "type": "Feature", "properties": { "id": 301034, "name": "Fountain Av/Linden Blvd", "direction": "NW", "lat": 40.66702, "lon": -73.87196, "routes": "B15, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87196, 40.66702 ] } }, -{ "type": "Feature", "properties": { "id": 301035, "name": "Fountain Av/Hegeman Av", "direction": "NW", "lat": 40.667934, "lon": -73.87264, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87264, 40.667934 ] } }, -{ "type": "Feature", "properties": { "id": 301036, "name": "Dumont Av/Fountain Av", "direction": "W", "lat": 40.66934, "lon": -73.87394, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87394, 40.66934 ] } }, -{ "type": "Feature", "properties": { "id": 301037, "name": "Dumont Av/Milford St", "direction": "W", "lat": 40.66907, "lon": -73.87606, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87606, 40.66907 ] } }, -{ "type": "Feature", "properties": { "id": 301038, "name": "New Lots Av/Berriman St", "direction": "SW", "lat": 40.66833, "lon": -73.87829, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87829, 40.66833 ] } }, -{ "type": "Feature", "properties": { "id": 301039, "name": "New Lots Av/Linwood St", "direction": "SW", "lat": 40.667084, "lon": -73.881195, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.881195, 40.667084 ] } }, -{ "type": "Feature", "properties": { "id": 301040, "name": "New Lots Av/Ashford St", "direction": "SW", "lat": 40.666035, "lon": -73.88363, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.88363, 40.666035 ] } }, -{ "type": "Feature", "properties": { "id": 301041, "name": "New Lots Av/Barbey St", "direction": "SW", "lat": 40.665043, "lon": -73.88594, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.88594, 40.665043 ] } }, -{ "type": "Feature", "properties": { "id": 301042, "name": "New Lots Av/Hendrix St", "direction": "SW", "lat": 40.664288, "lon": -73.88768, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.88768, 40.664288 ] } }, -{ "type": "Feature", "properties": { "id": 301043, "name": "New Lots Av/Miller Av", "direction": "SW", "lat": 40.66378, "lon": -73.88883, "routes": "B15, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88883, 40.66378 ] } }, -{ "type": "Feature", "properties": { "id": 301044, "name": "New Lots Av/Wyona St", "direction": "SW", "lat": 40.66283, "lon": -73.890976, "routes": "B83, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.890976, 40.66283 ] } }, -{ "type": "Feature", "properties": { "id": 301045, "name": "New Lots Av/Pennsylvania Av", "direction": "SW", "lat": 40.661934, "lon": -73.89303, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.89303, 40.661934 ] } }, -{ "type": "Feature", "properties": { "id": 301046, "name": "New Lots Av/Sheffield Av", "direction": "SW", "lat": 40.66126, "lon": -73.89453, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.89453, 40.66126 ] } }, -{ "type": "Feature", "properties": { "id": 301049, "name": "New Lots Av/Van Sinderen Av", "direction": "SW", "lat": 40.659027, "lon": -73.89954, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.89954, 40.659027 ] } }, -{ "type": "Feature", "properties": { "id": 301050, "name": "New Lots Av/Powell St", "direction": "SW", "lat": 40.65821, "lon": -73.90138, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.90138, 40.65821 ] } }, -{ "type": "Feature", "properties": { "id": 301051, "name": "New Lots Av/Christopher Av", "direction": "SW", "lat": 40.657413, "lon": -73.90317, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.90317, 40.657413 ] } }, -{ "type": "Feature", "properties": { "id": 301052, "name": "Hegeman Av/Watkins St", "direction": "W", "lat": 40.656666, "lon": -73.905, "routes": "B35, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.905, 40.656666 ] } }, -{ "type": "Feature", "properties": { "id": 301053, "name": "Hegeman Av/Thatford Av", "direction": "W", "lat": 40.65648, "lon": -73.906265, "routes": "B15, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.906265, 40.65648 ] } }, -{ "type": "Feature", "properties": { "id": 301054, "name": "Hegeman Av/Chester St", "direction": "W", "lat": 40.656216, "lon": -73.90815, "routes": "B15, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.90815, 40.656216 ] } }, -{ "type": "Feature", "properties": { "id": 301056, "name": "E 98 St/Hegeman Av", "direction": "NW", "lat": 40.655952, "lon": -73.912735, "routes": "B35, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.912735, 40.655952 ] } }, -{ "type": "Feature", "properties": { "id": 301057, "name": "E 98 St/Lott Av", "direction": "NW", "lat": 40.657257, "lon": -73.91419, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91419, 40.657257 ] } }, -{ "type": "Feature", "properties": { "id": 301058, "name": "E 98 St/Legion St", "direction": "NW", "lat": 40.658955, "lon": -73.91608, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91608, 40.658955 ] } }, -{ "type": "Feature", "properties": { "id": 301059, "name": "E 98 St/Riverdale Av", "direction": "NW", "lat": 40.66, "lon": -73.91733, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91733, 40.66 ] } }, -{ "type": "Feature", "properties": { "id": 301061, "name": "E 98 St/Dumont Av", "direction": "NW", "lat": 40.662727, "lon": -73.920296, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.920296, 40.662727 ] } }, -{ "type": "Feature", "properties": { "id": 301062, "name": "E 98 St/Blake Av", "direction": "NW", "lat": 40.664146, "lon": -73.92187, "routes": "B47, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92187, 40.664146 ] } }, -{ "type": "Feature", "properties": { "id": 301063, "name": "Ralph Av/Sutter Av", "direction": "N", "lat": 40.665688, "lon": -73.92232, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92232, 40.665688 ] } }, -{ "type": "Feature", "properties": { "id": 301064, "name": "Ralph Av/East New York Av", "direction": "N", "lat": 40.666992, "lon": -73.92266, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92266, 40.666992 ] } }, -{ "type": "Feature", "properties": { "id": 301066, "name": "Ralph Av/Saint Johns Pl", "direction": "N", "lat": 40.670002, "lon": -73.92241, "routes": "B47, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92241, 40.670002 ] } }, -{ "type": "Feature", "properties": { "id": 301067, "name": "Buffalo Av/Saint Johns Pl", "direction": "N", "lat": 40.670685, "lon": -73.92531, "routes": "B65, B15, B45" }, "geometry": { "type": "Point", "coordinates": [ -73.92531, 40.670685 ] } }, -{ "type": "Feature", "properties": { "id": 301069, "name": "Buffalo Av/Saint Marks Av", "direction": "N", "lat": 40.674152, "lon": -73.92497, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92497, 40.674152 ] } }, -{ "type": "Feature", "properties": { "id": 301070, "name": "Bergen St/Buffalo Av", "direction": "W", "lat": 40.67481, "lon": -73.92543, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92543, 40.67481 ] } }, -{ "type": "Feature", "properties": { "id": 301071, "name": "Bergen St/Rochester Av", "direction": "W", "lat": 40.67493, "lon": -73.92763, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92763, 40.67493 ] } }, -{ "type": "Feature", "properties": { "id": 301072, "name": "Bergen St/Utica Av", "direction": "W", "lat": 40.675083, "lon": -73.93039, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93039, 40.675083 ] } }, -{ "type": "Feature", "properties": { "id": 301073, "name": "Bergen St/Schenectady Av", "direction": "W", "lat": 40.67523, "lon": -73.93309, "routes": "B15, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.93309, 40.67523 ] } }, -{ "type": "Feature", "properties": { "id": 301074, "name": "Bergen St/Troy Av", "direction": "W", "lat": 40.67538, "lon": -73.935936, "routes": "B15, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.935936, 40.67538 ] } }, -{ "type": "Feature", "properties": { "id": 301075, "name": "Troy Av/Dean St", "direction": "N", "lat": 40.67645, "lon": -73.93589, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93589, 40.67645 ] } }, -{ "type": "Feature", "properties": { "id": 301076, "name": "Troy Av/Atlantic Av", "direction": "N", "lat": 40.67795, "lon": -73.935745, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.935745, 40.67795 ] } }, -{ "type": "Feature", "properties": { "id": 301077, "name": "Troy Av/Fulton St", "direction": "NE", "lat": 40.679543, "lon": -73.93485, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93485, 40.679543 ] } }, -{ "type": "Feature", "properties": { "id": 301078, "name": "Lewis Av/Bainbridge St", "direction": "N", "lat": 40.68089, "lon": -73.93456, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93456, 40.68089 ] } }, -{ "type": "Feature", "properties": { "id": 301079, "name": "Lewis Av/Macdonough St", "direction": "N", "lat": 40.68233, "lon": -73.93485, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93485, 40.68233 ] } }, -{ "type": "Feature", "properties": { "id": 301080, "name": "Lewis Av/Halsey St", "direction": "N", "lat": 40.6834, "lon": -73.935074, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.935074, 40.6834 ] } }, -{ "type": "Feature", "properties": { "id": 301081, "name": "Lewis Av/Jefferson Av", "direction": "N", "lat": 40.68536, "lon": -73.935455, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.935455, 40.68536 ] } }, -{ "type": "Feature", "properties": { "id": 301082, "name": "Lewis Av/Madison St", "direction": "N", "lat": 40.686726, "lon": -73.93572, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93572, 40.686726 ] } }, -{ "type": "Feature", "properties": { "id": 301083, "name": "Lewis Av/Gates Av", "direction": "N", "lat": 40.68821, "lon": -73.93602, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93602, 40.68821 ] } }, -{ "type": "Feature", "properties": { "id": 301084, "name": "Lewis Av/Greene Av", "direction": "N", "lat": 40.69042, "lon": -73.93646, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93646, 40.69042 ] } }, -{ "type": "Feature", "properties": { "id": 301087, "name": "Lewis Av/Dekalb Av", "direction": "N", "lat": 40.6934, "lon": -73.93706, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93706, 40.6934 ] } }, -{ "type": "Feature", "properties": { "id": 301088, "name": "Lewis Av/Pulaski St", "direction": "N", "lat": 40.694046, "lon": -73.93719, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93719, 40.694046 ] } }, -{ "type": "Feature", "properties": { "id": 301089, "name": "Lewis Av/Willoughby Av", "direction": "N", "lat": 40.6955, "lon": -73.93747, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93747, 40.6955 ] } }, -{ "type": "Feature", "properties": { "id": 301090, "name": "Lewis Av/Myrtle Av", "direction": "N", "lat": 40.69705, "lon": -73.93778, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93778, 40.69705 ] } }, -{ "type": "Feature", "properties": { "id": 301091, "name": "Lewis Av/Broadway", "direction": "N", "lat": 40.698456, "lon": -73.9381, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.9381, 40.698456 ] } }, -{ "type": "Feature", "properties": { "id": 301092, "name": "Broadway/Park St", "direction": "NW", "lat": 40.699257, "lon": -73.939186, "routes": "B47, B46, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.939186, 40.699257 ] } }, -{ "type": "Feature", "properties": { "id": 301095, "name": "Marcus Garvey Blvd/Park Av", "direction": "S", "lat": 40.698204, "lon": -73.94118, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.94118, 40.698204 ] } }, -{ "type": "Feature", "properties": { "id": 301096, "name": "Marcus Garvey Blvd/Myrtle Av", "direction": "S", "lat": 40.696426, "lon": -73.94081, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.94081, 40.696426 ] } }, -{ "type": "Feature", "properties": { "id": 301097, "name": "Marcus Garvey Blvd/Willoughby Av", "direction": "S", "lat": 40.694572, "lon": -73.94044, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.94044, 40.694572 ] } }, -{ "type": "Feature", "properties": { "id": 301098, "name": "Marcus Garvey Blvd/Pulaski St", "direction": "S", "lat": 40.693096, "lon": -73.94014, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.94014, 40.693096 ] } }, -{ "type": "Feature", "properties": { "id": 301099, "name": "Marcus Garvey Blvd/De Kalb Av", "direction": "S", "lat": 40.692356, "lon": -73.939995, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.939995, 40.692356 ] } }, -{ "type": "Feature", "properties": { "id": 301100, "name": "Marcus Garvey Blvd/Lafayette Av", "direction": "S", "lat": 40.690884, "lon": -73.9397, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.9397, 40.690884 ] } }, -{ "type": "Feature", "properties": { "id": 301101, "name": "Marcus Garvey Blvd/Lexington Av", "direction": "S", "lat": 40.688686, "lon": -73.93925, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93925, 40.688686 ] } }, -{ "type": "Feature", "properties": { "id": 301103, "name": "Marcus Garvey Blvd/Madison St", "direction": "S", "lat": 40.685757, "lon": -73.93867, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93867, 40.685757 ] } }, -{ "type": "Feature", "properties": { "id": 301104, "name": "Marcus Garvey Blvd/Jefferson Av", "direction": "S", "lat": 40.68429, "lon": -73.938385, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.938385, 40.68429 ] } }, -{ "type": "Feature", "properties": { "id": 301105, "name": "Marcus Garvey Blvd/Halsey St", "direction": "S", "lat": 40.68326, "lon": -73.93818, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93818, 40.68326 ] } }, -{ "type": "Feature", "properties": { "id": 301106, "name": "Marcus Garvey Blvd/Macdonough St", "direction": "S", "lat": 40.681763, "lon": -73.93785, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93785, 40.681763 ] } }, -{ "type": "Feature", "properties": { "id": 301107, "name": "Marcus Garvey Blvd/Fulton St", "direction": "S", "lat": 40.67975, "lon": -73.93744, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93744, 40.67975 ] } }, -{ "type": "Feature", "properties": { "id": 301108, "name": "Albany Av/Fulton St", "direction": "S", "lat": 40.679344, "lon": -73.93851, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93851, 40.679344 ] } }, -{ "type": "Feature", "properties": { "id": 301109, "name": "Albany Av/Atlantic Av", "direction": "S", "lat": 40.677483, "lon": -73.93873, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93873, 40.677483 ] } }, -{ "type": "Feature", "properties": { "id": 301110, "name": "Dean St/Albany Av", "direction": "E", "lat": 40.676193, "lon": -73.93833, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93833, 40.676193 ] } }, -{ "type": "Feature", "properties": { "id": 301115, "name": "Rochester Av/Bergen St", "direction": "S", "lat": 40.674587, "lon": -73.92786, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92786, 40.674587 ] } }, -{ "type": "Feature", "properties": { "id": 301116, "name": "Saint Marks Av/Rochester Av", "direction": "E", "lat": 40.673916, "lon": -73.92735, "routes": "B15, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.92735, 40.673916 ] } }, -{ "type": "Feature", "properties": { "id": 301117, "name": "Buffalo Av/Prospect Pl", "direction": "S", "lat": 40.67322, "lon": -73.92522, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92522, 40.67322 ] } }, -{ "type": "Feature", "properties": { "id": 301118, "name": "Buffalo Av/Park Pl", "direction": "S", "lat": 40.67171, "lon": -73.925354, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.925354, 40.67171 ] } }, -{ "type": "Feature", "properties": { "id": 301119, "name": "Saint Johns Pl/Buffalo Av", "direction": "E", "lat": 40.67018, "lon": -73.92501, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92501, 40.67018 ] } }, -{ "type": "Feature", "properties": { "id": 301120, "name": "Saint Johns Pl/Ralph Av", "direction": "E", "lat": 40.670048, "lon": -73.922615, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.922615, 40.670048 ] } }, -{ "type": "Feature", "properties": { "id": 301121, "name": "Ralph Av/Eastern Pkwy", "direction": "S", "lat": 40.667812, "lon": -73.92276, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.92276, 40.667812 ] } }, -{ "type": "Feature", "properties": { "id": 301122, "name": "Ralph Av/East New York Av", "direction": "S", "lat": 40.666874, "lon": -73.92276, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92276, 40.666874 ] } }, -{ "type": "Feature", "properties": { "id": 301123, "name": "Ralph Av/Sutter Av", "direction": "S", "lat": 40.665043, "lon": -73.922325, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.922325, 40.665043 ] } }, -{ "type": "Feature", "properties": { "id": 301124, "name": "E 98 St/Winthrop St", "direction": "SE", "lat": 40.66277, "lon": -73.92055, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92055, 40.66277 ] } }, -{ "type": "Feature", "properties": { "id": 301125, "name": "E 98 St/Clarkson Av", "direction": "SE", "lat": 40.661366, "lon": -73.918915, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.918915, 40.661366 ] } }, -{ "type": "Feature", "properties": { "id": 301126, "name": "E 98 St/Lenox Rd", "direction": "SE", "lat": 40.659733, "lon": -73.91717, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91717, 40.659733 ] } }, -{ "type": "Feature", "properties": { "id": 301127, "name": "E 98 St/Willmohr St", "direction": "SE", "lat": 40.658096, "lon": -73.91535, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91535, 40.658096 ] } }, -{ "type": "Feature", "properties": { "id": 301128, "name": "E 98 St/Church Av", "direction": "SE", "lat": 40.65654, "lon": -73.91363, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91363, 40.65654 ] } }, -{ "type": "Feature", "properties": { "id": 301132, "name": "Hegeman Av/Rockaway Av", "direction": "E", "lat": 40.65628, "lon": -73.90686, "routes": "B15, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.90686, 40.65628 ] } }, -{ "type": "Feature", "properties": { "id": 301133, "name": "Hegeman Av/Osborn St", "direction": "E", "lat": 40.656548, "lon": -73.905045, "routes": "B35, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.905045, 40.656548 ] } }, -{ "type": "Feature", "properties": { "id": 301135, "name": "New Lots Av/Sackman St", "direction": "NE", "lat": 40.65802, "lon": -73.90151, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.90151, 40.65802 ] } }, -{ "type": "Feature", "properties": { "id": 301136, "name": "New Lots Av/Van Sinderen Av", "direction": "NE", "lat": 40.659, "lon": -73.899315, "routes": "B15, L91" }, "geometry": { "type": "Point", "coordinates": [ -73.899315, 40.659 ] } }, -{ "type": "Feature", "properties": { "id": 301137, "name": "New Lots Av/Hinsdale St", "direction": "NE", "lat": 40.65993, "lon": -73.897224, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.897224, 40.65993 ] } }, -{ "type": "Feature", "properties": { "id": 301138, "name": "New Lots Av/Malta St", "direction": "NE", "lat": 40.66052, "lon": -73.89593, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.89593, 40.66052 ] } }, -{ "type": "Feature", "properties": { "id": 301139, "name": "New Lots Av/Georgia Av", "direction": "NE", "lat": 40.66113, "lon": -73.89456, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.89456, 40.66113 ] } }, -{ "type": "Feature", "properties": { "id": 301141, "name": "New Lots Av/Vermont St", "direction": "NE", "lat": 40.66267, "lon": -73.89106, "routes": "B15, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.89106, 40.66267 ] } }, -{ "type": "Feature", "properties": { "id": 301142, "name": "New Lots Av/Bradford St", "direction": "NE", "lat": 40.663414, "lon": -73.88937, "routes": "B83, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.88937, 40.663414 ] } }, -{ "type": "Feature", "properties": { "id": 301143, "name": "New Lots Av/Miller Av", "direction": "NE", "lat": 40.663727, "lon": -73.888664, "routes": "B15, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.888664, 40.663727 ] } }, -{ "type": "Feature", "properties": { "id": 301144, "name": "New Lots Av/Schenck Av", "direction": "NE", "lat": 40.664845, "lon": -73.8861, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.8861, 40.664845 ] } }, -{ "type": "Feature", "properties": { "id": 301145, "name": "New Lots Av/Jerome St", "direction": "NE", "lat": 40.665573, "lon": -73.8844, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.8844, 40.665573 ] } }, -{ "type": "Feature", "properties": { "id": 301146, "name": "New Lots Av/Ashford St", "direction": "NE", "lat": 40.666294, "lon": -73.88273, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.88273, 40.666294 ] } }, -{ "type": "Feature", "properties": { "id": 301147, "name": "New Lots Av/Elton St", "direction": "NE", "lat": 40.66692, "lon": -73.88129, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.88129, 40.66692 ] } }, -{ "type": "Feature", "properties": { "id": 301148, "name": "New Lots Av/Essex St", "direction": "NE", "lat": 40.6676, "lon": -73.87971, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87971, 40.6676 ] } }, -{ "type": "Feature", "properties": { "id": 301149, "name": "New Lots Av/Berriman St", "direction": "NE", "lat": 40.668137, "lon": -73.87844, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87844, 40.668137 ] } }, -{ "type": "Feature", "properties": { "id": 301151, "name": "Dumont Av/Montauk Av", "direction": "E", "lat": 40.668896, "lon": -73.87631, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87631, 40.668896 ] } }, -{ "type": "Feature", "properties": { "id": 301152, "name": "Dumont Av/Fountain Av", "direction": "E", "lat": 40.66924, "lon": -73.87393, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87393, 40.66924 ] } }, -{ "type": "Feature", "properties": { "id": 301153, "name": "Fountain Av/Hegeman Av", "direction": "SE", "lat": 40.66774, "lon": -73.87275, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87275, 40.66774 ] } }, -{ "type": "Feature", "properties": { "id": 301154, "name": "Linden Blvd Service Rd/Fountain Av", "direction": "NE", "lat": 40.666622, "lon": -73.87159, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.87159, 40.666622 ] } }, -{ "type": "Feature", "properties": { "id": 301155, "name": "Linden Blvd/Euclid Av", "direction": "NE", "lat": 40.667862, "lon": -73.86979, "routes": "B20, B13, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.86979, 40.667862 ] } }, -{ "type": "Feature", "properties": { "id": 301156, "name": "Linden Blvd/Crescent St", "direction": "E", "lat": 40.66853, "lon": -73.86804, "routes": "B15, B13, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.86804, 40.66853 ] } }, -{ "type": "Feature", "properties": { "id": 301162, "name": "52 St/2 Av", "direction": "SE", "lat": 40.647743, "lon": -74.01781, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01781, 40.647743 ] } }, -{ "type": "Feature", "properties": { "id": 301168, "name": "50 St/6 Av", "direction": "SE", "lat": 40.64353, "lon": -74.00781, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.00781, 40.64353 ] } }, -{ "type": "Feature", "properties": { "id": 301170, "name": "50 St/8 Av", "direction": "SE", "lat": 40.640877, "lon": -74.00342, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.00342, 40.640877 ] } }, -{ "type": "Feature", "properties": { "id": 301171, "name": "50 St/9 Av", "direction": "SE", "lat": 40.639553, "lon": -74.00122, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.00122, 40.639553 ] } }, -{ "type": "Feature", "properties": { "id": 301172, "name": "50 St/10 Av", "direction": "SE", "lat": 40.638226, "lon": -73.99902, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99902, 40.638226 ] } }, -{ "type": "Feature", "properties": { "id": 301173, "name": "50 St/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.637657, "lon": -73.998085, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.998085, 40.637657 ] } }, -{ "type": "Feature", "properties": { "id": 301174, "name": "50 St/11 Av", "direction": "SE", "lat": 40.636887, "lon": -73.99682, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99682, 40.636887 ] } }, -{ "type": "Feature", "properties": { "id": 301175, "name": "50 St/New Utrecht Av", "direction": "SE", "lat": 40.635487, "lon": -73.99449, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99449, 40.635487 ] } }, -{ "type": "Feature", "properties": { "id": 301177, "name": "50 St/14 Av", "direction": "SE", "lat": 40.632923, "lon": -73.99025, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99025, 40.632923 ] } }, -{ "type": "Feature", "properties": { "id": 301178, "name": "50 St/15 Av", "direction": "SE", "lat": 40.631557, "lon": -73.98799, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.98799, 40.631557 ] } }, -{ "type": "Feature", "properties": { "id": 301179, "name": "50 St/16 Av", "direction": "SE", "lat": 40.630238, "lon": -73.9858, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.9858, 40.630238 ] } }, -{ "type": "Feature", "properties": { "id": 301180, "name": "50 St/17 Av", "direction": "SE", "lat": 40.62874, "lon": -73.98333, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.98333, 40.62874 ] } }, -{ "type": "Feature", "properties": { "id": 301182, "name": "50 St/19 Av", "direction": "SE", "lat": 40.626095, "lon": -73.97895, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.97895, 40.626095 ] } }, -{ "type": "Feature", "properties": { "id": 301183, "name": "50 St/20 Av", "direction": "SE", "lat": 40.625065, "lon": -73.977234, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.977234, 40.625065 ] } }, -{ "type": "Feature", "properties": { "id": 301184, "name": "Avenue I/Mcdonald Av", "direction": "E", "lat": 40.625973, "lon": -73.97575, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.97575, 40.625973 ] } }, -{ "type": "Feature", "properties": { "id": 301185, "name": "Avenue I/E 3 St", "direction": "E", "lat": 40.626198, "lon": -73.97373, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.97373, 40.626198 ] } }, -{ "type": "Feature", "properties": { "id": 301187, "name": "Avenue I/E 7 St", "direction": "E", "lat": 40.6267, "lon": -73.969154, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.969154, 40.6267 ] } }, -{ "type": "Feature", "properties": { "id": 301188, "name": "Avenue I/E 9 St", "direction": "E", "lat": 40.626923, "lon": -73.96717, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.96717, 40.626923 ] } }, -{ "type": "Feature", "properties": { "id": 301189, "name": "Coney Island Av/Avenue I", "direction": "S", "lat": 40.6267, "lon": -73.965675, "routes": "B11, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.965675, 40.6267 ] } }, -{ "type": "Feature", "properties": { "id": 301278, "name": "Coney Island Av/Avenue I", "direction": "N", "lat": 40.627007, "lon": -73.965515, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.965515, 40.627007 ] } }, -{ "type": "Feature", "properties": { "id": 301279, "name": "Avenue I/E 9 St", "direction": "W", "lat": 40.62696, "lon": -73.96797, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.96797, 40.62696 ] } }, -{ "type": "Feature", "properties": { "id": 301280, "name": "Avenue I/E 7 St", "direction": "W", "lat": 40.626743, "lon": -73.96997, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.96997, 40.626743 ] } }, -{ "type": "Feature", "properties": { "id": 301281, "name": "Avenue I/Ocean Pkwy", "direction": "W", "lat": 40.626556, "lon": -73.97163, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.97163, 40.626556 ] } }, -{ "type": "Feature", "properties": { "id": 301282, "name": "Avenue I/E 3 St", "direction": "W", "lat": 40.626232, "lon": -73.97458, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.97458, 40.626232 ] } }, -{ "type": "Feature", "properties": { "id": 301283, "name": "Avenue I/Mcdonald Av", "direction": "W", "lat": 40.62606, "lon": -73.976074, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.976074, 40.62606 ] } }, -{ "type": "Feature", "properties": { "id": 301286, "name": "49 St/18 Av", "direction": "NW", "lat": 40.628544, "lon": -73.981285, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.981285, 40.628544 ] } }, -{ "type": "Feature", "properties": { "id": 301287, "name": "49 St/17 Av", "direction": "NW", "lat": 40.62978, "lon": -73.98334, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.98334, 40.62978 ] } }, -{ "type": "Feature", "properties": { "id": 301288, "name": "49 St/16 Av", "direction": "NW", "lat": 40.63124, "lon": -73.98575, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.98575, 40.63124 ] } }, -{ "type": "Feature", "properties": { "id": 301289, "name": "49 St/15 Av", "direction": "NW", "lat": 40.632557, "lon": -73.98801, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.98801, 40.632557 ] } }, -{ "type": "Feature", "properties": { "id": 301290, "name": "49 St/14 Av", "direction": "NW", "lat": 40.63393, "lon": -73.990204, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.990204, 40.63393 ] } }, -{ "type": "Feature", "properties": { "id": 301292, "name": "49 St/New Utrecht Av", "direction": "NW", "lat": 40.636566, "lon": -73.99463, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99463, 40.636566 ] } }, -{ "type": "Feature", "properties": { "id": 301293, "name": "49 St/11 Av", "direction": "NW", "lat": 40.637897, "lon": -73.99677, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99677, 40.637897 ] } }, -{ "type": "Feature", "properties": { "id": 301295, "name": "49 St/10 Av", "direction": "NW", "lat": 40.638943, "lon": -73.99856, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99856, 40.638943 ] } }, -{ "type": "Feature", "properties": { "id": 301296, "name": "49 St/9 Av", "direction": "NW", "lat": 40.6406, "lon": -74.00125, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.00125, 40.6406 ] } }, -{ "type": "Feature", "properties": { "id": 301297, "name": "49 St/8 Av", "direction": "NW", "lat": 40.641914, "lon": -74.003426, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.003426, 40.641914 ] } }, -{ "type": "Feature", "properties": { "id": 301298, "name": "49 St/7 Av", "direction": "NW", "lat": 40.64323, "lon": -74.00561, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.00561, 40.64323 ] } }, -{ "type": "Feature", "properties": { "id": 301309, "name": "Parkside Av/Ocean Av", "direction": "E", "lat": 40.65513, "lon": -73.96112, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.96112, 40.65513 ] } }, -{ "type": "Feature", "properties": { "id": 301310, "name": "Parkside Av/Flatbush Av", "direction": "E", "lat": 40.655518, "lon": -73.96003, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.96003, 40.655518 ] } }, -{ "type": "Feature", "properties": { "id": 301311, "name": "Parkside Av/Bedford Av", "direction": "E", "lat": 40.655815, "lon": -73.95654, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.95654, 40.655815 ] } }, -{ "type": "Feature", "properties": { "id": 301312, "name": "Clarkson Av/Bedford Av", "direction": "E", "lat": 40.655014, "lon": -73.95587, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.95587, 40.655014 ] } }, -{ "type": "Feature", "properties": { "id": 301313, "name": "Clarkson Av/Rogers Av", "direction": "E", "lat": 40.65518, "lon": -73.95307, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.95307, 40.65518 ] } }, -{ "type": "Feature", "properties": { "id": 301314, "name": "Clarkson Av/Nostrand Av", "direction": "E", "lat": 40.65539, "lon": -73.949265, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.949265, 40.65539 ] } }, -{ "type": "Feature", "properties": { "id": 301315, "name": "Clarkson Av/New York Av", "direction": "E", "lat": 40.655537, "lon": -73.94675, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.94675, 40.655537 ] } }, -{ "type": "Feature", "properties": { "id": 301316, "name": "Clarkson Av/Kings County Hospital", "direction": "E", "lat": 40.655685, "lon": -73.944336, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.944336, 40.655685 ] } }, -{ "type": "Feature", "properties": { "id": 301317, "name": "Clarkson Av/E 38 St", "direction": "E", "lat": 40.655827, "lon": -73.942024, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.942024, 40.655827 ] } }, -{ "type": "Feature", "properties": { "id": 301318, "name": "Albany Av/Clarkson Av", "direction": "N", "lat": 40.656403, "lon": -73.93951, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93951, 40.656403 ] } }, -{ "type": "Feature", "properties": { "id": 301319, "name": "Albany Av/Winthrop St", "direction": "N", "lat": 40.657692, "lon": -73.93956, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93956, 40.657692 ] } }, -{ "type": "Feature", "properties": { "id": 301320, "name": "Albany Av/Hawthorne St", "direction": "N", "lat": 40.65881, "lon": -73.93952, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93952, 40.65881 ] } }, -{ "type": "Feature", "properties": { "id": 301322, "name": "Albany Av/Maple St", "direction": "N", "lat": 40.661747, "lon": -73.93983, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93983, 40.661747 ] } }, -{ "type": "Feature", "properties": { "id": 301323, "name": "East New York Av/Albany Av", "direction": "E", "lat": 40.662266, "lon": -73.93834, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93834, 40.662266 ] } }, -{ "type": "Feature", "properties": { "id": 301326, "name": "Lefferts Av/Schenectady Av", "direction": "E", "lat": 40.66328, "lon": -73.93471, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93471, 40.66328 ] } }, -{ "type": "Feature", "properties": { "id": 301328, "name": "East New York Av/E 92 St", "direction": "NE", "lat": 40.66406, "lon": -73.92952, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92952, 40.66406 ] } }, -{ "type": "Feature", "properties": { "id": 301329, "name": "East New York Av/E 94 St", "direction": "NE", "lat": 40.664726, "lon": -73.92784, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92784, 40.664726 ] } }, -{ "type": "Feature", "properties": { "id": 301330, "name": "East New York Av/E 96 St", "direction": "NE", "lat": 40.66561, "lon": -73.92596, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92596, 40.66561 ] } }, -{ "type": "Feature", "properties": { "id": 301332, "name": "East New York Av/Ralph Av", "direction": "NE", "lat": 40.666946, "lon": -73.92289, "routes": "B47, B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92289, 40.666946 ] } }, -{ "type": "Feature", "properties": { "id": 301333, "name": "East New York Av/Union St", "direction": "NE", "lat": 40.6676, "lon": -73.92141, "routes": "B14, B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92141, 40.6676 ] } }, -{ "type": "Feature", "properties": { "id": 301334, "name": "Pitkin Av/Howard Av", "direction": "E", "lat": 40.668304, "lon": -73.91957, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.91957, 40.668304 ] } }, -{ "type": "Feature", "properties": { "id": 301342, "name": "East New York Av/Sackman St", "direction": "NE", "lat": 40.674503, "lon": -73.90563, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.90563, 40.674503 ] } }, -{ "type": "Feature", "properties": { "id": 301343, "name": "East New York Av/Junius St", "direction": "NE", "lat": 40.67504, "lon": -73.904495, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.904495, 40.67504 ] } }, -{ "type": "Feature", "properties": { "id": 301384, "name": "Jamaica Av/Fanchon Pl", "direction": "SW", "lat": 40.677715, "lon": -73.89842, "routes": "Q24, Q56, B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89842, 40.677715 ] } }, -{ "type": "Feature", "properties": { "id": 301386, "name": "Pacific St/East New York Av", "direction": "W", "lat": 40.67527, "lon": -73.90519, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.90519, 40.67527 ] } }, -{ "type": "Feature", "properties": { "id": 301395, "name": "East New York Av/E 96 St", "direction": "SW", "lat": 40.6655, "lon": -73.926605, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.926605, 40.6655 ] } }, -{ "type": "Feature", "properties": { "id": 301397, "name": "East New York Av/E 95 St", "direction": "SW", "lat": 40.665092, "lon": -73.927536, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.927536, 40.665092 ] } }, -{ "type": "Feature", "properties": { "id": 301398, "name": "East New York Av/Montgomery St", "direction": "SW", "lat": 40.664112, "lon": -73.929794, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.929794, 40.664112 ] } }, -{ "type": "Feature", "properties": { "id": 301400, "name": "Schenectady Av/Lefferts Av", "direction": "S", "lat": 40.662994, "lon": -73.93459, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93459, 40.662994 ] } }, -{ "type": "Feature", "properties": { "id": 301402, "name": "East New York Av/Troy Av", "direction": "W", "lat": 40.662434, "lon": -73.937775, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.937775, 40.662434 ] } }, -{ "type": "Feature", "properties": { "id": 301403, "name": "Albany Av/East New York Av", "direction": "S", "lat": 40.66179, "lon": -73.94, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.94, 40.66179 ] } }, -{ "type": "Feature", "properties": { "id": 301404, "name": "Albany Av/Midwood St", "direction": "S", "lat": 40.66049, "lon": -73.93987, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93987, 40.66049 ] } }, -{ "type": "Feature", "properties": { "id": 301405, "name": "Albany Av/Fenimore St", "direction": "S", "lat": 40.659454, "lon": -73.93975, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93975, 40.659454 ] } }, -{ "type": "Feature", "properties": { "id": 301406, "name": "Albany Av/Winthrop St", "direction": "S", "lat": 40.657063, "lon": -73.93982, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93982, 40.657063 ] } }, -{ "type": "Feature", "properties": { "id": 301407, "name": "Clarkson Av/Albany Av", "direction": "W", "lat": 40.65611, "lon": -73.940056, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.940056, 40.65611 ] } }, -{ "type": "Feature", "properties": { "id": 301408, "name": "Clarkson Av/E 39 St", "direction": "W", "lat": 40.655994, "lon": -73.94188, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.94188, 40.655994 ] } }, -{ "type": "Feature", "properties": { "id": 301409, "name": "Clarkson Av/New York Av", "direction": "W", "lat": 40.65567, "lon": -73.947014, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.947014, 40.65567 ] } }, -{ "type": "Feature", "properties": { "id": 301410, "name": "Clarkson Av/Nostrand Av", "direction": "W", "lat": 40.65543, "lon": -73.95093, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.95093, 40.65543 ] } }, -{ "type": "Feature", "properties": { "id": 301411, "name": "Clarkson Av/Rogers Av", "direction": "W", "lat": 40.65531, "lon": -73.952835, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.952835, 40.65531 ] } }, -{ "type": "Feature", "properties": { "id": 301412, "name": "Clarkson Av/Bedford Av", "direction": "W", "lat": 40.655064, "lon": -73.956856, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.956856, 40.655064 ] } }, -{ "type": "Feature", "properties": { "id": 301413, "name": "Clarkson Av/Flatbush Av", "direction": "W", "lat": 40.654903, "lon": -73.95957, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.95957, 40.654903 ] } }, -{ "type": "Feature", "properties": { "id": 301414, "name": "Woodruff Av/Ocean Av", "direction": "W", "lat": 40.654175, "lon": -73.961624, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.961624, 40.654175 ] } }, -{ "type": "Feature", "properties": { "id": 301418, "name": "Fountain Av/Vandalia Av", "direction": "NW", "lat": 40.65922, "lon": -73.86613, "routes": "B13, B84" }, "geometry": { "type": "Point", "coordinates": [ -73.86613, 40.65922 ] } }, -{ "type": "Feature", "properties": { "id": 301419, "name": "Crescent St/Flatlands Av", "direction": "NW", "lat": 40.66096, "lon": -73.86586, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86586, 40.66096 ] } }, -{ "type": "Feature", "properties": { "id": 301420, "name": "Crescent St/Cozine Av", "direction": "N", "lat": 40.66257, "lon": -73.86674, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86674, 40.66257 ] } }, -{ "type": "Feature", "properties": { "id": 301421, "name": "Crescent St/Wortman Av", "direction": "N", "lat": 40.664223, "lon": -73.86715, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86715, 40.664223 ] } }, -{ "type": "Feature", "properties": { "id": 301427, "name": "Sutter Av/Crescent St", "direction": "E", "lat": 40.67304, "lon": -73.86964, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86964, 40.67304 ] } }, -{ "type": "Feature", "properties": { "id": 301429, "name": "Crescent St/Pitkin Av", "direction": "N", "lat": 40.675583, "lon": -73.86996, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86996, 40.675583 ] } }, -{ "type": "Feature", "properties": { "id": 301430, "name": "Crescent St/Glenmore Av", "direction": "N", "lat": 40.676785, "lon": -73.87024, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87024, 40.676785 ] } }, -{ "type": "Feature", "properties": { "id": 301431, "name": "Crescent St/Liberty Av", "direction": "N", "lat": 40.678074, "lon": -73.87056, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87056, 40.678074 ] } }, -{ "type": "Feature", "properties": { "id": 301435, "name": "Crescent St/Fulton St", "direction": "N", "lat": 40.683956, "lon": -73.87223, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87223, 40.683956 ] } }, -{ "type": "Feature", "properties": { "id": 301436, "name": "Crescent St/Ridgewood Av", "direction": "N", "lat": 40.685722, "lon": -73.872765, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.872765, 40.685722 ] } }, -{ "type": "Feature", "properties": { "id": 301437, "name": "Crescent St/Etna St", "direction": "N", "lat": 40.687214, "lon": -73.87325, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87325, 40.687214 ] } }, -{ "type": "Feature", "properties": { "id": 301439, "name": "Jamaica Av/Cypress Hills St", "direction": "W", "lat": 40.68868, "lon": -73.875595, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.875595, 40.68868 ] } }, -{ "type": "Feature", "properties": { "id": 301492, "name": "Cypress Hills St/Jamaica Av", "direction": "SE", "lat": 40.688744, "lon": -73.87594, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87594, 40.688744 ] } }, -{ "type": "Feature", "properties": { "id": 301493, "name": "Jamaica Av/Crescent St", "direction": "NE", "lat": 40.689224, "lon": -73.87407, "routes": "Q56, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87407, 40.689224 ] } }, -{ "type": "Feature", "properties": { "id": 301494, "name": "Jamaica Av/Hemlock St", "direction": "NE", "lat": 40.689796, "lon": -73.87271, "routes": "B13, Q56, J90" }, "geometry": { "type": "Point", "coordinates": [ -73.87271, 40.689796 ] } }, -{ "type": "Feature", "properties": { "id": 301495, "name": "Crescent St/Etna St", "direction": "S", "lat": 40.68678, "lon": -73.87323, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87323, 40.68678 ] } }, -{ "type": "Feature", "properties": { "id": 301496, "name": "Crescent St/Ridgewood Av", "direction": "S", "lat": 40.68511, "lon": -73.87271, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87271, 40.68511 ] } }, -{ "type": "Feature", "properties": { "id": 301497, "name": "Crescent St/Fulton St", "direction": "S", "lat": 40.68338, "lon": -73.87216, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87216, 40.68338 ] } }, -{ "type": "Feature", "properties": { "id": 301499, "name": "Crescent St/Weldon St", "direction": "S", "lat": 40.680107, "lon": -73.87125, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87125, 40.680107 ] } }, -{ "type": "Feature", "properties": { "id": 301500, "name": "Crescent St/Liberty Av", "direction": "S", "lat": 40.678253, "lon": -73.87078, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87078, 40.678253 ] } }, -{ "type": "Feature", "properties": { "id": 301501, "name": "Euclid Av/Liberty Av", "direction": "S", "lat": 40.67758, "lon": -73.87253, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87253, 40.67758 ] } }, -{ "type": "Feature", "properties": { "id": 301503, "name": "Euclid Av/Pitkin Av", "direction": "S", "lat": 40.675034, "lon": -73.87189, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87189, 40.675034 ] } }, -{ "type": "Feature", "properties": { "id": 301504, "name": "Euclid Av/Belmont Av", "direction": "S", "lat": 40.673885, "lon": -73.871605, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.871605, 40.673885 ] } }, -{ "type": "Feature", "properties": { "id": 301505, "name": "Euclid Av/Sutter Av", "direction": "S", "lat": 40.672523, "lon": -73.8713, "routes": "Q08, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.8713, 40.672523 ] } }, -{ "type": "Feature", "properties": { "id": 301506, "name": "Euclid Av/Blake Av", "direction": "S", "lat": 40.67098, "lon": -73.87091, "routes": "B13, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87091, 40.67098 ] } }, -{ "type": "Feature", "properties": { "id": 301507, "name": "Euclid Av/Dumont Av", "direction": "S", "lat": 40.669487, "lon": -73.870514, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.870514, 40.669487 ] } }, -{ "type": "Feature", "properties": { "id": 301511, "name": "Crescent St/Stanley Av", "direction": "S", "lat": 40.665146, "lon": -73.86753, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86753, 40.665146 ] } }, -{ "type": "Feature", "properties": { "id": 301512, "name": "Crescent St/Wortman Av", "direction": "S", "lat": 40.66357, "lon": -73.86714, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86714, 40.66357 ] } }, -{ "type": "Feature", "properties": { "id": 301516, "name": "Eastern Pkwy/Rochester Av", "direction": "E", "lat": 40.668365, "lon": -73.927925, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.927925, 40.668365 ] } }, -{ "type": "Feature", "properties": { "id": 301517, "name": "Eastern Pkwy/Buffalo Av", "direction": "E", "lat": 40.668255, "lon": -73.92586, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.92586, 40.668255 ] } }, -{ "type": "Feature", "properties": { "id": 301521, "name": "Pitkin Av/Saratoga Av", "direction": "E", "lat": 40.668716, "lon": -73.91683, "routes": "B12, B14, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91683, 40.668716 ] } }, -{ "type": "Feature", "properties": { "id": 301522, "name": "Pitkin Av/Herzl St", "direction": "E", "lat": 40.668983, "lon": -73.91504, "routes": "B12, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.91504, 40.668983 ] } }, -{ "type": "Feature", "properties": { "id": 301530, "name": "Dumont Av/Mother Gaston Blvd", "direction": "E", "lat": 40.664646, "lon": -73.905106, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.905106, 40.664646 ] } }, -{ "type": "Feature", "properties": { "id": 301531, "name": "Powell St/Dumont Av", "direction": "N", "lat": 40.6654, "lon": -73.90279, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90279, 40.6654 ] } }, -{ "type": "Feature", "properties": { "id": 301532, "name": "Powell St/Blake Av", "direction": "N", "lat": 40.66694, "lon": -73.903175, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.903175, 40.66694 ] } }, -{ "type": "Feature", "properties": { "id": 301534, "name": "Sutter Av/Powell St", "direction": "E", "lat": 40.668133, "lon": -73.90311, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90311, 40.668133 ] } }, -{ "type": "Feature", "properties": { "id": 301535, "name": "Sutter Av/Van Sinderen Av", "direction": "E", "lat": 40.668404, "lon": -73.9013, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.9013, 40.668404 ] } }, -{ "type": "Feature", "properties": { "id": 301536, "name": "Sutter Av/Williams Av", "direction": "E", "lat": 40.668823, "lon": -73.89847, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89847, 40.668823 ] } }, -{ "type": "Feature", "properties": { "id": 301537, "name": "Sutter Av/Georgia Av", "direction": "E", "lat": 40.669086, "lon": -73.89669, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89669, 40.669086 ] } }, -{ "type": "Feature", "properties": { "id": 301538, "name": "Sutter Av/Pennsylvania Av", "direction": "E", "lat": 40.66937, "lon": -73.89478, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89478, 40.66937 ] } }, -{ "type": "Feature", "properties": { "id": 301539, "name": "Sutter Av/Wyona St", "direction": "E", "lat": 40.66978, "lon": -73.89201, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89201, 40.66978 ] } }, -{ "type": "Feature", "properties": { "id": 301540, "name": "Sutter Av/Miller Av", "direction": "E", "lat": 40.67006, "lon": -73.89015, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89015, 40.67006 ] } }, -{ "type": "Feature", "properties": { "id": 301541, "name": "Sutter Av/Hendrix St", "direction": "E", "lat": 40.670326, "lon": -73.8884, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.8884, 40.670326 ] } }, -{ "type": "Feature", "properties": { "id": 301542, "name": "Sutter Av/Barbey St", "direction": "E", "lat": 40.670597, "lon": -73.88659, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.88659, 40.670597 ] } }, -{ "type": "Feature", "properties": { "id": 301543, "name": "Sutter Av/Warwick St", "direction": "E", "lat": 40.670853, "lon": -73.884865, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.884865, 40.670853 ] } }, -{ "type": "Feature", "properties": { "id": 301544, "name": "Sutter Av/Cleveland St", "direction": "E", "lat": 40.671097, "lon": -73.88321, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.88321, 40.671097 ] } }, -{ "type": "Feature", "properties": { "id": 301545, "name": "Sutter Av/Linwood St", "direction": "E", "lat": 40.671265, "lon": -73.882065, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.882065, 40.671265 ] } }, -{ "type": "Feature", "properties": { "id": 301546, "name": "Sutter Av/Shepherd Av", "direction": "E", "lat": 40.6716, "lon": -73.87979, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87979, 40.6716 ] } }, -{ "type": "Feature", "properties": { "id": 301547, "name": "Sutter Av/Atkins Av", "direction": "E", "lat": 40.671852, "lon": -73.87795, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87795, 40.671852 ] } }, -{ "type": "Feature", "properties": { "id": 301548, "name": "Sutter Av/Milford St", "direction": "E", "lat": 40.672127, "lon": -73.87612, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87612, 40.672127 ] } }, -{ "type": "Feature", "properties": { "id": 301549, "name": "Sutter Av/Fountain Av", "direction": "E", "lat": 40.67235, "lon": -73.87425, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87425, 40.67235 ] } }, -{ "type": "Feature", "properties": { "id": 301550, "name": "Sutter Av/Euclid Av", "direction": "E", "lat": 40.67281, "lon": -73.871155, "routes": "B13, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.871155, 40.67281 ] } }, -{ "type": "Feature", "properties": { "id": 301551, "name": "Crescent St/Sutter Av", "direction": "N", "lat": 40.67331, "lon": -73.86941, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86941, 40.67331 ] } }, -{ "type": "Feature", "properties": { "id": 301552, "name": "Sutter Av/Lincoln Av", "direction": "E", "lat": 40.673527, "lon": -73.86635, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86635, 40.673527 ] } }, -{ "type": "Feature", "properties": { "id": 301553, "name": "Sutter Av/Grant Av", "direction": "E", "lat": 40.673794, "lon": -73.8645, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.8645, 40.673794 ] } }, -{ "type": "Feature", "properties": { "id": 301554, "name": "Drew St/Sutter Av", "direction": "S", "lat": 40.673897, "lon": -73.862076, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.862076, 40.673897 ] } }, -{ "type": "Feature", "properties": { "id": 301555, "name": "Drew St/Dumont Av", "direction": "S", "lat": 40.670853, "lon": -73.861336, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.861336, 40.670853 ] } }, -{ "type": "Feature", "properties": { "id": 301556, "name": "Drew St/Linden Blvd", "direction": "S", "lat": 40.66997, "lon": -73.86112, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86112, 40.66997 ] } }, -{ "type": "Feature", "properties": { "id": 301560, "name": "Lincoln Av/Blake Av", "direction": "N", "lat": 40.672, "lon": -73.86619, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86619, 40.672 ] } }, -{ "type": "Feature", "properties": { "id": 301561, "name": "Sutter Av/Autumn Av", "direction": "W", "lat": 40.67341, "lon": -73.86806, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86806, 40.67341 ] } }, -{ "type": "Feature", "properties": { "id": 301562, "name": "Sutter Av/Crescent St", "direction": "W", "lat": 40.673126, "lon": -73.86992, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86992, 40.673126 ] } }, -{ "type": "Feature", "properties": { "id": 301563, "name": "Sutter Av/Euclid Av", "direction": "W", "lat": 40.672947, "lon": -73.87118, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87118, 40.672947 ] } }, -{ "type": "Feature", "properties": { "id": 301564, "name": "Sutter Av/Fountain Av", "direction": "W", "lat": 40.672466, "lon": -73.874535, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.874535, 40.672466 ] } }, -{ "type": "Feature", "properties": { "id": 301565, "name": "Sutter Av/Logan St", "direction": "W", "lat": 40.672256, "lon": -73.87595, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87595, 40.672256 ] } }, -{ "type": "Feature", "properties": { "id": 301566, "name": "Sutter Av/Montauk Av", "direction": "W", "lat": 40.672, "lon": -73.87779, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87779, 40.672 ] } }, -{ "type": "Feature", "properties": { "id": 301567, "name": "Sutter Av/Berriman St", "direction": "W", "lat": 40.671722, "lon": -73.87966, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.87966, 40.671722 ] } }, -{ "type": "Feature", "properties": { "id": 301568, "name": "Sutter Av/Essex St", "direction": "W", "lat": 40.671463, "lon": -73.88146, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.88146, 40.671463 ] } }, -{ "type": "Feature", "properties": { "id": 301569, "name": "Sutter Av/Elton St", "direction": "W", "lat": 40.671215, "lon": -73.88314, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.88314, 40.671215 ] } }, -{ "type": "Feature", "properties": { "id": 301570, "name": "Sutter Av/Ashford St", "direction": "W", "lat": 40.670975, "lon": -73.884766, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.884766, 40.670975 ] } }, -{ "type": "Feature", "properties": { "id": 301571, "name": "Sutter Av/Jerome St", "direction": "W", "lat": 40.670715, "lon": -73.8865, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.8865, 40.670715 ] } }, -{ "type": "Feature", "properties": { "id": 301572, "name": "Sutter Av/Schenck Av", "direction": "W", "lat": 40.67044, "lon": -73.88835, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.88835, 40.67044 ] } }, -{ "type": "Feature", "properties": { "id": 301573, "name": "Sutter Av/Van Siclen Av", "direction": "W", "lat": 40.67019, "lon": -73.89008, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89008, 40.67019 ] } }, -{ "type": "Feature", "properties": { "id": 301574, "name": "Sutter Av/Bradford St", "direction": "W", "lat": 40.669926, "lon": -73.8919, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.8919, 40.669926 ] } }, -{ "type": "Feature", "properties": { "id": 301575, "name": "Sutter Av/Vermont St", "direction": "W", "lat": 40.66966, "lon": -73.893715, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.893715, 40.66966 ] } }, -{ "type": "Feature", "properties": { "id": 301576, "name": "Sutter Av/Pennsylvania Av", "direction": "W", "lat": 40.669365, "lon": -73.89567, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89567, 40.669365 ] } }, -{ "type": "Feature", "properties": { "id": 301577, "name": "Sutter Av/Alabama Av", "direction": "W", "lat": 40.668957, "lon": -73.89844, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.89844, 40.668957 ] } }, -{ "type": "Feature", "properties": { "id": 301578, "name": "Sutter Av/Hinsdale St", "direction": "W", "lat": 40.668674, "lon": -73.90033, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90033, 40.668674 ] } }, -{ "type": "Feature", "properties": { "id": 301579, "name": "Sutter Av/Van Sinderen Av", "direction": "W", "lat": 40.668404, "lon": -73.902084, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.902084, 40.668404 ] } }, -{ "type": "Feature", "properties": { "id": 301580, "name": "Junius St/Sutter Av", "direction": "S", "lat": 40.667995, "lon": -73.90262, "routes": "L91, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90262, 40.667995 ] } }, -{ "type": "Feature", "properties": { "id": 301581, "name": "Junius St/Blake Av", "direction": "S", "lat": 40.66639, "lon": -73.902214, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.902214, 40.66639 ] } }, -{ "type": "Feature", "properties": { "id": 301582, "name": "Dumont Av/Junius St", "direction": "W", "lat": 40.665176, "lon": -73.90233, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90233, 40.665176 ] } }, -{ "type": "Feature", "properties": { "id": 301583, "name": "Dumont Av/Powell St", "direction": "W", "lat": 40.66509, "lon": -73.90322, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90322, 40.66509 ] } }, -{ "type": "Feature", "properties": { "id": 301585, "name": "Mother Gaston Blvd/Blake Av", "direction": "N", "lat": 40.666515, "lon": -73.905914, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.905914, 40.666515 ] } }, -{ "type": "Feature", "properties": { "id": 301586, "name": "Mother Gaston Blvd/Sutter Av", "direction": "N", "lat": 40.668068, "lon": -73.906334, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.906334, 40.668068 ] } }, -{ "type": "Feature", "properties": { "id": 301588, "name": "Mother Gaston Blvd/Belmont Av", "direction": "N", "lat": 40.669327, "lon": -73.906654, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.906654, 40.669327 ] } }, -{ "type": "Feature", "properties": { "id": 301589, "name": "Pitkin Av/Mother Gaston Blvd", "direction": "W", "lat": 40.67023, "lon": -73.90749, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90749, 40.67023 ] } }, -{ "type": "Feature", "properties": { "id": 301590, "name": "Pitkin Av/Osborn St", "direction": "W", "lat": 40.669964, "lon": -73.90929, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90929, 40.669964 ] } }, -{ "type": "Feature", "properties": { "id": 301591, "name": "Pitkin Av/Rockaway Av", "direction": "W", "lat": 40.669678, "lon": -73.91121, "routes": "B14, B12" }, "geometry": { "type": "Point", "coordinates": [ -73.91121, 40.669678 ] } }, -{ "type": "Feature", "properties": { "id": 301593, "name": "Pitkin Av/Amboy St", "direction": "W", "lat": 40.669125, "lon": -73.91492, "routes": "B12, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.91492, 40.669125 ] } }, -{ "type": "Feature", "properties": { "id": 301594, "name": "Pitkin Av/Strauss St", "direction": "W", "lat": 40.66885, "lon": -73.91676, "routes": "B12, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.91676, 40.66885 ] } }, -{ "type": "Feature", "properties": { "id": 301595, "name": "Pitkin Av/Legion St", "direction": "W", "lat": 40.668648, "lon": -73.91815, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.91815, 40.668648 ] } }, -{ "type": "Feature", "properties": { "id": 301598, "name": "Eastern Pkwy/Buffalo Av", "direction": "W", "lat": 40.668724, "lon": -73.9252, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.9252, 40.668724 ] } }, -{ "type": "Feature", "properties": { "id": 301599, "name": "Eastern Pkwy/Rochester Av", "direction": "W", "lat": 40.668888, "lon": -73.92821, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.92821, 40.668888 ] } }, -{ "type": "Feature", "properties": { "id": 301601, "name": "Eastern Pkwy/Schenectady Av", "direction": "W", "lat": 40.66919, "lon": -73.933716, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.933716, 40.66919 ] } }, -{ "type": "Feature", "properties": { "id": 301602, "name": "Shore Rd/4 Av", "direction": "NW", "lat": 40.61176, "lon": -74.03512, "routes": "B37, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.03512, 40.61176 ] } }, -{ "type": "Feature", "properties": { "id": 301603, "name": "Shore Rd/3 Av", "direction": "NW", "lat": 40.612823, "lon": -74.036255, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.036255, 40.612823 ] } }, -{ "type": "Feature", "properties": { "id": 301604, "name": "Shore Rd/99 St", "direction": "NW", "lat": 40.614082, "lon": -74.0371, "routes": "X37, X27, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.0371, 40.614082 ] } }, -{ "type": "Feature", "properties": { "id": 301605, "name": "Shore Rd/97 St", "direction": "NW", "lat": 40.61551, "lon": -74.037704, "routes": "X27, X37, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.037704, 40.61551 ] } }, -{ "type": "Feature", "properties": { "id": 301606, "name": "Shore Rd/Ridge Blvd", "direction": "NW", "lat": 40.617523, "lon": -74.03888, "routes": "B16, X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.03888, 40.617523 ] } }, -{ "type": "Feature", "properties": { "id": 301607, "name": "Shore Rd/Oliver St", "direction": "NW", "lat": 40.619415, "lon": -74.04002, "routes": "X37, X27, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.04002, 40.619415 ] } }, -{ "type": "Feature", "properties": { "id": 301608, "name": "Shore Rd/91 St", "direction": "N", "lat": 40.622005, "lon": -74.04008, "routes": "B16, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.04008, 40.622005 ] } }, -{ "type": "Feature", "properties": { "id": 301609, "name": "Narrows Av/89 St", "direction": "NE", "lat": 40.623165, "lon": -74.039925, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.039925, 40.623165 ] } }, -{ "type": "Feature", "properties": { "id": 301610, "name": "Narrows Av/86 St", "direction": "N", "lat": 40.62521, "lon": -74.039085, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.039085, 40.62521 ] } }, -{ "type": "Feature", "properties": { "id": 301611, "name": "86 St/Colonial Rd", "direction": "E", "lat": 40.624573, "lon": -74.03613, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.03613, 40.624573 ] } }, -{ "type": "Feature", "properties": { "id": 301612, "name": "86 St/Ridge Blvd", "direction": "E", "lat": 40.623913, "lon": -74.03336, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.03336, 40.623913 ] } }, -{ "type": "Feature", "properties": { "id": 301613, "name": "86 St/3 Av", "direction": "E", "lat": 40.62342, "lon": -74.03124, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.03124, 40.62342 ] } }, -{ "type": "Feature", "properties": { "id": 301614, "name": "86 St/4 Av", "direction": "SE", "lat": 40.6223, "lon": -74.027695, "routes": "B1, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.027695, 40.6223 ] } }, -{ "type": "Feature", "properties": { "id": 301615, "name": "86 St/5 Av", "direction": "SE", "lat": 40.621292, "lon": -74.026115, "routes": "B1, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.026115, 40.621292 ] } }, -{ "type": "Feature", "properties": { "id": 301616, "name": "Fort Hamilton Pkwy/86 St", "direction": "NE", "lat": 40.620617, "lon": -74.02404, "routes": "B70, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.02404, 40.620617 ] } }, -{ "type": "Feature", "properties": { "id": 301620, "name": "Fort Hamilton Pkwy/77 St", "direction": "NE", "lat": 40.624943, "lon": -74.017624, "routes": "B16, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.017624, 40.624943 ] } }, -{ "type": "Feature", "properties": { "id": 301621, "name": "Fort Hamilton Pkwy/Bay Ridge Pkwy", "direction": "NE", "lat": 40.625847, "lon": -74.01622, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01622, 40.625847 ] } }, -{ "type": "Feature", "properties": { "id": 301622, "name": "Fort Hamilton Pkwy/74 St", "direction": "NE", "lat": 40.62645, "lon": -74.015335, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.015335, 40.62645 ] } }, -{ "type": "Feature", "properties": { "id": 301623, "name": "Fort Hamilton Pkwy/72 St", "direction": "NE", "lat": 40.62739, "lon": -74.01392, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01392, 40.62739 ] } }, -{ "type": "Feature", "properties": { "id": 301624, "name": "Fort Hamilton Pkwy/Bay Ridge Av", "direction": "NE", "lat": 40.62855, "lon": -74.01219, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01219, 40.62855 ] } }, -{ "type": "Feature", "properties": { "id": 301625, "name": "Fort Hamilton Pkwy/68 St", "direction": "NE", "lat": 40.62931, "lon": -74.01106, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01106, 40.62931 ] } }, -{ "type": "Feature", "properties": { "id": 301626, "name": "Fort Hamilton Pkwy/66 St", "direction": "NE", "lat": 40.63027, "lon": -74.00962, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00962, 40.63027 ] } }, -{ "type": "Feature", "properties": { "id": 301628, "name": "Fort Hamilton Pkwy/62 St", "direction": "NE", "lat": 40.632244, "lon": -74.00667, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00667, 40.632244 ] } }, -{ "type": "Feature", "properties": { "id": 301646, "name": "36 St/Clara St", "direction": "NW", "lat": 40.642803, "lon": -73.985374, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.985374, 40.642803 ] } }, -{ "type": "Feature", "properties": { "id": 301647, "name": "36 St/12 Av", "direction": "NW", "lat": 40.643497, "lon": -73.98652, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98652, 40.643497 ] } }, -{ "type": "Feature", "properties": { "id": 301648, "name": "12 Av/Chester Av", "direction": "E", "lat": 40.644516, "lon": -73.984024, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.984024, 40.644516 ] } }, -{ "type": "Feature", "properties": { "id": 301649, "name": "12 Av/Dahill Rd", "direction": "E", "lat": 40.645622, "lon": -73.98119, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98119, 40.645622 ] } }, -{ "type": "Feature", "properties": { "id": 301651, "name": "Caton Av/Mcdonald Av", "direction": "E", "lat": 40.647263, "lon": -73.97985, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.97985, 40.647263 ] } }, -{ "type": "Feature", "properties": { "id": 301652, "name": "Caton Av/E 4 St", "direction": "E", "lat": 40.647602, "lon": -73.97688, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.97688, 40.647602 ] } }, -{ "type": "Feature", "properties": { "id": 301653, "name": "Caton Av/Ocean Pkwy", "direction": "E", "lat": 40.64775, "lon": -73.9754, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.9754, 40.64775 ] } }, -{ "type": "Feature", "properties": { "id": 301654, "name": "Caton Av/E 8 St", "direction": "E", "lat": 40.64773, "lon": -73.97259, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.97259, 40.64773 ] } }, -{ "type": "Feature", "properties": { "id": 301655, "name": "Caton Av/Coney Island Av", "direction": "E", "lat": 40.64813, "lon": -73.971565, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.971565, 40.64813 ] } }, -{ "type": "Feature", "properties": { "id": 301657, "name": "Caton Av/Westminster", "direction": "E", "lat": 40.64931, "lon": -73.96845, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96845, 40.64931 ] } }, -{ "type": "Feature", "properties": { "id": 301658, "name": "Caton Av/Rugby Rd", "direction": "NE", "lat": 40.650013, "lon": -73.96669, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96669, 40.650013 ] } }, -{ "type": "Feature", "properties": { "id": 301659, "name": "Caton Av/E 16 St", "direction": "E", "lat": 40.650723, "lon": -73.9649, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.9649, 40.650723 ] } }, -{ "type": "Feature", "properties": { "id": 301663, "name": "Ocean Av/Caton Av", "direction": "S", "lat": 40.652294, "lon": -73.961525, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.961525, 40.652294 ] } }, -{ "type": "Feature", "properties": { "id": 301664, "name": "Caton Av/Saint Pauls Pl", "direction": "W", "lat": 40.651443, "lon": -73.96341, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96341, 40.651443 ] } }, -{ "type": "Feature", "properties": { "id": 301665, "name": "Caton Av/Parade Pl", "direction": "W", "lat": 40.65078, "lon": -73.965096, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.965096, 40.65078 ] } }, -{ "type": "Feature", "properties": { "id": 301667, "name": "Caton Av/Argyle Rd", "direction": "W", "lat": 40.649525, "lon": -73.968254, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.968254, 40.649525 ] } }, -{ "type": "Feature", "properties": { "id": 301669, "name": "Caton Av/Coney Island Av", "direction": "W", "lat": 40.64835, "lon": -73.97124, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.97124, 40.64835 ] } }, -{ "type": "Feature", "properties": { "id": 301671, "name": "Caton Av/Ocean Pkwy", "direction": "W", "lat": 40.64784, "lon": -73.97454, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.97454, 40.64784 ] } }, -{ "type": "Feature", "properties": { "id": 301672, "name": "Caton Av/E 5 St", "direction": "W", "lat": 40.64775, "lon": -73.97673, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.97673, 40.64775 ] } }, -{ "type": "Feature", "properties": { "id": 301673, "name": "Caton Av/E 3 St", "direction": "W", "lat": 40.647564, "lon": -73.97855, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.97855, 40.647564 ] } }, -{ "type": "Feature", "properties": { "id": 301674, "name": "Caton Av/Mcdonald Av", "direction": "W", "lat": 40.64739, "lon": -73.98013, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98013, 40.64739 ] } }, -{ "type": "Feature", "properties": { "id": 301675, "name": "Dahill Rd/12 Av", "direction": "S", "lat": 40.64585, "lon": -73.98116, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98116, 40.64585 ] } }, -{ "type": "Feature", "properties": { "id": 301676, "name": "12 Av/Chester Av", "direction": "W", "lat": 40.644382, "lon": -73.98475, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98475, 40.644382 ] } }, -{ "type": "Feature", "properties": { "id": 301677, "name": "37 St/12 Av", "direction": "SE", "lat": 40.642845, "lon": -73.98705, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98705, 40.642845 ] } }, -{ "type": "Feature", "properties": { "id": 301678, "name": "37 St/13 Av", "direction": "SE", "lat": 40.641792, "lon": -73.9853, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.9853, 40.641792 ] } }, -{ "type": "Feature", "properties": { "id": 301679, "name": "13 Av/39 St", "direction": "SW", "lat": 40.6404, "lon": -73.986626, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.986626, 40.6404 ] } }, -{ "type": "Feature", "properties": { "id": 301680, "name": "13 Av/41 St", "direction": "SW", "lat": 40.63931, "lon": -73.98777, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98777, 40.63931 ] } }, -{ "type": "Feature", "properties": { "id": 301681, "name": "13 Av/43 St", "direction": "SW", "lat": 40.63819, "lon": -73.98892, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98892, 40.63819 ] } }, -{ "type": "Feature", "properties": { "id": 301682, "name": "13 Av/45 St", "direction": "SW", "lat": 40.637074, "lon": -73.9901, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.9901, 40.637074 ] } }, -{ "type": "Feature", "properties": { "id": 301683, "name": "13 Av/47 St", "direction": "SW", "lat": 40.63595, "lon": -73.991264, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.991264, 40.63595 ] } }, -{ "type": "Feature", "properties": { "id": 301684, "name": "13 Av/49 St", "direction": "SW", "lat": 40.63486, "lon": -73.99239, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99239, 40.63486 ] } }, -{ "type": "Feature", "properties": { "id": 301685, "name": "13 Av/52 St", "direction": "SW", "lat": 40.63315, "lon": -73.99419, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99419, 40.63315 ] } }, -{ "type": "Feature", "properties": { "id": 301686, "name": "13 Av/54 St", "direction": "SW", "lat": 40.632347, "lon": -73.99501, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99501, 40.632347 ] } }, -{ "type": "Feature", "properties": { "id": 301689, "name": "57 St/12 Av", "direction": "NW", "lat": 40.63209, "lon": -73.999245, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.999245, 40.63209 ] } }, -{ "type": "Feature", "properties": { "id": 301690, "name": "57 St/11 Av", "direction": "NW", "lat": 40.63346, "lon": -74.00151, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00151, 40.63346 ] } }, -{ "type": "Feature", "properties": { "id": 301691, "name": "57 St/Fort Hamilton Pkwy", "direction": "NW", "lat": 40.634495, "lon": -74.00322, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00322, 40.634495 ] } }, -{ "type": "Feature", "properties": { "id": 301692, "name": "Fort Hamilton Pkwy/58 St", "direction": "SW", "lat": 40.633904, "lon": -74.00448, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00448, 40.633904 ] } }, -{ "type": "Feature", "properties": { "id": 301694, "name": "Fort Hamilton Pkwy/62 St", "direction": "SW", "lat": 40.632236, "lon": -74.00697, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00697, 40.632236 ] } }, -{ "type": "Feature", "properties": { "id": 301698, "name": "Fort Hamilton Pkwy/Bay Ridge Av", "direction": "SW", "lat": 40.62881, "lon": -74.01209, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01209, 40.62881 ] } }, -{ "type": "Feature", "properties": { "id": 301700, "name": "Fort Hamilton Pkwy/73 St", "direction": "SW", "lat": 40.626892, "lon": -74.01496, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01496, 40.626892 ] } }, -{ "type": "Feature", "properties": { "id": 301701, "name": "Fort Hamilton Pkwy/Bay Ridge Pkwy", "direction": "SW", "lat": 40.625908, "lon": -74.01643, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01643, 40.625908 ] } }, -{ "type": "Feature", "properties": { "id": 301707, "name": "86 St/5 Av", "direction": "NW", "lat": 40.621635, "lon": -74.026344, "routes": "S93, B16, S53" }, "geometry": { "type": "Point", "coordinates": [ -74.026344, 40.621635 ] } }, -{ "type": "Feature", "properties": { "id": 301708, "name": "86 St/4 Av", "direction": "W", "lat": 40.62301, "lon": -74.02878, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.02878, 40.62301 ] } }, -{ "type": "Feature", "properties": { "id": 301709, "name": "86 St/3 Av", "direction": "W", "lat": 40.62351, "lon": -74.03087, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.03087, 40.62351 ] } }, -{ "type": "Feature", "properties": { "id": 301710, "name": "86 St/Ridge Blvd", "direction": "W", "lat": 40.62428, "lon": -74.034134, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.034134, 40.62428 ] } }, -{ "type": "Feature", "properties": { "id": 301711, "name": "86 St/Colonial Rd", "direction": "W", "lat": 40.62492, "lon": -74.036835, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.036835, 40.62492 ] } }, -{ "type": "Feature", "properties": { "id": 301714, "name": "Shore Rd/88 St", "direction": "S", "lat": 40.624294, "lon": -74.04088, "routes": "B16, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.04088, 40.624294 ] } }, -{ "type": "Feature", "properties": { "id": 301715, "name": "Shore Rd/Narrows Av", "direction": "SE", "lat": 40.62269, "lon": -74.04049, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.04049, 40.62269 ] } }, -{ "type": "Feature", "properties": { "id": 301716, "name": "Shore Rd/91 St", "direction": "SW", "lat": 40.621235, "lon": -74.040436, "routes": "X27, B16, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.040436, 40.621235 ] } }, -{ "type": "Feature", "properties": { "id": 301717, "name": "Shore Rd/Oliver St", "direction": "SE", "lat": 40.618874, "lon": -74.03991, "routes": "X27, B16, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.03991, 40.618874 ] } }, -{ "type": "Feature", "properties": { "id": 301718, "name": "Shore Rd/Ridge Blvd", "direction": "SE", "lat": 40.616924, "lon": -74.03872, "routes": "B16, X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.03872, 40.616924 ] } }, -{ "type": "Feature", "properties": { "id": 301719, "name": "Shore Rd/97 St", "direction": "S", "lat": 40.61498, "lon": -74.03769, "routes": "B16, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.03769, 40.61498 ] } }, -{ "type": "Feature", "properties": { "id": 301720, "name": "Shore Rd/99 St", "direction": "SE", "lat": 40.61357, "lon": -74.03704, "routes": "B16, X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.03704, 40.61357 ] } }, -{ "type": "Feature", "properties": { "id": 301721, "name": "3 Av/Shore Rd", "direction": "NE", "lat": 40.612682, "lon": -74.0359, "routes": "X37, X27, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.0359, 40.612682 ] } }, -{ "type": "Feature", "properties": { "id": 301722, "name": "3 Av/Marine Av", "direction": "NE", "lat": 40.614822, "lon": -74.034584, "routes": "B37, B16, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.034584, 40.614822 ] } }, -{ "type": "Feature", "properties": { "id": 301723, "name": "Marine Av/4 Av", "direction": "SE", "lat": 40.614017, "lon": -74.03287, "routes": "B16, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.03287, 40.614017 ] } }, -{ "type": "Feature", "properties": { "id": 301724, "name": "4 Av/99 St", "direction": "SW", "lat": 40.61351, "lon": -74.03312, "routes": "B16, B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03312, 40.61351 ] } }, -{ "type": "Feature", "properties": { "id": 301725, "name": "4 Av/100 St", "direction": "SW", "lat": 40.61259, "lon": -74.033905, "routes": "B16, B37" }, "geometry": { "type": "Point", "coordinates": [ -74.033905, 40.61259 ] } }, -{ "type": "Feature", "properties": { "id": 301726, "name": "Seaview Av/E 108 St", "direction": "SW", "lat": 40.63907, "lon": -73.881714, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.881714, 40.63907 ] } }, -{ "type": "Feature", "properties": { "id": 301727, "name": "Seaview Av/E 105 St", "direction": "SW", "lat": 40.63785, "lon": -73.8837, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.8837, 40.63785 ] } }, -{ "type": "Feature", "properties": { "id": 301728, "name": "Seaview Av/E 102 St", "direction": "SW", "lat": 40.63641, "lon": -73.88594, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.88594, 40.63641 ] } }, -{ "type": "Feature", "properties": { "id": 301730, "name": "Seaview Av/Rockaway Pkwy", "direction": "SW", "lat": 40.634026, "lon": -73.889626, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.889626, 40.634026 ] } }, -{ "type": "Feature", "properties": { "id": 301731, "name": "Seaview Av/E 95 St", "direction": "SW", "lat": 40.63265, "lon": -73.8917, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.8917, 40.63265 ] } }, -{ "type": "Feature", "properties": { "id": 301732, "name": "Seaview Av/E 93 St", "direction": "SW", "lat": 40.63171, "lon": -73.89316, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.89316, 40.63171 ] } }, -{ "type": "Feature", "properties": { "id": 301733, "name": "Seaview Av/Remsen Av", "direction": "SW", "lat": 40.630547, "lon": -73.89494, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.89494, 40.630547 ] } }, -{ "type": "Feature", "properties": { "id": 301734, "name": "Remsen Av/Avenue N", "direction": "NW", "lat": 40.632385, "lon": -73.897064, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.897064, 40.632385 ] } }, -{ "type": "Feature", "properties": { "id": 301735, "name": "Remsen Av/Avenue M", "direction": "NW", "lat": 40.633965, "lon": -73.89883, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.89883, 40.633965 ] } }, -{ "type": "Feature", "properties": { "id": 301736, "name": "Remsen Av/Avenue L", "direction": "NW", "lat": 40.63561, "lon": -73.900665, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.900665, 40.63561 ] } }, -{ "type": "Feature", "properties": { "id": 301737, "name": "Remsen Av/Avenue K", "direction": "NW", "lat": 40.63716, "lon": -73.90239, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90239, 40.63716 ] } }, -{ "type": "Feature", "properties": { "id": 301738, "name": "Remsen Av/Avenue J", "direction": "NW", "lat": 40.638878, "lon": -73.904305, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.904305, 40.638878 ] } }, -{ "type": "Feature", "properties": { "id": 301739, "name": "Remsen Av/Flatlands Av", "direction": "NW", "lat": 40.640568, "lon": -73.90618, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90618, 40.640568 ] } }, -{ "type": "Feature", "properties": { "id": 301740, "name": "Remsen Av/Glenwood Rd", "direction": "NW", "lat": 40.642067, "lon": -73.90786, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90786, 40.642067 ] } }, -{ "type": "Feature", "properties": { "id": 301742, "name": "Remsen Av/Foster Av", "direction": "NW", "lat": 40.6452, "lon": -73.91134, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91134, 40.6452 ] } }, -{ "type": "Feature", "properties": { "id": 301743, "name": "Remsen Av/Avenue D", "direction": "NW", "lat": 40.64626, "lon": -73.91251, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91251, 40.64626 ] } }, -{ "type": "Feature", "properties": { "id": 301744, "name": "Remsen Av/Ditmas Av", "direction": "NW", "lat": 40.648045, "lon": -73.91455, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91455, 40.648045 ] } }, -{ "type": "Feature", "properties": { "id": 301745, "name": "Remsen Av/Avenue B", "direction": "SE", "lat": 40.64926, "lon": -73.91615, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91615, 40.64926 ] } }, -{ "type": "Feature", "properties": { "id": 301746, "name": "Remsen Av/Avenue A", "direction": "NW", "lat": 40.651405, "lon": -73.91829, "routes": "B8, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91829, 40.651405 ] } }, -{ "type": "Feature", "properties": { "id": 301747, "name": "Remsen Av/Church Av", "direction": "NW", "lat": 40.653114, "lon": -73.92019, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.92019, 40.653114 ] } }, -{ "type": "Feature", "properties": { "id": 301748, "name": "Remsen Av/Linden Blvd", "direction": "NW", "lat": 40.654137, "lon": -73.92144, "routes": "B17, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92144, 40.654137 ] } }, -{ "type": "Feature", "properties": { "id": 301749, "name": "Remsen Av/Kings Hwy", "direction": "NW", "lat": 40.655067, "lon": -73.92242, "routes": "B47, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.92242, 40.655067 ] } }, -{ "type": "Feature", "properties": { "id": 301750, "name": "Remsen Av/Lenox Rd", "direction": "NW", "lat": 40.656315, "lon": -73.923805, "routes": "B47, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.923805, 40.656315 ] } }, -{ "type": "Feature", "properties": { "id": 301751, "name": "Remsen Av/Clarkson Av", "direction": "NW", "lat": 40.65794, "lon": -73.925545, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.925545, 40.65794 ] } }, -{ "type": "Feature", "properties": { "id": 301752, "name": "Remsen Av/Winthrop St", "direction": "NW", "lat": 40.65963, "lon": -73.92743, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.92743, 40.65963 ] } }, -{ "type": "Feature", "properties": { "id": 301753, "name": "Remsen Av/Rutland Rd", "direction": "NW", "lat": 40.66125, "lon": -73.92924, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.92924, 40.66125 ] } }, -{ "type": "Feature", "properties": { "id": 301755, "name": "East New York Av/Schenectady Av", "direction": "W", "lat": 40.66261, "lon": -73.93492, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.93492, 40.66261 ] } }, -{ "type": "Feature", "properties": { "id": 301756, "name": "Troy Av/East New York Av", "direction": "N", "lat": 40.662807, "lon": -73.9373, "routes": "B17, B12" }, "geometry": { "type": "Point", "coordinates": [ -73.9373, 40.662807 ] } }, -{ "type": "Feature", "properties": { "id": 301757, "name": "Troy Av/Empire Blvd", "direction": "N", "lat": 40.664097, "lon": -73.93706, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.93706, 40.664097 ] } }, -{ "type": "Feature", "properties": { "id": 301758, "name": "Troy Av/Montgomery St", "direction": "N", "lat": 40.664936, "lon": -73.93698, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.93698, 40.664936 ] } }, -{ "type": "Feature", "properties": { "id": 301759, "name": "Troy Av/Carroll St", "direction": "N", "lat": 40.66667, "lon": -73.93681, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.93681, 40.66667 ] } }, -{ "type": "Feature", "properties": { "id": 301760, "name": "Troy Av/Eastern Pkwy", "direction": "N", "lat": 40.668755, "lon": -73.936615, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.936615, 40.668755 ] } }, -{ "type": "Feature", "properties": { "id": 301761, "name": "Eastern Pkwy/Utica Av", "direction": "W", "lat": 40.66883, "lon": -73.93125, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.93125, 40.66883 ] } }, -{ "type": "Feature", "properties": { "id": 301762, "name": "Glenwood Rd/E 96 St", "direction": "NE", "lat": 40.64483, "lon": -73.90267, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90267, 40.64483 ] } }, -{ "type": "Feature", "properties": { "id": 301766, "name": "E 80 St/Paerdegat 15 St", "direction": "NW", "lat": 40.627884, "lon": -73.90054, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90054, 40.627884 ] } }, -{ "type": "Feature", "properties": { "id": 301767, "name": "E 80 St/Avenue N", "direction": "NW", "lat": 40.6288, "lon": -73.90257, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90257, 40.6288 ] } }, -{ "type": "Feature", "properties": { "id": 301768, "name": "Avenue L/E 83 St", "direction": "NE", "lat": 40.632156, "lon": -73.905235, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.905235, 40.632156 ] } }, -{ "type": "Feature", "properties": { "id": 301769, "name": "Avenue L/E 85 St", "direction": "NE", "lat": 40.633102, "lon": -73.903786, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.903786, 40.633102 ] } }, -{ "type": "Feature", "properties": { "id": 301770, "name": "Avenue L/E 87 St", "direction": "NE", "lat": 40.63404, "lon": -73.90233, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90233, 40.63404 ] } }, -{ "type": "Feature", "properties": { "id": 301776, "name": "Remsen Av/E 51 St", "direction": "SE", "lat": 40.66194, "lon": -73.930305, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.930305, 40.66194 ] } }, -{ "type": "Feature", "properties": { "id": 301777, "name": "Remsen Av/Rutland Rd", "direction": "SE", "lat": 40.66057, "lon": -73.92878, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.92878, 40.66057 ] } }, -{ "type": "Feature", "properties": { "id": 301778, "name": "Remsen Av/E 54 St", "direction": "SE", "lat": 40.658897, "lon": -73.926926, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.926926, 40.658897 ] } }, -{ "type": "Feature", "properties": { "id": 301779, "name": "Remsen Av/E 56 St", "direction": "SE", "lat": 40.657845, "lon": -73.92575, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.92575, 40.657845 ] } }, -{ "type": "Feature", "properties": { "id": 301781, "name": "Remsen Av/Kings Hwy", "direction": "SE", "lat": 40.654716, "lon": -73.92226, "routes": "B17, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92226, 40.654716 ] } }, -{ "type": "Feature", "properties": { "id": 301783, "name": "Remsen Av/Church Av", "direction": "SE", "lat": 40.652523, "lon": -73.9198, "routes": "B8, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.9198, 40.652523 ] } }, -{ "type": "Feature", "properties": { "id": 301786, "name": "Remsen Av/Ditmas Av", "direction": "SE", "lat": 40.64812, "lon": -73.91489, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91489, 40.64812 ] } }, -{ "type": "Feature", "properties": { "id": 301788, "name": "Remsen Av/Foster Av", "direction": "SE", "lat": 40.64457, "lon": -73.91097, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.91097, 40.64457 ] } }, -{ "type": "Feature", "properties": { "id": 301789, "name": "Remsen Av/Farragut Rd", "direction": "SE", "lat": 40.642895, "lon": -73.909096, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.909096, 40.642895 ] } }, -{ "type": "Feature", "properties": { "id": 301790, "name": "Remsen Av/Glenwood Rd", "direction": "SE", "lat": 40.64142, "lon": -73.90746, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90746, 40.64142 ] } }, -{ "type": "Feature", "properties": { "id": 301791, "name": "Remsen Av/Flatlands Av", "direction": "SE", "lat": 40.639885, "lon": -73.905754, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.905754, 40.639885 ] } }, -{ "type": "Feature", "properties": { "id": 301792, "name": "Remsen Av/Avenue J", "direction": "SE", "lat": 40.638294, "lon": -73.903984, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.903984, 40.638294 ] } }, -{ "type": "Feature", "properties": { "id": 301793, "name": "Remsen Av/Avenue K", "direction": "SE", "lat": 40.636494, "lon": -73.90198, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90198, 40.636494 ] } }, -{ "type": "Feature", "properties": { "id": 301794, "name": "Remsen Av/Avenue L", "direction": "SE", "lat": 40.63501, "lon": -73.90033, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90033, 40.63501 ] } }, -{ "type": "Feature", "properties": { "id": 301795, "name": "Remsen Av/Avenue M", "direction": "SE", "lat": 40.633358, "lon": -73.89848, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.89848, 40.633358 ] } }, -{ "type": "Feature", "properties": { "id": 301796, "name": "Remsen Av/Avenue N", "direction": "SE", "lat": 40.631702, "lon": -73.896645, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.896645, 40.631702 ] } }, -{ "type": "Feature", "properties": { "id": 301797, "name": "Remsen Av/Seaview Av", "direction": "SE", "lat": 40.630432, "lon": -73.895226, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.895226, 40.630432 ] } }, -{ "type": "Feature", "properties": { "id": 301798, "name": "Seaview Av/E 91 St", "direction": "NE", "lat": 40.630756, "lon": -73.89422, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.89422, 40.630756 ] } }, -{ "type": "Feature", "properties": { "id": 301799, "name": "Seaview Av/E 93 St", "direction": "NE", "lat": 40.631927, "lon": -73.89237, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.89237, 40.631927 ] } }, -{ "type": "Feature", "properties": { "id": 301800, "name": "Seaview Av/E 95 St", "direction": "NE", "lat": 40.632824, "lon": -73.89098, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.89098, 40.632824 ] } }, -{ "type": "Feature", "properties": { "id": 301801, "name": "Seaview Av/Rockaway Pkwy", "direction": "NE", "lat": 40.634007, "lon": -73.8891, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.8891, 40.634007 ] } }, -{ "type": "Feature", "properties": { "id": 301802, "name": "Seaview Av/E 99 St", "direction": "NE", "lat": 40.634937, "lon": -73.88765, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.88765, 40.634937 ] } }, -{ "type": "Feature", "properties": { "id": 301803, "name": "Seaview Av/E 102 St", "direction": "NE", "lat": 40.635963, "lon": -73.88606, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.88606, 40.635963 ] } }, -{ "type": "Feature", "properties": { "id": 301804, "name": "Seaview Av/E 104 St", "direction": "NE", "lat": 40.637283, "lon": -73.88402, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.88402, 40.637283 ] } }, -{ "type": "Feature", "properties": { "id": 301811, "name": "Avenue L/E 86 St", "direction": "SW", "lat": 40.633324, "lon": -73.90371, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90371, 40.633324 ] } }, -{ "type": "Feature", "properties": { "id": 301812, "name": "Avenue L/E 84 St", "direction": "SW", "lat": 40.632362, "lon": -73.9052, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.9052, 40.632362 ] } }, -{ "type": "Feature", "properties": { "id": 301813, "name": "Avenue L/E 82 St", "direction": "SW", "lat": 40.631653, "lon": -73.906296, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.906296, 40.631653 ] } }, -{ "type": "Feature", "properties": { "id": 301814, "name": "E 80 St/Paerdegat 7 St", "direction": "SE", "lat": 40.630573, "lon": -73.90704, "routes": "BM2, B17, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.90704, 40.630573 ] } }, -{ "type": "Feature", "properties": { "id": 301815, "name": "E 80 St/Paerdegat 10 St", "direction": "SE", "lat": 40.629486, "lon": -73.90463, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90463, 40.629486 ] } }, -{ "type": "Feature", "properties": { "id": 301816, "name": "E 80 St/Paerdegat 13 St", "direction": "SE", "lat": 40.62833, "lon": -73.90207, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90207, 40.62833 ] } }, -{ "type": "Feature", "properties": { "id": 301839, "name": "Wyckoff Av/Menahan St", "direction": "NW", "lat": 40.70141, "lon": -73.91436, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91436, 40.70141 ] } }, -{ "type": "Feature", "properties": { "id": 301840, "name": "Wyckoff Av/Greene Av", "direction": "NW", "lat": 40.70231, "lon": -73.915924, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.915924, 40.70231 ] } }, -{ "type": "Feature", "properties": { "id": 301841, "name": "Wyckoff Av/Stanhope St", "direction": "NW", "lat": 40.703117, "lon": -73.91718, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91718, 40.703117 ] } }, -{ "type": "Feature", "properties": { "id": 301844, "name": "Wyckoff Av/Starr St", "direction": "NW", "lat": 40.706375, "lon": -73.92244, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.92244, 40.706375 ] } }, -{ "type": "Feature", "properties": { "id": 301846, "name": "Flushing Av/Thames St", "direction": "SW", "lat": 40.705906, "lon": -73.925896, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.925896, 40.705906 ] } }, -{ "type": "Feature", "properties": { "id": 301856, "name": "Grand St/Olive St", "direction": "W", "lat": 40.712414, "lon": -73.93881, "routes": "Q59, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.93881, 40.712414 ] } }, -{ "type": "Feature", "properties": { "id": 301857, "name": "Grand St/Bushwick Av", "direction": "W", "lat": 40.711906, "lon": -73.94124, "routes": "Q59, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.94124, 40.711906 ] } }, -{ "type": "Feature", "properties": { "id": 301860, "name": "Metropolitan Av/Graham Av", "direction": "W", "lat": 40.71451, "lon": -73.94486, "routes": "L90, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94486, 40.71451 ] } }, -{ "type": "Feature", "properties": { "id": 301875, "name": "Flushing Av/Melrose St", "direction": "E", "lat": 40.705555, "lon": -73.92643, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.92643, 40.705555 ] } }, -{ "type": "Feature", "properties": { "id": 301879, "name": "Wyckoff Av/De Kalb Av", "direction": "SE", "lat": 40.704323, "lon": -73.91937, "routes": "L90, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91937, 40.704323 ] } }, -{ "type": "Feature", "properties": { "id": 301880, "name": "Wyckoff Av/Stanhope St", "direction": "SE", "lat": 40.703163, "lon": -73.9175, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.9175, 40.703163 ] } }, -{ "type": "Feature", "properties": { "id": 301881, "name": "Wyckoff Av/Harman St", "direction": "SE", "lat": 40.702267, "lon": -73.91607, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91607, 40.702267 ] } }, -{ "type": "Feature", "properties": { "id": 301882, "name": "Wyckoff Av/Bleecker St", "direction": "SE", "lat": 40.701397, "lon": -73.91457, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91457, 40.701397 ] } }, -{ "type": "Feature", "properties": { "id": 301883, "name": "Wyckoff Av/Grove St", "direction": "SE", "lat": 40.700554, "lon": -73.91304, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91304, 40.700554 ] } }, -{ "type": "Feature", "properties": { "id": 301919, "name": "Flushing Av/Washington Av", "direction": "E", "lat": 40.697647, "lon": -73.96791, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.96791, 40.697647 ] } }, -{ "type": "Feature", "properties": { "id": 301920, "name": "Flushing Av/Ryerson St", "direction": "E", "lat": 40.697567, "lon": -73.965904, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.965904, 40.697567 ] } }, -{ "type": "Feature", "properties": { "id": 301925, "name": "Flushing Av/Washington Av", "direction": "W", "lat": 40.697784, "lon": -73.96843, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.96843, 40.697784 ] } }, -{ "type": "Feature", "properties": { "id": 301931, "name": "De Kalb Av/Carlton Av", "direction": "W", "lat": 40.689632, "lon": -73.972, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.972, 40.689632 ] } }, -{ "type": "Feature", "properties": { "id": 301933, "name": "De Kalb Av/South Portland Av", "direction": "W", "lat": 40.68975, "lon": -73.974945, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.974945, 40.68975 ] } }, -{ "type": "Feature", "properties": { "id": 301934, "name": "De Kalb Av/Fort Greene Pl", "direction": "W", "lat": 40.689827, "lon": -73.97697, "routes": "B38, B93" }, "geometry": { "type": "Point", "coordinates": [ -73.97697, 40.689827 ] } }, -{ "type": "Feature", "properties": { "id": 301943, "name": "Linden Blvd/Logan St", "direction": "W", "lat": 40.666298, "lon": -73.87314, "routes": "BM5, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.87314, 40.666298 ] } }, -{ "type": "Feature", "properties": { "id": 301944, "name": "Linden Blvd/Atkins Av", "direction": "SW", "lat": 40.665257, "lon": -73.8756, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.8756, 40.665257 ] } }, -{ "type": "Feature", "properties": { "id": 301945, "name": "Linden Blvd/Shepherd Av", "direction": "SW", "lat": 40.664764, "lon": -73.87679, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.87679, 40.664764 ] } }, -{ "type": "Feature", "properties": { "id": 301947, "name": "Ashford St/Linden Blvd", "direction": "SE", "lat": 40.662357, "lon": -73.88061, "routes": "B6, BM5, B84, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88061, 40.662357 ] } }, -{ "type": "Feature", "properties": { "id": 301956, "name": "Pennsylvania Av/Wortman Av", "direction": "NW", "lat": 40.655846, "lon": -73.888435, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.888435, 40.655846 ] } }, -{ "type": "Feature", "properties": { "id": 301957, "name": "Pennsylvania Av/Stanley Av", "direction": "NW", "lat": 40.657303, "lon": -73.88951, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88951, 40.657303 ] } }, -{ "type": "Feature", "properties": { "id": 301958, "name": "Pennsylvania Av/Linden Blvd", "direction": "NW", "lat": 40.658318, "lon": -73.89031, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89031, 40.658318 ] } }, -{ "type": "Feature", "properties": { "id": 301959, "name": "Pennsylvania Av/Hegeman Av", "direction": "NW", "lat": 40.660225, "lon": -73.891815, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.891815, 40.660225 ] } }, -{ "type": "Feature", "properties": { "id": 301960, "name": "Pennsylvania Av/New Lots Av", "direction": "NW", "lat": 40.66215, "lon": -73.89326, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.89326, 40.66215 ] } }, -{ "type": "Feature", "properties": { "id": 301961, "name": "Pennsylvania Av/Riverdale Av", "direction": "N", "lat": 40.66308, "lon": -73.89356, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89356, 40.66308 ] } }, -{ "type": "Feature", "properties": { "id": 301962, "name": "Pennsylvania Av/Livonia Av", "direction": "N", "lat": 40.665215, "lon": -73.89411, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89411, 40.665215 ] } }, -{ "type": "Feature", "properties": { "id": 301963, "name": "Pennsylvania Av/Dumont Av", "direction": "N", "lat": 40.666584, "lon": -73.89446, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89446, 40.666584 ] } }, -{ "type": "Feature", "properties": { "id": 301964, "name": "Pennsylvania Av/Blake Av", "direction": "N", "lat": 40.6681, "lon": -73.89486, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89486, 40.6681 ] } }, -{ "type": "Feature", "properties": { "id": 301965, "name": "Pennsylvania Av/Sutter Av", "direction": "N", "lat": 40.669647, "lon": -73.89525, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.89525, 40.669647 ] } }, -{ "type": "Feature", "properties": { "id": 301966, "name": "Pennsylvania Av/Belmont Av", "direction": "N", "lat": 40.670883, "lon": -73.89555, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89555, 40.670883 ] } }, -{ "type": "Feature", "properties": { "id": 301967, "name": "Pennsylvania Av/Pitkin Av", "direction": "N", "lat": 40.672234, "lon": -73.895905, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.895905, 40.672234 ] } }, -{ "type": "Feature", "properties": { "id": 301973, "name": "Jamaica Av/Broadway", "direction": "SW", "lat": 40.677006, "lon": -73.900085, "routes": "B20, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.900085, 40.677006 ] } }, -{ "type": "Feature", "properties": { "id": 301976, "name": "Broadway/Eastern Pkwy", "direction": "NW", "lat": 40.680134, "lon": -73.90557, "routes": "Q24, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90557, 40.680134 ] } }, -{ "type": "Feature", "properties": { "id": 301977, "name": "Broadway/Aberdeen St", "direction": "NW", "lat": 40.681145, "lon": -73.90732, "routes": "Q24, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90732, 40.681145 ] } }, -{ "type": "Feature", "properties": { "id": 301978, "name": "Broadway/Granite St", "direction": "NW", "lat": 40.68203, "lon": -73.90884, "routes": "B20, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.90884, 40.68203 ] } }, -{ "type": "Feature", "properties": { "id": 301979, "name": "Broadway/Chauncey St", "direction": "NW", "lat": 40.68289, "lon": -73.91035, "routes": "B20, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.91035, 40.68289 ] } }, -{ "type": "Feature", "properties": { "id": 301980, "name": "Broadway/Cooper St", "direction": "NW", "lat": 40.683723, "lon": -73.91181, "routes": "Q24, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.91181, 40.683723 ] } }, -{ "type": "Feature", "properties": { "id": 301982, "name": "Decatur St/Bushwick Av", "direction": "NE", "lat": 40.68542, "lon": -73.91075, "routes": "B20, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91075, 40.68542 ] } }, -{ "type": "Feature", "properties": { "id": 301983, "name": "Decatur St/Evergreen Av", "direction": "NE", "lat": 40.687138, "lon": -73.90908, "routes": "B20, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90908, 40.687138 ] } }, -{ "type": "Feature", "properties": { "id": 301984, "name": "Decatur St/Central Av", "direction": "NE", "lat": 40.688526, "lon": -73.90771, "routes": "B60, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90771, 40.688526 ] } }, -{ "type": "Feature", "properties": { "id": 301985, "name": "Decatur St/Wilson Av", "direction": "NE", "lat": 40.690006, "lon": -73.90626, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90626, 40.690006 ] } }, -{ "type": "Feature", "properties": { "id": 301986, "name": "Decatur St/Knickerbocker Av", "direction": "NE", "lat": 40.69147, "lon": -73.904816, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.904816, 40.69147 ] } }, -{ "type": "Feature", "properties": { "id": 302013, "name": "Irving Av/Covert St", "direction": "SE", "lat": 40.69346, "lon": -73.904755, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.904755, 40.69346 ] } }, -{ "type": "Feature", "properties": { "id": 302014, "name": "Schaefer St/Knickerbocker Av", "direction": "SW", "lat": 40.691483, "lon": -73.90613, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90613, 40.691483 ] } }, -{ "type": "Feature", "properties": { "id": 302015, "name": "Schaefer St/Wilson Av", "direction": "SW", "lat": 40.690002, "lon": -73.90758, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90758, 40.690002 ] } }, -{ "type": "Feature", "properties": { "id": 302016, "name": "Schaefer St/Central Av", "direction": "SW", "lat": 40.6885, "lon": -73.90906, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90906, 40.6885 ] } }, -{ "type": "Feature", "properties": { "id": 302017, "name": "Schaefer St/Evergreen Av", "direction": "SW", "lat": 40.687054, "lon": -73.91048, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.91048, 40.687054 ] } }, -{ "type": "Feature", "properties": { "id": 302018, "name": "Schaefer St/Broadway", "direction": "SW", "lat": 40.68449, "lon": -73.91299, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.91299, 40.68449 ] } }, -{ "type": "Feature", "properties": { "id": 302019, "name": "Broadway/Rockaway Av", "direction": "SE", "lat": 40.683212, "lon": -73.91117, "routes": "B20, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.91117, 40.683212 ] } }, -{ "type": "Feature", "properties": { "id": 302020, "name": "Broadway/Chauncey St", "direction": "SE", "lat": 40.682434, "lon": -73.9098, "routes": "B20, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.9098, 40.682434 ] } }, -{ "type": "Feature", "properties": { "id": 302022, "name": "Broadway/Hull St", "direction": "SE", "lat": 40.68021, "lon": -73.905914, "routes": "B20, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.905914, 40.68021 ] } }, -{ "type": "Feature", "properties": { "id": 302028, "name": "1 Av/56 St", "direction": "SW", "lat": 40.64705, "lon": -74.02268, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.02268, 40.64705 ] } }, -{ "type": "Feature", "properties": { "id": 302030, "name": "Pennsylvania Av/Pitkin Av", "direction": "S", "lat": 40.671577, "lon": -73.895905, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.895905, 40.671577 ] } }, -{ "type": "Feature", "properties": { "id": 302031, "name": "Pennsylvania Av/Belmont Av", "direction": "S", "lat": 40.670326, "lon": -73.89555, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.89555, 40.670326 ] } }, -{ "type": "Feature", "properties": { "id": 302032, "name": "Pennsylvania Av/Sutter Av", "direction": "S", "lat": 40.66909, "lon": -73.89524, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89524, 40.66909 ] } }, -{ "type": "Feature", "properties": { "id": 302033, "name": "Pennsylvania Av/Blake Av", "direction": "S", "lat": 40.66755, "lon": -73.894844, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.894844, 40.66755 ] } }, -{ "type": "Feature", "properties": { "id": 302034, "name": "Pennsylvania Av/Dumont Av", "direction": "S", "lat": 40.666042, "lon": -73.89444, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.89444, 40.666042 ] } }, -{ "type": "Feature", "properties": { "id": 302035, "name": "Pennsylvania Av/Livonia Av", "direction": "S", "lat": 40.664295, "lon": -73.894, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.894, 40.664295 ] } }, -{ "type": "Feature", "properties": { "id": 302036, "name": "Pennsylvania Av/Riverdale Av", "direction": "S", "lat": 40.662926, "lon": -73.893654, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.893654, 40.662926 ] } }, -{ "type": "Feature", "properties": { "id": 302037, "name": "Pennsylvania Av/New Lots Av", "direction": "SE", "lat": 40.661583, "lon": -73.892975, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.892975, 40.661583 ] } }, -{ "type": "Feature", "properties": { "id": 302038, "name": "Pennsylvania Av/Hegeman Av", "direction": "SE", "lat": 40.65966, "lon": -73.89153, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89153, 40.65966 ] } }, -{ "type": "Feature", "properties": { "id": 302039, "name": "Pennsylvania Av/Linden Blvd", "direction": "SE", "lat": 40.65811, "lon": -73.890434, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.890434, 40.65811 ] } }, -{ "type": "Feature", "properties": { "id": 302040, "name": "Pennsylvania Av/Stanley Av", "direction": "SE", "lat": 40.656673, "lon": -73.889366, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.889366, 40.656673 ] } }, -{ "type": "Feature", "properties": { "id": 302049, "name": "Linden Blvd/Essex St", "direction": "NE", "lat": 40.66415, "lon": -73.87712, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.87712, 40.66415 ] } }, -{ "type": "Feature", "properties": { "id": 302050, "name": "Linden Blvd/Atkins Av", "direction": "NE", "lat": 40.665215, "lon": -73.87465, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.87465, 40.665215 ] } }, -{ "type": "Feature", "properties": { "id": 302051, "name": "Linden Blvd/Logan St", "direction": "NE", "lat": 40.666264, "lon": -73.87227, "routes": "BM5, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.87227, 40.666264 ] } }, -{ "type": "Feature", "properties": { "id": 302058, "name": "Patchen Av/Lafayette Av", "direction": "N", "lat": 40.69248, "lon": -73.9279, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.9279, 40.69248 ] } }, -{ "type": "Feature", "properties": { "id": 302059, "name": "Broadway/Greene Av", "direction": "SE", "lat": 40.691177, "lon": -73.9251, "routes": "B47, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.9251, 40.691177 ] } }, -{ "type": "Feature", "properties": { "id": 302064, "name": "Broadway/Macdonough St", "direction": "SE", "lat": 40.68432, "lon": -73.91312, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.91312, 40.68432 ] } }, -{ "type": "Feature", "properties": { "id": 302073, "name": "Atlantic Av/New Jersey Av", "direction": "E", "lat": 40.675686, "lon": -73.89599, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.89599, 40.675686 ] } }, -{ "type": "Feature", "properties": { "id": 302074, "name": "Atlantic Av/Vermont St", "direction": "E", "lat": 40.675827, "lon": -73.894485, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.894485, 40.675827 ] } }, -{ "type": "Feature", "properties": { "id": 302075, "name": "Atlantic Av/Bradford St", "direction": "E", "lat": 40.676067, "lon": -73.89265, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.89265, 40.676067 ] } }, -{ "type": "Feature", "properties": { "id": 302076, "name": "Atlantic Av/Van Siclen Av", "direction": "E", "lat": 40.676342, "lon": -73.89098, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.89098, 40.676342 ] } }, -{ "type": "Feature", "properties": { "id": 302077, "name": "Atlantic Av/Schenck Av", "direction": "E", "lat": 40.676723, "lon": -73.889046, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.889046, 40.676723 ] } }, -{ "type": "Feature", "properties": { "id": 302078, "name": "Atlantic Av/Warwick St", "direction": "E", "lat": 40.6772, "lon": -73.88694, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88694, 40.6772 ] } }, -{ "type": "Feature", "properties": { "id": 302080, "name": "Atlantic Av/Elton St", "direction": "E", "lat": 40.67792, "lon": -73.8842, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.8842, 40.67792 ] } }, -{ "type": "Feature", "properties": { "id": 302081, "name": "Atlantic Av/Essex St", "direction": "E", "lat": 40.678467, "lon": -73.88239, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88239, 40.678467 ] } }, -{ "type": "Feature", "properties": { "id": 302082, "name": "Atlantic Av/Berriman St", "direction": "E", "lat": 40.67897, "lon": -73.88061, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88061, 40.67897 ] } }, -{ "type": "Feature", "properties": { "id": 302086, "name": "Atlantic Av/Crescent St", "direction": "E", "lat": 40.68165, "lon": -73.8712, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.8712, 40.68165 ] } }, -{ "type": "Feature", "properties": { "id": 302087, "name": "Atlantic Av/Autumn Av", "direction": "E", "lat": 40.682163, "lon": -73.86939, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86939, 40.682163 ] } }, -{ "type": "Feature", "properties": { "id": 302088, "name": "Atlantic Av/Sheridan Av", "direction": "E", "lat": 40.682663, "lon": -73.86765, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86765, 40.682663 ] } }, -{ "type": "Feature", "properties": { "id": 302166, "name": "Atlantic Av/Grant Av", "direction": "W", "lat": 40.68296, "lon": -73.86758, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86758, 40.68296 ] } }, -{ "type": "Feature", "properties": { "id": 302167, "name": "Broadway/Madison St", "direction": "NW", "lat": 40.688457, "lon": -73.92006, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.92006, 40.688457 ] } }, -{ "type": "Feature", "properties": { "id": 302170, "name": "Atlantic Av/Crescent St", "direction": "W", "lat": 40.68172, "lon": -73.871925, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.871925, 40.68172 ] } }, -{ "type": "Feature", "properties": { "id": 302172, "name": "Atlantic Av/Logan St", "direction": "W", "lat": 40.680004, "lon": -73.87797, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.87797, 40.680004 ] } }, -{ "type": "Feature", "properties": { "id": 302173, "name": "Atlantic Av/Hale Av", "direction": "W", "lat": 40.679398, "lon": -73.88007, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88007, 40.679398 ] } }, -{ "type": "Feature", "properties": { "id": 302174, "name": "Atlantic Av/Shepherd Av", "direction": "W", "lat": 40.67888, "lon": -73.881905, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.881905, 40.67888 ] } }, -{ "type": "Feature", "properties": { "id": 302175, "name": "Atlantic Av/Linwood St", "direction": "W", "lat": 40.678364, "lon": -73.88369, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88369, 40.678364 ] } }, -{ "type": "Feature", "properties": { "id": 302176, "name": "Atlantic Av/Cleveland St", "direction": "W", "lat": 40.67799, "lon": -73.88502, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88502, 40.67799 ] } }, -{ "type": "Feature", "properties": { "id": 302177, "name": "Atlantic Av/Warwick St", "direction": "W", "lat": 40.6774, "lon": -73.88726, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88726, 40.6774 ] } }, -{ "type": "Feature", "properties": { "id": 302178, "name": "Atlantic Av/Barbey St", "direction": "W", "lat": 40.677002, "lon": -73.88901, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.88901, 40.677002 ] } }, -{ "type": "Feature", "properties": { "id": 302179, "name": "Atlantic Av/Hendrix St", "direction": "W", "lat": 40.67665, "lon": -73.89078, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.89078, 40.67665 ] } }, -{ "type": "Feature", "properties": { "id": 302180, "name": "Atlantic Av/Miller Av", "direction": "W", "lat": 40.67632, "lon": -73.89258, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.89258, 40.67632 ] } }, -{ "type": "Feature", "properties": { "id": 302181, "name": "Atlantic Av/Wyona St", "direction": "W", "lat": 40.676167, "lon": -73.89369, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.89369, 40.676167 ] } }, -{ "type": "Feature", "properties": { "id": 302182, "name": "Atlantic Av/Pennsylvania Av", "direction": "W", "lat": 40.675854, "lon": -73.89663, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.89663, 40.675854 ] } }, -{ "type": "Feature", "properties": { "id": 302193, "name": "Broadway/Schaeffer St", "direction": "NW", "lat": 40.684605, "lon": -73.91329, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.91329, 40.684605 ] } }, -{ "type": "Feature", "properties": { "id": 302194, "name": "Broadway/Eldert St", "direction": "NW", "lat": 40.685497, "lon": -73.91487, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.91487, 40.685497 ] } }, -{ "type": "Feature", "properties": { "id": 302196, "name": "Broadway/Jefferson Av", "direction": "NW", "lat": 40.687195, "lon": -73.917885, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.917885, 40.687195 ] } }, -{ "type": "Feature", "properties": { "id": 302197, "name": "Broadway/Gates Av", "direction": "NW", "lat": 40.689728, "lon": -73.92233, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.92233, 40.689728 ] } }, -{ "type": "Feature", "properties": { "id": 302198, "name": "Broadway/Grove St", "direction": "NW", "lat": 40.69062, "lon": -73.923874, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.923874, 40.69062 ] } }, -{ "type": "Feature", "properties": { "id": 302219, "name": "Cortelyou Rd / Westminster Rd", "direction": "NE", "lat": 40.63988, "lon": -73.967186, "routes": "BM1, BM4, BM3, B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.967186, 40.63988 ] } }, -{ "type": "Feature", "properties": { "id": 302228, "name": "Cortelyou Rd / E 19 St", "direction": "SW", "lat": 40.643032, "lon": -73.96067, "routes": "B103, BM1, BM2, BM3, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.96067, 40.643032 ] } }, -{ "type": "Feature", "properties": { "id": 302252, "name": "West St/Kent St", "direction": "N", "lat": 40.730347, "lon": -73.959274, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.959274, 40.730347 ] } }, -{ "type": "Feature", "properties": { "id": 302254, "name": "Greenpoint Av/Manhattan Av", "direction": "E", "lat": 40.730103, "lon": -73.954445, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.954445, 40.730103 ] } }, -{ "type": "Feature", "properties": { "id": 302255, "name": "Greenpoint Av/Leonard St", "direction": "E", "lat": 40.730247, "lon": -73.953064, "routes": "B98, B98, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.953064, 40.730247 ] } }, -{ "type": "Feature", "properties": { "id": 302256, "name": "Greenpoint Av/Mcguinness Blvd", "direction": "E", "lat": 40.730385, "lon": -73.95169, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95169, 40.730385 ] } }, -{ "type": "Feature", "properties": { "id": 302257, "name": "Greenpoint Av/Jewel St", "direction": "E", "lat": 40.730682, "lon": -73.94836, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94836, 40.730682 ] } }, -{ "type": "Feature", "properties": { "id": 302258, "name": "Greenpoint Av/Humboldt St", "direction": "E", "lat": 40.73149, "lon": -73.945984, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.945984, 40.73149 ] } }, -{ "type": "Feature", "properties": { "id": 302278, "name": "Meeker Av/Kingsland Av", "direction": "SW", "lat": 40.722412, "lon": -73.94094, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94094, 40.722412 ] } }, -{ "type": "Feature", "properties": { "id": 302279, "name": "Kingsland Av/Herbert St", "direction": "S", "lat": 40.72019, "lon": -73.94083, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94083, 40.72019 ] } }, -{ "type": "Feature", "properties": { "id": 302281, "name": "Kingsland Av/Withers St", "direction": "S", "lat": 40.717884, "lon": -73.940445, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.940445, 40.717884 ] } }, -{ "type": "Feature", "properties": { "id": 302282, "name": "Kingsland Av/Maspeth Av", "direction": "S", "lat": 40.715885, "lon": -73.94012, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94012, 40.715885 ] } }, -{ "type": "Feature", "properties": { "id": 302286, "name": "Metropolitan Av/Leonard St", "direction": "W", "lat": 40.7142, "lon": -73.94812, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94812, 40.7142 ] } }, -{ "type": "Feature", "properties": { "id": 302287, "name": "Metropolitan Av/Lorimer St", "direction": "W", "lat": 40.714085, "lon": -73.94972, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94972, 40.714085 ] } }, -{ "type": "Feature", "properties": { "id": 302288, "name": "Metropolitan Av/Macri Sq", "direction": "W", "lat": 40.714092, "lon": -73.952, "routes": "Q59, Q59, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.952, 40.714092 ] } }, -{ "type": "Feature", "properties": { "id": 302289, "name": "Marcy Av/Metropolitan Av", "direction": "SW", "lat": 40.713657, "lon": -73.95469, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95469, 40.713657 ] } }, -{ "type": "Feature", "properties": { "id": 302291, "name": "Marcy Av/S 2 St", "direction": "SW", "lat": 40.710773, "lon": -73.95649, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95649, 40.710773 ] } }, -{ "type": "Feature", "properties": { "id": 302292, "name": "Marcy Av/S 4 St", "direction": "SW", "lat": 40.7095, "lon": -73.95729, "routes": "Q54, Q54, B24, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.95729, 40.7095 ] } }, -{ "type": "Feature", "properties": { "id": 302293, "name": "Broadway/Marcy Av", "direction": "E", "lat": 40.708202, "lon": -73.95759, "routes": "B24, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.95759, 40.708202 ] } }, -{ "type": "Feature", "properties": { "id": 302294, "name": "Broadway/Roebling St", "direction": "W", "lat": 40.709362, "lon": -73.9605, "routes": "B32, B62, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.9605, 40.709362 ] } }, -{ "type": "Feature", "properties": { "id": 302297, "name": "Bedford Av/Broadway", "direction": "NE", "lat": 40.71073, "lon": -73.963615, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.963615, 40.71073 ] } }, -{ "type": "Feature", "properties": { "id": 302298, "name": "Bedford Av/S 4 St", "direction": "NE", "lat": 40.712147, "lon": -73.96272, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96272, 40.712147 ] } }, -{ "type": "Feature", "properties": { "id": 302299, "name": "Bedford Av/S 2 St", "direction": "NE", "lat": 40.713524, "lon": -73.96186, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96186, 40.713524 ] } }, -{ "type": "Feature", "properties": { "id": 302300, "name": "Grand St/Bedford Av", "direction": "W", "lat": 40.71467, "lon": -73.96158, "routes": "Q59, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.96158, 40.71467 ] } }, -{ "type": "Feature", "properties": { "id": 302304, "name": "Broadway/Kent Av", "direction": "W", "lat": 40.710842, "lon": -73.968414, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.968414, 40.710842 ] } }, -{ "type": "Feature", "properties": { "id": 302306, "name": "Broadway/Wythe Av", "direction": "E", "lat": 40.710487, "lon": -73.96619, "routes": "Q59, Q59, B32" }, "geometry": { "type": "Point", "coordinates": [ -73.96619, 40.710487 ] } }, -{ "type": "Feature", "properties": { "id": 302308, "name": "Ralph Av/Madison St", "direction": "S", "lat": 40.6875, "lon": -73.9237, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.9237, 40.6875 ] } }, -{ "type": "Feature", "properties": { "id": 302310, "name": "Broadway/Marcy Av", "direction": "W", "lat": 40.708637, "lon": -73.95842, "routes": "B60, B46, Q54, Q54, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95842, 40.708637 ] } }, -{ "type": "Feature", "properties": { "id": 302311, "name": "Rodney St/S 5 St", "direction": "NE", "lat": 40.708916, "lon": -73.956085, "routes": "Q54, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.956085, 40.708916 ] } }, -{ "type": "Feature", "properties": { "id": 302312, "name": "Rodney St/S 3 St", "direction": "NE", "lat": 40.710247, "lon": -73.95525, "routes": "Q54, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95525, 40.710247 ] } }, -{ "type": "Feature", "properties": { "id": 302314, "name": "Rodney St/Ainslie St", "direction": "NE", "lat": 40.71336, "lon": -73.953316, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.953316, 40.71336 ] } }, -{ "type": "Feature", "properties": { "id": 302315, "name": "Metropolitan Av/Union Av", "direction": "E", "lat": 40.714024, "lon": -73.95118, "routes": "B24, L90" }, "geometry": { "type": "Point", "coordinates": [ -73.95118, 40.714024 ] } }, -{ "type": "Feature", "properties": { "id": 302317, "name": "Metropolitan Av/Leonard St", "direction": "E", "lat": 40.71421, "lon": -73.94721, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94721, 40.71421 ] } }, -{ "type": "Feature", "properties": { "id": 302319, "name": "Metropolitan Av/Graham Av", "direction": "E", "lat": 40.71446, "lon": -73.94447, "routes": "B24, L90" }, "geometry": { "type": "Point", "coordinates": [ -73.94447, 40.71446 ] } }, -{ "type": "Feature", "properties": { "id": 302321, "name": "Kingsland Av/Skillman Av", "direction": "N", "lat": 40.716267, "lon": -73.94006, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94006, 40.716267 ] } }, -{ "type": "Feature", "properties": { "id": 302322, "name": "Kingsland Av/Withers St", "direction": "N", "lat": 40.71802, "lon": -73.94031, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94031, 40.71802 ] } }, -{ "type": "Feature", "properties": { "id": 302323, "name": "Kingsland Av/Richardson St", "direction": "N", "lat": 40.719723, "lon": -73.94063, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94063, 40.719723 ] } }, -{ "type": "Feature", "properties": { "id": 302346, "name": "Greenpoint Av/Kingsland Av", "direction": "W", "lat": 40.732574, "lon": -73.94326, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94326, 40.732574 ] } }, -{ "type": "Feature", "properties": { "id": 302347, "name": "Greenpoint Av/N Henry St", "direction": "W", "lat": 40.731956, "lon": -73.945045, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.945045, 40.731956 ] } }, -{ "type": "Feature", "properties": { "id": 302348, "name": "Greenpoint Av/Humboldt St", "direction": "W", "lat": 40.731525, "lon": -73.94626, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94626, 40.731525 ] } }, -{ "type": "Feature", "properties": { "id": 302349, "name": "Greenpoint Av/Provost St", "direction": "W", "lat": 40.730667, "lon": -73.9497, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.9497, 40.730667 ] } }, -{ "type": "Feature", "properties": { "id": 302350, "name": "Greenpoint Av/Mcguinness Blvd", "direction": "W", "lat": 40.730434, "lon": -73.95203, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95203, 40.730434 ] } }, -{ "type": "Feature", "properties": { "id": 302351, "name": "Greenpoint Av/Leonard St", "direction": "W", "lat": 40.73031, "lon": -73.95335, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95335, 40.73031 ] } }, -{ "type": "Feature", "properties": { "id": 302352, "name": "Greenpoint Av/Manhattan Av", "direction": "W", "lat": 40.7302, "lon": -73.95468, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95468, 40.7302 ] } }, -{ "type": "Feature", "properties": { "id": 302355, "name": "Old Fulton St/Elizabeth Pl", "direction": "E", "lat": 40.702667, "lon": -73.99395, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99395, 40.702667 ] } }, -{ "type": "Feature", "properties": { "id": 302356, "name": "Old Fulton St/Henry St", "direction": "SE", "lat": 40.70102, "lon": -73.99145, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99145, 40.70102 ] } }, -{ "type": "Feature", "properties": { "id": 302357, "name": "Cadman Plaza West/Middagh St", "direction": "SW", "lat": 40.699593, "lon": -73.99129, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99129, 40.699593 ] } }, -{ "type": "Feature", "properties": { "id": 302358, "name": "Cadman Plaza West/Clark St", "direction": "S", "lat": 40.696697, "lon": -73.99146, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99146, 40.696697 ] } }, -{ "type": "Feature", "properties": { "id": 302359, "name": "Cadman Plaza West/Cadman Tower", "direction": "S", "lat": 40.69835, "lon": -73.99156, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99156, 40.69835 ] } }, -{ "type": "Feature", "properties": { "id": 302367, "name": "Fulton St/Ashland Pl", "direction": "SE", "lat": 40.68766, "lon": -73.97795, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.97795, 40.68766 ] } }, -{ "type": "Feature", "properties": { "id": 302368, "name": "Fulton St/Lafayette Av", "direction": "SE", "lat": 40.687145, "lon": -73.97669, "routes": "B26, B52, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.97669, 40.687145 ] } }, -{ "type": "Feature", "properties": { "id": 302369, "name": "Fulton St/South Portland Av", "direction": "E", "lat": 40.686058, "lon": -73.97404, "routes": "B52, B25, B26" }, "geometry": { "type": "Point", "coordinates": [ -73.97404, 40.686058 ] } }, -{ "type": "Feature", "properties": { "id": 302370, "name": "Fulton St/Carlton Av", "direction": "E", "lat": 40.68478, "lon": -73.970795, "routes": "B25, B26" }, "geometry": { "type": "Point", "coordinates": [ -73.970795, 40.68478 ] } }, -{ "type": "Feature", "properties": { "id": 302371, "name": "Fulton St/Clermont Av", "direction": "E", "lat": 40.683903, "lon": -73.96862, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.96862, 40.683903 ] } }, -{ "type": "Feature", "properties": { "id": 302372, "name": "Fulton St/Clinton Av", "direction": "E", "lat": 40.68333, "lon": -73.96659, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.96659, 40.68333 ] } }, -{ "type": "Feature", "properties": { "id": 302374, "name": "Fulton St/Washington Av", "direction": "E", "lat": 40.68288, "lon": -73.96434, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.96434, 40.68288 ] } }, -{ "type": "Feature", "properties": { "id": 302375, "name": "Fulton St/Saint James Pl", "direction": "E", "lat": 40.682663, "lon": -73.9633, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.9633, 40.682663 ] } }, -{ "type": "Feature", "properties": { "id": 302376, "name": "Fulton St/Grand Av", "direction": "E", "lat": 40.68223, "lon": -73.96133, "routes": "B25, B26" }, "geometry": { "type": "Point", "coordinates": [ -73.96133, 40.68223 ] } }, -{ "type": "Feature", "properties": { "id": 302377, "name": "Fulton St/Classon Av", "direction": "E", "lat": 40.68158, "lon": -73.95814, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.95814, 40.68158 ] } }, -{ "type": "Feature", "properties": { "id": 302378, "name": "Fulton St/Franklin Av", "direction": "E", "lat": 40.68098, "lon": -73.95529, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.95529, 40.68098 ] } }, -{ "type": "Feature", "properties": { "id": 302379, "name": "Fulton St/Bedford Av", "direction": "E", "lat": 40.6805, "lon": -73.952805, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.952805, 40.6805 ] } }, -{ "type": "Feature", "properties": { "id": 302380, "name": "Fulton St/Nostrand Av", "direction": "E", "lat": 40.6803, "lon": -73.94916, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.94916, 40.6803 ] } }, -{ "type": "Feature", "properties": { "id": 302381, "name": "Fulton St/Marcy Av", "direction": "E", "lat": 40.680115, "lon": -73.94566, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.94566, 40.680115 ] } }, -{ "type": "Feature", "properties": { "id": 302382, "name": "Fulton St/Brooklyn Av", "direction": "E", "lat": 40.680035, "lon": -73.94417, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.94417, 40.680035 ] } }, -{ "type": "Feature", "properties": { "id": 302383, "name": "Fulton St/Kingston Av", "direction": "E", "lat": 40.67988, "lon": -73.94138, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.94138, 40.67988 ] } }, -{ "type": "Feature", "properties": { "id": 302413, "name": "Fulton St/Tompkins Av", "direction": "W", "lat": 40.68006, "lon": -73.9431, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.9431, 40.68006 ] } }, -{ "type": "Feature", "properties": { "id": 302414, "name": "Fulton St/New York Av", "direction": "W", "lat": 40.680252, "lon": -73.94693, "routes": "B25, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94693, 40.680252 ] } }, -{ "type": "Feature", "properties": { "id": 302415, "name": "Fulton St/Nostrand Av", "direction": "W", "lat": 40.680447, "lon": -73.949974, "routes": "B25, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.949974, 40.680447 ] } }, -{ "type": "Feature", "properties": { "id": 302416, "name": "Fulton St/Bedford Av", "direction": "W", "lat": 40.680794, "lon": -73.95376, "routes": "B25, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95376, 40.680794 ] } }, -{ "type": "Feature", "properties": { "id": 302418, "name": "Fulton St/Classon Av", "direction": "W", "lat": 40.681877, "lon": -73.958916, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.958916, 40.681877 ] } }, -{ "type": "Feature", "properties": { "id": 302419, "name": "Fulton St/Grand Av", "direction": "W", "lat": 40.682495, "lon": -73.96191, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.96191, 40.682495 ] } }, -{ "type": "Feature", "properties": { "id": 302421, "name": "Fulton St/Washington Av", "direction": "W", "lat": 40.6832, "lon": -73.96526, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.96526, 40.6832 ] } }, -{ "type": "Feature", "properties": { "id": 302423, "name": "Fulton St/Vanderbilt Av", "direction": "W", "lat": 40.68395, "lon": -73.96838, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.96838, 40.68395 ] } }, -{ "type": "Feature", "properties": { "id": 302424, "name": "Fulton St/Adelphi St", "direction": "W", "lat": 40.68479, "lon": -73.97047, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.97047, 40.68479 ] } }, -{ "type": "Feature", "properties": { "id": 302426, "name": "Fulton St/Greene Av", "direction": "W", "lat": 40.68573, "lon": -73.972824, "routes": "B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.972824, 40.68573 ] } }, -{ "type": "Feature", "properties": { "id": 302427, "name": "Fulton St/South Elliot Pl", "direction": "W", "lat": 40.686726, "lon": -73.97539, "routes": "B52, B26, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.97539, 40.686726 ] } }, -{ "type": "Feature", "properties": { "id": 302428, "name": "Fulton St/Fort Greene Pl", "direction": "W", "lat": 40.68738, "lon": -73.97703, "routes": "B25, B26, B52" }, "geometry": { "type": "Point", "coordinates": [ -73.97703, 40.68738 ] } }, -{ "type": "Feature", "properties": { "id": 302430, "name": "Fulton St/Hudson Av", "direction": "W", "lat": 40.688637, "lon": -73.98016, "routes": "B25, B26, B52" }, "geometry": { "type": "Point", "coordinates": [ -73.98016, 40.688637 ] } }, -{ "type": "Feature", "properties": { "id": 302431, "name": "Fulton St/Bond St", "direction": "W", "lat": 40.68967, "lon": -73.98282, "routes": "B52, B25, B26" }, "geometry": { "type": "Point", "coordinates": [ -73.98282, 40.68967 ] } }, -{ "type": "Feature", "properties": { "id": 302433, "name": "Fulton St/Jay St", "direction": "W", "lat": 40.6914, "lon": -73.98714, "routes": "B38, B26, B52, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.98714, 40.6914 ] } }, -{ "type": "Feature", "properties": { "id": 302434, "name": "Joralemon St/Court St", "direction": "NE", "lat": 40.693226, "lon": -73.990685, "routes": "B26, B41, B52, B38, B45" }, "geometry": { "type": "Point", "coordinates": [ -73.990685, 40.693226 ] } }, -{ "type": "Feature", "properties": { "id": 302437, "name": "Cadman Plaza West/Tillary St", "direction": "N", "lat": 40.696636, "lon": -73.99116, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99116, 40.696636 ] } }, -{ "type": "Feature", "properties": { "id": 302440, "name": "Old Fulton St/Prospect St", "direction": "NW", "lat": 40.70106, "lon": -73.991104, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.991104, 40.70106 ] } }, -{ "type": "Feature", "properties": { "id": 302445, "name": "Jay St/Willoughby St", "direction": "S", "lat": 40.692314, "lon": -73.98732, "routes": "B26, B57, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98732, 40.692314 ] } }, -{ "type": "Feature", "properties": { "id": 302459, "name": "Putnam Av/Classon Av", "direction": "E", "lat": 40.68301, "lon": -73.95842, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.95842, 40.68301 ] } }, -{ "type": "Feature", "properties": { "id": 302460, "name": "Putnam Av/Franklin Av", "direction": "E", "lat": 40.683212, "lon": -73.95627, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.95627, 40.683212 ] } }, -{ "type": "Feature", "properties": { "id": 302461, "name": "Putnam Av/Bedford Av", "direction": "E", "lat": 40.683502, "lon": -73.95365, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.95365, 40.683502 ] } }, -{ "type": "Feature", "properties": { "id": 302462, "name": "Putnam Av/Nostrand Av", "direction": "E", "lat": 40.68385, "lon": -73.95048, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.95048, 40.68385 ] } }, -{ "type": "Feature", "properties": { "id": 302463, "name": "Nostrand Av/Hancock St", "direction": "S", "lat": 40.682205, "lon": -73.95003, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95003, 40.682205 ] } }, -{ "type": "Feature", "properties": { "id": 302464, "name": "Halsey St/Nostrand Av", "direction": "E", "lat": 40.681805, "lon": -73.94939, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.94939, 40.681805 ] } }, -{ "type": "Feature", "properties": { "id": 302465, "name": "Halsey St/Marcy Av", "direction": "E", "lat": 40.68217, "lon": -73.946205, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.946205, 40.68217 ] } }, -{ "type": "Feature", "properties": { "id": 302466, "name": "Halsey St/Tompkins Av", "direction": "E", "lat": 40.682503, "lon": -73.94331, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.94331, 40.682503 ] } }, -{ "type": "Feature", "properties": { "id": 302467, "name": "Halsey St/Throop Av", "direction": "E", "lat": 40.68283, "lon": -73.9405, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.9405, 40.68283 ] } }, -{ "type": "Feature", "properties": { "id": 302468, "name": "Halsey St/Marcus Garvey Blvd", "direction": "E", "lat": 40.68316, "lon": -73.937614, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.937614, 40.68316 ] } }, -{ "type": "Feature", "properties": { "id": 302469, "name": "Halsey St/Lewis Av", "direction": "E", "lat": 40.68349, "lon": -73.93476, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.93476, 40.68349 ] } }, -{ "type": "Feature", "properties": { "id": 302470, "name": "Halsey St/Stuyvesant Av", "direction": "E", "lat": 40.683826, "lon": -73.93182, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.93182, 40.683826 ] } }, -{ "type": "Feature", "properties": { "id": 302471, "name": "Halsey St/Malcolm X Blvd", "direction": "E", "lat": 40.684162, "lon": -73.928856, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.928856, 40.684162 ] } }, -{ "type": "Feature", "properties": { "id": 302472, "name": "Halsey St/Patchen Av", "direction": "E", "lat": 40.684498, "lon": -73.926, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.926, 40.684498 ] } }, -{ "type": "Feature", "properties": { "id": 302473, "name": "Halsey St/Ralph Av", "direction": "E", "lat": 40.68487, "lon": -73.92269, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.92269, 40.68487 ] } }, -{ "type": "Feature", "properties": { "id": 302474, "name": "Halsey St/Howard Av", "direction": "E", "lat": 40.685177, "lon": -73.92004, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.92004, 40.685177 ] } }, -{ "type": "Feature", "properties": { "id": 302475, "name": "Halsey St/Saratoga Av", "direction": "E", "lat": 40.685493, "lon": -73.91729, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91729, 40.685493 ] } }, -{ "type": "Feature", "properties": { "id": 302476, "name": "Halsey St/Broadway", "direction": "E", "lat": 40.685677, "lon": -73.91567, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91567, 40.685677 ] } }, -{ "type": "Feature", "properties": { "id": 302477, "name": "Halsey St/Bushwick Av", "direction": "NE", "lat": 40.687286, "lon": -73.91361, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91361, 40.687286 ] } }, -{ "type": "Feature", "properties": { "id": 302478, "name": "Halsey St/Evergreen Av", "direction": "NE", "lat": 40.68877, "lon": -73.912155, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.912155, 40.68877 ] } }, -{ "type": "Feature", "properties": { "id": 302479, "name": "Halsey St/Central Av", "direction": "NE", "lat": 40.69025, "lon": -73.9107, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.9107, 40.69025 ] } }, -{ "type": "Feature", "properties": { "id": 302480, "name": "Halsey St/Wilson Av", "direction": "NE", "lat": 40.691788, "lon": -73.909195, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.909195, 40.691788 ] } }, -{ "type": "Feature", "properties": { "id": 302481, "name": "Halsey St/Knickerbocker Av", "direction": "NE", "lat": 40.69319, "lon": -73.907814, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.907814, 40.69319 ] } }, -{ "type": "Feature", "properties": { "id": 302482, "name": "Halsey St/Irving Av", "direction": "NE", "lat": 40.69477, "lon": -73.90624, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90624, 40.69477 ] } }, -{ "type": "Feature", "properties": { "id": 302483, "name": "Halsey St/Wyckoff Av", "direction": "NE", "lat": 40.696007, "lon": -73.90502, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90502, 40.696007 ] } }, -{ "type": "Feature", "properties": { "id": 302484, "name": "Wyckoff Av/Weirfield St", "direction": "NW", "lat": 40.69682, "lon": -73.906166, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.906166, 40.69682 ] } }, -{ "type": "Feature", "properties": { "id": 302489, "name": "Wyckoff Av/Madison St", "direction": "SE", "lat": 40.69844, "lon": -73.90924, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90924, 40.69844 ] } }, -{ "type": "Feature", "properties": { "id": 302490, "name": "Wyckoff Av/Jefferson Av", "direction": "SE", "lat": 40.697178, "lon": -73.90698, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90698, 40.697178 ] } }, -{ "type": "Feature", "properties": { "id": 302491, "name": "Wyckoff Av/Weirfield St", "direction": "SE", "lat": 40.696606, "lon": -73.90595, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90595, 40.696606 ] } }, -{ "type": "Feature", "properties": { "id": 302492, "name": "Halsey St/Irving Av", "direction": "SW", "lat": 40.694344, "lon": -73.90683, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90683, 40.694344 ] } }, -{ "type": "Feature", "properties": { "id": 302493, "name": "Halsey St/Knickerbocker Av", "direction": "SW", "lat": 40.692734, "lon": -73.90839, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90839, 40.692734 ] } }, -{ "type": "Feature", "properties": { "id": 302494, "name": "Halsey St/Wilson Av", "direction": "SW", "lat": 40.691254, "lon": -73.90986, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90986, 40.691254 ] } }, -{ "type": "Feature", "properties": { "id": 302495, "name": "Halsey St/Central Av", "direction": "SW", "lat": 40.6898, "lon": -73.91129, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91129, 40.6898 ] } }, -{ "type": "Feature", "properties": { "id": 302496, "name": "Halsey St/Evergreen Av", "direction": "SW", "lat": 40.68834, "lon": -73.91273, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91273, 40.68834 ] } }, -{ "type": "Feature", "properties": { "id": 302498, "name": "Halsey St/Broadway", "direction": "SW", "lat": 40.685757, "lon": -73.91527, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91527, 40.685757 ] } }, -{ "type": "Feature", "properties": { "id": 302499, "name": "Halsey St/Saratoga Av", "direction": "W", "lat": 40.685497, "lon": -73.91814, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91814, 40.685497 ] } }, -{ "type": "Feature", "properties": { "id": 302500, "name": "Halsey St/Howard Av", "direction": "W", "lat": 40.685192, "lon": -73.920815, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.920815, 40.685192 ] } }, -{ "type": "Feature", "properties": { "id": 302501, "name": "Halsey St/Ralph Av", "direction": "W", "lat": 40.684883, "lon": -73.92352, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.92352, 40.684883 ] } }, -{ "type": "Feature", "properties": { "id": 302502, "name": "Halsey St/Patchen Av", "direction": "W", "lat": 40.68451, "lon": -73.9268, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.9268, 40.68451 ] } }, -{ "type": "Feature", "properties": { "id": 302503, "name": "Halsey St/Malcolm X Blvd", "direction": "W", "lat": 40.68417, "lon": -73.92975, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.92975, 40.68417 ] } }, -{ "type": "Feature", "properties": { "id": 302504, "name": "Halsey St/Stuyvesant Av", "direction": "W", "lat": 40.683823, "lon": -73.93264, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.93264, 40.683823 ] } }, -{ "type": "Feature", "properties": { "id": 302505, "name": "Halsey St/Lewis Av", "direction": "W", "lat": 40.6835, "lon": -73.935555, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.935555, 40.6835 ] } }, -{ "type": "Feature", "properties": { "id": 302507, "name": "Halsey St/Throop Av", "direction": "W", "lat": 40.68284, "lon": -73.94133, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.94133, 40.68284 ] } }, -{ "type": "Feature", "properties": { "id": 302508, "name": "Halsey St/Tompkins Av", "direction": "W", "lat": 40.682507, "lon": -73.9442, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.9442, 40.682507 ] } }, -{ "type": "Feature", "properties": { "id": 302509, "name": "Halsey St/Marcy Av", "direction": "W", "lat": 40.682243, "lon": -73.94647, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.94647, 40.682243 ] } }, -{ "type": "Feature", "properties": { "id": 302511, "name": "Halsey St/Bedford Av", "direction": "W", "lat": 40.68145, "lon": -73.95338, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.95338, 40.68145 ] } }, -{ "type": "Feature", "properties": { "id": 302512, "name": "Putnam Av/Bedford Av", "direction": "W", "lat": 40.683605, "lon": -73.954185, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.954185, 40.683605 ] } }, -{ "type": "Feature", "properties": { "id": 302513, "name": "Putnam Av/Franklin Av", "direction": "W", "lat": 40.68341, "lon": -73.95597, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.95597, 40.68341 ] } }, -{ "type": "Feature", "properties": { "id": 302514, "name": "Putnam Av/Classon Av", "direction": "W", "lat": 40.68304, "lon": -73.95902, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.95902, 40.68304 ] } }, -{ "type": "Feature", "properties": { "id": 302585, "name": "Gerritsen Av/Av V", "direction": "SE", "lat": 40.600174, "lon": -73.93346, "routes": "B31, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.93346, 40.600174 ] } }, -{ "type": "Feature", "properties": { "id": 302586, "name": "Gerritsen Av/Whitney Av", "direction": "SE", "lat": 40.598507, "lon": -73.931595, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.931595, 40.598507 ] } }, -{ "type": "Feature", "properties": { "id": 302588, "name": "Gerritsen Av/Bijou Av", "direction": "SE", "lat": 40.596035, "lon": -73.92884, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92884, 40.596035 ] } }, -{ "type": "Feature", "properties": { "id": 302589, "name": "Gerritsen Av/Channel Av", "direction": "SE", "lat": 40.594765, "lon": -73.92743, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92743, 40.594765 ] } }, -{ "type": "Feature", "properties": { "id": 302591, "name": "Gerritsen Av/Everett Av", "direction": "SE", "lat": 40.593163, "lon": -73.925644, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.925644, 40.593163 ] } }, -{ "type": "Feature", "properties": { "id": 302592, "name": "Gerritsen Av/Gotham Av", "direction": "SE", "lat": 40.591896, "lon": -73.92422, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92422, 40.591896 ] } }, -{ "type": "Feature", "properties": { "id": 302593, "name": "Gerritsen Av/Bartlett Pl", "direction": "SE", "lat": 40.59123, "lon": -73.92346, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92346, 40.59123 ] } }, -{ "type": "Feature", "properties": { "id": 302594, "name": "Gerritsen Av/Cyrus Av", "direction": "SE", "lat": 40.59032, "lon": -73.92248, "routes": "B31, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.92248, 40.59032 ] } }, -{ "type": "Feature", "properties": { "id": 302595, "name": "Gerritsen Av/Seba Av", "direction": "SE", "lat": 40.589108, "lon": -73.92113, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92113, 40.589108 ] } }, -{ "type": "Feature", "properties": { "id": 302596, "name": "Gerritsen Av/Lois Av", "direction": "SE", "lat": 40.58799, "lon": -73.91988, "routes": "B31, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.91988, 40.58799 ] } }, -{ "type": "Feature", "properties": { "id": 302597, "name": "Gerritsen Av/Gerritsen Beach", "direction": "SE", "lat": 40.587135, "lon": -73.91894, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.91894, 40.587135 ] } }, -{ "type": "Feature", "properties": { "id": 302598, "name": "Gerritsen Av/Gerritsen Beach", "direction": "NW", "lat": 40.5871, "lon": -73.9185, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.9185, 40.5871 ] } }, -{ "type": "Feature", "properties": { "id": 302599, "name": "Gerritsen Av/Lois Av", "direction": "NW", "lat": 40.587948, "lon": -73.91953, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.91953, 40.587948 ] } }, -{ "type": "Feature", "properties": { "id": 302600, "name": "Gerritsen Av/Seba Av", "direction": "NW", "lat": 40.58906, "lon": -73.92078, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92078, 40.58906 ] } }, -{ "type": "Feature", "properties": { "id": 302601, "name": "Gerritsen Av/Cyrus Av", "direction": "NW", "lat": 40.590282, "lon": -73.922134, "routes": "B31, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.922134, 40.590282 ] } }, -{ "type": "Feature", "properties": { "id": 302602, "name": "Gerritsen Av/Bartlett Pl", "direction": "NW", "lat": 40.591232, "lon": -73.9232, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.9232, 40.591232 ] } }, -{ "type": "Feature", "properties": { "id": 302603, "name": "Gerritsen Av/Gotham Av", "direction": "NW", "lat": 40.59184, "lon": -73.923874, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.923874, 40.59184 ] } }, -{ "type": "Feature", "properties": { "id": 302604, "name": "Gerritsen Av/Everett Av", "direction": "NW", "lat": 40.59312, "lon": -73.9253, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.9253, 40.59312 ] } }, -{ "type": "Feature", "properties": { "id": 302606, "name": "Gerritsen Av/Channel Av", "direction": "NW", "lat": 40.595043, "lon": -73.92744, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92744, 40.595043 ] } }, -{ "type": "Feature", "properties": { "id": 302609, "name": "Gerritsen Av/Whitney Av", "direction": "NW", "lat": 40.598454, "lon": -73.93123, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.93123, 40.598454 ] } }, -{ "type": "Feature", "properties": { "id": 302610, "name": "Gerritsen Av/Avenue V", "direction": "NW", "lat": 40.600075, "lon": -73.933044, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.933044, 40.600075 ] } }, -{ "type": "Feature", "properties": { "id": 302623, "name": "Flatbush Av/Lincoln Rd", "direction": "SE", "lat": 40.660946, "lon": -73.961, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.961, 40.660946 ] } }, -{ "type": "Feature", "properties": { "id": 302678, "name": "39 St/2 Av", "direction": "SE", "lat": 40.654972, "lon": -74.01018, "routes": "B35, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01018, 40.654972 ] } }, -{ "type": "Feature", "properties": { "id": 302679, "name": "39 St/3 Av", "direction": "SE", "lat": 40.65396, "lon": -74.00849, "routes": "B70, B35" }, "geometry": { "type": "Point", "coordinates": [ -74.00849, 40.65396 ] } }, -{ "type": "Feature", "properties": { "id": 302680, "name": "39 St/4 Av", "direction": "SE", "lat": 40.652336, "lon": -74.0058, "routes": "B70, B35" }, "geometry": { "type": "Point", "coordinates": [ -74.0058, 40.652336 ] } }, -{ "type": "Feature", "properties": { "id": 302681, "name": "39 St/5 Av", "direction": "E", "lat": 40.651302, "lon": -74.00408, "routes": "B35, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00408, 40.651302 ] } }, -{ "type": "Feature", "properties": { "id": 302682, "name": "39 St/6 Av", "direction": "SE", "lat": 40.649685, "lon": -74.00143, "routes": "B70, B35" }, "geometry": { "type": "Point", "coordinates": [ -74.00143, 40.649685 ] } }, -{ "type": "Feature", "properties": { "id": 302683, "name": "39 St/7 Av", "direction": "SE", "lat": 40.648373, "lon": -73.99923, "routes": "B70, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.99923, 40.648373 ] } }, -{ "type": "Feature", "properties": { "id": 302684, "name": "39 St/8 Av", "direction": "SE", "lat": 40.64702, "lon": -73.99699, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.99699, 40.64702 ] } }, -{ "type": "Feature", "properties": { "id": 302686, "name": "39 St/10 Av", "direction": "SE", "lat": 40.644356, "lon": -73.992615, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.992615, 40.644356 ] } }, -{ "type": "Feature", "properties": { "id": 302687, "name": "39 St/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.642895, "lon": -73.9902, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.9902, 40.642895 ] } }, -{ "type": "Feature", "properties": { "id": 302688, "name": "39 St/12 Av", "direction": "SE", "lat": 40.641697, "lon": -73.98821, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98821, 40.641697 ] } }, -{ "type": "Feature", "properties": { "id": 302692, "name": "Church Av/Mcdonald Av", "direction": "E", "lat": 40.64265, "lon": -73.97958, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.97958, 40.64265 ] } }, -{ "type": "Feature", "properties": { "id": 302693, "name": "Church Av/E 3 St", "direction": "NE", "lat": 40.64371, "lon": -73.977066, "routes": "BM3, B35, BM4, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.977066, 40.64371 ] } }, -{ "type": "Feature", "properties": { "id": 302695, "name": "Church Av/Ocean Pkwy", "direction": "NE", "lat": 40.645, "lon": -73.97395, "routes": "B35, BM4, B103, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.97395, 40.645 ] } }, -{ "type": "Feature", "properties": { "id": 302696, "name": "Church Av/Coney Island Av", "direction": "NE", "lat": 40.64622, "lon": -73.971016, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.971016, 40.64622 ] } }, -{ "type": "Feature", "properties": { "id": 302697, "name": "Church Av/Westminster Rd", "direction": "E", "lat": 40.647415, "lon": -73.96804, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.96804, 40.647415 ] } }, -{ "type": "Feature", "properties": { "id": 302698, "name": "Church Av/Rugby Rd", "direction": "E", "lat": 40.6481, "lon": -73.96629, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.96629, 40.6481 ] } }, -{ "type": "Feature", "properties": { "id": 302699, "name": "Church Av/E 18 St", "direction": "E", "lat": 40.649315, "lon": -73.963196, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.963196, 40.649315 ] } }, -{ "type": "Feature", "properties": { "id": 302700, "name": "Church Av/Ocean Av", "direction": "E", "lat": 40.650066, "lon": -73.96054, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.96054, 40.650066 ] } }, -{ "type": "Feature", "properties": { "id": 302701, "name": "Church Av/Flatbush Av", "direction": "E", "lat": 40.65036, "lon": -73.95822, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.95822, 40.65036 ] } }, -{ "type": "Feature", "properties": { "id": 302702, "name": "Church Av/Bedford Av", "direction": "E", "lat": 40.650455, "lon": -73.95597, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.95597, 40.650455 ] } }, -{ "type": "Feature", "properties": { "id": 302707, "name": "Church Av/E 37 St", "direction": "E", "lat": 40.651043, "lon": -73.94294, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.94294, 40.651043 ] } }, -{ "type": "Feature", "properties": { "id": 302708, "name": "Church Av/E 38 St", "direction": "E", "lat": 40.65113, "lon": -73.94148, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.94148, 40.65113 ] } }, -{ "type": "Feature", "properties": { "id": 302710, "name": "Church Av/E 42 St", "direction": "E", "lat": 40.651325, "lon": -73.93768, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.93768, 40.651325 ] } }, -{ "type": "Feature", "properties": { "id": 302711, "name": "Church Av/Troy Av", "direction": "E", "lat": 40.65142, "lon": -73.93575, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.93575, 40.65142 ] } }, -{ "type": "Feature", "properties": { "id": 302714, "name": "Church Av/E 48 St", "direction": "E", "lat": 40.65157, "lon": -73.93244, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.93244, 40.65157 ] } }, -{ "type": "Feature", "properties": { "id": 302715, "name": "Church Av/Utica Av", "direction": "E", "lat": 40.651653, "lon": -73.93057, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.93057, 40.651653 ] } }, -{ "type": "Feature", "properties": { "id": 302716, "name": "Church Av/E 52 St", "direction": "E", "lat": 40.652172, "lon": -73.92807, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.92807, 40.652172 ] } }, -{ "type": "Feature", "properties": { "id": 302718, "name": "Church Av/E 56 St", "direction": "E", "lat": 40.652454, "lon": -73.924194, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.924194, 40.652454 ] } }, -{ "type": "Feature", "properties": { "id": 302719, "name": "Church Av/Kings Hwy", "direction": "E", "lat": 40.652393, "lon": -73.922295, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.922295, 40.652393 ] } }, -{ "type": "Feature", "properties": { "id": 302721, "name": "Church Av/E 93 St", "direction": "NE", "lat": 40.65412, "lon": -73.917854, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.917854, 40.65412 ] } }, -{ "type": "Feature", "properties": { "id": 302722, "name": "Church Av/E 94 St", "direction": "NE", "lat": 40.654816, "lon": -73.91668, "routes": "B8, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.91668, 40.654816 ] } }, -{ "type": "Feature", "properties": { "id": 302723, "name": "Church Av/E 96 St", "direction": "NE", "lat": 40.655853, "lon": -73.91508, "routes": "B8, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.91508, 40.655853 ] } }, -{ "type": "Feature", "properties": { "id": 302724, "name": "Church Av/Rockaway Pkwy", "direction": "NE", "lat": 40.656403, "lon": -73.91422, "routes": "B8, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.91422, 40.656403 ] } }, -{ "type": "Feature", "properties": { "id": 302736, "name": "Church Av/E 98 St", "direction": "SW", "lat": 40.65664, "lon": -73.91413, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.91413, 40.65664 ] } }, -{ "type": "Feature", "properties": { "id": 302737, "name": "Church Av/E 96 St", "direction": "SW", "lat": 40.65555, "lon": -73.91581, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.91581, 40.65555 ] } }, -{ "type": "Feature", "properties": { "id": 302740, "name": "Church Av/Remsen Av", "direction": "SW", "lat": 40.652946, "lon": -73.919846, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.919846, 40.652946 ] } }, -{ "type": "Feature", "properties": { "id": 302741, "name": "Church Av/Ralph Av", "direction": "W", "lat": 40.652584, "lon": -73.92128, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.92128, 40.652584 ] } }, -{ "type": "Feature", "properties": { "id": 302742, "name": "Church Av/Kings Hwy", "direction": "W", "lat": 40.65258, "lon": -73.9234, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.9234, 40.65258 ] } }, -{ "type": "Feature", "properties": { "id": 302743, "name": "Church Av/E 55 St", "direction": "W", "lat": 40.65252, "lon": -73.9255, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.9255, 40.65252 ] } }, -{ "type": "Feature", "properties": { "id": 302745, "name": "Church Av/E 52 St", "direction": "W", "lat": 40.652153, "lon": -73.928856, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.928856, 40.652153 ] } }, -{ "type": "Feature", "properties": { "id": 302747, "name": "Church Av/E 48 St", "direction": "W", "lat": 40.651653, "lon": -73.932434, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.932434, 40.651653 ] } }, -{ "type": "Feature", "properties": { "id": 302748, "name": "Church Av/E 46 St", "direction": "W", "lat": 40.651608, "lon": -73.934685, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.934685, 40.651608 ] } }, -{ "type": "Feature", "properties": { "id": 302749, "name": "Church Av/Troy Av", "direction": "W", "lat": 40.651512, "lon": -73.9366, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.9366, 40.651512 ] } }, -{ "type": "Feature", "properties": { "id": 302750, "name": "Church Av/E 42 St", "direction": "W", "lat": 40.651424, "lon": -73.93845, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.93845, 40.651424 ] } }, -{ "type": "Feature", "properties": { "id": 302753, "name": "Church Av/Brooklyn Av", "direction": "W", "lat": 40.65116, "lon": -73.94424, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.94424, 40.65116 ] } }, -{ "type": "Feature", "properties": { "id": 302758, "name": "Church Av/Bedford Av", "direction": "W", "lat": 40.650578, "lon": -73.95627, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.95627, 40.650578 ] } }, -{ "type": "Feature", "properties": { "id": 302759, "name": "Church Av/Flatbush Av", "direction": "W", "lat": 40.65034, "lon": -73.959404, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.959404, 40.65034 ] } }, -{ "type": "Feature", "properties": { "id": 302760, "name": "Church Av/Ocean Av", "direction": "W", "lat": 40.650055, "lon": -73.96146, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.96146, 40.650055 ] } }, -{ "type": "Feature", "properties": { "id": 302761, "name": "Church Av/E 18 St", "direction": "W", "lat": 40.649345, "lon": -73.96349, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.96349, 40.649345 ] } }, -{ "type": "Feature", "properties": { "id": 302763, "name": "Church Av/Rugby Rd", "direction": "W", "lat": 40.64794, "lon": -73.967064, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.967064, 40.64794 ] } }, -{ "type": "Feature", "properties": { "id": 302764, "name": "Church Av/Westminster Rd", "direction": "W", "lat": 40.647266, "lon": -73.96878, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.96878, 40.647266 ] } }, -{ "type": "Feature", "properties": { "id": 302765, "name": "Church Av/Coney Island Av", "direction": "W", "lat": 40.64651, "lon": -73.97071, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.97071, 40.64651 ] } }, -{ "type": "Feature", "properties": { "id": 302766, "name": "Church Av/E 7 St", "direction": "W", "lat": 40.645397, "lon": -73.97351, "routes": "BM3, B103, B35, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.97351, 40.645397 ] } }, -{ "type": "Feature", "properties": { "id": 302767, "name": "Church Av/E 5 St", "direction": "SW", "lat": 40.644333, "lon": -73.97597, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.97597, 40.644333 ] } }, -{ "type": "Feature", "properties": { "id": 302768, "name": "Church Av/E 3 St", "direction": "SW", "lat": 40.64356, "lon": -73.97784, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.97784, 40.64356 ] } }, -{ "type": "Feature", "properties": { "id": 302771, "name": "Church Av/Chester Av", "direction": "SW", "lat": 40.641445, "lon": -73.98286, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98286, 40.641445 ] } }, -{ "type": "Feature", "properties": { "id": 302772, "name": "13 Av/37 St", "direction": "SW", "lat": 40.641846, "lon": -73.98513, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98513, 40.641846 ] } }, -{ "type": "Feature", "properties": { "id": 302773, "name": "39 St/13 Av", "direction": "NW", "lat": 40.640915, "lon": -73.98665, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98665, 40.640915 ] } }, -{ "type": "Feature", "properties": { "id": 302774, "name": "39 St/12 Av", "direction": "NW", "lat": 40.642204, "lon": -73.98877, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98877, 40.642204 ] } }, -{ "type": "Feature", "properties": { "id": 302775, "name": "39 St/Fort Hamilton Pkwy", "direction": "NW", "lat": 40.64342, "lon": -73.99079, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.99079, 40.64342 ] } }, -{ "type": "Feature", "properties": { "id": 302776, "name": "39 St/10 Av", "direction": "NW", "lat": 40.644894, "lon": -73.993225, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.993225, 40.644894 ] } }, -{ "type": "Feature", "properties": { "id": 302777, "name": "39 St/9 Av", "direction": "NW", "lat": 40.64592, "lon": -73.99493, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.99493, 40.64592 ] } }, -{ "type": "Feature", "properties": { "id": 302778, "name": "39 St/8 Av", "direction": "NW", "lat": 40.647522, "lon": -73.99761, "routes": "B35, B70" }, "geometry": { "type": "Point", "coordinates": [ -73.99761, 40.647522 ] } }, -{ "type": "Feature", "properties": { "id": 302779, "name": "39 St/7 Av", "direction": "NW", "lat": 40.64886, "lon": -73.999825, "routes": "B70, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.999825, 40.64886 ] } }, -{ "type": "Feature", "properties": { "id": 302780, "name": "39 St/6 Av", "direction": "NW", "lat": 40.650185, "lon": -74.002014, "routes": "B35, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.002014, 40.650185 ] } }, -{ "type": "Feature", "properties": { "id": 302781, "name": "39 St/5 Av", "direction": "NW", "lat": 40.651234, "lon": -74.00375, "routes": "B35, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00375, 40.651234 ] } }, -{ "type": "Feature", "properties": { "id": 302782, "name": "39 St/4 Av", "direction": "NW", "lat": 40.652897, "lon": -74.006516, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -74.006516, 40.652897 ] } }, -{ "type": "Feature", "properties": { "id": 302783, "name": "39 St/3 Av", "direction": "NW", "lat": 40.653698, "lon": -74.007835, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -74.007835, 40.653698 ] } }, -{ "type": "Feature", "properties": { "id": 302784, "name": "39 St/2 Av", "direction": "NW", "lat": 40.655556, "lon": -74.0108, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.0108, 40.655556 ] } }, -{ "type": "Feature", "properties": { "id": 302786, "name": "W 37 St/Mermaid Av", "direction": "N", "lat": 40.574966, "lon": -74.00281, "routes": "B36, B74" }, "geometry": { "type": "Point", "coordinates": [ -74.00281, 40.574966 ] } }, -{ "type": "Feature", "properties": { "id": 302787, "name": "W 37 St/Neptune Av", "direction": "N", "lat": 40.57719, "lon": -74.00323, "routes": "B74, B36" }, "geometry": { "type": "Point", "coordinates": [ -74.00323, 40.57719 ] } }, -{ "type": "Feature", "properties": { "id": 302789, "name": "W 33 St/Bay View Av", "direction": "S", "lat": 40.580685, "lon": -74.00076, "routes": "B36, B74" }, "geometry": { "type": "Point", "coordinates": [ -74.00076, 40.580685 ] } }, -{ "type": "Feature", "properties": { "id": 302791, "name": "W 33 St/Neptune Av", "direction": "S", "lat": 40.577396, "lon": -74.00026, "routes": "B74, B36" }, "geometry": { "type": "Point", "coordinates": [ -74.00026, 40.577396 ] } }, -{ "type": "Feature", "properties": { "id": 302792, "name": "W 33 St/Mermaid Av", "direction": "S", "lat": 40.575092, "lon": -73.9997, "routes": "B36, B74" }, "geometry": { "type": "Point", "coordinates": [ -73.9997, 40.575092 ] } }, -{ "type": "Feature", "properties": { "id": 302793, "name": "W 33 St/Surf Av", "direction": "S", "lat": 40.57299, "lon": -73.9993, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9993, 40.57299 ] } }, -{ "type": "Feature", "properties": { "id": 302794, "name": "Surf Av/W 29 St", "direction": "E", "lat": 40.57275, "lon": -73.995094, "routes": "X38, B36, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.995094, 40.57275 ] } }, -{ "type": "Feature", "properties": { "id": 302797, "name": "Surf Av/W 23 St", "direction": "E", "lat": 40.573925, "lon": -73.9898, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9898, 40.573925 ] } }, -{ "type": "Feature", "properties": { "id": 302798, "name": "Surf Av/W 21 St", "direction": "E", "lat": 40.574646, "lon": -73.987236, "routes": "B36, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.987236, 40.574646 ] } }, -{ "type": "Feature", "properties": { "id": 302799, "name": "Mermaid Av/W 17 St", "direction": "E", "lat": 40.57657, "lon": -73.98445, "routes": "B82, B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98445, 40.57657 ] } }, -{ "type": "Feature", "properties": { "id": 302802, "name": "Surf Av/W 10 St", "direction": "E", "lat": 40.57535, "lon": -73.97743, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.97743, 40.57535 ] } }, -{ "type": "Feature", "properties": { "id": 302803, "name": "Surf Av/W 6 St", "direction": "E", "lat": 40.574978, "lon": -73.974594, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.974594, 40.574978 ] } }, -{ "type": "Feature", "properties": { "id": 302804, "name": "W 5 St/Sea Breeze Av", "direction": "N", "lat": 40.57592, "lon": -73.97296, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.97296, 40.57592 ] } }, -{ "type": "Feature", "properties": { "id": 302806, "name": "W 5 St/Neptune Av", "direction": "N", "lat": 40.57954, "lon": -73.971855, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.971855, 40.57954 ] } }, -{ "type": "Feature", "properties": { "id": 302807, "name": "Neptune Av/Ocean Pkwy", "direction": "E", "lat": 40.580154, "lon": -73.96809, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.96809, 40.580154 ] } }, -{ "type": "Feature", "properties": { "id": 302810, "name": "Avenue Z/Ocean Pkwy", "direction": "E", "lat": 40.586674, "lon": -73.96548, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.96548, 40.586674 ] } }, -{ "type": "Feature", "properties": { "id": 302811, "name": "Avenue Z/E 7 St", "direction": "E", "lat": 40.58704, "lon": -73.96216, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.96216, 40.58704 ] } }, -{ "type": "Feature", "properties": { "id": 302812, "name": "Avenue Z/Coney Island Av", "direction": "E", "lat": 40.587215, "lon": -73.96055, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.96055, 40.587215 ] } }, -{ "type": "Feature", "properties": { "id": 302813, "name": "Avenue Z/E 12 St", "direction": "E", "lat": 40.58746, "lon": -73.95832, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.95832, 40.58746 ] } }, -{ "type": "Feature", "properties": { "id": 302814, "name": "Avenue Z/E 13 St", "direction": "E", "lat": 40.58773, "lon": -73.9558, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9558, 40.58773 ] } }, -{ "type": "Feature", "properties": { "id": 302818, "name": "Avenue Z/Ocean Av", "direction": "E", "lat": 40.588493, "lon": -73.94889, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94889, 40.588493 ] } }, -{ "type": "Feature", "properties": { "id": 302819, "name": "Avenue Z/E 22 St", "direction": "E", "lat": 40.588696, "lon": -73.94706, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94706, 40.588696 ] } }, -{ "type": "Feature", "properties": { "id": 302820, "name": "Avenue Z/Bedford Av", "direction": "E", "lat": 40.589016, "lon": -73.94416, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94416, 40.589016 ] } }, -{ "type": "Feature", "properties": { "id": 302823, "name": "Nostrand Av/Avenue Z", "direction": "N", "lat": 40.589928, "lon": -73.93971, "routes": "B36, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.93971, 40.589928 ] } }, -{ "type": "Feature", "properties": { "id": 302825, "name": "Nostrand Av/Avenue X", "direction": "N", "lat": 40.594242, "lon": -73.94058, "routes": "B44+, B44, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94058, 40.594242 ] } }, -{ "type": "Feature", "properties": { "id": 302826, "name": "Nostrand Av/Avenue W", "direction": "N", "lat": 40.595787, "lon": -73.94088, "routes": "B36, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94088, 40.595787 ] } }, -{ "type": "Feature", "properties": { "id": 302827, "name": "Nostrand Av/Avenue V", "direction": "N", "lat": 40.59817, "lon": -73.94133, "routes": "B44, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94133, 40.59817 ] } }, -{ "type": "Feature", "properties": { "id": 302829, "name": "Nostrand Av/Gravesend Neck Rd", "direction": "S", "lat": 40.59997, "lon": -73.94187, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94187, 40.59997 ] } }, -{ "type": "Feature", "properties": { "id": 302830, "name": "Nostrand Av/Avenue V", "direction": "S", "lat": 40.59799, "lon": -73.9416, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9416, 40.59799 ] } }, -{ "type": "Feature", "properties": { "id": 302831, "name": "Nostrand Av/Avenue W", "direction": "S", "lat": 40.59602, "lon": -73.941154, "routes": "B36, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.941154, 40.59602 ] } }, -{ "type": "Feature", "properties": { "id": 302832, "name": "Nostrand Av/Avenue X", "direction": "S", "lat": 40.593864, "lon": -73.94067, "routes": "B44+, B36, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94067, 40.593864 ] } }, -{ "type": "Feature", "properties": { "id": 302833, "name": "Nostrand Av/Avenue Y", "direction": "S", "lat": 40.591347, "lon": -73.940285, "routes": "B44, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.940285, 40.591347 ] } }, -{ "type": "Feature", "properties": { "id": 302834, "name": "Nostrand Av/Avenue Z", "direction": "S", "lat": 40.589657, "lon": -73.939964, "routes": "B44, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.939964, 40.589657 ] } }, -{ "type": "Feature", "properties": { "id": 302835, "name": "Avenue Z/E 28 St", "direction": "W", "lat": 40.58937, "lon": -73.94218, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94218, 40.58937 ] } }, -{ "type": "Feature", "properties": { "id": 302837, "name": "Avenue Z/Bedford Av", "direction": "W", "lat": 40.58905, "lon": -73.94508, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94508, 40.58905 ] } }, -{ "type": "Feature", "properties": { "id": 302838, "name": "Avenue Z/E 22 St", "direction": "W", "lat": 40.58876, "lon": -73.94775, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94775, 40.58876 ] } }, -{ "type": "Feature", "properties": { "id": 302841, "name": "Avenue Z/E 13 St", "direction": "W", "lat": 40.587788, "lon": -73.9566, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9566, 40.587788 ] } }, -{ "type": "Feature", "properties": { "id": 302842, "name": "Avenue Z/E 12 St", "direction": "W", "lat": 40.587563, "lon": -73.958626, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.958626, 40.587563 ] } }, -{ "type": "Feature", "properties": { "id": 302843, "name": "Avenue Z/Coney Island Av", "direction": "W", "lat": 40.587395, "lon": -73.960144, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.960144, 40.587395 ] } }, -{ "type": "Feature", "properties": { "id": 302844, "name": "Avenue Z/Hubbard St", "direction": "W", "lat": 40.587055, "lon": -73.96328, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.96328, 40.587055 ] } }, -{ "type": "Feature", "properties": { "id": 302845, "name": "Avenue Z/Ocean Pkwy", "direction": "W", "lat": 40.58679, "lon": -73.96566, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.96566, 40.58679 ] } }, -{ "type": "Feature", "properties": { "id": 302849, "name": "W 5 St/Neptune Av", "direction": "S", "lat": 40.57943, "lon": -73.97201, "routes": "B68, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.97201, 40.57943 ] } }, -{ "type": "Feature", "properties": { "id": 302851, "name": "Surf Av/W 5 St", "direction": "W", "lat": 40.57501, "lon": -73.97424, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.97424, 40.57501 ] } }, -{ "type": "Feature", "properties": { "id": 302852, "name": "Surf Av/W 8 St", "direction": "W", "lat": 40.575478, "lon": -73.977165, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.977165, 40.575478 ] } }, -{ "type": "Feature", "properties": { "id": 302853, "name": "Surf Av/W 10 St", "direction": "W", "lat": 40.575542, "lon": -73.97843, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.97843, 40.575542 ] } }, -{ "type": "Feature", "properties": { "id": 302854, "name": "Surf Av/Stillwell Av", "direction": "W", "lat": 40.57558, "lon": -73.9812, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9812, 40.57558 ] } }, -{ "type": "Feature", "properties": { "id": 302856, "name": "Mermaid Av/W 17 St", "direction": "W", "lat": 40.57665, "lon": -73.98517, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98517, 40.57665 ] } }, -{ "type": "Feature", "properties": { "id": 302857, "name": "Mermaid Av/W 19 St", "direction": "W", "lat": 40.57653, "lon": -73.98621, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98621, 40.57653 ] } }, -{ "type": "Feature", "properties": { "id": 302860, "name": "Surf Av/W 23 St", "direction": "W", "lat": 40.573997, "lon": -73.9901, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9901, 40.573997 ] } }, -{ "type": "Feature", "properties": { "id": 302863, "name": "Surf Av/W 27 St", "direction": "W", "lat": 40.573223, "lon": -73.99321, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.99321, 40.573223 ] } }, -{ "type": "Feature", "properties": { "id": 302864, "name": "Surf Av/W 29 St", "direction": "W", "lat": 40.57292, "lon": -73.99508, "routes": "X38, X28, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.99508, 40.57292 ] } }, -{ "type": "Feature", "properties": { "id": 302866, "name": "Surf Av/W 32 St", "direction": "W", "lat": 40.57288, "lon": -73.9985, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9985, 40.57288 ] } }, -{ "type": "Feature", "properties": { "id": 302867, "name": "Surf Av/W 33 St", "direction": "W", "lat": 40.57296, "lon": -73.99964, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.99964, 40.57296 ] } }, -{ "type": "Feature", "properties": { "id": 302868, "name": "Surf Av/W 35 St", "direction": "W", "lat": 40.573097, "lon": -74.000755, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -74.000755, 40.573097 ] } }, -{ "type": "Feature", "properties": { "id": 302869, "name": "Surf Av/W 37 St", "direction": "N", "lat": 40.57378, "lon": -74.00251, "routes": "X38, X28, B36" }, "geometry": { "type": "Point", "coordinates": [ -74.00251, 40.57378 ] } }, -{ "type": "Feature", "properties": { "id": 302873, "name": "3 Av/97 St", "direction": "N", "lat": 40.61608, "lon": -74.03403, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03403, 40.61608 ] } }, -{ "type": "Feature", "properties": { "id": 302874, "name": "3 Av/94 St", "direction": "NE", "lat": 40.61779, "lon": -74.03327, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03327, 40.61779 ] } }, -{ "type": "Feature", "properties": { "id": 302875, "name": "3 Av/92 St", "direction": "N", "lat": 40.61982, "lon": -74.03245, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03245, 40.61982 ] } }, -{ "type": "Feature", "properties": { "id": 302876, "name": "3 Av/90 St", "direction": "N", "lat": 40.620907, "lon": -74.032005, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.032005, 40.620907 ] } }, -{ "type": "Feature", "properties": { "id": 302877, "name": "3 Av/88 St", "direction": "NE", "lat": 40.622314, "lon": -74.03143, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03143, 40.622314 ] } }, -{ "type": "Feature", "properties": { "id": 302878, "name": "3 Av/86 St", "direction": "N", "lat": 40.62377, "lon": -74.03083, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03083, 40.62377 ] } }, -{ "type": "Feature", "properties": { "id": 302881, "name": "3 Av/80 St", "direction": "N", "lat": 40.628105, "lon": -74.02911, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.02911, 40.628105 ] } }, -{ "type": "Feature", "properties": { "id": 302882, "name": "3 Av/78 St", "direction": "NE", "lat": 40.62957, "lon": -74.02853, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.02853, 40.62957 ] } }, -{ "type": "Feature", "properties": { "id": 302883, "name": "3 Av/Bay Ridge Pkwy", "direction": "NE", "lat": 40.631725, "lon": -74.027596, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.027596, 40.631725 ] } }, -{ "type": "Feature", "properties": { "id": 302889, "name": "3 Av/60 St", "direction": "NE", "lat": 40.641834, "lon": -74.02029, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.02029, 40.641834 ] } }, -{ "type": "Feature", "properties": { "id": 302890, "name": "3 Av/58 St", "direction": "NE", "lat": 40.643303, "lon": -74.01876, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.01876, 40.643303 ] } }, -{ "type": "Feature", "properties": { "id": 302891, "name": "3 Av/56 St", "direction": "NE", "lat": 40.644444, "lon": -74.01764, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.01764, 40.644444 ] } }, -{ "type": "Feature", "properties": { "id": 302892, "name": "3 Av/53 St", "direction": "NE", "lat": 40.646084, "lon": -74.01596, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.01596, 40.646084 ] } }, -{ "type": "Feature", "properties": { "id": 302894, "name": "3 Av/50 St", "direction": "NE", "lat": 40.647694, "lon": -74.01426, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.01426, 40.647694 ] } }, -{ "type": "Feature", "properties": { "id": 302897, "name": "3 Av/44 St", "direction": "NE", "lat": 40.65116, "lon": -74.01061, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.01061, 40.65116 ] } }, -{ "type": "Feature", "properties": { "id": 302898, "name": "3 Av/42 St", "direction": "NE", "lat": 40.652267, "lon": -74.00945, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.00945, 40.652267 ] } }, -{ "type": "Feature", "properties": { "id": 302899, "name": "3 Av/39 St", "direction": "NE", "lat": 40.653656, "lon": -74.008064, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.008064, 40.653656 ] } }, -{ "type": "Feature", "properties": { "id": 302900, "name": "3 Av/37 St", "direction": "NE", "lat": 40.65504, "lon": -74.00661, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.00661, 40.65504 ] } }, -{ "type": "Feature", "properties": { "id": 302903, "name": "3 Av/30 St", "direction": "NE", "lat": 40.659027, "lon": -74.002495, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.002495, 40.659027 ] } }, -{ "type": "Feature", "properties": { "id": 302905, "name": "3 Av/26 St", "direction": "NE", "lat": 40.66093, "lon": -74.00046, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.00046, 40.66093 ] } }, -{ "type": "Feature", "properties": { "id": 302908, "name": "3 Av/20 St", "direction": "NE", "lat": 40.6646, "lon": -73.996635, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.996635, 40.6646 ] } }, -{ "type": "Feature", "properties": { "id": 302914, "name": "3 Av/6 St", "direction": "NE", "lat": 40.673515, "lon": -73.98918, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98918, 40.673515 ] } }, -{ "type": "Feature", "properties": { "id": 302915, "name": "3 Av/3 St", "direction": "NE", "lat": 40.675343, "lon": -73.987656, "routes": "B103, B37" }, "geometry": { "type": "Point", "coordinates": [ -73.987656, 40.675343 ] } }, -{ "type": "Feature", "properties": { "id": 302916, "name": "3 Av/Carroll St", "direction": "NE", "lat": 40.677322, "lon": -73.986015, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.986015, 40.677322 ] } }, -{ "type": "Feature", "properties": { "id": 302917, "name": "3 Av/Union St", "direction": "NE", "lat": 40.678593, "lon": -73.98515, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98515, 40.678593 ] } }, -{ "type": "Feature", "properties": { "id": 302918, "name": "3 Av/Douglass St", "direction": "NE", "lat": 40.68013, "lon": -73.98411, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98411, 40.68013 ] } }, -{ "type": "Feature", "properties": { "id": 302923, "name": "3 Av / State St", "direction": "NE", "lat": 40.686142, "lon": -73.97997, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.97997, 40.686142 ] } }, -{ "type": "Feature", "properties": { "id": 302945, "name": "Fulton St/Smith St", "direction": "E", "lat": 40.69148, "lon": -73.98753, "routes": "B25, B52, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.98753, 40.69148 ] } }, -{ "type": "Feature", "properties": { "id": 302947, "name": "Fulton St/Bond St", "direction": "SE", "lat": 40.68971, "lon": -73.9831, "routes": "B38, B26, B25, B52" }, "geometry": { "type": "Point", "coordinates": [ -73.9831, 40.68971 ] } }, -{ "type": "Feature", "properties": { "id": 302955, "name": "3 Av/Butler St", "direction": "SW", "lat": 40.680634, "lon": -73.98397, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98397, 40.680634 ] } }, -{ "type": "Feature", "properties": { "id": 302956, "name": "3 Av/Degraw St", "direction": "SW", "lat": 40.679356, "lon": -73.98484, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98484, 40.679356 ] } }, -{ "type": "Feature", "properties": { "id": 302957, "name": "3 Av/Union St", "direction": "SW", "lat": 40.67811, "lon": -73.98569, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98569, 40.67811 ] } }, -{ "type": "Feature", "properties": { "id": 302960, "name": "3 Av/6 St", "direction": "SW", "lat": 40.67339, "lon": -73.98954, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98954, 40.67339 ] } }, -{ "type": "Feature", "properties": { "id": 302962, "name": "3 Av/12 St", "direction": "SW", "lat": 40.66944, "lon": -73.992836, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.992836, 40.66944 ] } }, -{ "type": "Feature", "properties": { "id": 302963, "name": "3 Av/14 St", "direction": "SW", "lat": 40.66825, "lon": -73.993835, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.993835, 40.66825 ] } }, -{ "type": "Feature", "properties": { "id": 302971, "name": "3 Av/29 St", "direction": "SW", "lat": 40.659286, "lon": -74.00278, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.00278, 40.659286 ] } }, -{ "type": "Feature", "properties": { "id": 302973, "name": "3 Av/33 St", "direction": "SW", "lat": 40.6571, "lon": -74.00505, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.00505, 40.6571 ] } }, -{ "type": "Feature", "properties": { "id": 302975, "name": "3 Av/37 St", "direction": "SW", "lat": 40.655125, "lon": -74.007095, "routes": "B37, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.007095, 40.655125 ] } }, -{ "type": "Feature", "properties": { "id": 302976, "name": "3 Av/39 St", "direction": "SW", "lat": 40.65369, "lon": -74.00862, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.00862, 40.65369 ] } }, -{ "type": "Feature", "properties": { "id": 302978, "name": "3 Av/43 St", "direction": "SW", "lat": 40.651497, "lon": -74.010925, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.010925, 40.651497 ] } }, -{ "type": "Feature", "properties": { "id": 302981, "name": "3 Av/49 St", "direction": "SW", "lat": 40.648155, "lon": -74.014435, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.014435, 40.648155 ] } }, -{ "type": "Feature", "properties": { "id": 302985, "name": "3 Av/55 St", "direction": "SW", "lat": 40.644917, "lon": -74.017784, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.017784, 40.644917 ] } }, -{ "type": "Feature", "properties": { "id": 302992, "name": "3 Av/Bay Ridge Av", "direction": "S", "lat": 40.635506, "lon": -74.026184, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.026184, 40.635506 ] } }, -{ "type": "Feature", "properties": { "id": 302995, "name": "3 Av/Bay Ridge Pkwy", "direction": "SW", "lat": 40.631596, "lon": -74.027794, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.027794, 40.631596 ] } }, -{ "type": "Feature", "properties": { "id": 302996, "name": "3 Av/77 St", "direction": "SW", "lat": 40.629868, "lon": -74.028496, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.028496, 40.629868 ] } }, -{ "type": "Feature", "properties": { "id": 302999, "name": "3 Av/83 St", "direction": "SW", "lat": 40.62593, "lon": -74.03012, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03012, 40.62593 ] } }, -{ "type": "Feature", "properties": { "id": 303000, "name": "3 Av/86 St", "direction": "S", "lat": 40.623356, "lon": -74.03113, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03113, 40.623356 ] } }, -{ "type": "Feature", "properties": { "id": 303003, "name": "3 Av/92 St", "direction": "S", "lat": 40.61913, "lon": -74.03298, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03298, 40.61913 ] } }, -{ "type": "Feature", "properties": { "id": 303011, "name": "Tillary St/Cadman Plaza East", "direction": "E", "lat": 40.696102, "lon": -73.990364, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.990364, 40.696102 ] } }, -{ "type": "Feature", "properties": { "id": 303017, "name": "Fulton St/Rockwell Pl", "direction": "E", "lat": 40.688107, "lon": -73.97909, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.97909, 40.688107 ] } }, -{ "type": "Feature", "properties": { "id": 303019, "name": "Lafayette Av/South Portland Av", "direction": "E", "lat": 40.687206, "lon": -73.97421, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.97421, 40.687206 ] } }, -{ "type": "Feature", "properties": { "id": 303020, "name": "Lafayette Av/Carlton Av", "direction": "E", "lat": 40.687523, "lon": -73.97135, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.97135, 40.687523 ] } }, -{ "type": "Feature", "properties": { "id": 303021, "name": "Lafayette Av/Vanderbilt Av", "direction": "E", "lat": 40.687855, "lon": -73.968346, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.968346, 40.687855 ] } }, -{ "type": "Feature", "properties": { "id": 303022, "name": "Lafayette Av/Washington Av", "direction": "E", "lat": 40.688198, "lon": -73.965385, "routes": "B38, B93" }, "geometry": { "type": "Point", "coordinates": [ -73.965385, 40.688198 ] } }, -{ "type": "Feature", "properties": { "id": 303023, "name": "Lafayette Av/Grand Av", "direction": "E", "lat": 40.68854, "lon": -73.962425, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.962425, 40.68854 ] } }, -{ "type": "Feature", "properties": { "id": 303024, "name": "Lafayette Av/Classon Av", "direction": "E", "lat": 40.688866, "lon": -73.959595, "routes": "B38, B93" }, "geometry": { "type": "Point", "coordinates": [ -73.959595, 40.688866 ] } }, -{ "type": "Feature", "properties": { "id": 303025, "name": "Lafayette Av/Franklin Av", "direction": "E", "lat": 40.689114, "lon": -73.95743, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.95743, 40.689114 ] } }, -{ "type": "Feature", "properties": { "id": 303026, "name": "Lafayette Av/Bedford Av", "direction": "E", "lat": 40.689434, "lon": -73.95468, "routes": "B38, B93" }, "geometry": { "type": "Point", "coordinates": [ -73.95468, 40.689434 ] } }, -{ "type": "Feature", "properties": { "id": 303027, "name": "Lafayette Av/Nostrand Av", "direction": "E", "lat": 40.689857, "lon": -73.950966, "routes": "B38, B93" }, "geometry": { "type": "Point", "coordinates": [ -73.950966, 40.689857 ] } }, -{ "type": "Feature", "properties": { "id": 303028, "name": "Lafayette Av/Marcy Av", "direction": "E", "lat": 40.69023, "lon": -73.94778, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.94778, 40.69023 ] } }, -{ "type": "Feature", "properties": { "id": 303029, "name": "Lafayette Av/Tompkins Av", "direction": "E", "lat": 40.690556, "lon": -73.94495, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.94495, 40.690556 ] } }, -{ "type": "Feature", "properties": { "id": 303030, "name": "Lafayette Av/Throop Av", "direction": "E", "lat": 40.690884, "lon": -73.9421, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.9421, 40.690884 ] } }, -{ "type": "Feature", "properties": { "id": 303032, "name": "Lafayette Av/Lewis Av", "direction": "E", "lat": 40.69154, "lon": -73.93634, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.93634, 40.69154 ] } }, -{ "type": "Feature", "properties": { "id": 303033, "name": "Lafayette Av/Stuyvesant Av", "direction": "E", "lat": 40.691883, "lon": -73.93341, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.93341, 40.691883 ] } }, -{ "type": "Feature", "properties": { "id": 303034, "name": "Lafayette Av/Malcolm X Blvd", "direction": "E", "lat": 40.69222, "lon": -73.93049, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.93049, 40.69222 ] } }, -{ "type": "Feature", "properties": { "id": 303036, "name": "Kossuth Pl/Bushwick Av", "direction": "NE", "lat": 40.69401, "lon": -73.92653, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92653, 40.69401 ] } }, -{ "type": "Feature", "properties": { "id": 303038, "name": "De Kalb Av/Evergreen Av", "direction": "NE", "lat": 40.696342, "lon": -73.92696, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92696, 40.696342 ] } }, -{ "type": "Feature", "properties": { "id": 303039, "name": "De Kalb Av/Myrtle Av", "direction": "NE", "lat": 40.698402, "lon": -73.92494, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92494, 40.698402 ] } }, -{ "type": "Feature", "properties": { "id": 303040, "name": "De Kalb Av/Wilson Av", "direction": "NE", "lat": 40.699505, "lon": -73.92387, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92387, 40.699505 ] } }, -{ "type": "Feature", "properties": { "id": 303041, "name": "De Kalb Av/Knickerbocker Av", "direction": "NE", "lat": 40.701317, "lon": -73.92209, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92209, 40.701317 ] } }, -{ "type": "Feature", "properties": { "id": 303042, "name": "De Kalb Av/Irving Av", "direction": "NE", "lat": 40.702904, "lon": -73.92053, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92053, 40.702904 ] } }, -{ "type": "Feature", "properties": { "id": 303043, "name": "De Kalb Av/Wyckoff Av", "direction": "NE", "lat": 40.704487, "lon": -73.91896, "routes": "B38, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91896, 40.704487 ] } }, -{ "type": "Feature", "properties": { "id": 303044, "name": "De Kalb Av/Saint Nicholas Av", "direction": "NE", "lat": 40.70567, "lon": -73.917755, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.917755, 40.70567 ] } }, -{ "type": "Feature", "properties": { "id": 303072, "name": "De Kalb Av/Saint Nicholas Av", "direction": "SW", "lat": 40.70519, "lon": -73.91837, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91837, 40.70519 ] } }, -{ "type": "Feature", "properties": { "id": 303074, "name": "De Kalb Av/Irving Av", "direction": "SW", "lat": 40.70245, "lon": -73.9211, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.9211, 40.70245 ] } }, -{ "type": "Feature", "properties": { "id": 303075, "name": "De Kalb Av/Knickerbocker Av", "direction": "SW", "lat": 40.700893, "lon": -73.92265, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92265, 40.700893 ] } }, -{ "type": "Feature", "properties": { "id": 303076, "name": "De Kalb Av/Wilson Av", "direction": "SW", "lat": 40.69972, "lon": -73.92378, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92378, 40.69972 ] } }, -{ "type": "Feature", "properties": { "id": 303077, "name": "De Kalb Av/Myrtle Av", "direction": "SW", "lat": 40.697765, "lon": -73.92572, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92572, 40.697765 ] } }, -{ "type": "Feature", "properties": { "id": 303078, "name": "De Kalb Av/Evergreen Av", "direction": "SW", "lat": 40.69595, "lon": -73.92752, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92752, 40.69595 ] } }, -{ "type": "Feature", "properties": { "id": 303081, "name": "De Kalb Av/Malcolm X Blvd", "direction": "W", "lat": 40.69369, "lon": -73.9316, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.9316, 40.69369 ] } }, -{ "type": "Feature", "properties": { "id": 303082, "name": "De Kalb Av/Stuyvesant Av", "direction": "W", "lat": 40.69335, "lon": -73.93455, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.93455, 40.69335 ] } }, -{ "type": "Feature", "properties": { "id": 303083, "name": "De Kalb Av/Lewis Av", "direction": "W", "lat": 40.693024, "lon": -73.93748, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.93748, 40.693024 ] } }, -{ "type": "Feature", "properties": { "id": 303086, "name": "De Kalb Av/Tompkins Av", "direction": "W", "lat": 40.692043, "lon": -73.94605, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.94605, 40.692043 ] } }, -{ "type": "Feature", "properties": { "id": 303087, "name": "De Kalb Av/Marcy Av", "direction": "W", "lat": 40.691715, "lon": -73.94889, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.94889, 40.691715 ] } }, -{ "type": "Feature", "properties": { "id": 303088, "name": "De Kalb Av/Nostrand Av", "direction": "W", "lat": 40.691338, "lon": -73.952194, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.952194, 40.691338 ] } }, -{ "type": "Feature", "properties": { "id": 303090, "name": "De Kalb Av/Bedford Av", "direction": "W", "lat": 40.690903, "lon": -73.95584, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.95584, 40.690903 ] } }, -{ "type": "Feature", "properties": { "id": 303091, "name": "De Kalb Av/Franklin Av", "direction": "W", "lat": 40.690758, "lon": -73.95718, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.95718, 40.690758 ] } }, -{ "type": "Feature", "properties": { "id": 303092, "name": "De Kalb Av/Classon Av", "direction": "W", "lat": 40.69036, "lon": -73.96072, "routes": "B93, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.96072, 40.69036 ] } }, -{ "type": "Feature", "properties": { "id": 303094, "name": "De Kalb Av/Washington Av", "direction": "W", "lat": 40.68968, "lon": -73.96658, "routes": "B38, B93" }, "geometry": { "type": "Point", "coordinates": [ -73.96658, 40.68968 ] } }, -{ "type": "Feature", "properties": { "id": 303096, "name": "De Kalb Av/Vanderbilt Av", "direction": "W", "lat": 40.68954, "lon": -73.96952, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.96952, 40.68954 ] } }, -{ "type": "Feature", "properties": { "id": 303102, "name": "De Kalb Av/Flatbush Av Ext", "direction": "W", "lat": 40.68999, "lon": -73.981255, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.981255, 40.68999 ] } }, -{ "type": "Feature", "properties": { "id": 303117, "name": "Williamsburg Bridge Plaza/Lane 1", "direction": "E", "lat": 40.7096, "lon": -73.95936, "routes": "B60, B39" }, "geometry": { "type": "Point", "coordinates": [ -73.95936, 40.7096 ] } }, -{ "type": "Feature", "properties": { "id": 303135, "name": "Ralph Av/Sterling Pl", "direction": "N", "lat": 40.671307, "lon": -73.92229, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92229, 40.671307 ] } }, -{ "type": "Feature", "properties": { "id": 303136, "name": "Ralph Av/Prospect Pl", "direction": "N", "lat": 40.6731, "lon": -73.92212, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92212, 40.6731 ] } }, -{ "type": "Feature", "properties": { "id": 303137, "name": "Ralph Av/Bergen St", "direction": "N", "lat": 40.674442, "lon": -73.922, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922, 40.674442 ] } }, -{ "type": "Feature", "properties": { "id": 303138, "name": "Ralph Av/Dean St", "direction": "N", "lat": 40.67566, "lon": -73.92188, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92188, 40.67566 ] } }, -{ "type": "Feature", "properties": { "id": 303140, "name": "Ralph Av/Atlantic Av", "direction": "N", "lat": 40.677242, "lon": -73.921715, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.921715, 40.677242 ] } }, -{ "type": "Feature", "properties": { "id": 303141, "name": "Ralph Av/Fulton St", "direction": "N", "lat": 40.67874, "lon": -73.921585, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.921585, 40.67874 ] } }, -{ "type": "Feature", "properties": { "id": 303142, "name": "Ralph Av/Sumpter St", "direction": "N", "lat": 40.680058, "lon": -73.92208, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92208, 40.680058 ] } }, -{ "type": "Feature", "properties": { "id": 303143, "name": "Ralph Av/Bainbridge St", "direction": "N", "lat": 40.68223, "lon": -73.922516, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922516, 40.68223 ] } }, -{ "type": "Feature", "properties": { "id": 303144, "name": "Ralph Av/Macdonough St", "direction": "N", "lat": 40.683727, "lon": -73.922806, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922806, 40.683727 ] } }, -{ "type": "Feature", "properties": { "id": 303145, "name": "Ralph Av/Halsey St", "direction": "N", "lat": 40.684765, "lon": -73.92302, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92302, 40.684765 ] } }, -{ "type": "Feature", "properties": { "id": 303146, "name": "Ralph Av/Hancock St", "direction": "N", "lat": 40.68593, "lon": -73.92325, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92325, 40.68593 ] } }, -{ "type": "Feature", "properties": { "id": 303147, "name": "Ralph Av/Putnam Av", "direction": "N", "lat": 40.687405, "lon": -73.923546, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.923546, 40.687405 ] } }, -{ "type": "Feature", "properties": { "id": 303148, "name": "Ralph Av/Gates Av", "direction": "N", "lat": 40.689163, "lon": -73.92389, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92389, 40.689163 ] } }, -{ "type": "Feature", "properties": { "id": 303149, "name": "Ralph Av/Broadway", "direction": "NW", "lat": 40.690792, "lon": -73.92431, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92431, 40.690792 ] } }, -{ "type": "Feature", "properties": { "id": 303151, "name": "Broadway/Kossuth Pl", "direction": "NW", "lat": 40.692974, "lon": -73.92808, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92808, 40.692974 ] } }, -{ "type": "Feature", "properties": { "id": 303152, "name": "Broadway/De Kalb Av", "direction": "NW", "lat": 40.694073, "lon": -73.92998, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92998, 40.694073 ] } }, -{ "type": "Feature", "properties": { "id": 303153, "name": "Broadway/Lawton St", "direction": "NW", "lat": 40.694912, "lon": -73.93141, "routes": "B46, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.93141, 40.694912 ] } }, -{ "type": "Feature", "properties": { "id": 303154, "name": "Broadway/Willoughby Av", "direction": "NW", "lat": 40.696003, "lon": -73.93341, "routes": "B46, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.93341, 40.696003 ] } }, -{ "type": "Feature", "properties": { "id": 303156, "name": "Broadway/Arion Pl", "direction": "NW", "lat": 40.69807, "lon": -73.93704, "routes": "B46, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.93704, 40.69807 ] } }, -{ "type": "Feature", "properties": { "id": 303158, "name": "Broadway/Flushing Av", "direction": "NW", "lat": 40.700665, "lon": -73.94171, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.94171, 40.700665 ] } }, -{ "type": "Feature", "properties": { "id": 303159, "name": "Broadway/Cook St", "direction": "NW", "lat": 40.70234, "lon": -73.94455, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.94455, 40.70234 ] } }, -{ "type": "Feature", "properties": { "id": 303160, "name": "Broadway/Leonard St", "direction": "NW", "lat": 40.702984, "lon": -73.945694, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.945694, 40.702984 ] } }, -{ "type": "Feature", "properties": { "id": 303161, "name": "Broadway/Lorimer St", "direction": "NW", "lat": 40.704483, "lon": -73.94837, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.94837, 40.704483 ] } }, -{ "type": "Feature", "properties": { "id": 303162, "name": "Broadway/Boerum St", "direction": "NW", "lat": 40.705143, "lon": -73.949554, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.949554, 40.705143 ] } }, -{ "type": "Feature", "properties": { "id": 303163, "name": "Broadway/Montrose Av", "direction": "NW", "lat": 40.706253, "lon": -73.951584, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.951584, 40.706253 ] } }, -{ "type": "Feature", "properties": { "id": 303164, "name": "Broadway/Hooper St", "direction": "W", "lat": 40.707108, "lon": -73.95389, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.95389, 40.707108 ] } }, -{ "type": "Feature", "properties": { "id": 303170, "name": "Broadway/Hooper St", "direction": "E", "lat": 40.707047, "lon": -73.95412, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.95412, 40.707047 ] } }, -{ "type": "Feature", "properties": { "id": 303172, "name": "Broadway/Heyward St", "direction": "SE", "lat": 40.70548, "lon": -73.95044, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.95044, 40.70548 ] } }, -{ "type": "Feature", "properties": { "id": 303173, "name": "Broadway/Lorimer St", "direction": "SE", "lat": 40.704136, "lon": -73.94806, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.94806, 40.704136 ] } }, -{ "type": "Feature", "properties": { "id": 303175, "name": "Broadway/Gerry St", "direction": "SE", "lat": 40.702496, "lon": -73.945114, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.945114, 40.702496 ] } }, -{ "type": "Feature", "properties": { "id": 303178, "name": "Broadway/Park Av", "direction": "SE", "lat": 40.698654, "lon": -73.93836, "routes": "B46, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.93836, 40.698654 ] } }, -{ "type": "Feature", "properties": { "id": 303180, "name": "Broadway/Willoughby Av", "direction": "SE", "lat": 40.695515, "lon": -73.93281, "routes": "B47, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93281, 40.695515 ] } }, -{ "type": "Feature", "properties": { "id": 303182, "name": "Broadway/De Kalb Av", "direction": "SE", "lat": 40.69359, "lon": -73.92936, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92936, 40.69359 ] } }, -{ "type": "Feature", "properties": { "id": 303188, "name": "Ralph Av/Jefferson Av", "direction": "S", "lat": 40.686035, "lon": -73.92341, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92341, 40.686035 ] } }, -{ "type": "Feature", "properties": { "id": 303189, "name": "Ralph Av/Halsey St", "direction": "S", "lat": 40.684967, "lon": -73.923195, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.923195, 40.684967 ] } }, -{ "type": "Feature", "properties": { "id": 303190, "name": "Ralph Av/Macon St", "direction": "S", "lat": 40.68383, "lon": -73.922966, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922966, 40.68383 ] } }, -{ "type": "Feature", "properties": { "id": 303191, "name": "Ralph Av/Decatur St", "direction": "S", "lat": 40.682396, "lon": -73.92268, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92268, 40.682396 ] } }, -{ "type": "Feature", "properties": { "id": 303192, "name": "Ralph Av/Chauncey St", "direction": "S", "lat": 40.68089, "lon": -73.922424, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922424, 40.68089 ] } }, -{ "type": "Feature", "properties": { "id": 303193, "name": "Ralph Av/Fulton St", "direction": "S", "lat": 40.678513, "lon": -73.921745, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.921745, 40.678513 ] } }, -{ "type": "Feature", "properties": { "id": 303195, "name": "Ralph Av/Pacific St", "direction": "S", "lat": 40.675804, "lon": -73.922, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922, 40.675804 ] } }, -{ "type": "Feature", "properties": { "id": 303196, "name": "Ralph Av/Bergen St", "direction": "S", "lat": 40.67425, "lon": -73.92214, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92214, 40.67425 ] } }, -{ "type": "Feature", "properties": { "id": 303198, "name": "Ralph Av/Sterling Pl", "direction": "S", "lat": 40.671112, "lon": -73.92245, "routes": "B45, B47, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.92245, 40.671112 ] } }, -{ "type": "Feature", "properties": { "id": 303209, "name": "Liberty Av/Snediker Av", "direction": "W", "lat": 40.67358, "lon": -73.9023, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.9023, 40.67358 ] } }, -{ "type": "Feature", "properties": { "id": 303215, "name": "Flatbush Av/Kings Plaza", "direction": "NW", "lat": 40.60925, "lon": -73.92154, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92154, 40.60925 ] } }, -{ "type": "Feature", "properties": { "id": 303218, "name": "Flatbush Av/Utica Av", "direction": "NW", "lat": 40.613605, "lon": -73.92674, "routes": "Q35, B41, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.92674, 40.613605 ] } }, -{ "type": "Feature", "properties": { "id": 303219, "name": "Flatbush Av/E 48 St", "direction": "NW", "lat": 40.61528, "lon": -73.92865, "routes": "B41, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.92865, 40.61528 ] } }, -{ "type": "Feature", "properties": { "id": 303222, "name": "Flatbush Av/Troy Av", "direction": "NW", "lat": 40.619656, "lon": -73.933556, "routes": "B41, B9, Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.933556, 40.619656 ] } }, -{ "type": "Feature", "properties": { "id": 303223, "name": "Flatbush Av/Flatlands Av", "direction": "NW", "lat": 40.62155, "lon": -73.93558, "routes": "B9, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.93558, 40.62155 ] } }, -{ "type": "Feature", "properties": { "id": 303224, "name": "Flatbush Av/Kings Hwy", "direction": "NW", "lat": 40.622272, "lon": -73.93635, "routes": "B41, Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.93635, 40.622272 ] } }, -{ "type": "Feature", "properties": { "id": 303227, "name": "Flatbush Av/Avenue K", "direction": "NW", "lat": 40.62544, "lon": -73.9397, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9397, 40.62544 ] } }, -{ "type": "Feature", "properties": { "id": 303228, "name": "Flatbush Av/Brooklyn Av", "direction": "NW", "lat": 40.62675, "lon": -73.941086, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.941086, 40.62675 ] } }, -{ "type": "Feature", "properties": { "id": 303229, "name": "Flatbush Av/E 35 St", "direction": "NW", "lat": 40.62782, "lon": -73.942215, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.942215, 40.62782 ] } }, -{ "type": "Feature", "properties": { "id": 303230, "name": "Flatbush Av/Avenue I", "direction": "NW", "lat": 40.62941, "lon": -73.943954, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.943954, 40.62941 ] } }, -{ "type": "Feature", "properties": { "id": 303232, "name": "Flatbush Av/Nostrand Av", "direction": "NW", "lat": 40.632805, "lon": -73.947495, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.947495, 40.632805 ] } }, -{ "type": "Feature", "properties": { "id": 303233, "name": "Flatbush Av/E 29 St", "direction": "NW", "lat": 40.63432, "lon": -73.9491, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9491, 40.63432 ] } }, -{ "type": "Feature", "properties": { "id": 303234, "name": "Flatbush Av/Rogers Av", "direction": "NW", "lat": 40.636368, "lon": -73.951256, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.951256, 40.636368 ] } }, -{ "type": "Feature", "properties": { "id": 303235, "name": "Flatbush Av/Foster Av", "direction": "NW", "lat": 40.63873, "lon": -73.95377, "routes": "B41, BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.95377, 40.63873 ] } }, -{ "type": "Feature", "properties": { "id": 303237, "name": "Flatbush Av/Clarendon Rd", "direction": "N", "lat": 40.643074, "lon": -73.95761, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95761, 40.643074 ] } }, -{ "type": "Feature", "properties": { "id": 303238, "name": "Flatbush Av/Cortelyou Rd", "direction": "N", "lat": 40.64423, "lon": -73.95783, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95783, 40.64423 ] } }, -{ "type": "Feature", "properties": { "id": 303239, "name": "Flatbush Av/Tilden Av", "direction": "N", "lat": 40.64689, "lon": -73.958015, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.958015, 40.64689 ] } }, -{ "type": "Feature", "properties": { "id": 303241, "name": "Flatbush Av/Caton Av", "direction": "N", "lat": 40.653328, "lon": -73.9593, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9593, 40.653328 ] } }, -{ "type": "Feature", "properties": { "id": 303242, "name": "Flatbush Av/Clarkson Av", "direction": "N", "lat": 40.65526, "lon": -73.95968, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95968, 40.65526 ] } }, -{ "type": "Feature", "properties": { "id": 303243, "name": "Flatbush Av/Hawthorne St", "direction": "N", "lat": 40.657585, "lon": -73.96022, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.96022, 40.657585 ] } }, -{ "type": "Feature", "properties": { "id": 303244, "name": "Flatbush Av/Midwood St", "direction": "N", "lat": 40.659855, "lon": -73.96048, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.96048, 40.659855 ] } }, -{ "type": "Feature", "properties": { "id": 303247, "name": "Flatbush Av/Prospect Park Zoo", "direction": "NW", "lat": 40.66599, "lon": -73.964264, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.964264, 40.66599 ] } }, -{ "type": "Feature", "properties": { "id": 303249, "name": "Flatbush Av/Sterling Pl", "direction": "NW", "lat": 40.67618, "lon": -73.97168, "routes": "B41, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97168, 40.67618 ] } }, -{ "type": "Feature", "properties": { "id": 303250, "name": "Flatbush Av/Park Pl", "direction": "NW", "lat": 40.67775, "lon": -73.97275, "routes": "Q90, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.97275, 40.67775 ] } }, -{ "type": "Feature", "properties": { "id": 303253, "name": "Flatbush Av/Bergen St", "direction": "NW", "lat": 40.681137, "lon": -73.975204, "routes": "B41, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.975204, 40.681137 ] } }, -{ "type": "Feature", "properties": { "id": 303254, "name": "Flatbush Av/Atlantic Av", "direction": "NW", "lat": 40.684772, "lon": -73.97782, "routes": "B67, B45, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.97782, 40.684772 ] } }, -{ "type": "Feature", "properties": { "id": 303258, "name": "Livingston St/Hoyt St", "direction": "NW", "lat": 40.689842, "lon": -73.986084, "routes": "B93" }, "geometry": { "type": "Point", "coordinates": [ -73.986084, 40.689842 ] } }, -{ "type": "Feature", "properties": { "id": 303259, "name": "Livingston St/Smith St", "direction": "W", "lat": 40.69047, "lon": -73.9877, "routes": "B67, B45, B41, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.9877, 40.69047 ] } }, -{ "type": "Feature", "properties": { "id": 303269, "name": "Veterans Av/Avenue T", "direction": "W", "lat": 40.62002, "lon": -73.91096, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.91096, 40.62002 ] } }, -{ "type": "Feature", "properties": { "id": 303270, "name": "Veterans Av/E 66 St", "direction": "W", "lat": 40.61987, "lon": -73.91326, "routes": "B41, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91326, 40.61987 ] } }, -{ "type": "Feature", "properties": { "id": 303271, "name": "Veterans Av/E 65 St", "direction": "W", "lat": 40.619755, "lon": -73.91514, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.91514, 40.619755 ] } }, -{ "type": "Feature", "properties": { "id": 303272, "name": "Veterans Av/Ralph Av", "direction": "W", "lat": 40.619633, "lon": -73.91708, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.91708, 40.619633 ] } }, -{ "type": "Feature", "properties": { "id": 303274, "name": "Avenue N/E 57 St", "direction": "W", "lat": 40.619408, "lon": -73.92054, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92054, 40.619408 ] } }, -{ "type": "Feature", "properties": { "id": 303275, "name": "Avenue N/E 55 St", "direction": "W", "lat": 40.619286, "lon": -73.922485, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.922485, 40.619286 ] } }, -{ "type": "Feature", "properties": { "id": 303276, "name": "Avenue N/E 53 St", "direction": "W", "lat": 40.619167, "lon": -73.92447, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92447, 40.619167 ] } }, -{ "type": "Feature", "properties": { "id": 303277, "name": "Avenue N/Utica Av", "direction": "W", "lat": 40.619026, "lon": -73.926704, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.926704, 40.619026 ] } }, -{ "type": "Feature", "properties": { "id": 303290, "name": "Livingston St/Smith St", "direction": "E", "lat": 40.69022, "lon": -73.98747, "routes": "B45, B103, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98747, 40.69022 ] } }, -{ "type": "Feature", "properties": { "id": 303294, "name": "Livingston St/Nevins St", "direction": "E", "lat": 40.687645, "lon": -73.98082, "routes": "B67, B45, B41, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.98082, 40.687645 ] } }, -{ "type": "Feature", "properties": { "id": 303295, "name": "Flatbush Av/Atlantic Av", "direction": "SE", "lat": 40.68419, "lon": -73.97762, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.97762, 40.68419 ] } }, -{ "type": "Feature", "properties": { "id": 303296, "name": "Flatbush Av/5 Av", "direction": "SE", "lat": 40.68251, "lon": -73.97646, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97646, 40.68251 ] } }, -{ "type": "Feature", "properties": { "id": 303297, "name": "Flatbush Av/Bergen St", "direction": "SE", "lat": 40.680466, "lon": -73.97497, "routes": "B41, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97497, 40.680466 ] } }, -{ "type": "Feature", "properties": { "id": 303300, "name": "Flatbush Av/Park Pl", "direction": "SE", "lat": 40.67736, "lon": -73.972664, "routes": "Q90, B41, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.972664, 40.67736 ] } }, -{ "type": "Feature", "properties": { "id": 303301, "name": "Flatbush Av/8 Av", "direction": "SE", "lat": 40.67577, "lon": -73.971504, "routes": "B69, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.971504, 40.67577 ] } }, -{ "type": "Feature", "properties": { "id": 303303, "name": "Flatbush Av/Prospect Park Zoo", "direction": "SE", "lat": 40.665554, "lon": -73.96423, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.96423, 40.665554 ] } }, -{ "type": "Feature", "properties": { "id": 303306, "name": "Flatbush Av/Chester Ct", "direction": "S", "lat": 40.658184, "lon": -73.96055, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.96055, 40.658184 ] } }, -{ "type": "Feature", "properties": { "id": 303307, "name": "Flatbush Av/Parkside Av", "direction": "S", "lat": 40.65526, "lon": -73.95989, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95989, 40.65526 ] } }, -{ "type": "Feature", "properties": { "id": 303308, "name": "Flatbush Av/Caton Av", "direction": "S", "lat": 40.652596, "lon": -73.959366, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.959366, 40.652596 ] } }, -{ "type": "Feature", "properties": { "id": 303310, "name": "Flatbush Av/Albemarle Rd", "direction": "S", "lat": 40.647175, "lon": -73.95823, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95823, 40.647175 ] } }, -{ "type": "Feature", "properties": { "id": 303311, "name": "Flatbush Av/Beverly Rd", "direction": "S", "lat": 40.644463, "lon": -73.95815, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95815, 40.644463 ] } }, -{ "type": "Feature", "properties": { "id": 303312, "name": "Flatbush Av/Dorchester Rd", "direction": "SE", "lat": 40.642063, "lon": -73.95731, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95731, 40.642063 ] } }, -{ "type": "Feature", "properties": { "id": 303313, "name": "Flatbush Av/Ditmas Av", "direction": "SE", "lat": 40.64029, "lon": -73.95557, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95557, 40.64029 ] } }, -{ "type": "Feature", "properties": { "id": 303314, "name": "Flatbush Av/Foster Av", "direction": "SE", "lat": 40.63822, "lon": -73.95352, "routes": "BM2, B103, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95352, 40.63822 ] } }, -{ "type": "Feature", "properties": { "id": 303315, "name": "Flatbush Av/Farragut Rd", "direction": "SE", "lat": 40.63568, "lon": -73.95085, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95085, 40.63568 ] } }, -{ "type": "Feature", "properties": { "id": 303316, "name": "Flatbush Av/Glenwood Rd", "direction": "SE", "lat": 40.63419, "lon": -73.949265, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.949265, 40.63419 ] } }, -{ "type": "Feature", "properties": { "id": 303317, "name": "Flatbush Av/Nostrand Av", "direction": "SE", "lat": 40.631996, "lon": -73.9469, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9469, 40.631996 ] } }, -{ "type": "Feature", "properties": { "id": 303318, "name": "Flatbush Av/Aurelia Ct", "direction": "SE", "lat": 40.629868, "lon": -73.9447, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9447, 40.629868 ] } }, -{ "type": "Feature", "properties": { "id": 303319, "name": "Flatbush Av/E 35 St", "direction": "SE", "lat": 40.627647, "lon": -73.9423, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9423, 40.627647 ] } }, -{ "type": "Feature", "properties": { "id": 303323, "name": "Flatbush Av/Flatlands Av", "direction": "SE", "lat": 40.62095, "lon": -73.93525, "routes": "B41, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.93525, 40.62095 ] } }, -{ "type": "Feature", "properties": { "id": 303324, "name": "Flatbush Av/Avenue P", "direction": "SE", "lat": 40.619194, "lon": -73.933304, "routes": "B41, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.933304, 40.619194 ] } }, -{ "type": "Feature", "properties": { "id": 303326, "name": "Avenue N/Schenectady Av", "direction": "E", "lat": 40.618725, "lon": -73.92936, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92936, 40.618725 ] } }, -{ "type": "Feature", "properties": { "id": 303328, "name": "Avenue N/E 52 St", "direction": "E", "lat": 40.619022, "lon": -73.92459, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92459, 40.619022 ] } }, -{ "type": "Feature", "properties": { "id": 303329, "name": "Avenue N/E 54 St", "direction": "E", "lat": 40.61915, "lon": -73.92266, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92266, 40.61915 ] } }, -{ "type": "Feature", "properties": { "id": 303330, "name": "Avenue N/E 56 St", "direction": "E", "lat": 40.61927, "lon": -73.92067, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92067, 40.61927 ] } }, -{ "type": "Feature", "properties": { "id": 303331, "name": "Avenue N/E 58 St", "direction": "E", "lat": 40.619385, "lon": -73.918755, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.918755, 40.619385 ] } }, -{ "type": "Feature", "properties": { "id": 303332, "name": "Avenue N/Ralph Av", "direction": "E", "lat": 40.61947, "lon": -73.917465, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.917465, 40.61947 ] } }, -{ "type": "Feature", "properties": { "id": 303333, "name": "Veterans Av/E 64 St", "direction": "E", "lat": 40.619595, "lon": -73.915245, "routes": "B41, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.915245, 40.619595 ] } }, -{ "type": "Feature", "properties": { "id": 303334, "name": "Veterans Av/E 66 St", "direction": "E", "lat": 40.619713, "lon": -73.913216, "routes": "B41, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.913216, 40.619713 ] } }, -{ "type": "Feature", "properties": { "id": 303335, "name": "Veterans Av/Avenue T", "direction": "E", "lat": 40.619804, "lon": -73.91179, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.91179, 40.619804 ] } }, -{ "type": "Feature", "properties": { "id": 303338, "name": "Flatbush Av/Quentin Rd", "direction": "SE", "lat": 40.617607, "lon": -73.931526, "routes": "B9, Q35, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.931526, 40.617607 ] } }, -{ "type": "Feature", "properties": { "id": 303339, "name": "Flatbush Av/Avenue R", "direction": "SE", "lat": 40.615974, "lon": -73.92971, "routes": "B41, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.92971, 40.615974 ] } }, -{ "type": "Feature", "properties": { "id": 303340, "name": "Flatbush Av/Fillmore Av", "direction": "SE", "lat": 40.614697, "lon": -73.92828, "routes": "B9, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92828, 40.614697 ] } }, -{ "type": "Feature", "properties": { "id": 303341, "name": "Flatbush Av/Avenue S", "direction": "SE", "lat": 40.613075, "lon": -73.926476, "routes": "B41, Q35, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.926476, 40.613075 ] } }, -{ "type": "Feature", "properties": { "id": 303345, "name": "Rockaway Pkwy/Subway Station", "direction": "W", "lat": 40.645775, "lon": -73.90163, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.90163, 40.645775 ] } }, -{ "type": "Feature", "properties": { "id": 303348, "name": "Rockaway Pkwy/Avenue J", "direction": "SE", "lat": 40.64166, "lon": -73.89859, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89859, 40.64166 ] } }, -{ "type": "Feature", "properties": { "id": 303349, "name": "Rockaway Pkwy/Avenue K", "direction": "SE", "lat": 40.640465, "lon": -73.89727, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89727, 40.640465 ] } }, -{ "type": "Feature", "properties": { "id": 303350, "name": "Rockaway Pkwy/Avenue L", "direction": "SE", "lat": 40.63878, "lon": -73.895386, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.895386, 40.63878 ] } }, -{ "type": "Feature", "properties": { "id": 303351, "name": "Rockaway Pkwy/Avenue M", "direction": "SE", "lat": 40.63714, "lon": -73.89356, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89356, 40.63714 ] } }, -{ "type": "Feature", "properties": { "id": 303352, "name": "Rockaway Pkwy/Avenue N", "direction": "SE", "lat": 40.635178, "lon": -73.89138, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89138, 40.635178 ] } }, -{ "type": "Feature", "properties": { "id": 303353, "name": "Rockaway Pkwy/Seaview Av", "direction": "SE", "lat": 40.633934, "lon": -73.89, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89, 40.633934 ] } }, -{ "type": "Feature", "properties": { "id": 303355, "name": "Rockaway Pkwy/Shore Pkwy Service Rd North", "direction": "NW", "lat": 40.631306, "lon": -73.88668, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.88668, 40.631306 ] } }, -{ "type": "Feature", "properties": { "id": 303356, "name": "Rockaway Pkwy/Seaview Av", "direction": "NW", "lat": 40.633686, "lon": -73.889336, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.889336, 40.633686 ] } }, -{ "type": "Feature", "properties": { "id": 303357, "name": "Rockaway Pkwy/Avenue N", "direction": "NW", "lat": 40.63545, "lon": -73.89138, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89138, 40.63545 ] } }, -{ "type": "Feature", "properties": { "id": 303358, "name": "Rockaway Pkwy/Avenue M", "direction": "NW", "lat": 40.637077, "lon": -73.893196, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.893196, 40.637077 ] } }, -{ "type": "Feature", "properties": { "id": 303359, "name": "Rockaway Pkwy/Avenue L", "direction": "NW", "lat": 40.638695, "lon": -73.895, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.895, 40.638695 ] } }, -{ "type": "Feature", "properties": { "id": 303360, "name": "Rockaway Pkwy/Avenue K", "direction": "NW", "lat": 40.640682, "lon": -73.89721, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89721, 40.640682 ] } }, -{ "type": "Feature", "properties": { "id": 303361, "name": "Rockaway Pkwy/Avenue J", "direction": "NW", "lat": 40.642307, "lon": -73.89902, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.89902, 40.642307 ] } }, -{ "type": "Feature", "properties": { "id": 303366, "name": "Nostrand Av/Avenue T", "direction": "N", "lat": 40.60305, "lon": -73.94229, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94229, 40.60305 ] } }, -{ "type": "Feature", "properties": { "id": 303367, "name": "Nostrand Av/Avenue S", "direction": "N", "lat": 40.60542, "lon": -73.94273, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94273, 40.60542 ] } }, -{ "type": "Feature", "properties": { "id": 303368, "name": "Nostrand Av/Avenue R", "direction": "N", "lat": 40.607662, "lon": -73.94317, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94317, 40.607662 ] } }, -{ "type": "Feature", "properties": { "id": 303369, "name": "Nostrand Av/Gerritsen Av", "direction": "N", "lat": 40.608986, "lon": -73.94341, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94341, 40.608986 ] } }, -{ "type": "Feature", "properties": { "id": 303370, "name": "Nostrand Av/Quentin Rd", "direction": "N", "lat": 40.610123, "lon": -73.94356, "routes": "BM4, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94356, 40.610123 ] } }, -{ "type": "Feature", "properties": { "id": 303371, "name": "Nostrand Av/Avenue P", "direction": "N", "lat": 40.613113, "lon": -73.944115, "routes": "B44, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.944115, 40.613113 ] } }, -{ "type": "Feature", "properties": { "id": 303372, "name": "Nostrand Av/Marine Pkwy", "direction": "N", "lat": 40.614445, "lon": -73.944374, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.944374, 40.614445 ] } }, -{ "type": "Feature", "properties": { "id": 303374, "name": "Nostrand Av/Avenue N", "direction": "N", "lat": 40.61753, "lon": -73.94503, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94503, 40.61753 ] } }, -{ "type": "Feature", "properties": { "id": 303375, "name": "Nostrand Av/Avenue M", "direction": "N", "lat": 40.61991, "lon": -73.94548, "routes": "B44, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94548, 40.61991 ] } }, -{ "type": "Feature", "properties": { "id": 303376, "name": "Nostrand Av/Avenue L", "direction": "N", "lat": 40.62188, "lon": -73.945854, "routes": "B44+, B44, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.945854, 40.62188 ] } }, -{ "type": "Feature", "properties": { "id": 303377, "name": "Nostrand Av/Avenue K", "direction": "N", "lat": 40.62453, "lon": -73.94632, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94632, 40.62453 ] } }, -{ "type": "Feature", "properties": { "id": 303378, "name": "Nostrand Av/Avenue J", "direction": "N", "lat": 40.627113, "lon": -73.94685, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94685, 40.627113 ] } }, -{ "type": "Feature", "properties": { "id": 303379, "name": "Nostrand Av/Avenue I", "direction": "N", "lat": 40.629482, "lon": -73.94728, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94728, 40.629482 ] } }, -{ "type": "Feature", "properties": { "id": 303380, "name": "Nostrand Av/Flatbush Av", "direction": "N", "lat": 40.63235, "lon": -73.947525, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.947525, 40.63235 ] } }, -{ "type": "Feature", "properties": { "id": 303381, "name": "Nostrand Av/Glenwood Rd", "direction": "N", "lat": 40.634315, "lon": -73.947716, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.947716, 40.634315 ] } }, -{ "type": "Feature", "properties": { "id": 303382, "name": "Farragut Rd/Nostrand Av", "direction": "E", "lat": 40.63623, "lon": -73.94757, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94757, 40.63623 ] } }, -{ "type": "Feature", "properties": { "id": 303383, "name": "New York Av/Farragut Rd", "direction": "N", "lat": 40.63684, "lon": -73.9451, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9451, 40.63684 ] } }, -{ "type": "Feature", "properties": { "id": 303384, "name": "New York Av/Foster Av", "direction": "N", "lat": 40.63915, "lon": -73.94532, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94532, 40.63915 ] } }, -{ "type": "Feature", "properties": { "id": 303385, "name": "New York Av/Avenue D", "direction": "N", "lat": 40.64102, "lon": -73.94553, "routes": "B96, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94553, 40.64102 ] } }, -{ "type": "Feature", "properties": { "id": 303386, "name": "New York Av/Clarendon Rd", "direction": "N", "lat": 40.64377, "lon": -73.945816, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.945816, 40.64377 ] } }, -{ "type": "Feature", "properties": { "id": 303387, "name": "New York Av/Beverly Rd", "direction": "N", "lat": 40.64564, "lon": -73.94602, "routes": "B44, B96" }, "geometry": { "type": "Point", "coordinates": [ -73.94602, 40.64564 ] } }, -{ "type": "Feature", "properties": { "id": 303388, "name": "New York Av/Tilden Av", "direction": "N", "lat": 40.64732, "lon": -73.946205, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.946205, 40.64732 ] } }, -{ "type": "Feature", "properties": { "id": 303389, "name": "New York Av/Snyder Av", "direction": "N", "lat": 40.64941, "lon": -73.94643, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94643, 40.64941 ] } }, -{ "type": "Feature", "properties": { "id": 303390, "name": "New York Av/Church Av", "direction": "N", "lat": 40.651268, "lon": -73.94662, "routes": "B44, B96" }, "geometry": { "type": "Point", "coordinates": [ -73.94662, 40.651268 ] } }, -{ "type": "Feature", "properties": { "id": 303391, "name": "New York Av/Linden Blvd", "direction": "N", "lat": 40.653126, "lon": -73.94682, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94682, 40.653126 ] } }, -{ "type": "Feature", "properties": { "id": 303392, "name": "New York Av/Lenox Rd", "direction": "N", "lat": 40.654648, "lon": -73.94695, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94695, 40.654648 ] } }, -{ "type": "Feature", "properties": { "id": 303393, "name": "New York Av/Clarkson Av", "direction": "N", "lat": 40.655907, "lon": -73.94711, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94711, 40.655907 ] } }, -{ "type": "Feature", "properties": { "id": 303394, "name": "New York Av/Winthrop St", "direction": "N", "lat": 40.65758, "lon": -73.9473, "routes": "B96, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9473, 40.65758 ] } }, -{ "type": "Feature", "properties": { "id": 303395, "name": "New York Av/Fenimore St", "direction": "N", "lat": 40.65918, "lon": -73.94747, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94747, 40.65918 ] } }, -{ "type": "Feature", "properties": { "id": 303396, "name": "New York Av/Midwood St", "direction": "N", "lat": 40.66022, "lon": -73.947586, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.947586, 40.66022 ] } }, -{ "type": "Feature", "properties": { "id": 303398, "name": "New York Av/Empire Bl", "direction": "N", "lat": 40.663937, "lon": -73.94799, "routes": "B96, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94799, 40.663937 ] } }, -{ "type": "Feature", "properties": { "id": 303399, "name": "New York Av/Montgomery St", "direction": "N", "lat": 40.665546, "lon": -73.94806, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94806, 40.665546 ] } }, -{ "type": "Feature", "properties": { "id": 303400, "name": "New York Av/Carroll St", "direction": "N", "lat": 40.667328, "lon": -73.94788, "routes": "B96, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94788, 40.667328 ] } }, -{ "type": "Feature", "properties": { "id": 303401, "name": "New York Av/Union St", "direction": "N", "lat": 40.669056, "lon": -73.94772, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94772, 40.669056 ] } }, -{ "type": "Feature", "properties": { "id": 303402, "name": "New York Av/Eastern Pkwy", "direction": "N", "lat": 40.670227, "lon": -73.94762, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94762, 40.670227 ] } }, -{ "type": "Feature", "properties": { "id": 303403, "name": "New York Av/Saint Johns Pl", "direction": "N", "lat": 40.67132, "lon": -73.94751, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94751, 40.67132 ] } }, -{ "type": "Feature", "properties": { "id": 303404, "name": "New York Av/Sterling Pl", "direction": "N", "lat": 40.672676, "lon": -73.94739, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94739, 40.672676 ] } }, -{ "type": "Feature", "properties": { "id": 303405, "name": "New York Av/Prospect Pl", "direction": "N", "lat": 40.674446, "lon": -73.94722, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94722, 40.674446 ] } }, -{ "type": "Feature", "properties": { "id": 303406, "name": "New York Av/Bergen St", "direction": "N", "lat": 40.67582, "lon": -73.94709, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94709, 40.67582 ] } }, -{ "type": "Feature", "properties": { "id": 303407, "name": "New York Av/Pacific St", "direction": "N", "lat": 40.677803, "lon": -73.94691, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94691, 40.677803 ] } }, -{ "type": "Feature", "properties": { "id": 303408, "name": "New York Av/Atlantic Av", "direction": "N", "lat": 40.678703, "lon": -73.946815, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.946815, 40.678703 ] } }, -{ "type": "Feature", "properties": { "id": 303411, "name": "Bedford Av/Fulton St", "direction": "N", "lat": 40.681038, "lon": -73.95334, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95334, 40.681038 ] } }, -{ "type": "Feature", "properties": { "id": 303412, "name": "Bedford Av/Hancock St", "direction": "N", "lat": 40.682453, "lon": -73.95363, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95363, 40.682453 ] } }, -{ "type": "Feature", "properties": { "id": 303413, "name": "Bedford Av/Putnam Av", "direction": "N", "lat": 40.68347, "lon": -73.953835, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.953835, 40.68347 ] } }, -{ "type": "Feature", "properties": { "id": 303416, "name": "Bedford Av/Greene Av", "direction": "N", "lat": 40.688305, "lon": -73.95479, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95479, 40.688305 ] } }, -{ "type": "Feature", "properties": { "id": 303417, "name": "Bedford Av/Lafayette Av", "direction": "N", "lat": 40.68935, "lon": -73.955, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.955, 40.68935 ] } }, -{ "type": "Feature", "properties": { "id": 303418, "name": "Bedford Av/De Kalb Av", "direction": "N", "lat": 40.691288, "lon": -73.95539, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95539, 40.691288 ] } }, -{ "type": "Feature", "properties": { "id": 303419, "name": "Bedford Av/Willoughby Av", "direction": "N", "lat": 40.69337, "lon": -73.95581, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95581, 40.69337 ] } }, -{ "type": "Feature", "properties": { "id": 303420, "name": "Bedford Av/Myrtle Av", "direction": "N", "lat": 40.694473, "lon": -73.95603, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95603, 40.694473 ] } }, -{ "type": "Feature", "properties": { "id": 303421, "name": "Bedford Av/Park Av", "direction": "N", "lat": 40.69668, "lon": -73.956474, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.956474, 40.69668 ] } }, -{ "type": "Feature", "properties": { "id": 303422, "name": "Bedford Av/Flushing Av", "direction": "N", "lat": 40.698883, "lon": -73.95692, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95692, 40.698883 ] } }, -{ "type": "Feature", "properties": { "id": 303425, "name": "Bedford Av/Hewes St", "direction": "NW", "lat": 40.702847, "lon": -73.95959, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.95959, 40.702847 ] } }, -{ "type": "Feature", "properties": { "id": 303427, "name": "Bedford Av/Taylor St", "direction": "NW", "lat": 40.705826, "lon": -73.962906, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.962906, 40.705826 ] } }, -{ "type": "Feature", "properties": { "id": 303434, "name": "Nostrand Av/Voorhies Av", "direction": "N", "lat": 40.58761, "lon": -73.939285, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.939285, 40.58761 ] } }, -{ "type": "Feature", "properties": { "id": 303440, "name": "Nostrand Av/Avenue U", "direction": "N", "lat": 40.60095, "lon": -73.941895, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.941895, 40.60095 ] } }, -{ "type": "Feature", "properties": { "id": 303441, "name": "Lee Av/Flushing Av", "direction": "SE", "lat": 40.699505, "lon": -73.95348, "routes": "B98, B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.95348, 40.699505 ] } }, -{ "type": "Feature", "properties": { "id": 303444, "name": "Nostrand Av/Myrtle Av", "direction": "S", "lat": 40.694588, "lon": -73.952484, "routes": "B44, B98" }, "geometry": { "type": "Point", "coordinates": [ -73.952484, 40.694588 ] } }, -{ "type": "Feature", "properties": { "id": 303445, "name": "Nostrand Av/Willoughby Av", "direction": "S", "lat": 40.693268, "lon": -73.9522, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9522, 40.693268 ] } }, -{ "type": "Feature", "properties": { "id": 303446, "name": "Nostrand Av/Kosciusko St", "direction": "S", "lat": 40.690754, "lon": -73.95172, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95172, 40.690754 ] } }, -{ "type": "Feature", "properties": { "id": 303447, "name": "Nostrand Av/Lafayette Av", "direction": "S", "lat": 40.689537, "lon": -73.95148, "routes": "B98, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95148, 40.689537 ] } }, -{ "type": "Feature", "properties": { "id": 303448, "name": "Nostrand Av/Greene Av", "direction": "S", "lat": 40.68806, "lon": -73.951195, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.951195, 40.68806 ] } }, -{ "type": "Feature", "properties": { "id": 303451, "name": "Nostrand Av/Putnam Av", "direction": "S", "lat": 40.683674, "lon": -73.95032, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95032, 40.683674 ] } }, -{ "type": "Feature", "properties": { "id": 303456, "name": "Nostrand Av/Pacific St", "direction": "S", "lat": 40.677334, "lon": -73.94988, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94988, 40.677334 ] } }, -{ "type": "Feature", "properties": { "id": 303457, "name": "Nostrand Av/Bergen St", "direction": "S", "lat": 40.67567, "lon": -73.950035, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.950035, 40.67567 ] } }, -{ "type": "Feature", "properties": { "id": 303458, "name": "Nostrand Av/Prospect Pl", "direction": "S", "lat": 40.674202, "lon": -73.95017, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95017, 40.674202 ] } }, -{ "type": "Feature", "properties": { "id": 303459, "name": "Nostrand Av/Saint Johns Pl", "direction": "S", "lat": 40.67087, "lon": -73.95051, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95051, 40.67087 ] } }, -{ "type": "Feature", "properties": { "id": 303460, "name": "Nostrand Av/Eastern Pkwy", "direction": "S", "lat": 40.66929, "lon": -73.95063, "routes": "B44, B96" }, "geometry": { "type": "Point", "coordinates": [ -73.95063, 40.66929 ] } }, -{ "type": "Feature", "properties": { "id": 303461, "name": "Nostrand Av/Carroll St", "direction": "S", "lat": 40.666866, "lon": -73.95085, "routes": "B96, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95085, 40.666866 ] } }, -{ "type": "Feature", "properties": { "id": 303463, "name": "Nostrand Av/Empire Blvd", "direction": "S", "lat": 40.663475, "lon": -73.95101, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95101, 40.663475 ] } }, -{ "type": "Feature", "properties": { "id": 303464, "name": "Nostrand Av/Lefferts Av", "direction": "S", "lat": 40.66198, "lon": -73.95086, "routes": "B44, B96" }, "geometry": { "type": "Point", "coordinates": [ -73.95086, 40.66198 ] } }, -{ "type": "Feature", "properties": { "id": 303465, "name": "Nostrand Av/Maple St", "direction": "S", "lat": 40.66052, "lon": -73.9507, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9507, 40.66052 ] } }, -{ "type": "Feature", "properties": { "id": 303466, "name": "Nostrand Av/Rutland Rd", "direction": "S", "lat": 40.659054, "lon": -73.95055, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95055, 40.659054 ] } }, -{ "type": "Feature", "properties": { "id": 303467, "name": "Nostrand Av/Hawthorne St", "direction": "S", "lat": 40.657497, "lon": -73.95038, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95038, 40.657497 ] } }, -{ "type": "Feature", "properties": { "id": 303468, "name": "Nostrand Av/Winthrop St", "direction": "S", "lat": 40.656754, "lon": -73.9503, "routes": "B96" }, "geometry": { "type": "Point", "coordinates": [ -73.9503, 40.656754 ] } }, -{ "type": "Feature", "properties": { "id": 303469, "name": "Nostrand Av/Clarkson Av", "direction": "S", "lat": 40.65501, "lon": -73.95011, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.95011, 40.65501 ] } }, -{ "type": "Feature", "properties": { "id": 303471, "name": "Nostrand Av/Linden Blvd", "direction": "S", "lat": 40.652275, "lon": -73.949814, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.949814, 40.652275 ] } }, -{ "type": "Feature", "properties": { "id": 303473, "name": "Nostrand Av/Snyder Av", "direction": "S", "lat": 40.648613, "lon": -73.949425, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.949425, 40.648613 ] } }, -{ "type": "Feature", "properties": { "id": 303474, "name": "Nostrand Av/Tilden Av", "direction": "S", "lat": 40.64656, "lon": -73.9492, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9492, 40.64656 ] } }, -{ "type": "Feature", "properties": { "id": 303475, "name": "Nostrand Av/Beverly Rd", "direction": "S", "lat": 40.6448, "lon": -73.94901, "routes": "B44, B96" }, "geometry": { "type": "Point", "coordinates": [ -73.94901, 40.6448 ] } }, -{ "type": "Feature", "properties": { "id": 303476, "name": "Nostrand Av/Clarendon Rd", "direction": "S", "lat": 40.64283, "lon": -73.94881, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94881, 40.64283 ] } }, -{ "type": "Feature", "properties": { "id": 303477, "name": "Nostrand Av/Newkirk Av", "direction": "S", "lat": 40.640083, "lon": -73.94852, "routes": "B8, B44+, B96, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94852, 40.640083 ] } }, -{ "type": "Feature", "properties": { "id": 303479, "name": "Nostrand Av/Farragut Rd", "direction": "S", "lat": 40.63593, "lon": -73.94807, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94807, 40.63593 ] } }, -{ "type": "Feature", "properties": { "id": 303480, "name": "Nostrand Av/Glenwood Rd", "direction": "S", "lat": 40.63409, "lon": -73.947876, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.947876, 40.63409 ] } }, -{ "type": "Feature", "properties": { "id": 303482, "name": "Nostrand Av/Avenue I", "direction": "S", "lat": 40.62882, "lon": -73.94735, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94735, 40.62882 ] } }, -{ "type": "Feature", "properties": { "id": 303483, "name": "Nostrand Av/Avenue J", "direction": "S", "lat": 40.626427, "lon": -73.94691, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94691, 40.626427 ] } }, -{ "type": "Feature", "properties": { "id": 303484, "name": "Nostrand Av/Avenue K", "direction": "S", "lat": 40.62425, "lon": -73.94645, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94645, 40.62425 ] } }, -{ "type": "Feature", "properties": { "id": 303486, "name": "Nostrand Av/Avenue M", "direction": "S", "lat": 40.619232, "lon": -73.94555, "routes": "B44, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94555, 40.619232 ] } }, -{ "type": "Feature", "properties": { "id": 303487, "name": "Nostrand Av/Avenue N", "direction": "S", "lat": 40.616886, "lon": -73.94511, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94511, 40.616886 ] } }, -{ "type": "Feature", "properties": { "id": 303488, "name": "Nostrand Av/Kings Hwy", "direction": "S", "lat": 40.616207, "lon": -73.94498, "routes": "B44, B44+, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94498, 40.616207 ] } }, -{ "type": "Feature", "properties": { "id": 303490, "name": "Nostrand Av/Avenue P", "direction": "S", "lat": 40.611637, "lon": -73.94411, "routes": "B44, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94411, 40.611637 ] } }, -{ "type": "Feature", "properties": { "id": 303491, "name": "Nostrand Av/Quentin Rd", "direction": "S", "lat": 40.60947, "lon": -73.9437, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9437, 40.60947 ] } }, -{ "type": "Feature", "properties": { "id": 303492, "name": "Nostrand Av/Avenue R", "direction": "S", "lat": 40.606968, "lon": -73.94323, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.94323, 40.606968 ] } }, -{ "type": "Feature", "properties": { "id": 303493, "name": "Nostrand Av/Avenue S", "direction": "S", "lat": 40.604748, "lon": -73.9428, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.9428, 40.604748 ] } }, -{ "type": "Feature", "properties": { "id": 303494, "name": "Nostrand Av/Avenue T", "direction": "S", "lat": 40.60233, "lon": -73.94235, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94235, 40.60233 ] } }, -{ "type": "Feature", "properties": { "id": 303495, "name": "Nostrand Av/Avenue U", "direction": "S", "lat": 40.600536, "lon": -73.94201, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.94201, 40.600536 ] } }, -{ "type": "Feature", "properties": { "id": 303502, "name": "Nostrand Av/Voorhies Av", "direction": "S", "lat": 40.586987, "lon": -73.93946, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.93946, 40.586987 ] } }, -{ "type": "Feature", "properties": { "id": 303513, "name": "Lee Av/Hewes St", "direction": "SE", "lat": 40.70338, "lon": -73.95742, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.95742, 40.70338 ] } }, -{ "type": "Feature", "properties": { "id": 303517, "name": "Livingston St/Court St", "direction": "E", "lat": 40.69134, "lon": -73.99088, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.99088, 40.69134 ] } }, -{ "type": "Feature", "properties": { "id": 303524, "name": "Flatbush Av/State St", "direction": "SE", "lat": 40.685406, "lon": -73.97852, "routes": "B45, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97852, 40.685406 ] } }, -{ "type": "Feature", "properties": { "id": 303526, "name": "Atlantic Av/Flatbush Av", "direction": "E", "lat": 40.68377, "lon": -73.977, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.977, 40.68377 ] } }, -{ "type": "Feature", "properties": { "id": 303530, "name": "Atlantic Av/Vanderbilt Av", "direction": "E", "lat": 40.68156, "lon": -73.96721, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96721, 40.68156 ] } }, -{ "type": "Feature", "properties": { "id": 303531, "name": "Washington Av/Atlantic Av", "direction": "S", "lat": 40.680668, "lon": -73.96443, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96443, 40.680668 ] } }, -{ "type": "Feature", "properties": { "id": 303532, "name": "Washington Av/Dean St", "direction": "S", "lat": 40.67948, "lon": -73.964165, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.964165, 40.67948 ] } }, -{ "type": "Feature", "properties": { "id": 303533, "name": "Washington Av/Bergen St", "direction": "S", "lat": 40.678223, "lon": -73.963936, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.963936, 40.678223 ] } }, -{ "type": "Feature", "properties": { "id": 303534, "name": "Washington Av/Prospect Pl", "direction": "S", "lat": 40.676147, "lon": -73.96356, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96356, 40.676147 ] } }, -{ "type": "Feature", "properties": { "id": 303535, "name": "Washington Av/Sterling Pl", "direction": "S", "lat": 40.6742, "lon": -73.963165, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.963165, 40.6742 ] } }, -{ "type": "Feature", "properties": { "id": 303536, "name": "Saint Johns Pl/Washington Av", "direction": "E", "lat": 40.673424, "lon": -73.96242, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96242, 40.673424 ] } }, -{ "type": "Feature", "properties": { "id": 303537, "name": "Saint Johns Pl/Classon Av", "direction": "E", "lat": 40.67298, "lon": -73.96033, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96033, 40.67298 ] } }, -{ "type": "Feature", "properties": { "id": 303539, "name": "Saint Johns Pl/Bedford Av", "direction": "E", "lat": 40.67182, "lon": -73.95484, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.95484, 40.67182 ] } }, -{ "type": "Feature", "properties": { "id": 303540, "name": "Saint Johns Pl/Rogers Av", "direction": "E", "lat": 40.67171, "lon": -73.95267, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.95267, 40.67171 ] } }, -{ "type": "Feature", "properties": { "id": 303541, "name": "Saint Johns Pl/Nostrand Av", "direction": "E", "lat": 40.671593, "lon": -73.95047, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.95047, 40.671593 ] } }, -{ "type": "Feature", "properties": { "id": 303542, "name": "Saint Johns Pl/New York Av", "direction": "E", "lat": 40.671394, "lon": -73.947235, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.947235, 40.671394 ] } }, -{ "type": "Feature", "properties": { "id": 303544, "name": "Saint Johns Pl/Kingston Av", "direction": "E", "lat": 40.671085, "lon": -73.94162, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.94162, 40.671085 ] } }, -{ "type": "Feature", "properties": { "id": 303545, "name": "Saint Johns Pl/Albany Av", "direction": "E", "lat": 40.670937, "lon": -73.93885, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.93885, 40.670937 ] } }, -{ "type": "Feature", "properties": { "id": 303546, "name": "Saint Johns Pl/Troy Av", "direction": "E", "lat": 40.670788, "lon": -73.9361, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.9361, 40.670788 ] } }, -{ "type": "Feature", "properties": { "id": 303547, "name": "Saint Johns Pl/Schenectady Av", "direction": "E", "lat": 40.670666, "lon": -73.933846, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.933846, 40.670666 ] } }, -{ "type": "Feature", "properties": { "id": 303548, "name": "Saint Johns Pl/Utica Av", "direction": "E", "lat": 40.670513, "lon": -73.931076, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.931076, 40.670513 ] } }, -{ "type": "Feature", "properties": { "id": 303549, "name": "Saint Johns Pl/Rochester Av", "direction": "E", "lat": 40.670334, "lon": -73.92773, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.92773, 40.670334 ] } }, -{ "type": "Feature", "properties": { "id": 303552, "name": "Saint Marks Av/Buffalo Av", "direction": "E", "lat": 40.67377, "lon": -73.92432, "routes": "B65, B45" }, "geometry": { "type": "Point", "coordinates": [ -73.92432, 40.67377 ] } }, -{ "type": "Feature", "properties": { "id": 303556, "name": "Ralph Av/Saint Johns Pl", "direction": "S", "lat": 40.670197, "lon": -73.92254, "routes": "B47, B45, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.92254, 40.670197 ] } }, -{ "type": "Feature", "properties": { "id": 303557, "name": "Saint Johns Pl/Ralph Av", "direction": "W", "lat": 40.670227, "lon": -73.92323, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.92323, 40.670227 ] } }, -{ "type": "Feature", "properties": { "id": 303558, "name": "Saint Johns Pl/Buffalo Av", "direction": "W", "lat": 40.670383, "lon": -73.925995, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.925995, 40.670383 ] } }, -{ "type": "Feature", "properties": { "id": 303560, "name": "Saint Johns Pl/Utica Av", "direction": "W", "lat": 40.670647, "lon": -73.93082, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.93082, 40.670647 ] } }, -{ "type": "Feature", "properties": { "id": 303561, "name": "Saint Johns Pl/Schenectady Av", "direction": "W", "lat": 40.67083, "lon": -73.93412, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.93412, 40.67083 ] } }, -{ "type": "Feature", "properties": { "id": 303562, "name": "Saint Johns Pl/Troy Av", "direction": "W", "lat": 40.670986, "lon": -73.93689, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.93689, 40.670986 ] } }, -{ "type": "Feature", "properties": { "id": 303563, "name": "Saint Johns Pl/Albany Av", "direction": "W", "lat": 40.671124, "lon": -73.93966, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.93966, 40.671124 ] } }, -{ "type": "Feature", "properties": { "id": 303564, "name": "Saint Johns Pl/Kingston Av", "direction": "W", "lat": 40.67125, "lon": -73.94188, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.94188, 40.67125 ] } }, -{ "type": "Feature", "properties": { "id": 303565, "name": "Saint Johns Pl/Brooklyn Av", "direction": "W", "lat": 40.671402, "lon": -73.94464, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.94464, 40.671402 ] } }, -{ "type": "Feature", "properties": { "id": 303566, "name": "Saint Johns Pl/New York Av", "direction": "W", "lat": 40.671524, "lon": -73.947426, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.947426, 40.671524 ] } }, -{ "type": "Feature", "properties": { "id": 303567, "name": "Saint Johns Pl/Nostrand Av", "direction": "W", "lat": 40.67168, "lon": -73.950195, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.950195, 40.67168 ] } }, -{ "type": "Feature", "properties": { "id": 303568, "name": "Saint Johns Pl/Rogers Av", "direction": "W", "lat": 40.671833, "lon": -73.952965, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.952965, 40.671833 ] } }, -{ "type": "Feature", "properties": { "id": 303569, "name": "Sterling Pl/Bedford Av", "direction": "W", "lat": 40.672867, "lon": -73.954735, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.954735, 40.672867 ] } }, -{ "type": "Feature", "properties": { "id": 303570, "name": "Sterling Pl/Franklin Av", "direction": "W", "lat": 40.673424, "lon": -73.9574, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.9574, 40.673424 ] } }, -{ "type": "Feature", "properties": { "id": 303572, "name": "Sterling Pl/Washington Av", "direction": "W", "lat": 40.67459, "lon": -73.96298, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96298, 40.67459 ] } }, -{ "type": "Feature", "properties": { "id": 303573, "name": "Washington Av/Prospect Pl", "direction": "N", "lat": 40.676903, "lon": -73.96349, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96349, 40.676903 ] } }, -{ "type": "Feature", "properties": { "id": 303574, "name": "Washington Av/Bergen St", "direction": "N", "lat": 40.678837, "lon": -73.96387, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96387, 40.678837 ] } }, -{ "type": "Feature", "properties": { "id": 303575, "name": "Washington Av/Pacific St", "direction": "N", "lat": 40.68051, "lon": -73.96419, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96419, 40.68051 ] } }, -{ "type": "Feature", "properties": { "id": 303576, "name": "Atlantic Av/Waverly Av", "direction": "W", "lat": 40.681423, "lon": -73.96543, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96543, 40.681423 ] } }, -{ "type": "Feature", "properties": { "id": 303577, "name": "Atlantic Av/Vanderbilt Av", "direction": "W", "lat": 40.682014, "lon": -73.96807, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96807, 40.682014 ] } }, -{ "type": "Feature", "properties": { "id": 303578, "name": "Atlantic Av/Carlton Av", "direction": "W", "lat": 40.68267, "lon": -73.9712, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.9712, 40.68267 ] } }, -{ "type": "Feature", "properties": { "id": 303590, "name": "Utica Av/Fillmore Av", "direction": "N", "lat": 40.614365, "lon": -73.92628, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92628, 40.614365 ] } }, -{ "type": "Feature", "properties": { "id": 303591, "name": "Utica Av/Avenue O", "direction": "N", "lat": 40.616497, "lon": -73.926506, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.926506, 40.616497 ] } }, -{ "type": "Feature", "properties": { "id": 303592, "name": "Utica Av/Avenue N", "direction": "N", "lat": 40.619892, "lon": -73.92683, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.92683, 40.619892 ] } }, -{ "type": "Feature", "properties": { "id": 303593, "name": "Utica Av/Avenue M", "direction": "N", "lat": 40.621674, "lon": -73.927055, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.927055, 40.621674 ] } }, -{ "type": "Feature", "properties": { "id": 303594, "name": "Utica Av/Avenue L", "direction": "N", "lat": 40.623924, "lon": -73.92729, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92729, 40.623924 ] } }, -{ "type": "Feature", "properties": { "id": 303595, "name": "Utica Av/Avenue K", "direction": "N", "lat": 40.625698, "lon": -73.92748, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92748, 40.625698 ] } }, -{ "type": "Feature", "properties": { "id": 303596, "name": "Utica Av/Avenue J", "direction": "N", "lat": 40.628506, "lon": -73.92778, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92778, 40.628506 ] } }, -{ "type": "Feature", "properties": { "id": 303597, "name": "Utica Av/Avenue I", "direction": "N", "lat": 40.630867, "lon": -73.92803, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92803, 40.630867 ] } }, -{ "type": "Feature", "properties": { "id": 303599, "name": "Utica Av/Kings Hwy", "direction": "N", "lat": 40.634045, "lon": -73.92846, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92846, 40.634045 ] } }, -{ "type": "Feature", "properties": { "id": 303601, "name": "Utica Av/Farragut Rd", "direction": "N", "lat": 40.637787, "lon": -73.928764, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.928764, 40.637787 ] } }, -{ "type": "Feature", "properties": { "id": 303602, "name": "Utica Av/Foster Av", "direction": "N", "lat": 40.639706, "lon": -73.92898, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92898, 40.639706 ] } }, -{ "type": "Feature", "properties": { "id": 303603, "name": "Utica Av/Avenue D", "direction": "N", "lat": 40.641743, "lon": -73.92913, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92913, 40.641743 ] } }, -{ "type": "Feature", "properties": { "id": 303604, "name": "Utica Av/Clarendon Rd", "direction": "N", "lat": 40.644814, "lon": -73.92952, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92952, 40.644814 ] } }, -{ "type": "Feature", "properties": { "id": 303605, "name": "Utica Av/Beverly Rd", "direction": "N", "lat": 40.6467, "lon": -73.929726, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.929726, 40.6467 ] } }, -{ "type": "Feature", "properties": { "id": 303606, "name": "Utica Av/Tilden Av", "direction": "N", "lat": 40.648533, "lon": -73.92992, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92992, 40.648533 ] } }, -{ "type": "Feature", "properties": { "id": 303607, "name": "Utica Av/Snyder Av", "direction": "N", "lat": 40.650448, "lon": -73.93012, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93012, 40.650448 ] } }, -{ "type": "Feature", "properties": { "id": 303608, "name": "Utica Av/Church Av", "direction": "N", "lat": 40.651917, "lon": -73.93035, "routes": "B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.93035, 40.651917 ] } }, -{ "type": "Feature", "properties": { "id": 303609, "name": "Utica Av/Linden Blvd", "direction": "N", "lat": 40.65417, "lon": -73.93052, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93052, 40.65417 ] } }, -{ "type": "Feature", "properties": { "id": 303610, "name": "Utica Av/Lenox Rd", "direction": "N", "lat": 40.65569, "lon": -73.93068, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93068, 40.65569 ] } }, -{ "type": "Feature", "properties": { "id": 303612, "name": "Utica Av/Winthrop St", "direction": "N", "lat": 40.65814, "lon": -73.930984, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.930984, 40.65814 ] } }, -{ "type": "Feature", "properties": { "id": 303613, "name": "Utica Av/Rutland Rd", "direction": "N", "lat": 40.66092, "lon": -73.93124, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93124, 40.66092 ] } }, -{ "type": "Feature", "properties": { "id": 303614, "name": "Utica Av/Maple St", "direction": "N", "lat": 40.662403, "lon": -73.9314, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.9314, 40.662403 ] } }, -{ "type": "Feature", "properties": { "id": 303624, "name": "Malcolm X Blvd/Bainbridge St", "direction": "N", "lat": 40.68156, "lon": -73.9287, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.9287, 40.68156 ] } }, -{ "type": "Feature", "properties": { "id": 303625, "name": "Malcolm X Blvd/Halsey St", "direction": "N", "lat": 40.68448, "lon": -73.92929, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.92929, 40.68448 ] } }, -{ "type": "Feature", "properties": { "id": 303626, "name": "Malcolm X Blvd/Putnam Av", "direction": "N", "lat": 40.686684, "lon": -73.929726, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.929726, 40.686684 ] } }, -{ "type": "Feature", "properties": { "id": 303627, "name": "Malcolm X Blvd/Gates Av", "direction": "N", "lat": 40.6889, "lon": -73.93016, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.93016, 40.6889 ] } }, -{ "type": "Feature", "properties": { "id": 303628, "name": "Malcolm X Blvd/Greene Av", "direction": "N", "lat": 40.691048, "lon": -73.93059, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93059, 40.691048 ] } }, -{ "type": "Feature", "properties": { "id": 303629, "name": "Malcolm X Blvd/Lafayette Av", "direction": "N", "lat": 40.692135, "lon": -73.93081, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93081, 40.692135 ] } }, -{ "type": "Feature", "properties": { "id": 303630, "name": "Malcolm X Blvd/De Kalb Av", "direction": "N", "lat": 40.69361, "lon": -73.93109, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93109, 40.69361 ] } }, -{ "type": "Feature", "properties": { "id": 303657, "name": "Broadway/Thornton St", "direction": "SE", "lat": 40.701435, "lon": -73.943214, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.943214, 40.701435 ] } }, -{ "type": "Feature", "properties": { "id": 303658, "name": "Broadway/Flushing Av", "direction": "SE", "lat": 40.700268, "lon": -73.9413, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.9413, 40.700268 ] } }, -{ "type": "Feature", "properties": { "id": 303660, "name": "Broadway/Myrtle Av", "direction": "SE", "lat": 40.696667, "lon": -73.93486, "routes": "B47, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93486, 40.696667 ] } }, -{ "type": "Feature", "properties": { "id": 303662, "name": "Broadway/Malcolm X Blvd", "direction": "SE", "lat": 40.694798, "lon": -73.93152, "routes": "B46, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.93152, 40.694798 ] } }, -{ "type": "Feature", "properties": { "id": 303663, "name": "Malcolm X Blvd/De Kalb Av", "direction": "S", "lat": 40.69311, "lon": -73.931175, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.931175, 40.69311 ] } }, -{ "type": "Feature", "properties": { "id": 303664, "name": "Malcolm X Blvd/Lafayette Av", "direction": "S", "lat": 40.6919, "lon": -73.93093, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93093, 40.6919 ] } }, -{ "type": "Feature", "properties": { "id": 303665, "name": "Malcolm X Blvd/Greene Av", "direction": "S", "lat": 40.690434, "lon": -73.93063, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93063, 40.690434 ] } }, -{ "type": "Feature", "properties": { "id": 303666, "name": "Malcolm X Blvd/Quincy St", "direction": "S", "lat": 40.68895, "lon": -73.93034, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93034, 40.68895 ] } }, -{ "type": "Feature", "properties": { "id": 303667, "name": "Malcolm X Blvd/Madison St", "direction": "S", "lat": 40.686787, "lon": -73.92991, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92991, 40.686787 ] } }, -{ "type": "Feature", "properties": { "id": 303670, "name": "Malcolm X Blvd/Decatur St", "direction": "S", "lat": 40.681625, "lon": -73.92889, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92889, 40.681625 ] } }, -{ "type": "Feature", "properties": { "id": 303672, "name": "Malcolm X Blvd/Fulton St", "direction": "SW", "lat": 40.67942, "lon": -73.929, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.929, 40.67942 ] } }, -{ "type": "Feature", "properties": { "id": 303673, "name": "Utica Av/Atlantic Av", "direction": "S", "lat": 40.67759, "lon": -73.930374, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.930374, 40.67759 ] } }, -{ "type": "Feature", "properties": { "id": 303676, "name": "Utica Av/Prospect Pl", "direction": "S", "lat": 40.672943, "lon": -73.93081, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93081, 40.672943 ] } }, -{ "type": "Feature", "properties": { "id": 303682, "name": "Utica Av/Midwood St", "direction": "S", "lat": 40.66106, "lon": -73.9315, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.9315, 40.66106 ] } }, -{ "type": "Feature", "properties": { "id": 303683, "name": "Utica Av/Winthrop St", "direction": "S", "lat": 40.658047, "lon": -73.93118, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.93118, 40.658047 ] } }, -{ "type": "Feature", "properties": { "id": 303685, "name": "Utica Av/Lenox Rd", "direction": "S", "lat": 40.655003, "lon": -73.930855, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.930855, 40.655003 ] } }, -{ "type": "Feature", "properties": { "id": 303686, "name": "Utica Av/Linden Blvd", "direction": "S", "lat": 40.653458, "lon": -73.93069, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93069, 40.653458 ] } }, -{ "type": "Feature", "properties": { "id": 303687, "name": "Utica Av/Church Av", "direction": "S", "lat": 40.651375, "lon": -73.930466, "routes": "B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.930466, 40.651375 ] } }, -{ "type": "Feature", "properties": { "id": 303688, "name": "Utica Av/Snyder Av", "direction": "S", "lat": 40.649788, "lon": -73.93029, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93029, 40.649788 ] } }, -{ "type": "Feature", "properties": { "id": 303690, "name": "Utica Av/Beverly Rd", "direction": "S", "lat": 40.646023, "lon": -73.92989, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92989, 40.646023 ] } }, -{ "type": "Feature", "properties": { "id": 303691, "name": "Utica Av/Clarendon Rd", "direction": "S", "lat": 40.644096, "lon": -73.92969, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92969, 40.644096 ] } }, -{ "type": "Feature", "properties": { "id": 303692, "name": "Utica Av/Avenue D", "direction": "S", "lat": 40.64172, "lon": -73.929436, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.929436, 40.64172 ] } }, -{ "type": "Feature", "properties": { "id": 303693, "name": "Utica Av/Foster Av", "direction": "S", "lat": 40.63989, "lon": -73.92924, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92924, 40.63989 ] } }, -{ "type": "Feature", "properties": { "id": 303695, "name": "Utica Av/Glenwood Rd", "direction": "S", "lat": 40.634834, "lon": -73.9287, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.9287, 40.634834 ] } }, -{ "type": "Feature", "properties": { "id": 303696, "name": "Utica Av/Avenue H", "direction": "S", "lat": 40.632523, "lon": -73.92846, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.92846, 40.632523 ] } }, -{ "type": "Feature", "properties": { "id": 303697, "name": "Utica Av/Avenue I", "direction": "S", "lat": 40.63008, "lon": -73.928185, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.928185, 40.63008 ] } }, -{ "type": "Feature", "properties": { "id": 303698, "name": "Utica Av/Avenue J", "direction": "S", "lat": 40.62778, "lon": -73.92795, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92795, 40.62778 ] } }, -{ "type": "Feature", "properties": { "id": 303699, "name": "Utica Av/Flatlands Av", "direction": "S", "lat": 40.626324, "lon": -73.92779, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92779, 40.626324 ] } }, -{ "type": "Feature", "properties": { "id": 303700, "name": "Utica Av/Avenue L", "direction": "S", "lat": 40.62318, "lon": -73.92745, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92745, 40.62318 ] } }, -{ "type": "Feature", "properties": { "id": 303701, "name": "Utica Av/Avenue M", "direction": "S", "lat": 40.621044, "lon": -73.92722, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92722, 40.621044 ] } }, -{ "type": "Feature", "properties": { "id": 303702, "name": "Utica Av/Avenue N", "direction": "S", "lat": 40.618576, "lon": -73.92696, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92696, 40.618576 ] } }, -{ "type": "Feature", "properties": { "id": 303703, "name": "Utica Av/Avenue O", "direction": "S", "lat": 40.616722, "lon": -73.926765, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.926765, 40.616722 ] } }, -{ "type": "Feature", "properties": { "id": 303704, "name": "Utica Av/Fillmore Av", "direction": "S", "lat": 40.61458, "lon": -73.92654, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92654, 40.61458 ] } }, -{ "type": "Feature", "properties": { "id": 303710, "name": "Empire Blvd/Washington Av", "direction": "E", "lat": 40.663204, "lon": -73.9611, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.9611, 40.663204 ] } }, -{ "type": "Feature", "properties": { "id": 303711, "name": "Empire Blvd/Bedford Av", "direction": "E", "lat": 40.663506, "lon": -73.95684, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95684, 40.663506 ] } }, -{ "type": "Feature", "properties": { "id": 303712, "name": "Empire Blvd/Rogers Av", "direction": "E", "lat": 40.663662, "lon": -73.953995, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.953995, 40.663662 ] } }, -{ "type": "Feature", "properties": { "id": 303713, "name": "Empire Blvd/Nostrand Av", "direction": "E", "lat": 40.66384, "lon": -73.95053, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95053, 40.66384 ] } }, -{ "type": "Feature", "properties": { "id": 303714, "name": "Empire Blvd/New York Av", "direction": "E", "lat": 40.66402, "lon": -73.947655, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.947655, 40.66402 ] } }, -{ "type": "Feature", "properties": { "id": 303717, "name": "Kingston Av/Montgomery St", "direction": "N", "lat": 40.66527, "lon": -73.94251, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94251, 40.66527 ] } }, -{ "type": "Feature", "properties": { "id": 303718, "name": "Kingston Av/Carroll St", "direction": "N", "lat": 40.66701, "lon": -73.942345, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.942345, 40.66701 ] } }, -{ "type": "Feature", "properties": { "id": 303720, "name": "Kingston Av/Saint Johns Pl", "direction": "N", "lat": 40.671516, "lon": -73.94193, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94193, 40.671516 ] } }, -{ "type": "Feature", "properties": { "id": 303722, "name": "Kingston Av/Prospect Pl", "direction": "N", "lat": 40.67418, "lon": -73.94168, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94168, 40.67418 ] } }, -{ "type": "Feature", "properties": { "id": 303723, "name": "Kingston Av/Bergen St", "direction": "N", "lat": 40.675964, "lon": -73.94151, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94151, 40.675964 ] } }, -{ "type": "Feature", "properties": { "id": 303724, "name": "Kingston Av/Pacific St", "direction": "N", "lat": 40.677498, "lon": -73.94137, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94137, 40.677498 ] } }, -{ "type": "Feature", "properties": { "id": 303725, "name": "Kingston Av/Atlantic Av", "direction": "N", "lat": 40.678364, "lon": -73.941284, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.941284, 40.678364 ] } }, -{ "type": "Feature", "properties": { "id": 303726, "name": "Kingston Av/Fulton St", "direction": "N", "lat": 40.679825, "lon": -73.941154, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.941154, 40.679825 ] } }, -{ "type": "Feature", "properties": { "id": 303727, "name": "Throop Av/Fulton St", "direction": "N", "lat": 40.680206, "lon": -73.94033, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94033, 40.680206 ] } }, -{ "type": "Feature", "properties": { "id": 303728, "name": "Throop Av/Macdonough St", "direction": "N", "lat": 40.68167, "lon": -73.94061, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94061, 40.68167 ] } }, -{ "type": "Feature", "properties": { "id": 303729, "name": "Throop Av/Halsey St", "direction": "N", "lat": 40.682743, "lon": -73.940834, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.940834, 40.682743 ] } }, -{ "type": "Feature", "properties": { "id": 303730, "name": "Throop Av/Jefferson Av", "direction": "N", "lat": 40.68459, "lon": -73.94119, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94119, 40.68459 ] } }, -{ "type": "Feature", "properties": { "id": 303731, "name": "Throop Av/Madison St", "direction": "N", "lat": 40.686085, "lon": -73.94149, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94149, 40.686085 ] } }, -{ "type": "Feature", "properties": { "id": 303732, "name": "Throop Av/Gates Av", "direction": "N", "lat": 40.68756, "lon": -73.94178, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94178, 40.68756 ] } }, -{ "type": "Feature", "properties": { "id": 303733, "name": "Throop Av/Greene Av", "direction": "N", "lat": 40.689735, "lon": -73.94221, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94221, 40.689735 ] } }, -{ "type": "Feature", "properties": { "id": 303734, "name": "Throop Av/Lafayette Av", "direction": "N", "lat": 40.690792, "lon": -73.94242, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94242, 40.690792 ] } }, -{ "type": "Feature", "properties": { "id": 303735, "name": "Throop Av/De Kalb Av", "direction": "N", "lat": 40.69265, "lon": -73.94279, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94279, 40.69265 ] } }, -{ "type": "Feature", "properties": { "id": 303736, "name": "Throop Av/Hart St", "direction": "N", "lat": 40.694096, "lon": -73.94308, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94308, 40.694096 ] } }, -{ "type": "Feature", "properties": { "id": 303737, "name": "Throop Av/Myrtle Av", "direction": "N", "lat": 40.696365, "lon": -73.94356, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94356, 40.696365 ] } }, -{ "type": "Feature", "properties": { "id": 303738, "name": "Throop Av/Park Av", "direction": "N", "lat": 40.698563, "lon": -73.943924, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.943924, 40.698563 ] } }, -{ "type": "Feature", "properties": { "id": 303762, "name": "Tompkins Av/Flushing Av", "direction": "S", "lat": 40.699764, "lon": -73.94725, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94725, 40.699764 ] } }, -{ "type": "Feature", "properties": { "id": 303764, "name": "Tompkins Av/Martin Luther King Jr Pl", "direction": "S", "lat": 40.69687, "lon": -73.94667, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94667, 40.69687 ] } }, -{ "type": "Feature", "properties": { "id": 303765, "name": "Tompkins Av/Myrtle Av", "direction": "S", "lat": 40.69538, "lon": -73.94638, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94638, 40.69538 ] } }, -{ "type": "Feature", "properties": { "id": 303766, "name": "Tompkins Av/Willoughby Av", "direction": "S", "lat": 40.693905, "lon": -73.94608, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94608, 40.693905 ] } }, -{ "type": "Feature", "properties": { "id": 303769, "name": "Tompkins Av/Lafayette Av", "direction": "S", "lat": 40.690258, "lon": -73.94535, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94535, 40.690258 ] } }, -{ "type": "Feature", "properties": { "id": 303770, "name": "Tompkins Av/Greene Av", "direction": "S", "lat": 40.688725, "lon": -73.94505, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94505, 40.688725 ] } }, -{ "type": "Feature", "properties": { "id": 303771, "name": "Tompkins Av/Gates Av", "direction": "S", "lat": 40.686638, "lon": -73.94464, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94464, 40.686638 ] } }, -{ "type": "Feature", "properties": { "id": 303774, "name": "Tompkins Av/Halsey St", "direction": "S", "lat": 40.682205, "lon": -73.943756, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.943756, 40.682205 ] } }, -{ "type": "Feature", "properties": { "id": 303776, "name": "Tompkins Av/Fulton St", "direction": "S", "lat": 40.680153, "lon": -73.94335, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94335, 40.680153 ] } }, -{ "type": "Feature", "properties": { "id": 303777, "name": "Brooklyn Av/Fulton St", "direction": "S", "lat": 40.67976, "lon": -73.94408, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94408, 40.67976 ] } }, -{ "type": "Feature", "properties": { "id": 303778, "name": "Brooklyn Av/Atlantic Av", "direction": "S", "lat": 40.67776, "lon": -73.94427, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94427, 40.67776 ] } }, -{ "type": "Feature", "properties": { "id": 303779, "name": "Brooklyn Av/Bergen St", "direction": "S", "lat": 40.67548, "lon": -73.94448, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94448, 40.67548 ] } }, -{ "type": "Feature", "properties": { "id": 303780, "name": "Brooklyn Av/Park Pl", "direction": "S", "lat": 40.672802, "lon": -73.94473, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94473, 40.672802 ] } }, -{ "type": "Feature", "properties": { "id": 303781, "name": "Brooklyn Av/Saint Johns Pl", "direction": "S", "lat": 40.670994, "lon": -73.9449, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.9449, 40.670994 ] } }, -{ "type": "Feature", "properties": { "id": 303782, "name": "Brooklyn Av/Eastern Pkwy", "direction": "S", "lat": 40.669857, "lon": -73.94501, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94501, 40.669857 ] } }, -{ "type": "Feature", "properties": { "id": 303783, "name": "Brooklyn Av/Union St", "direction": "S", "lat": 40.668304, "lon": -73.945145, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.945145, 40.668304 ] } }, -{ "type": "Feature", "properties": { "id": 303784, "name": "Brooklyn Av/Carroll St", "direction": "S", "lat": 40.666576, "lon": -73.94532, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94532, 40.666576 ] } }, -{ "type": "Feature", "properties": { "id": 303785, "name": "Brooklyn Av/Montgomery St", "direction": "S", "lat": 40.664818, "lon": -73.94548, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94548, 40.664818 ] } }, -{ "type": "Feature", "properties": { "id": 303786, "name": "Empire Blvd/Brooklyn Av", "direction": "W", "lat": 40.66426, "lon": -73.94579, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94579, 40.66426 ] } }, -{ "type": "Feature", "properties": { "id": 303787, "name": "Empire Blvd/New York Av", "direction": "W", "lat": 40.66414, "lon": -73.94865, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94865, 40.66414 ] } }, -{ "type": "Feature", "properties": { "id": 303788, "name": "Empire Blvd/Nostrand Av", "direction": "W", "lat": 40.663963, "lon": -73.95141, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95141, 40.663963 ] } }, -{ "type": "Feature", "properties": { "id": 303789, "name": "Empire Blvd/Rogers Av", "direction": "W", "lat": 40.66375, "lon": -73.953766, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.953766, 40.66375 ] } }, -{ "type": "Feature", "properties": { "id": 303791, "name": "Washington Av/Empire Blvd", "direction": "S", "lat": 40.6631, "lon": -73.96097, "routes": "B48, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.96097, 40.6631 ] } }, -{ "type": "Feature", "properties": { "id": 303796, "name": "Classon Av/President St", "direction": "N", "lat": 40.669926, "lon": -73.96179, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96179, 40.669926 ] } }, -{ "type": "Feature", "properties": { "id": 303798, "name": "Classon Av/Saint Johns Pl", "direction": "N", "lat": 40.67298, "lon": -73.96069, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96069, 40.67298 ] } }, -{ "type": "Feature", "properties": { "id": 303799, "name": "Classon Av/Sterling Pl", "direction": "N", "lat": 40.674274, "lon": -73.96022, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96022, 40.674274 ] } }, -{ "type": "Feature", "properties": { "id": 303800, "name": "Classon Av/Prospect Pl", "direction": "N", "lat": 40.676037, "lon": -73.95959, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95959, 40.676037 ] } }, -{ "type": "Feature", "properties": { "id": 303801, "name": "Classon Av/Bergen St", "direction": "N", "lat": 40.677814, "lon": -73.95895, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95895, 40.677814 ] } }, -{ "type": "Feature", "properties": { "id": 303802, "name": "Classon Av/Atlantic Av", "direction": "N", "lat": 40.67959, "lon": -73.958305, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.958305, 40.67959 ] } }, -{ "type": "Feature", "properties": { "id": 303803, "name": "Classon Av/Fulton St", "direction": "N", "lat": 40.68166, "lon": -73.958534, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.958534, 40.68166 ] } }, -{ "type": "Feature", "properties": { "id": 303804, "name": "Classon Av/Putnam Av", "direction": "N", "lat": 40.682903, "lon": -73.95875, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95875, 40.682903 ] } }, -{ "type": "Feature", "properties": { "id": 303808, "name": "Classon Av/Lafayette Av", "direction": "N", "lat": 40.688774, "lon": -73.959915, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.959915, 40.688774 ] } }, -{ "type": "Feature", "properties": { "id": 303809, "name": "Classon Av/De Kalb Av", "direction": "N", "lat": 40.69065, "lon": -73.96027, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96027, 40.69065 ] } }, -{ "type": "Feature", "properties": { "id": 303810, "name": "Classon Av/Willoughby Av", "direction": "N", "lat": 40.692806, "lon": -73.96076, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96076, 40.692806 ] } }, -{ "type": "Feature", "properties": { "id": 303811, "name": "Classon Av/Myrtle Av", "direction": "N", "lat": 40.693905, "lon": -73.961006, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.961006, 40.693905 ] } }, -{ "type": "Feature", "properties": { "id": 303813, "name": "Classon Av/Flushing Av", "direction": "N", "lat": 40.698574, "lon": -73.96173, "routes": "B62, B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96173, 40.698574 ] } }, -{ "type": "Feature", "properties": { "id": 303814, "name": "Wallabout St/Franklin Av", "direction": "E", "lat": 40.699333, "lon": -73.95914, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95914, 40.699333 ] } }, -{ "type": "Feature", "properties": { "id": 303815, "name": "Lorimer St/Lee Av", "direction": "NE", "lat": 40.700397, "lon": -73.95346, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95346, 40.700397 ] } }, -{ "type": "Feature", "properties": { "id": 303816, "name": "Lorimer St/Marcy Av", "direction": "NE", "lat": 40.701668, "lon": -73.951515, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.951515, 40.701668 ] } }, -{ "type": "Feature", "properties": { "id": 303817, "name": "Lorimer St/Harrison Av", "direction": "NE", "lat": 40.702892, "lon": -73.94963, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94963, 40.702892 ] } }, -{ "type": "Feature", "properties": { "id": 303818, "name": "Lorimer St/Broadway", "direction": "NE", "lat": 40.703995, "lon": -73.947914, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.947914, 40.703995 ] } }, -{ "type": "Feature", "properties": { "id": 303819, "name": "Lorimer St/Boerum St", "direction": "N", "lat": 40.705788, "lon": -73.94794, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94794, 40.705788 ] } }, -{ "type": "Feature", "properties": { "id": 303820, "name": "Lorimer St/Meserole St", "direction": "N", "lat": 40.7079, "lon": -73.94828, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94828, 40.7079 ] } }, -{ "type": "Feature", "properties": { "id": 303821, "name": "Lorimer St/Stagg St", "direction": "N", "lat": 40.70931, "lon": -73.94852, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94852, 40.70931 ] } }, -{ "type": "Feature", "properties": { "id": 303823, "name": "Lorimer St/Grand St", "direction": "N", "lat": 40.711315, "lon": -73.94884, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94884, 40.711315 ] } }, -{ "type": "Feature", "properties": { "id": 303824, "name": "Lorimer St/Powers St", "direction": "N", "lat": 40.712204, "lon": -73.949, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.949, 40.712204 ] } }, -{ "type": "Feature", "properties": { "id": 303825, "name": "Lorimer St/Devoe St", "direction": "N", "lat": 40.713627, "lon": -73.94923, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94923, 40.713627 ] } }, -{ "type": "Feature", "properties": { "id": 303826, "name": "Lorimer St/Conselyea St", "direction": "N", "lat": 40.71501, "lon": -73.949455, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.949455, 40.71501 ] } }, -{ "type": "Feature", "properties": { "id": 303827, "name": "Lorimer St/Jackson St", "direction": "N", "lat": 40.71609, "lon": -73.94963, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94963, 40.71609 ] } }, -{ "type": "Feature", "properties": { "id": 303828, "name": "Lorimer St/Frost St", "direction": "N", "lat": 40.717896, "lon": -73.94993, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94993, 40.717896 ] } }, -{ "type": "Feature", "properties": { "id": 303829, "name": "Lorimer St/Bayard St", "direction": "N", "lat": 40.719414, "lon": -73.95022, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95022, 40.719414 ] } }, -{ "type": "Feature", "properties": { "id": 303830, "name": "Lorimer St/Driggs Av", "direction": "N", "lat": 40.721634, "lon": -73.95054, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95054, 40.721634 ] } }, -{ "type": "Feature", "properties": { "id": 303831, "name": "Lorimer St/Nassau Av", "direction": "NW", "lat": 40.723404, "lon": -73.95152, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95152, 40.723404 ] } }, -{ "type": "Feature", "properties": { "id": 303833, "name": "Nassau Av/Mcguinness Blvd", "direction": "E", "lat": 40.72446, "lon": -73.94841, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94841, 40.72446 ] } }, -{ "type": "Feature", "properties": { "id": 303835, "name": "Nassau Av/Humboldt St", "direction": "E", "lat": 40.725372, "lon": -73.94572, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94572, 40.725372 ] } }, -{ "type": "Feature", "properties": { "id": 303837, "name": "Nassau Av/Monitor St", "direction": "E", "lat": 40.725758, "lon": -73.94234, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94234, 40.725758 ] } }, -{ "type": "Feature", "properties": { "id": 303844, "name": "Nassau Av/Hausman St", "direction": "W", "lat": 40.726185, "lon": -73.93911, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.93911, 40.726185 ] } }, -{ "type": "Feature", "properties": { "id": 303845, "name": "Nassau Av/Kingsland Av", "direction": "W", "lat": 40.725925, "lon": -73.94203, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94203, 40.725925 ] } }, -{ "type": "Feature", "properties": { "id": 303847, "name": "Nassau Av/Humboldt St", "direction": "W", "lat": 40.725594, "lon": -73.94533, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94533, 40.725594 ] } }, -{ "type": "Feature", "properties": { "id": 303848, "name": "Nassau Av/Newel St", "direction": "W", "lat": 40.724842, "lon": -73.94766, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94766, 40.724842 ] } }, -{ "type": "Feature", "properties": { "id": 303849, "name": "Nassau Av/Eckford St", "direction": "W", "lat": 40.724304, "lon": -73.949234, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.949234, 40.724304 ] } }, -{ "type": "Feature", "properties": { "id": 303850, "name": "Nassau Av/Manhattan Av", "direction": "W", "lat": 40.723854, "lon": -73.95066, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95066, 40.723854 ] } }, -{ "type": "Feature", "properties": { "id": 303852, "name": "Lorimer St/Bayard St", "direction": "S", "lat": 40.71913, "lon": -73.950264, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.950264, 40.71913 ] } }, -{ "type": "Feature", "properties": { "id": 303853, "name": "Lorimer St/Meeker Av", "direction": "S", "lat": 40.716995, "lon": -73.94992, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94992, 40.716995 ] } }, -{ "type": "Feature", "properties": { "id": 303854, "name": "Lorimer St/Skillman Av", "direction": "S", "lat": 40.715157, "lon": -73.9496, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.9496, 40.715157 ] } }, -{ "type": "Feature", "properties": { "id": 303855, "name": "Lorimer St/Metropolitan Av", "direction": "S", "lat": 40.713722, "lon": -73.94936, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94936, 40.713722 ] } }, -{ "type": "Feature", "properties": { "id": 303856, "name": "Lorimer St/Ainslie St", "direction": "S", "lat": 40.712315, "lon": -73.94915, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94915, 40.712315 ] } }, -{ "type": "Feature", "properties": { "id": 303857, "name": "Lorimer St/Grand St", "direction": "S", "lat": 40.71101, "lon": -73.94892, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94892, 40.71101 ] } }, -{ "type": "Feature", "properties": { "id": 303858, "name": "Lorimer St/Ten Eyck St", "direction": "S", "lat": 40.709396, "lon": -73.94868, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94868, 40.709396 ] } }, -{ "type": "Feature", "properties": { "id": 303859, "name": "Lorimer St/Meserole St", "direction": "S", "lat": 40.707287, "lon": -73.948326, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.948326, 40.707287 ] } }, -{ "type": "Feature", "properties": { "id": 303860, "name": "Lorimer St/Montrose Av", "direction": "S", "lat": 40.705948, "lon": -73.94813, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94813, 40.705948 ] } }, -{ "type": "Feature", "properties": { "id": 303861, "name": "Lorimer St/Broadway", "direction": "S", "lat": 40.704525, "lon": -73.94788, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94788, 40.704525 ] } }, -{ "type": "Feature", "properties": { "id": 303862, "name": "Lorimer St/Harrison Av", "direction": "SW", "lat": 40.702816, "lon": -73.94992, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.94992, 40.702816 ] } }, -{ "type": "Feature", "properties": { "id": 303863, "name": "Lorimer St/Marcy Av", "direction": "SW", "lat": 40.701572, "lon": -73.95185, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95185, 40.701572 ] } }, -{ "type": "Feature", "properties": { "id": 303864, "name": "Lorimer St/Lee Av", "direction": "SW", "lat": 40.70032, "lon": -73.95379, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95379, 40.70032 ] } }, -{ "type": "Feature", "properties": { "id": 303865, "name": "Wallabout St/Bedford Av", "direction": "W", "lat": 40.69976, "lon": -73.95704, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95704, 40.69976 ] } }, -{ "type": "Feature", "properties": { "id": 303866, "name": "Wallabout St/Wythe Av", "direction": "W", "lat": 40.699467, "lon": -73.95889, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95889, 40.699467 ] } }, -{ "type": "Feature", "properties": { "id": 303868, "name": "Franklin Av/Park Av", "direction": "S", "lat": 40.696236, "lon": -73.95842, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95842, 40.696236 ] } }, -{ "type": "Feature", "properties": { "id": 303869, "name": "Franklin Av/Myrtle Av", "direction": "S", "lat": 40.694016, "lon": -73.95797, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95797, 40.694016 ] } }, -{ "type": "Feature", "properties": { "id": 303870, "name": "Franklin Av/Willoughby Av", "direction": "S", "lat": 40.692455, "lon": -73.957664, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.957664, 40.692455 ] } }, -{ "type": "Feature", "properties": { "id": 303871, "name": "Franklin Av/De Kalb Av", "direction": "S", "lat": 40.69033, "lon": -73.95725, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95725, 40.69033 ] } }, -{ "type": "Feature", "properties": { "id": 303872, "name": "Franklin Av/Lafayette Av", "direction": "SW", "lat": 40.689312, "lon": -73.957214, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.957214, 40.689312 ] } }, -{ "type": "Feature", "properties": { "id": 303874, "name": "Franklin Av/Gates Av", "direction": "S", "lat": 40.685646, "lon": -73.956635, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.956635, 40.685646 ] } }, -{ "type": "Feature", "properties": { "id": 303875, "name": "Franklin Av/Madison St", "direction": "S", "lat": 40.68374, "lon": -73.956245, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.956245, 40.68374 ] } }, -{ "type": "Feature", "properties": { "id": 303876, "name": "Franklin Av/Putnam Av", "direction": "S", "lat": 40.682957, "lon": -73.95609, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95609, 40.682957 ] } }, -{ "type": "Feature", "properties": { "id": 303878, "name": "Franklin Av/Atlantic Av", "direction": "S", "lat": 40.678802, "lon": -73.955284, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.955284, 40.678802 ] } }, -{ "type": "Feature", "properties": { "id": 303880, "name": "Franklin Av/Bergen St", "direction": "S", "lat": 40.67693, "lon": -73.95576, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95576, 40.67693 ] } }, -{ "type": "Feature", "properties": { "id": 303881, "name": "Franklin Av/Prospect Pl", "direction": "S", "lat": 40.67476, "lon": -73.956535, "routes": "B48, B101" }, "geometry": { "type": "Point", "coordinates": [ -73.956535, 40.67476 ] } }, -{ "type": "Feature", "properties": { "id": 303882, "name": "Franklin Av/Sterling Pl", "direction": "S", "lat": 40.673405, "lon": -73.957016, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.957016, 40.673405 ] } }, -{ "type": "Feature", "properties": { "id": 303883, "name": "Franklin Av/Saint Johns Pl", "direction": "S", "lat": 40.6721, "lon": -73.9575, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.9575, 40.6721 ] } }, -{ "type": "Feature", "properties": { "id": 303884, "name": "Franklin Av/Eastern Pkwy", "direction": "S", "lat": 40.670963, "lon": -73.95794, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95794, 40.670963 ] } }, -{ "type": "Feature", "properties": { "id": 303885, "name": "Franklin Av/Union St", "direction": "S", "lat": 40.6695, "lon": -73.95844, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95844, 40.6695 ] } }, -{ "type": "Feature", "properties": { "id": 303886, "name": "Franklin Av/Carroll St", "direction": "S", "lat": 40.667706, "lon": -73.95908, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95908, 40.667706 ] } }, -{ "type": "Feature", "properties": { "id": 303887, "name": "Franklin Av/Montgomery St", "direction": "SW", "lat": 40.66596, "lon": -73.95972, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95972, 40.66596 ] } }, -{ "type": "Feature", "properties": { "id": 303888, "name": "Sullivan Pl/Washington Av", "direction": "W", "lat": 40.664124, "lon": -73.96092, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96092, 40.664124 ] } }, -{ "type": "Feature", "properties": { "id": 303901, "name": "West End Av/Hampton Av", "direction": "N", "lat": 40.579575, "lon": -73.95331, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95331, 40.579575 ] } }, -{ "type": "Feature", "properties": { "id": 303902, "name": "West End Av/Shore Blvd", "direction": "N", "lat": 40.58162, "lon": -73.95369, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95369, 40.58162 ] } }, -{ "type": "Feature", "properties": { "id": 303903, "name": "Shore Blvd/Emmons Av", "direction": "N", "lat": 40.582935, "lon": -73.95393, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95393, 40.582935 ] } }, -{ "type": "Feature", "properties": { "id": 303911, "name": "Ocean Av/Avenue Z", "direction": "N", "lat": 40.588852, "lon": -73.94928, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94928, 40.588852 ] } }, -{ "type": "Feature", "properties": { "id": 303912, "name": "Ocean Av/Avenue Y", "direction": "N", "lat": 40.590973, "lon": -73.94968, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94968, 40.590973 ] } }, -{ "type": "Feature", "properties": { "id": 303913, "name": "Ocean Av/Avenue X", "direction": "N", "lat": 40.593075, "lon": -73.95008, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95008, 40.593075 ] } }, -{ "type": "Feature", "properties": { "id": 303914, "name": "Ocean Av/Avenue W", "direction": "N", "lat": 40.59518, "lon": -73.95048, "routes": "B49, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.95048, 40.59518 ] } }, -{ "type": "Feature", "properties": { "id": 303915, "name": "Ocean Av/Avenue V", "direction": "N", "lat": 40.5976, "lon": -73.950935, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.950935, 40.5976 ] } }, -{ "type": "Feature", "properties": { "id": 303916, "name": "Ocean Av/Avenue U", "direction": "N", "lat": 40.599712, "lon": -73.95134, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95134, 40.599712 ] } }, -{ "type": "Feature", "properties": { "id": 303917, "name": "Ocean Av/Avenue T", "direction": "N", "lat": 40.602566, "lon": -73.951904, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.951904, 40.602566 ] } }, -{ "type": "Feature", "properties": { "id": 303918, "name": "Ocean Av/Avenue S", "direction": "N", "lat": 40.604355, "lon": -73.95222, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95222, 40.604355 ] } }, -{ "type": "Feature", "properties": { "id": 303919, "name": "Ocean Av/Avenue R", "direction": "N", "lat": 40.606667, "lon": -73.95265, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95265, 40.606667 ] } }, -{ "type": "Feature", "properties": { "id": 303920, "name": "Ocean Av/Quentin Rd", "direction": "N", "lat": 40.60913, "lon": -73.953125, "routes": "B49, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.953125, 40.60913 ] } }, -{ "type": "Feature", "properties": { "id": 303921, "name": "Ocean Av/Kings Hwy", "direction": "N", "lat": 40.610607, "lon": -73.953476, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.953476, 40.610607 ] } }, -{ "type": "Feature", "properties": { "id": 303922, "name": "Ocean Av/Avenue O", "direction": "N", "lat": 40.613865, "lon": -73.95402, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95402, 40.613865 ] } }, -{ "type": "Feature", "properties": { "id": 303923, "name": "Ocean Av/Avenue N", "direction": "N", "lat": 40.616497, "lon": -73.95451, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95451, 40.616497 ] } }, -{ "type": "Feature", "properties": { "id": 303926, "name": "Ocean Av/Avenue K", "direction": "N", "lat": 40.62368, "lon": -73.95587, "routes": "BM3, B49, BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.95587, 40.62368 ] } }, -{ "type": "Feature", "properties": { "id": 303927, "name": "Ocean Av/Avenue J", "direction": "N", "lat": 40.62608, "lon": -73.95632, "routes": "BM4, BM3, BM1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95632, 40.62608 ] } }, -{ "type": "Feature", "properties": { "id": 303928, "name": "Ocean Av/Avenue I", "direction": "N", "lat": 40.628017, "lon": -73.956696, "routes": "B49, BM4, BM1, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.956696, 40.628017 ] } }, -{ "type": "Feature", "properties": { "id": 303929, "name": "Ocean Av/Avenue H", "direction": "N", "lat": 40.630833, "lon": -73.95722, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95722, 40.630833 ] } }, -{ "type": "Feature", "properties": { "id": 303930, "name": "Ocean Av/Glenwood Rd", "direction": "N", "lat": 40.633194, "lon": -73.95768, "routes": "BM3, BM1, B49, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.95768, 40.633194 ] } }, -{ "type": "Feature", "properties": { "id": 303931, "name": "Ocean Av/Farragut Rd", "direction": "N", "lat": 40.635178, "lon": -73.958046, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.958046, 40.635178 ] } }, -{ "type": "Feature", "properties": { "id": 303937, "name": "Rogers Av/Avenue D", "direction": "N", "lat": 40.641106, "lon": -73.95136, "routes": "B44+, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95136, 40.641106 ] } }, -{ "type": "Feature", "properties": { "id": 303938, "name": "Rogers Av/Clarendon Rd", "direction": "N", "lat": 40.643414, "lon": -73.95161, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95161, 40.643414 ] } }, -{ "type": "Feature", "properties": { "id": 303939, "name": "Rogers Av/Beverley Rd", "direction": "N", "lat": 40.645298, "lon": -73.95181, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95181, 40.645298 ] } }, -{ "type": "Feature", "properties": { "id": 303940, "name": "Rogers Av/Tilden Av", "direction": "N", "lat": 40.647083, "lon": -73.952, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.952, 40.647083 ] } }, -{ "type": "Feature", "properties": { "id": 303942, "name": "Rogers Av/Church Av", "direction": "N", "lat": 40.651173, "lon": -73.95244, "routes": "B49, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.95244, 40.651173 ] } }, -{ "type": "Feature", "properties": { "id": 303943, "name": "Rogers Av/Linden Blvd", "direction": "N", "lat": 40.65282, "lon": -73.952614, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.952614, 40.65282 ] } }, -{ "type": "Feature", "properties": { "id": 303944, "name": "Rogers Av/Lenox Rd", "direction": "N", "lat": 40.65427, "lon": -73.952774, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.952774, 40.65427 ] } }, -{ "type": "Feature", "properties": { "id": 303945, "name": "Rogers Av/Clarkson Av", "direction": "N", "lat": 40.65552, "lon": -73.9529, "routes": "B49, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.9529, 40.65552 ] } }, -{ "type": "Feature", "properties": { "id": 303946, "name": "Rogers Av/Winthrop St", "direction": "N", "lat": 40.657227, "lon": -73.95309, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95309, 40.657227 ] } }, -{ "type": "Feature", "properties": { "id": 303947, "name": "Rogers Av/Fenimore St", "direction": "N", "lat": 40.65883, "lon": -73.95326, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95326, 40.65883 ] } }, -{ "type": "Feature", "properties": { "id": 303948, "name": "Rogers Av/Midwood St", "direction": "N", "lat": 40.659836, "lon": -73.95336, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95336, 40.659836 ] } }, -{ "type": "Feature", "properties": { "id": 303949, "name": "Rogers Av/Lincoln Rd", "direction": "N", "lat": 40.66164, "lon": -73.95355, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95355, 40.66164 ] } }, -{ "type": "Feature", "properties": { "id": 303950, "name": "Rogers Av/Empire Blvd", "direction": "N", "lat": 40.663628, "lon": -73.95375, "routes": "B44+, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95375, 40.663628 ] } }, -{ "type": "Feature", "properties": { "id": 303951, "name": "Rogers Av/Montgomery St", "direction": "N", "lat": 40.665855, "lon": -73.95359, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95359, 40.665855 ] } }, -{ "type": "Feature", "properties": { "id": 303953, "name": "Rogers Av/Carroll St", "direction": "N", "lat": 40.66764, "lon": -73.95343, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95343, 40.66764 ] } }, -{ "type": "Feature", "properties": { "id": 303954, "name": "Rogers Av/President St", "direction": "N", "lat": 40.668545, "lon": -73.95334, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95334, 40.668545 ] } }, -{ "type": "Feature", "properties": { "id": 303955, "name": "Rogers Av/Eastern Pkwy", "direction": "N", "lat": 40.669674, "lon": -73.95323, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95323, 40.669674 ] } }, -{ "type": "Feature", "properties": { "id": 303956, "name": "Rogers Av/Saint Johns Pl", "direction": "N", "lat": 40.67206, "lon": -73.952995, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.952995, 40.67206 ] } }, -{ "type": "Feature", "properties": { "id": 303957, "name": "Rogers Av/Park Pl", "direction": "N", "lat": 40.673885, "lon": -73.95283, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95283, 40.673885 ] } }, -{ "type": "Feature", "properties": { "id": 303958, "name": "Rogers Av/St Marks Av", "direction": "N", "lat": 40.6756, "lon": -73.95267, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95267, 40.6756 ] } }, -{ "type": "Feature", "properties": { "id": 303959, "name": "Bedford Av/Dean St", "direction": "N", "lat": 40.67736, "lon": -73.95263, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95263, 40.67736 ] } }, -{ "type": "Feature", "properties": { "id": 303960, "name": "Bedford Av/Atlantic Av", "direction": "N", "lat": 40.679153, "lon": -73.95297, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95297, 40.679153 ] } }, -{ "type": "Feature", "properties": { "id": 303966, "name": "Dean St/Franklin Av", "direction": "E", "lat": 40.677433, "lon": -73.95506, "routes": "B65, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95506, 40.677433 ] } }, -{ "type": "Feature", "properties": { "id": 303967, "name": "Dean St/Bedford Av", "direction": "E", "lat": 40.676987, "lon": -73.952934, "routes": "B65, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.952934, 40.676987 ] } }, -{ "type": "Feature", "properties": { "id": 303968, "name": "Bedford Av/Bergen St", "direction": "S", "lat": 40.675964, "lon": -73.95326, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95326, 40.675964 ] } }, -{ "type": "Feature", "properties": { "id": 303969, "name": "Bedford Av/Prospect Pl", "direction": "S", "lat": 40.674236, "lon": -73.95388, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95388, 40.674236 ] } }, -{ "type": "Feature", "properties": { "id": 303970, "name": "Bedford Av/Sterling Pl", "direction": "S", "lat": 40.672863, "lon": -73.954384, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.954384, 40.672863 ] } }, -{ "type": "Feature", "properties": { "id": 303971, "name": "Bedford Av/Saint Johns Pl", "direction": "S", "lat": 40.671543, "lon": -73.95486, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95486, 40.671543 ] } }, -{ "type": "Feature", "properties": { "id": 303972, "name": "Bedford Av/Eastern Pkwy", "direction": "S", "lat": 40.67042, "lon": -73.95527, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95527, 40.67042 ] } }, -{ "type": "Feature", "properties": { "id": 303974, "name": "Bedford Av/Carroll St", "direction": "S", "lat": 40.667206, "lon": -73.95643, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95643, 40.667206 ] } }, -{ "type": "Feature", "properties": { "id": 303975, "name": "Bedford Av/Montgomery St", "direction": "S", "lat": 40.665413, "lon": -73.95707, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95707, 40.665413 ] } }, -{ "type": "Feature", "properties": { "id": 303976, "name": "Bedford Av/Empire Blvd", "direction": "S", "lat": 40.662983, "lon": -73.957275, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.957275, 40.662983 ] } }, -{ "type": "Feature", "properties": { "id": 303977, "name": "Bedford Av/Lefferts Av", "direction": "S", "lat": 40.661625, "lon": -73.95709, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95709, 40.661625 ] } }, -{ "type": "Feature", "properties": { "id": 303978, "name": "Bedford Av/Maple St", "direction": "S", "lat": 40.66017, "lon": -73.95691, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95691, 40.66017 ] } }, -{ "type": "Feature", "properties": { "id": 303979, "name": "Bedford Av/Rutland Rd", "direction": "S", "lat": 40.65872, "lon": -73.95678, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95678, 40.65872 ] } }, -{ "type": "Feature", "properties": { "id": 303981, "name": "Bedford Av/Parkside Av", "direction": "S", "lat": 40.65554, "lon": -73.95644, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95644, 40.65554 ] } }, -{ "type": "Feature", "properties": { "id": 303982, "name": "Bedford Av/Clarkson Av", "direction": "S", "lat": 40.654713, "lon": -73.95635, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95635, 40.654713 ] } }, -{ "type": "Feature", "properties": { "id": 303983, "name": "Bedford Av/Lenox Rd", "direction": "S", "lat": 40.653446, "lon": -73.95622, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95622, 40.653446 ] } }, -{ "type": "Feature", "properties": { "id": 303985, "name": "Bedford Av/Church Av", "direction": "S", "lat": 40.64983, "lon": -73.95595, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95595, 40.64983 ] } }, -{ "type": "Feature", "properties": { "id": 303986, "name": "Bedford Av/Snyder Av", "direction": "S", "lat": 40.648376, "lon": -73.95584, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95584, 40.648376 ] } }, -{ "type": "Feature", "properties": { "id": 303987, "name": "Bedford Av/Tilden Av", "direction": "SE", "lat": 40.646336, "lon": -73.95559, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95559, 40.646336 ] } }, -{ "type": "Feature", "properties": { "id": 303988, "name": "Bedford Av/Beverley Rd", "direction": "S", "lat": 40.64448, "lon": -73.95479, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95479, 40.64448 ] } }, -{ "type": "Feature", "properties": { "id": 303989, "name": "Bedford Av/Clarendon Rd", "direction": "S", "lat": 40.64255, "lon": -73.954575, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.954575, 40.64255 ] } }, -{ "type": "Feature", "properties": { "id": 303990, "name": "Bedford Av/Avenue D", "direction": "S", "lat": 40.64024, "lon": -73.95433, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95433, 40.64024 ] } }, -{ "type": "Feature", "properties": { "id": 303996, "name": "Ocean Av/Glenwood Rd", "direction": "S", "lat": 40.63259, "lon": -73.95783, "routes": "BM3, B49, BM1, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.95783, 40.63259 ] } }, -{ "type": "Feature", "properties": { "id": 303997, "name": "Ocean Av/Avenue H", "direction": "S", "lat": 40.630142, "lon": -73.95736, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95736, 40.630142 ] } }, -{ "type": "Feature", "properties": { "id": 303998, "name": "Ocean Av/Avenue I", "direction": "S", "lat": 40.628216, "lon": -73.957, "routes": "BM3, BM4, BM1, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.957, 40.628216 ] } }, -{ "type": "Feature", "properties": { "id": 303999, "name": "Ocean Av/Avenue J", "direction": "S", "lat": 40.625378, "lon": -73.95646, "routes": "BM3, B49, BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.95646, 40.625378 ] } }, -{ "type": "Feature", "properties": { "id": 304000, "name": "Ocean Av/Avenue K", "direction": "S", "lat": 40.622997, "lon": -73.95602, "routes": "B49, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.95602, 40.622997 ] } }, -{ "type": "Feature", "properties": { "id": 304002, "name": "Ocean Av/Avenue M", "direction": "S", "lat": 40.61824, "lon": -73.95512, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95512, 40.61824 ] } }, -{ "type": "Feature", "properties": { "id": 304004, "name": "Ocean Av/Avenue O", "direction": "S", "lat": 40.613148, "lon": -73.954155, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.954155, 40.613148 ] } }, -{ "type": "Feature", "properties": { "id": 304005, "name": "Ocean Av/Avenue P", "direction": "S", "lat": 40.610992, "lon": -73.95368, "routes": "B49, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.95368, 40.610992 ] } }, -{ "type": "Feature", "properties": { "id": 304006, "name": "Ocean Av/Quentin Rd", "direction": "S", "lat": 40.608467, "lon": -73.95326, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95326, 40.608467 ] } }, -{ "type": "Feature", "properties": { "id": 304007, "name": "Ocean Av/Avenue R", "direction": "S", "lat": 40.606014, "lon": -73.9528, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.9528, 40.606014 ] } }, -{ "type": "Feature", "properties": { "id": 304008, "name": "Ocean Av/Avenue S", "direction": "S", "lat": 40.60372, "lon": -73.95237, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95237, 40.60372 ] } }, -{ "type": "Feature", "properties": { "id": 304009, "name": "Ocean Av/Avenue T", "direction": "S", "lat": 40.601307, "lon": -73.951904, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.951904, 40.601307 ] } }, -{ "type": "Feature", "properties": { "id": 304011, "name": "Ocean Av/Avenue V", "direction": "S", "lat": 40.596947, "lon": -73.95108, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95108, 40.596947 ] } }, -{ "type": "Feature", "properties": { "id": 304012, "name": "Ocean Av/Avenue W", "direction": "S", "lat": 40.59458, "lon": -73.95064, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95064, 40.59458 ] } }, -{ "type": "Feature", "properties": { "id": 304013, "name": "Ocean Av/Avenue X", "direction": "S", "lat": 40.592865, "lon": -73.950264, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.950264, 40.592865 ] } }, -{ "type": "Feature", "properties": { "id": 304014, "name": "Ocean Av/Avenue Y", "direction": "S", "lat": 40.590305, "lon": -73.94983, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94983, 40.590305 ] } }, -{ "type": "Feature", "properties": { "id": 304015, "name": "Ocean Av/Avenue Z", "direction": "S", "lat": 40.588604, "lon": -73.94951, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94951, 40.588604 ] } }, -{ "type": "Feature", "properties": { "id": 304019, "name": "Sheepshead Bay Rd/Shore Pkwy", "direction": "SE", "lat": 40.5844, "lon": -73.95098, "routes": "B4, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95098, 40.5844 ] } }, -{ "type": "Feature", "properties": { "id": 304022, "name": "Shore Blvd/Neptune Av", "direction": "S", "lat": 40.58267, "lon": -73.95424, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95424, 40.58267 ] } }, -{ "type": "Feature", "properties": { "id": 304023, "name": "West End Av/Ocean View Av", "direction": "S", "lat": 40.578945, "lon": -73.95338, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95338, 40.578945 ] } }, -{ "type": "Feature", "properties": { "id": 304024, "name": "West End Av/Oriental Blvd", "direction": "S", "lat": 40.57702, "lon": -73.95302, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95302, 40.57702 ] } }, -{ "type": "Feature", "properties": { "id": 304052, "name": "Flatlands Av/E 53 St", "direction": "NE", "lat": 40.628105, "lon": -73.92452, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.92452, 40.628105 ] } }, -{ "type": "Feature", "properties": { "id": 304053, "name": "Flatlands Av/E 57 St", "direction": "NE", "lat": 40.630436, "lon": -73.92093, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.92093, 40.630436 ] } }, -{ "type": "Feature", "properties": { "id": 304071, "name": "Flatlands Av/ E 103 St", "direction": "NE", "lat": 40.646732, "lon": -73.8957, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.8957, 40.646732 ] } }, -{ "type": "Feature", "properties": { "id": 304072, "name": "Flatlands Av/E 105 St", "direction": "NE", "lat": 40.647694, "lon": -73.89421, "routes": "B82+, B103, BM2, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.89421, 40.647694 ] } }, -{ "type": "Feature", "properties": { "id": 304073, "name": "Flatlands Av/E 108 St", "direction": "NE", "lat": 40.64875, "lon": -73.89257, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.89257, 40.64875 ] } }, -{ "type": "Feature", "properties": { "id": 304078, "name": "Pennsylvania Av/Vandalia Av", "direction": "SE", "lat": 40.65038, "lon": -73.884735, "routes": "BM2, B82+, BM5, B83, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.884735, 40.65038 ] } }, -{ "type": "Feature", "properties": { "id": 304083, "name": "Seaview Av/Pennsylvania Av", "direction": "", "lat": 40.64302, "lon": -73.878136, "routes": "BM5, BM2, B82, B82+, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.878136, 40.64302 ] } }, -{ "type": "Feature", "properties": { "id": 304084, "name": "Pennsylvania Av/Geneva Loop", "direction": "NW", "lat": 40.64644, "lon": -73.879944, "routes": "BM5, B82, B83, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.879944, 40.64644 ] } }, -{ "type": "Feature", "properties": { "id": 304085, "name": "Pennsylvania Av/Schroeders Av", "direction": "NW", "lat": 40.64792, "lon": -73.88164, "routes": "B82, BM5, B83, B82+, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.88164, 40.64792 ] } }, -{ "type": "Feature", "properties": { "id": 304086, "name": "Pennsylvania Av/Delmar Loop North", "direction": "NW", "lat": 40.65018, "lon": -73.884125, "routes": "BM5, B83, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.884125, 40.65018 ] } }, -{ "type": "Feature", "properties": { "id": 304087, "name": "Pennsylvania Av/Vandalia Av", "direction": "NW", "lat": 40.65171, "lon": -73.88534, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.88534, 40.65171 ] } }, -{ "type": "Feature", "properties": { "id": 304090, "name": "Flatlands Av/Williams Av", "direction": "SW", "lat": 40.649826, "lon": -73.89166, "routes": "BM2, B82, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.89166, 40.649826 ] } }, -{ "type": "Feature", "properties": { "id": 304091, "name": "Flatlands Av/E 108 St", "direction": "SW", "lat": 40.648697, "lon": -73.89308, "routes": "B82, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89308, 40.648697 ] } }, -{ "type": "Feature", "properties": { "id": 304092, "name": "Flatlands Av/E 105 St", "direction": "SW", "lat": 40.64741, "lon": -73.89507, "routes": "B82+, B82, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89507, 40.64741 ] } }, -{ "type": "Feature", "properties": { "id": 304113, "name": "Flatlands Av/E 57 St", "direction": "SW", "lat": 40.630234, "lon": -73.92164, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.92164, 40.630234 ] } }, -{ "type": "Feature", "properties": { "id": 304114, "name": "Flatlands Av/Avenue J", "direction": "SW", "lat": 40.62819, "lon": -73.92479, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.92479, 40.62819 ] } }, -{ "type": "Feature", "properties": { "id": 304115, "name": "Flatlands Av/Utica Av", "direction": "SW", "lat": 40.62602, "lon": -73.92814, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.92814, 40.62602 ] } }, -{ "type": "Feature", "properties": { "id": 304196, "name": "Gates Av/Irving Av", "direction": "SW", "lat": 40.69817, "lon": -73.9136, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.9136, 40.69817 ] } }, -{ "type": "Feature", "properties": { "id": 304197, "name": "Gates Av/Knickerbocker Av", "direction": "SW", "lat": 40.69657, "lon": -73.91519, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.91519, 40.69657 ] } }, -{ "type": "Feature", "properties": { "id": 304198, "name": "Gates Av/Wilson Av", "direction": "SW", "lat": 40.69517, "lon": -73.916565, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.916565, 40.69517 ] } }, -{ "type": "Feature", "properties": { "id": 304199, "name": "Gates Av/Central Av", "direction": "SW", "lat": 40.69367, "lon": -73.91805, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.91805, 40.69367 ] } }, -{ "type": "Feature", "properties": { "id": 304200, "name": "Gates Av/Evergreen Av", "direction": "SW", "lat": 40.69192, "lon": -73.91977, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.91977, 40.69192 ] } }, -{ "type": "Feature", "properties": { "id": 304201, "name": "Gates Av/Bushwick Av", "direction": "SW", "lat": 40.690697, "lon": -73.92098, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.92098, 40.690697 ] } }, -{ "type": "Feature", "properties": { "id": 304203, "name": "Gates Av/Ralph Av", "direction": "W", "lat": 40.689262, "lon": -73.924416, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.924416, 40.689262 ] } }, -{ "type": "Feature", "properties": { "id": 304204, "name": "Gates Av/Patchen Av", "direction": "W", "lat": 40.688885, "lon": -73.92766, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.92766, 40.688885 ] } }, -{ "type": "Feature", "properties": { "id": 304205, "name": "Gates Av/Malcolm X Blvd", "direction": "W", "lat": 40.68853, "lon": -73.93062, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.93062, 40.68853 ] } }, -{ "type": "Feature", "properties": { "id": 304206, "name": "Gates Av/Stuyvesant Av", "direction": "W", "lat": 40.688206, "lon": -73.93353, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.93353, 40.688206 ] } }, -{ "type": "Feature", "properties": { "id": 304207, "name": "Gates Av/Lewis Av", "direction": "W", "lat": 40.687935, "lon": -73.93591, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.93591, 40.687935 ] } }, -{ "type": "Feature", "properties": { "id": 304209, "name": "Gates Av/Throop Av", "direction": "W", "lat": 40.687252, "lon": -73.94165, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.94165, 40.687252 ] } }, -{ "type": "Feature", "properties": { "id": 304210, "name": "Gates Av/Tompkins Av", "direction": "W", "lat": 40.686886, "lon": -73.945015, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.945015, 40.686886 ] } }, -{ "type": "Feature", "properties": { "id": 304211, "name": "Gates Av/Marcy Av", "direction": "W", "lat": 40.686543, "lon": -73.94787, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.94787, 40.686543 ] } }, -{ "type": "Feature", "properties": { "id": 304212, "name": "Gates Av/Nostrand Av", "direction": "W", "lat": 40.686165, "lon": -73.951164, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.951164, 40.686165 ] } }, -{ "type": "Feature", "properties": { "id": 304213, "name": "Gates Av/Bedford Av", "direction": "W", "lat": 40.68576, "lon": -73.954834, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.954834, 40.68576 ] } }, -{ "type": "Feature", "properties": { "id": 304214, "name": "Gates Av/Franklin Av", "direction": "W", "lat": 40.685516, "lon": -73.95695, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.95695, 40.685516 ] } }, -{ "type": "Feature", "properties": { "id": 304239, "name": "Borinquen Pl/S 1 St", "direction": "E", "lat": 40.710773, "lon": -73.952415, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.952415, 40.710773 ] } }, -{ "type": "Feature", "properties": { "id": 304244, "name": "Grand St/Graham Av", "direction": "E", "lat": 40.711655, "lon": -73.943115, "routes": "Q54, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.943115, 40.711655 ] } }, -{ "type": "Feature", "properties": { "id": 304246, "name": "Grand St/Waterbury St", "direction": "NE", "lat": 40.712414, "lon": -73.93844, "routes": "Q54, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.93844, 40.712414 ] } }, -{ "type": "Feature", "properties": { "id": 304247, "name": "Grand St/Morgan Av", "direction": "E", "lat": 40.71329, "lon": -73.934906, "routes": "Q59, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.934906, 40.71329 ] } }, -{ "type": "Feature", "properties": { "id": 304249, "name": "Metropolitan Av/Gardner Av", "direction": "E", "lat": 40.713898, "lon": -73.92583, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.92583, 40.713898 ] } }, -{ "type": "Feature", "properties": { "id": 304364, "name": "Metropolitan Av/Gardner Av", "direction": "W", "lat": 40.7142, "lon": -73.92684, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.92684, 40.7142 ] } }, -{ "type": "Feature", "properties": { "id": 304368, "name": "Grand St/Morgan Av", "direction": "W", "lat": 40.71343, "lon": -73.934715, "routes": "Q54, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.934715, 40.71343 ] } }, -{ "type": "Feature", "properties": { "id": 304373, "name": "Grand St/Graham Av", "direction": "W", "lat": 40.711605, "lon": -73.944534, "routes": "Q54, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.944534, 40.711605 ] } }, -{ "type": "Feature", "properties": { "id": 304376, "name": "Grand St/Lorimer St", "direction": "W", "lat": 40.711155, "lon": -73.94929, "routes": "Q54, Q59, Q54, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.94929, 40.711155 ] } }, -{ "type": "Feature", "properties": { "id": 304390, "name": "Myrtle Av/Clinton Av", "direction": "E", "lat": 40.693104, "lon": -73.96836, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.96836, 40.693104 ] } }, -{ "type": "Feature", "properties": { "id": 304391, "name": "Myrtle Av/Washington Av", "direction": "E", "lat": 40.69333, "lon": -73.96646, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.96646, 40.69333 ] } }, -{ "type": "Feature", "properties": { "id": 304393, "name": "Myrtle Av/Steuben St", "direction": "E", "lat": 40.693756, "lon": -73.962746, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.962746, 40.693756 ] } }, -{ "type": "Feature", "properties": { "id": 304396, "name": "Myrtle Av/Franklin Av", "direction": "E", "lat": 40.694347, "lon": -73.957596, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.957596, 40.694347 ] } }, -{ "type": "Feature", "properties": { "id": 304399, "name": "Myrtle Av/Nostrand Av", "direction": "E", "lat": 40.69491, "lon": -73.95264, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.95264, 40.69491 ] } }, -{ "type": "Feature", "properties": { "id": 304400, "name": "Myrtle Av/Marcy Av", "direction": "E", "lat": 40.695293, "lon": -73.94934, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.94934, 40.695293 ] } }, -{ "type": "Feature", "properties": { "id": 304401, "name": "Myrtle Av/Tompkins Av", "direction": "E", "lat": 40.695625, "lon": -73.9465, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.9465, 40.695625 ] } }, -{ "type": "Feature", "properties": { "id": 304402, "name": "Myrtle Av/Throop Av", "direction": "E", "lat": 40.69601, "lon": -73.94308, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.94308, 40.69601 ] } }, -{ "type": "Feature", "properties": { "id": 304404, "name": "Myrtle Av/Lewis Av", "direction": "E", "lat": 40.696674, "lon": -73.937386, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.937386, 40.696674 ] } }, -{ "type": "Feature", "properties": { "id": 304405, "name": "Myrtle Av/Broadway", "direction": "E", "lat": 40.69695, "lon": -73.93529, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.93529, 40.69695 ] } }, -{ "type": "Feature", "properties": { "id": 304406, "name": "Myrtle Av/Bushwick Av", "direction": "E", "lat": 40.69731, "lon": -73.93179, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.93179, 40.69731 ] } }, -{ "type": "Feature", "properties": { "id": 304407, "name": "Myrtle Av/Evergreen Av", "direction": "E", "lat": 40.69758, "lon": -73.92939, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.92939, 40.69758 ] } }, -{ "type": "Feature", "properties": { "id": 304408, "name": "Myrtle Av/Hart St", "direction": "E", "lat": 40.697796, "lon": -73.927414, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.927414, 40.697796 ] } }, -{ "type": "Feature", "properties": { "id": 304409, "name": "Myrtle Av/De Kalb Av", "direction": "E", "lat": 40.69799, "lon": -73.925644, "routes": "M90, B54" }, "geometry": { "type": "Point", "coordinates": [ -73.925644, 40.69799 ] } }, -{ "type": "Feature", "properties": { "id": 304410, "name": "Myrtle Av/Stockholm St", "direction": "E", "lat": 40.6982, "lon": -73.923645, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.923645, 40.6982 ] } }, -{ "type": "Feature", "properties": { "id": 304411, "name": "Myrtle Av/Wilson Av", "direction": "E", "lat": 40.698463, "lon": -73.92109, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.92109, 40.698463 ] } }, -{ "type": "Feature", "properties": { "id": 304412, "name": "Myrtle Av/Knickerbocker Av", "direction": "E", "lat": 40.698746, "lon": -73.918434, "routes": "M90, B54" }, "geometry": { "type": "Point", "coordinates": [ -73.918434, 40.698746 ] } }, -{ "type": "Feature", "properties": { "id": 304413, "name": "Myrtle Av/Menahan St", "direction": "E", "lat": 40.699017, "lon": -73.91579, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.91579, 40.699017 ] } }, -{ "type": "Feature", "properties": { "id": 304415, "name": "Palmetto St/Irving Av", "direction": "NE", "lat": 40.6982, "lon": -73.91226, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.91226, 40.6982 ] } }, -{ "type": "Feature", "properties": { "id": 304417, "name": "Wyckoff St/Palmetto St", "direction": "SE", "lat": 40.69915, "lon": -73.91048, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91048, 40.69915 ] } }, -{ "type": "Feature", "properties": { "id": 304418, "name": "Myrtle Av/Palmetto Av", "direction": "W", "lat": 40.699516, "lon": -73.91185, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.91185, 40.699516 ] } }, -{ "type": "Feature", "properties": { "id": 304419, "name": "Myrtle Av/Irving Av", "direction": "W", "lat": 40.69918, "lon": -73.91528, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.91528, 40.69918 ] } }, -{ "type": "Feature", "properties": { "id": 304420, "name": "Myrtle Av/Knickerbocker Av", "direction": "W", "lat": 40.69887, "lon": -73.91827, "routes": "B54, M90" }, "geometry": { "type": "Point", "coordinates": [ -73.91827, 40.69887 ] } }, -{ "type": "Feature", "properties": { "id": 304422, "name": "Myrtle Av/Wilson Av", "direction": "W", "lat": 40.69845, "lon": -73.922295, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.922295, 40.69845 ] } }, -{ "type": "Feature", "properties": { "id": 304423, "name": "Myrtle Av/De Kalb Av", "direction": "W", "lat": 40.69816, "lon": -73.92509, "routes": "B54, M90" }, "geometry": { "type": "Point", "coordinates": [ -73.92509, 40.69816 ] } }, -{ "type": "Feature", "properties": { "id": 304424, "name": "Myrtle Av/Hart St", "direction": "W", "lat": 40.697823, "lon": -73.92816, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.92816, 40.697823 ] } }, -{ "type": "Feature", "properties": { "id": 304426, "name": "Myrtle Av/Charles Pl", "direction": "W", "lat": 40.697437, "lon": -73.93168, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.93168, 40.697437 ] } }, -{ "type": "Feature", "properties": { "id": 304427, "name": "Myrtle Av/Bushwick Av", "direction": "W", "lat": 40.69733, "lon": -73.93273, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.93273, 40.69733 ] } }, -{ "type": "Feature", "properties": { "id": 304429, "name": "Myrtle Av/Lewis Av", "direction": "W", "lat": 40.696697, "lon": -73.93823, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.93823, 40.696697 ] } }, -{ "type": "Feature", "properties": { "id": 304431, "name": "Myrtle Av/Throop Av", "direction": "W", "lat": 40.69611, "lon": -73.9434, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.9434, 40.69611 ] } }, -{ "type": "Feature", "properties": { "id": 304432, "name": "Myrtle Av/Tompkins Av", "direction": "W", "lat": 40.695717, "lon": -73.94679, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.94679, 40.695717 ] } }, -{ "type": "Feature", "properties": { "id": 304433, "name": "Myrtle Av/Marcy Av", "direction": "W", "lat": 40.69539, "lon": -73.949326, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.949326, 40.69539 ] } }, -{ "type": "Feature", "properties": { "id": 304434, "name": "Myrtle Av/Nostrand Av", "direction": "W", "lat": 40.695023, "lon": -73.9524, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.9524, 40.695023 ] } }, -{ "type": "Feature", "properties": { "id": 304435, "name": "Myrtle Av/Walworth St", "direction": "W", "lat": 40.69478, "lon": -73.95472, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.95472, 40.69478 ] } }, -{ "type": "Feature", "properties": { "id": 304436, "name": "Myrtle Av/Bedford Av", "direction": "W", "lat": 40.694595, "lon": -73.95637, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.95637, 40.694595 ] } }, -{ "type": "Feature", "properties": { "id": 304437, "name": "Myrtle Av/Franklin Av", "direction": "W", "lat": 40.694386, "lon": -73.95821, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.95821, 40.694386 ] } }, -{ "type": "Feature", "properties": { "id": 304440, "name": "Myrtle Av/Grand Av", "direction": "W", "lat": 40.69368, "lon": -73.9645, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.9645, 40.69368 ] } }, -{ "type": "Feature", "properties": { "id": 304441, "name": "Myrtle Av/Washington Av", "direction": "W", "lat": 40.693356, "lon": -73.96731, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.96731, 40.693356 ] } }, -{ "type": "Feature", "properties": { "id": 304442, "name": "Myrtle Av/Clinton Av", "direction": "W", "lat": 40.693176, "lon": -73.969246, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.969246, 40.693176 ] } }, -{ "type": "Feature", "properties": { "id": 304524, "name": "Jamaica Av/Georgia Av", "direction": "NE", "lat": 40.677162, "lon": -73.89917, "routes": "B83, Q24, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.89917, 40.677162 ] } }, -{ "type": "Feature", "properties": { "id": 304525, "name": "Jamaica Av/Pennsylvania Av", "direction": "NE", "lat": 40.678295, "lon": -73.896996, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.896996, 40.678295 ] } }, -{ "type": "Feature", "properties": { "id": 304526, "name": "Jamaica Av/Wyona St", "direction": "NE", "lat": 40.679253, "lon": -73.89492, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.89492, 40.679253 ] } }, -{ "type": "Feature", "properties": { "id": 304527, "name": "Jamaica Av/Bradford St", "direction": "NE", "lat": 40.679634, "lon": -73.89412, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.89412, 40.679634 ] } }, -{ "type": "Feature", "properties": { "id": 304528, "name": "Jamaica Av/Van Siclen Av", "direction": "NE", "lat": 40.680653, "lon": -73.892, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.892, 40.680653 ] } }, -{ "type": "Feature", "properties": { "id": 304529, "name": "Jamaica Av/Schenck Av", "direction": "NE", "lat": 40.681465, "lon": -73.89027, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.89027, 40.681465 ] } }, -{ "type": "Feature", "properties": { "id": 304530, "name": "Jamaica Av/Jerome St", "direction": "NE", "lat": 40.682034, "lon": -73.88914, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.88914, 40.682034 ] } }, -{ "type": "Feature", "properties": { "id": 304531, "name": "Jamaica Av/Warwick St", "direction": "NE", "lat": 40.682438, "lon": -73.88829, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.88829, 40.682438 ] } }, -{ "type": "Feature", "properties": { "id": 304532, "name": "Jamaica Av/Elton St", "direction": "NE", "lat": 40.68386, "lon": -73.88527, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.88527, 40.68386 ] } }, -{ "type": "Feature", "properties": { "id": 304533, "name": "Jamaica Av/Shepherd Av", "direction": "NE", "lat": 40.685093, "lon": -73.88263, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.88263, 40.685093 ] } }, -{ "type": "Feature", "properties": { "id": 304534, "name": "Jamaica Av/Hale Av", "direction": "NE", "lat": 40.68592, "lon": -73.880875, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.880875, 40.68592 ] } }, -{ "type": "Feature", "properties": { "id": 304535, "name": "Jamaica Av/Logan St", "direction": "NE", "lat": 40.686974, "lon": -73.87875, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.87875, 40.686974 ] } }, -{ "type": "Feature", "properties": { "id": 304536, "name": "Jamaica Av/Euclid Av", "direction": "NE", "lat": 40.688408, "lon": -73.87591, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.87591, 40.688408 ] } }, -{ "type": "Feature", "properties": { "id": 304539, "name": "Jamaica Av/Autumn Av", "direction": "E", "lat": 40.690327, "lon": -73.87136, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.87136, 40.690327 ] } }, -{ "type": "Feature", "properties": { "id": 304540, "name": "Jamaica Av/Nichols Av", "direction": "E", "lat": 40.690746, "lon": -73.869675, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.869675, 40.690746 ] } }, -{ "type": "Feature", "properties": { "id": 304624, "name": "Jamaica Av/Lincoln Av", "direction": "W", "lat": 40.690456, "lon": -73.87134, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.87134, 40.690456 ] } }, -{ "type": "Feature", "properties": { "id": 304625, "name": "Jamaica Av/Hemlock St", "direction": "W", "lat": 40.69, "lon": -73.87258, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.87258, 40.69 ] } }, -{ "type": "Feature", "properties": { "id": 304628, "name": "Jamaica Av/Richmond St", "direction": "SW", "lat": 40.687332, "lon": -73.878334, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.878334, 40.687332 ] } }, -{ "type": "Feature", "properties": { "id": 304629, "name": "Jamaica Av/Norwood Av", "direction": "SW", "lat": 40.68615, "lon": -73.880684, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.880684, 40.68615 ] } }, -{ "type": "Feature", "properties": { "id": 304630, "name": "Jamaica Av/Highland Blvd", "direction": "SW", "lat": 40.685192, "lon": -73.88272, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.88272, 40.685192 ] } }, -{ "type": "Feature", "properties": { "id": 304632, "name": "Jamaica Av/Linwood St", "direction": "SW", "lat": 40.684025, "lon": -73.885216, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.885216, 40.684025 ] } }, -{ "type": "Feature", "properties": { "id": 304633, "name": "Jamaica Av/Cleveland St", "direction": "SW", "lat": 40.6832, "lon": -73.88696, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.88696, 40.6832 ] } }, -{ "type": "Feature", "properties": { "id": 304634, "name": "Jamaica Av/Warwick St", "direction": "SW", "lat": 40.682648, "lon": -73.888115, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.888115, 40.682648 ] } }, -{ "type": "Feature", "properties": { "id": 304635, "name": "Jamaica Av/Barbey St", "direction": "SW", "lat": 40.681686, "lon": -73.89015, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.89015, 40.681686 ] } }, -{ "type": "Feature", "properties": { "id": 304636, "name": "Jamaica Av/Hendrix St", "direction": "SW", "lat": 40.680847, "lon": -73.89189, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.89189, 40.680847 ] } }, -{ "type": "Feature", "properties": { "id": 304645, "name": "Sands St/Gold St", "direction": "E", "lat": 40.69973, "lon": -73.983154, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.983154, 40.69973 ] } }, -{ "type": "Feature", "properties": { "id": 304646, "name": "Nassau St/Gold St", "direction": "E", "lat": 40.698277, "lon": -73.98252, "routes": "B57, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.98252, 40.698277 ] } }, -{ "type": "Feature", "properties": { "id": 304647, "name": "Flushing Av/Navy St", "direction": "E", "lat": 40.698154, "lon": -73.98025, "routes": "B69, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.98025, 40.698154 ] } }, -{ "type": "Feature", "properties": { "id": 304649, "name": "Flushing Av/Cumberland St", "direction": "E", "lat": 40.69791, "lon": -73.97436, "routes": "B69, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.97436, 40.69791 ] } }, -{ "type": "Feature", "properties": { "id": 304654, "name": "Flushing Av/Steuben St", "direction": "E", "lat": 40.69785, "lon": -73.96353, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.96353, 40.69785 ] } }, -{ "type": "Feature", "properties": { "id": 304655, "name": "Flushing Av/Classon Av", "direction": "E", "lat": 40.698093, "lon": -73.96203, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.96203, 40.698093 ] } }, -{ "type": "Feature", "properties": { "id": 304657, "name": "Flushing Av/Franklin Av", "direction": "E", "lat": 40.69868, "lon": -73.95846, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.95846, 40.69868 ] } }, -{ "type": "Feature", "properties": { "id": 304658, "name": "Flushing Av/Bedford Av", "direction": "E", "lat": 40.698963, "lon": -73.95662, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.95662, 40.698963 ] } }, -{ "type": "Feature", "properties": { "id": 304660, "name": "Flushing Av/Nostrand Av", "direction": "E", "lat": 40.699364, "lon": -73.95275, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.95275, 40.699364 ] } }, -{ "type": "Feature", "properties": { "id": 304662, "name": "Flushing Av/Tompkins Av", "direction": "E", "lat": 40.700024, "lon": -73.94737, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.94737, 40.700024 ] } }, -{ "type": "Feature", "properties": { "id": 304663, "name": "Flushing Av/Throop Av", "direction": "E", "lat": 40.70038, "lon": -73.944145, "routes": "B43, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.944145, 40.70038 ] } }, -{ "type": "Feature", "properties": { "id": 304664, "name": "Flushing Av/Broadway", "direction": "E", "lat": 40.70065, "lon": -73.942055, "routes": "B57, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.942055, 40.70065 ] } }, -{ "type": "Feature", "properties": { "id": 304665, "name": "Flushing Av/Beaver St", "direction": "E", "lat": 40.70119, "lon": -73.93958, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.93958, 40.70119 ] } }, -{ "type": "Feature", "properties": { "id": 304666, "name": "Flushing Av/Bushwick Av", "direction": "E", "lat": 40.701946, "lon": -73.93654, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.93654, 40.701946 ] } }, -{ "type": "Feature", "properties": { "id": 304668, "name": "Flushing Av/Evergreen Av", "direction": "E", "lat": 40.702766, "lon": -73.933556, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.933556, 40.702766 ] } }, -{ "type": "Feature", "properties": { "id": 304669, "name": "Flushing Av/Wilson Av", "direction": "E", "lat": 40.703876, "lon": -73.930725, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.930725, 40.703876 ] } }, -{ "type": "Feature", "properties": { "id": 304670, "name": "Flushing Av/Knickerbocker Av", "direction": "E", "lat": 40.704792, "lon": -73.92838, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.92838, 40.704792 ] } }, -{ "type": "Feature", "properties": { "id": 304672, "name": "Flushing Av/Wyckoff Av", "direction": "NE", "lat": 40.70757, "lon": -73.92386, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.92386, 40.70757 ] } }, -{ "type": "Feature", "properties": { "id": 304696, "name": "Flushing Av/Harrison Pl", "direction": "SW", "lat": 40.707314, "lon": -73.92438, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.92438, 40.707314 ] } }, -{ "type": "Feature", "properties": { "id": 304698, "name": "Flushing Av/Knickerbocker Av", "direction": "W", "lat": 40.7048, "lon": -73.92865, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.92865, 40.7048 ] } }, -{ "type": "Feature", "properties": { "id": 304699, "name": "Flushing Av/Morgan Av", "direction": "W", "lat": 40.70369, "lon": -73.93151, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.93151, 40.70369 ] } }, -{ "type": "Feature", "properties": { "id": 304701, "name": "Flushing Av/Evergreen Av", "direction": "W", "lat": 40.70268, "lon": -73.934105, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.934105, 40.70268 ] } }, -{ "type": "Feature", "properties": { "id": 304703, "name": "Flushing Av/Bushwick Av", "direction": "W", "lat": 40.701824, "lon": -73.93748, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.93748, 40.701824 ] } }, -{ "type": "Feature", "properties": { "id": 304705, "name": "Flushing Av/Humboldt St", "direction": "W", "lat": 40.70102, "lon": -73.94087, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.94087, 40.70102 ] } }, -{ "type": "Feature", "properties": { "id": 304709, "name": "Flushing Av/Gerry St", "direction": "W", "lat": 40.699875, "lon": -73.949585, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.949585, 40.699875 ] } }, -{ "type": "Feature", "properties": { "id": 304710, "name": "Flushing Av/Lee Av", "direction": "W", "lat": 40.699394, "lon": -73.9538, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.9538, 40.699394 ] } }, -{ "type": "Feature", "properties": { "id": 304711, "name": "Flushing Av/Bedford Av", "direction": "W", "lat": 40.698956, "lon": -73.957466, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.957466, 40.698956 ] } }, -{ "type": "Feature", "properties": { "id": 304712, "name": "Flushing Av/Franklin Av", "direction": "W", "lat": 40.698647, "lon": -73.95928, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.95928, 40.698647 ] } }, -{ "type": "Feature", "properties": { "id": 304713, "name": "Flushing Av/Kent Av", "direction": "W", "lat": 40.698456, "lon": -73.960556, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.960556, 40.698456 ] } }, -{ "type": "Feature", "properties": { "id": 304716, "name": "Flushing Av/Vanderbilt Av", "direction": "W", "lat": 40.6979, "lon": -73.971275, "routes": "B69, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.971275, 40.6979 ] } }, -{ "type": "Feature", "properties": { "id": 304717, "name": "Flushing Av/Cumberland St", "direction": "W", "lat": 40.698025, "lon": -73.974686, "routes": "B57, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.974686, 40.698025 ] } }, -{ "type": "Feature", "properties": { "id": 304721, "name": "Sands St/Gold St", "direction": "W", "lat": 40.699806, "lon": -73.98344, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.98344, 40.699806 ] } }, -{ "type": "Feature", "properties": { "id": 304722, "name": "Sands St/Jay St", "direction": "W", "lat": 40.70021, "lon": -73.98708, "routes": "B69, B67, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98708, 40.70021 ] } }, -{ "type": "Feature", "properties": { "id": 304841, "name": "Putnam Av/Myrtle Av", "direction": "SW", "lat": 40.699715, "lon": -73.90736, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90736, 40.699715 ] } }, -{ "type": "Feature", "properties": { "id": 304842, "name": "Putnam Av/Wyckoff Av", "direction": "SW", "lat": 40.698364, "lon": -73.90872, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90872, 40.698364 ] } }, -{ "type": "Feature", "properties": { "id": 304850, "name": "Grand St/Bedford Av", "direction": "E", "lat": 40.71436, "lon": -73.961136, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.961136, 40.71436 ] } }, -{ "type": "Feature", "properties": { "id": 304863, "name": "Grand St/Metro Bridge", "direction": "E", "lat": 40.714024, "lon": -73.93209, "routes": "Q54, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.93209, 40.714024 ] } }, -{ "type": "Feature", "properties": { "id": 304920, "name": "Grand St/Gardner Av", "direction": "W", "lat": 40.715458, "lon": -73.92688, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.92688, 40.715458 ] } }, -{ "type": "Feature", "properties": { "id": 304938, "name": "Grand St/Roebling St", "direction": "W", "lat": 40.713455, "lon": -73.95867, "routes": "Q59, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.95867, 40.713455 ] } }, -{ "type": "Feature", "properties": { "id": 304940, "name": "Driggs Av/S 2 St", "direction": "SW", "lat": 40.71246, "lon": -73.960785, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.960785, 40.71246 ] } }, -{ "type": "Feature", "properties": { "id": 304942, "name": "Ralph Av/Gates Av", "direction": "S", "lat": 40.688816, "lon": -73.92395, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92395, 40.688816 ] } }, -{ "type": "Feature", "properties": { "id": 304943, "name": "Broadway/Bedford Av", "direction": "W", "lat": 40.71039, "lon": -73.964355, "routes": "B32, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.964355, 40.71039 ] } }, -{ "type": "Feature", "properties": { "id": 304947, "name": "Williams Av/Flatlands Av", "direction": "SE", "lat": 40.650085, "lon": -73.89143, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89143, 40.650085 ] } }, -{ "type": "Feature", "properties": { "id": 304954, "name": "Rockaway Pkwy/Glenwood Rd", "direction": "NW", "lat": 40.64554, "lon": -73.90268, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90268, 40.64554 ] } }, -{ "type": "Feature", "properties": { "id": 304955, "name": "Rockaway Py/Farragut Rd", "direction": "NW", "lat": 40.646908, "lon": -73.904236, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.904236, 40.646908 ] } }, -{ "type": "Feature", "properties": { "id": 304956, "name": "Rockaway Av/Foster Av", "direction": "N", "lat": 40.648438, "lon": -73.90527, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90527, 40.648438 ] } }, -{ "type": "Feature", "properties": { "id": 304957, "name": "Rockaway Av/Avenue D", "direction": "N", "lat": 40.65151, "lon": -73.90602, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90602, 40.65151 ] } }, -{ "type": "Feature", "properties": { "id": 304958, "name": "Rockaway Av/Ditmas Av", "direction": "N", "lat": 40.653248, "lon": -73.90646, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90646, 40.653248 ] } }, -{ "type": "Feature", "properties": { "id": 304959, "name": "Rockaway Av/Linden Blvd", "direction": "N", "lat": 40.655243, "lon": -73.906975, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.906975, 40.655243 ] } }, -{ "type": "Feature", "properties": { "id": 304960, "name": "Rockaway Av/Hegeman Av", "direction": "N", "lat": 40.656178, "lon": -73.90721, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90721, 40.656178 ] } }, -{ "type": "Feature", "properties": { "id": 304973, "name": "Rockaway Av/Pacific St", "direction": "N", "lat": 40.675884, "lon": -73.91089, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91089, 40.675884 ] } }, -{ "type": "Feature", "properties": { "id": 304974, "name": "Rockaway Av/Atlantic Av", "direction": "N", "lat": 40.676712, "lon": -73.910805, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.910805, 40.676712 ] } }, -{ "type": "Feature", "properties": { "id": 304975, "name": "Rockaway Av/Fulton St", "direction": "N", "lat": 40.678688, "lon": -73.91086, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91086, 40.678688 ] } }, -{ "type": "Feature", "properties": { "id": 304976, "name": "Rockaway Av/Macdougal St", "direction": "N", "lat": 40.680546, "lon": -73.911224, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.911224, 40.680546 ] } }, -{ "type": "Feature", "properties": { "id": 304977, "name": "Rockaway Av/Marion St", "direction": "N", "lat": 40.68203, "lon": -73.911514, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.911514, 40.68203 ] } }, -{ "type": "Feature", "properties": { "id": 304978, "name": "Rockaway Av/Broadway", "direction": "NE", "lat": 40.683372, "lon": -73.911545, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.911545, 40.683372 ] } }, -{ "type": "Feature", "properties": { "id": 304983, "name": "Wilson Av/Decatur St", "direction": "NW", "lat": 40.69001, "lon": -73.906815, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.906815, 40.69001 ] } }, -{ "type": "Feature", "properties": { "id": 304984, "name": "Wilson Av/Schaeffer St", "direction": "NW", "lat": 40.690426, "lon": -73.90755, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90755, 40.690426 ] } }, -{ "type": "Feature", "properties": { "id": 304986, "name": "Wilson Av/Halsey St", "direction": "NW", "lat": 40.691486, "lon": -73.90942, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90942, 40.691486 ] } }, -{ "type": "Feature", "properties": { "id": 304987, "name": "Wilson Av/Hancock St", "direction": "NW", "lat": 40.692547, "lon": -73.91127, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91127, 40.692547 ] } }, -{ "type": "Feature", "properties": { "id": 304988, "name": "Wilson Av/Cornelia St", "direction": "NW", "lat": 40.693447, "lon": -73.91286, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91286, 40.693447 ] } }, -{ "type": "Feature", "properties": { "id": 304990, "name": "Wilson Av/Gates Av", "direction": "NW", "lat": 40.69558, "lon": -73.91661, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91661, 40.69558 ] } }, -{ "type": "Feature", "properties": { "id": 304991, "name": "Wilson Av/Grove St", "direction": "NW", "lat": 40.6964, "lon": -73.918045, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.918045, 40.6964 ] } }, -{ "type": "Feature", "properties": { "id": 304992, "name": "Wilson Av/Bleecker St", "direction": "NW", "lat": 40.697315, "lon": -73.919655, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.919655, 40.697315 ] } }, -{ "type": "Feature", "properties": { "id": 304993, "name": "Wilson Av/Himrod St", "direction": "NW", "lat": 40.69832, "lon": -73.921425, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.921425, 40.69832 ] } }, -{ "type": "Feature", "properties": { "id": 304994, "name": "Wilson Av/Stanhope St", "direction": "NW", "lat": 40.698994, "lon": -73.9226, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9226, 40.698994 ] } }, -{ "type": "Feature", "properties": { "id": 304995, "name": "Wilson Av/De Kalb Av", "direction": "NW", "lat": 40.69987, "lon": -73.92416, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.92416, 40.69987 ] } }, -{ "type": "Feature", "properties": { "id": 304996, "name": "Wilson Av/Willoughby Av", "direction": "NW", "lat": 40.701115, "lon": -73.926346, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.926346, 40.701115 ] } }, -{ "type": "Feature", "properties": { "id": 304997, "name": "Wilson Av/Troutman St", "direction": "NW", "lat": 40.702007, "lon": -73.9279, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9279, 40.702007 ] } }, -{ "type": "Feature", "properties": { "id": 304998, "name": "Wilson Av/Melrose St", "direction": "NW", "lat": 40.702824, "lon": -73.929344, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.929344, 40.702824 ] } }, -{ "type": "Feature", "properties": { "id": 304999, "name": "Wilson Av/Flushing Av", "direction": "NW", "lat": 40.70374, "lon": -73.930954, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.930954, 40.70374 ] } }, -{ "type": "Feature", "properties": { "id": 305000, "name": "Morgan Av/Thames St", "direction": "N", "lat": 40.70482, "lon": -73.9314, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9314, 40.70482 ] } }, -{ "type": "Feature", "properties": { "id": 305001, "name": "Harrison Pl/Morgan Av", "direction": "E", "lat": 40.706367, "lon": -73.9315, "routes": "B60, L90" }, "geometry": { "type": "Point", "coordinates": [ -73.9315, 40.706367 ] } }, -{ "type": "Feature", "properties": { "id": 305002, "name": "Johnson Av/Morgan Av", "direction": "W", "lat": 40.707706, "lon": -73.93277, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.93277, 40.707706 ] } }, -{ "type": "Feature", "properties": { "id": 305006, "name": "Johnson Av/Humboldt St", "direction": "W", "lat": 40.706768, "lon": -73.94176, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.94176, 40.706768 ] } }, -{ "type": "Feature", "properties": { "id": 305009, "name": "Meserole St/Manhattan Av", "direction": "W", "lat": 40.707924, "lon": -73.94539, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.94539, 40.707924 ] } }, -{ "type": "Feature", "properties": { "id": 305010, "name": "Meserole St/Leonard St", "direction": "W", "lat": 40.707764, "lon": -73.94704, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.94704, 40.707764 ] } }, -{ "type": "Feature", "properties": { "id": 305011, "name": "Meserole St/Lorimer St", "direction": "W", "lat": 40.70761, "lon": -73.94867, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.94867, 40.70761 ] } }, -{ "type": "Feature", "properties": { "id": 305012, "name": "Meserole St/Union Av", "direction": "W", "lat": 40.707447, "lon": -73.95037, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.95037, 40.707447 ] } }, -{ "type": "Feature", "properties": { "id": 305013, "name": "S 4 St/Hewes St", "direction": "W", "lat": 40.70797, "lon": -73.95203, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.95203, 40.70797 ] } }, -{ "type": "Feature", "properties": { "id": 305014, "name": "S 4 St/Hooper St", "direction": "W", "lat": 40.708527, "lon": -73.95356, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.95356, 40.708527 ] } }, -{ "type": "Feature", "properties": { "id": 305015, "name": "S 4 St/Rodney St", "direction": "W", "lat": 40.70933, "lon": -73.955765, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.955765, 40.70933 ] } }, -{ "type": "Feature", "properties": { "id": 305021, "name": "S 5 St/Rodney St", "direction": "E", "lat": 40.708534, "lon": -73.95598, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.95598, 40.708534 ] } }, -{ "type": "Feature", "properties": { "id": 305022, "name": "S 5 St/Keap St", "direction": "E", "lat": 40.708103, "lon": -73.954796, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.954796, 40.708103 ] } }, -{ "type": "Feature", "properties": { "id": 305023, "name": "S 5 St/Hooper St", "direction": "E", "lat": 40.707596, "lon": -73.95332, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.95332, 40.707596 ] } }, -{ "type": "Feature", "properties": { "id": 305024, "name": "S 5 St/Montrose Av", "direction": "E", "lat": 40.706738, "lon": -73.95084, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.95084, 40.706738 ] } }, -{ "type": "Feature", "properties": { "id": 305025, "name": "Montrose Av/Lorimer St", "direction": "E", "lat": 40.70682, "lon": -73.947784, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.947784, 40.70682 ] } }, -{ "type": "Feature", "properties": { "id": 305026, "name": "Montrose Av/Leonard St", "direction": "E", "lat": 40.706985, "lon": -73.94608, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.94608, 40.706985 ] } }, -{ "type": "Feature", "properties": { "id": 305028, "name": "Montrose Av/Graham Av", "direction": "E", "lat": 40.707314, "lon": -73.942764, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.942764, 40.707314 ] } }, -{ "type": "Feature", "properties": { "id": 305029, "name": "Montrose Av/Bushwick Av", "direction": "E", "lat": 40.707573, "lon": -73.94, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.94, 40.707573 ] } }, -{ "type": "Feature", "properties": { "id": 305030, "name": "Johnson Av/Bushwick Av", "direction": "E", "lat": 40.706924, "lon": -73.93903, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.93903, 40.706924 ] } }, -{ "type": "Feature", "properties": { "id": 305031, "name": "Johnson Av/White St", "direction": "E", "lat": 40.70726, "lon": -73.93547, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.93547, 40.70726 ] } }, -{ "type": "Feature", "properties": { "id": 305033, "name": "Johnson Av/Morgan Av", "direction": "E", "lat": 40.707672, "lon": -73.93238, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.93238, 40.707672 ] } }, -{ "type": "Feature", "properties": { "id": 305034, "name": "Morgan Av/Harrison Pl", "direction": "S", "lat": 40.70604, "lon": -73.93188, "routes": "L90, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.93188, 40.70604 ] } }, -{ "type": "Feature", "properties": { "id": 305035, "name": "Morgan Av/Thames St", "direction": "S", "lat": 40.704662, "lon": -73.931496, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.931496, 40.704662 ] } }, -{ "type": "Feature", "properties": { "id": 305036, "name": "Morgan Av/Flushing Av", "direction": "SE", "lat": 40.703835, "lon": -73.93119, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.93119, 40.703835 ] } }, -{ "type": "Feature", "properties": { "id": 305037, "name": "Wilson Av/George St", "direction": "SE", "lat": 40.70284, "lon": -73.9296, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9296, 40.70284 ] } }, -{ "type": "Feature", "properties": { "id": 305038, "name": "Wilson Av/Jefferson St", "direction": "SE", "lat": 40.701954, "lon": -73.92804, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.92804, 40.701954 ] } }, -{ "type": "Feature", "properties": { "id": 305039, "name": "Wilson Av/Starr St", "direction": "SE", "lat": 40.70111, "lon": -73.92656, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.92656, 40.70111 ] } }, -{ "type": "Feature", "properties": { "id": 305040, "name": "Wilson Av/Suydam St", "direction": "SE", "lat": 40.70023, "lon": -73.925, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.925, 40.70023 ] } }, -{ "type": "Feature", "properties": { "id": 305041, "name": "Wilson Av/De Kalb Av", "direction": "SE", "lat": 40.699413, "lon": -73.92358, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.92358, 40.699413 ] } }, -{ "type": "Feature", "properties": { "id": 305042, "name": "Wilson Av/Myrtle Av", "direction": "SE", "lat": 40.69852, "lon": -73.922005, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.922005, 40.69852 ] } }, -{ "type": "Feature", "properties": { "id": 305043, "name": "Wilson Av/Greene Av", "direction": "SE", "lat": 40.69729, "lon": -73.91986, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91986, 40.69729 ] } }, -{ "type": "Feature", "properties": { "id": 305044, "name": "Wilson Av/Menahan St", "direction": "SE", "lat": 40.69654, "lon": -73.918495, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.918495, 40.69654 ] } }, -{ "type": "Feature", "properties": { "id": 305047, "name": "Wilson Av/Woodbine St", "direction": "SE", "lat": 40.694283, "lon": -73.91454, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91454, 40.694283 ] } }, -{ "type": "Feature", "properties": { "id": 305048, "name": "Wilson Av/Putnam Av", "direction": "SE", "lat": 40.693554, "lon": -73.91324, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91324, 40.693554 ] } }, -{ "type": "Feature", "properties": { "id": 305049, "name": "Wilson Av/Jefferson Av", "direction": "SE", "lat": 40.692577, "lon": -73.91154, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91154, 40.692577 ] } }, -{ "type": "Feature", "properties": { "id": 305050, "name": "Wilson Av/Halsey St", "direction": "SE", "lat": 40.69151, "lon": -73.90969, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90969, 40.69151 ] } }, -{ "type": "Feature", "properties": { "id": 305052, "name": "Wilson Av/Schaeffer St", "direction": "SE", "lat": 40.69001, "lon": -73.90703, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90703, 40.69001 ] } }, -{ "type": "Feature", "properties": { "id": 305053, "name": "Wilson Av/Cooper St", "direction": "SE", "lat": 40.689396, "lon": -73.90596, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90596, 40.689396 ] } }, -{ "type": "Feature", "properties": { "id": 305054, "name": "Cooper St/Central Av", "direction": "SW", "lat": 40.68764, "lon": -73.907555, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.907555, 40.68764 ] } }, -{ "type": "Feature", "properties": { "id": 305055, "name": "Cooper St/Evergreen Av", "direction": "SW", "lat": 40.686195, "lon": -73.90898, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90898, 40.686195 ] } }, -{ "type": "Feature", "properties": { "id": 305057, "name": "Cooper St/Broadway", "direction": "SW", "lat": 40.683575, "lon": -73.91151, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91151, 40.683575 ] } }, -{ "type": "Feature", "properties": { "id": 305058, "name": "Rockaway Av/Chauncey St", "direction": "S", "lat": 40.682186, "lon": -73.91167, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91167, 40.682186 ] } }, -{ "type": "Feature", "properties": { "id": 305059, "name": "Rockaway Av/Sumpter St", "direction": "S", "lat": 40.680706, "lon": -73.91137, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91137, 40.680706 ] } }, -{ "type": "Feature", "properties": { "id": 305060, "name": "Rockaway Av/Fulton St", "direction": "SE", "lat": 40.678406, "lon": -73.910904, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.910904, 40.678406 ] } }, -{ "type": "Feature", "properties": { "id": 305061, "name": "Rockaway Av/Atlantic Av", "direction": "S", "lat": 40.675945, "lon": -73.911026, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.911026, 40.675945 ] } }, -{ "type": "Feature", "properties": { "id": 305062, "name": "Rockaway Av/Dean St", "direction": "S", "lat": 40.674393, "lon": -73.91116, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91116, 40.674393 ] } }, -{ "type": "Feature", "properties": { "id": 305064, "name": "Rockaway Av/Prospect Pl", "direction": "S", "lat": 40.67226, "lon": -73.91136, "routes": "B12, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91136, 40.67226 ] } }, -{ "type": "Feature", "properties": { "id": 305065, "name": "Rockaway Av/Pitkin Av", "direction": "S", "lat": 40.669113, "lon": -73.91067, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91067, 40.669113 ] } }, -{ "type": "Feature", "properties": { "id": 305066, "name": "Rockaway Av/Sutter Av", "direction": "S", "lat": 40.666862, "lon": -73.91007, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91007, 40.666862 ] } }, -{ "type": "Feature", "properties": { "id": 305067, "name": "Rockaway Av/Blake Av", "direction": "S", "lat": 40.665337, "lon": -73.90968, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90968, 40.665337 ] } }, -{ "type": "Feature", "properties": { "id": 305068, "name": "Rockaway Av/Dumont Av", "direction": "S", "lat": 40.6638, "lon": -73.9093, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9093, 40.6638 ] } }, -{ "type": "Feature", "properties": { "id": 305069, "name": "Rockaway Av/Livonia Av", "direction": "S", "lat": 40.66222, "lon": -73.9089, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9089, 40.66222 ] } }, -{ "type": "Feature", "properties": { "id": 305070, "name": "Rockaway Av/Riverdale Av", "direction": "S", "lat": 40.660683, "lon": -73.90849, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90849, 40.660683 ] } }, -{ "type": "Feature", "properties": { "id": 305071, "name": "Rockaway Av/Newport St", "direction": "S", "lat": 40.659092, "lon": -73.9081, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9081, 40.659092 ] } }, -{ "type": "Feature", "properties": { "id": 305072, "name": "Rockaway Av/Lott Av", "direction": "S", "lat": 40.657837, "lon": -73.90778, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90778, 40.657837 ] } }, -{ "type": "Feature", "properties": { "id": 305075, "name": "Rockaway Av/Ditmas Av", "direction": "S", "lat": 40.65311, "lon": -73.906586, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.906586, 40.65311 ] } }, -{ "type": "Feature", "properties": { "id": 305076, "name": "Rockaway Av/Avenue D", "direction": "S", "lat": 40.65111, "lon": -73.906075, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.906075, 40.65111 ] } }, -{ "type": "Feature", "properties": { "id": 305077, "name": "Rockaway Av/Foster Av", "direction": "S", "lat": 40.648666, "lon": -73.90545, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90545, 40.648666 ] } }, -{ "type": "Feature", "properties": { "id": 305078, "name": "Rockaway Pkwy/Farragut Rd", "direction": "SE", "lat": 40.646698, "lon": -73.904175, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.904175, 40.646698 ] } }, -{ "type": "Feature", "properties": { "id": 305087, "name": "E 108 St/Glenwood Rd", "direction": "NW", "lat": 40.65067, "lon": -73.89445, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89445, 40.65067 ] } }, -{ "type": "Feature", "properties": { "id": 305088, "name": "E 108 St/Farragut Rd", "direction": "NW", "lat": 40.65214, "lon": -73.89608, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89608, 40.65214 ] } }, -{ "type": "Feature", "properties": { "id": 305089, "name": "E 108 St/Stanley Av", "direction": "NW", "lat": 40.65332, "lon": -73.8974, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.8974, 40.65332 ] } }, -{ "type": "Feature", "properties": { "id": 305090, "name": "Stanley Av/Williams Av", "direction": "NE", "lat": 40.65435, "lon": -73.89543, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89543, 40.65435 ] } }, -{ "type": "Feature", "properties": { "id": 305092, "name": "Williams Av/Glenwood Rd", "direction": "SE", "lat": 40.65108, "lon": -73.89249, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89249, 40.65108 ] } }, -{ "type": "Feature", "properties": { "id": 305095, "name": "Van Dyke St/Van Brunt St", "direction": "NW", "lat": 40.675697, "lon": -74.01466, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01466, 40.675697 ] } }, -{ "type": "Feature", "properties": { "id": 305096, "name": "Van Brunt St/Dikeman St", "direction": "NE", "lat": 40.676987, "lon": -74.01323, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01323, 40.676987 ] } }, -{ "type": "Feature", "properties": { "id": 305097, "name": "Van Brunt St/Sullivan St", "direction": "NE", "lat": 40.677757, "lon": -74.01233, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01233, 40.677757 ] } }, -{ "type": "Feature", "properties": { "id": 305098, "name": "Van Brunt St/Pioneer St", "direction": "NE", "lat": 40.679115, "lon": -74.01073, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01073, 40.679115 ] } }, -{ "type": "Feature", "properties": { "id": 305099, "name": "Van Brunt St/Verona St", "direction": "NE", "lat": 40.68019, "lon": -74.00947, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00947, 40.68019 ] } }, -{ "type": "Feature", "properties": { "id": 305100, "name": "Van Brunt St/Seabring St", "direction": "NE", "lat": 40.68149, "lon": -74.00794, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00794, 40.68149 ] } }, -{ "type": "Feature", "properties": { "id": 305103, "name": "Columbia St/Union St", "direction": "NE", "lat": 40.684643, "lon": -74.002815, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.002815, 40.684643 ] } }, -{ "type": "Feature", "properties": { "id": 305108, "name": "Columbia St/Atlantic Av", "direction": "NE", "lat": 40.691444, "lon": -73.999435, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.999435, 40.691444 ] } }, -{ "type": "Feature", "properties": { "id": 305110, "name": "Atlantic Av/Henry St", "direction": "E", "lat": 40.6907, "lon": -73.9964, "routes": "B63, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.9964, 40.6907 ] } }, -{ "type": "Feature", "properties": { "id": 305111, "name": "Atlantic Av/Clinton St", "direction": "E", "lat": 40.690094, "lon": -73.994156, "routes": "B63, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.994156, 40.690094 ] } }, -{ "type": "Feature", "properties": { "id": 305112, "name": "Atlantic Av/Court St", "direction": "E", "lat": 40.689564, "lon": -73.9922, "routes": "B63, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.9922, 40.689564 ] } }, -{ "type": "Feature", "properties": { "id": 305125, "name": "Vanderbilt Av/Myrtle Av", "direction": "N", "lat": 40.693455, "lon": -73.96982, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96982, 40.693455 ] } }, -{ "type": "Feature", "properties": { "id": 305126, "name": "Vanderbilt Av/Park Av", "direction": "N", "lat": 40.69575, "lon": -73.97031, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97031, 40.69575 ] } }, -{ "type": "Feature", "properties": { "id": 305139, "name": "Wythe Av/Ross St", "direction": "NW", "lat": 40.70339, "lon": -73.9647, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9647, 40.70339 ] } }, -{ "type": "Feature", "properties": { "id": 305140, "name": "Wythe Av/Clymer St", "direction": "NW", "lat": 40.70517, "lon": -73.96651, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96651, 40.70517 ] } }, -{ "type": "Feature", "properties": { "id": 305141, "name": "Division Av/Berry St", "direction": "E", "lat": 40.70716, "lon": -73.96598, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96598, 40.70716 ] } }, -{ "type": "Feature", "properties": { "id": 305155, "name": "Manhattan Av/Norman Av", "direction": "NW", "lat": 40.72577, "lon": -73.95184, "routes": "B43, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95184, 40.72577 ] } }, -{ "type": "Feature", "properties": { "id": 305156, "name": "Manhattan Av/Meserole Av", "direction": "NW", "lat": 40.727417, "lon": -73.95279, "routes": "B43, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95279, 40.727417 ] } }, -{ "type": "Feature", "properties": { "id": 305157, "name": "Manhattan Av/Calyer St", "direction": "NW", "lat": 40.728436, "lon": -73.95337, "routes": "B62, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95337, 40.728436 ] } }, -{ "type": "Feature", "properties": { "id": 305159, "name": "Manhattan Av/Greenpoint Av", "direction": "N", "lat": 40.730534, "lon": -73.95422, "routes": "B43, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95422, 40.730534 ] } }, -{ "type": "Feature", "properties": { "id": 305162, "name": "Mcguinness Blvd/Freeman St", "direction": "N", "lat": 40.734566, "lon": -73.95227, "routes": "B32, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95227, 40.734566 ] } }, -{ "type": "Feature", "properties": { "id": 305166, "name": "Mcguinness Blvd/Freeman St", "direction": "W", "lat": 40.73466, "lon": -73.952675, "routes": "B32, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.952675, 40.73466 ] } }, -{ "type": "Feature", "properties": { "id": 305167, "name": "Manhattan Av/Freeman St", "direction": "S", "lat": 40.734066, "lon": -73.954994, "routes": "B62, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.954994, 40.734066 ] } }, -{ "type": "Feature", "properties": { "id": 305170, "name": "Manhattan Av/Greenpoint Av", "direction": "S", "lat": 40.72983, "lon": -73.95416, "routes": "B43, B98, B94, B62, B94" }, "geometry": { "type": "Point", "coordinates": [ -73.95416, 40.72983 ] } }, -{ "type": "Feature", "properties": { "id": 305171, "name": "Manhattan Av/Calyer St", "direction": "SE", "lat": 40.727818, "lon": -73.95317, "routes": "B43, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95317, 40.727818 ] } }, -{ "type": "Feature", "properties": { "id": 305172, "name": "Manhattan Av/Meserole Av", "direction": "SE", "lat": 40.726765, "lon": -73.952576, "routes": "B43, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.952576, 40.726765 ] } }, -{ "type": "Feature", "properties": { "id": 305173, "name": "Manhattan Av/Norman Av", "direction": "SE", "lat": 40.72511, "lon": -73.95163, "routes": "B62, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95163, 40.72511 ] } }, -{ "type": "Feature", "properties": { "id": 305174, "name": "Manhattan Av/Nassau Av", "direction": "SE", "lat": 40.723454, "lon": -73.95069, "routes": "B98, B94, B94, B62, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95069, 40.723454 ] } }, -{ "type": "Feature", "properties": { "id": 305175, "name": "Manhattan Av/Driggs Av", "direction": "SE", "lat": 40.722294, "lon": -73.95001, "routes": "B48, B43, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95001, 40.722294 ] } }, -{ "type": "Feature", "properties": { "id": 305177, "name": "Driggs Av/Union Av", "direction": "SW", "lat": 40.720497, "lon": -73.95261, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95261, 40.720497 ] } }, -{ "type": "Feature", "properties": { "id": 305179, "name": "Driggs Av/N 11 St", "direction": "SW", "lat": 40.719036, "lon": -73.95438, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95438, 40.719036 ] } }, -{ "type": "Feature", "properties": { "id": 305182, "name": "Driggs Av/N 4 St", "direction": "SW", "lat": 40.715176, "lon": -73.95852, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95852, 40.715176 ] } }, -{ "type": "Feature", "properties": { "id": 305183, "name": "Driggs Av/Grand St", "direction": "SW", "lat": 40.71363, "lon": -73.96005, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96005, 40.71363 ] } }, -{ "type": "Feature", "properties": { "id": 305185, "name": "Driggs Av/S 4 St", "direction": "SW", "lat": 40.7111, "lon": -73.961655, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.961655, 40.7111 ] } }, -{ "type": "Feature", "properties": { "id": 305186, "name": "Driggs Av/Broadway", "direction": "SW", "lat": 40.71003, "lon": -73.96232, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96232, 40.71003 ] } }, -{ "type": "Feature", "properties": { "id": 305191, "name": "Wythe Av/Clymer St", "direction": "SE", "lat": 40.704838, "lon": -73.96634, "routes": "B67, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96634, 40.704838 ] } }, -{ "type": "Feature", "properties": { "id": 305192, "name": "Wythe Av/Ross St", "direction": "E", "lat": 40.70287, "lon": -73.96408, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96408, 40.70287 ] } }, -{ "type": "Feature", "properties": { "id": 305211, "name": "Jay St/Fulton St", "direction": "S", "lat": 40.69163, "lon": -73.98737, "routes": "B57, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98737, 40.69163 ] } }, -{ "type": "Feature", "properties": { "id": 305215, "name": "Court St/Atlantic Av", "direction": "SW", "lat": 40.689857, "lon": -73.99236, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99236, 40.689857 ] } }, -{ "type": "Feature", "properties": { "id": 305216, "name": "Atlantic Av/Clinton St", "direction": "W", "lat": 40.69039, "lon": -73.99474, "routes": "B63, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.99474, 40.69039 ] } }, -{ "type": "Feature", "properties": { "id": 305217, "name": "Atlantic Av/Henry St", "direction": "W", "lat": 40.690746, "lon": -73.99611, "routes": "B61, B63" }, "geometry": { "type": "Point", "coordinates": [ -73.99611, 40.690746 ] } }, -{ "type": "Feature", "properties": { "id": 305224, "name": "Columbia St/Sackett St", "direction": "SW", "lat": 40.684795, "lon": -74.00289, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00289, 40.684795 ] } }, -{ "type": "Feature", "properties": { "id": 305226, "name": "Columbia St/Carroll St", "direction": "SW", "lat": 40.682793, "lon": -74.00385, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00385, 40.682793 ] } }, -{ "type": "Feature", "properties": { "id": 305228, "name": "Van Brunt St/Summit St", "direction": "SW", "lat": 40.68296, "lon": -74.00633, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00633, 40.68296 ] } }, -{ "type": "Feature", "properties": { "id": 305229, "name": "Van Brunt St/Commerce St", "direction": "SW", "lat": 40.681156, "lon": -74.00854, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00854, 40.681156 ] } }, -{ "type": "Feature", "properties": { "id": 305230, "name": "Van Brunt St/Verona St", "direction": "SW", "lat": 40.679825, "lon": -74.0101, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.0101, 40.679825 ] } }, -{ "type": "Feature", "properties": { "id": 305232, "name": "Van Brunt St/Wolcott St", "direction": "SW", "lat": 40.677143, "lon": -74.013245, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.013245, 40.677143 ] } }, -{ "type": "Feature", "properties": { "id": 305233, "name": "Van Brunt St/Coffey St", "direction": "SW", "lat": 40.676083, "lon": -74.01449, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01449, 40.676083 ] } }, -{ "type": "Feature", "properties": { "id": 305234, "name": "Beard St/Van Brunt St", "direction": "SE", "lat": 40.674934, "lon": -74.01527, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01527, 40.674934 ] } }, -{ "type": "Feature", "properties": { "id": 305263, "name": "Graham Av/Grand St", "direction": "N", "lat": 40.71197, "lon": -73.943886, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.943886, 40.71197 ] } }, -{ "type": "Feature", "properties": { "id": 305264, "name": "Graham Av/Ainslie St", "direction": "N", "lat": 40.713383, "lon": -73.944115, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.944115, 40.713383 ] } }, -{ "type": "Feature", "properties": { "id": 305265, "name": "Graham Av/Metropolitan Av", "direction": "N", "lat": 40.71487, "lon": -73.94437, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94437, 40.71487 ] } }, -{ "type": "Feature", "properties": { "id": 305271, "name": "Graham Av/Engert Av", "direction": "N", "lat": 40.721764, "lon": -73.94702, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94702, 40.721764 ] } }, -{ "type": "Feature", "properties": { "id": 305272, "name": "Graham Av/Driggs Av", "direction": "NW", "lat": 40.72263, "lon": -73.94734, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94734, 40.72263 ] } }, -{ "type": "Feature", "properties": { "id": 305284, "name": "Manhattan Av/Eagle St", "direction": "N", "lat": 40.735462, "lon": -73.955025, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.955025, 40.735462 ] } }, -{ "type": "Feature", "properties": { "id": 305286, "name": "Box St/Manhattan Av", "direction": "E", "lat": 40.737198, "lon": -73.95576, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95576, 40.737198 ] } }, -{ "type": "Feature", "properties": { "id": 305287, "name": "Box St/Manhattan Av", "direction": "E", "lat": 40.737194, "lon": -73.95567, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95567, 40.737194 ] } }, -{ "type": "Feature", "properties": { "id": 305299, "name": "Graham Av/Engert Av", "direction": "SE", "lat": 40.72116, "lon": -73.94687, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94687, 40.72116 ] } }, -{ "type": "Feature", "properties": { "id": 305300, "name": "Graham Av/Meeker Av", "direction": "SE", "lat": 40.719585, "lon": -73.9457, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.9457, 40.719585 ] } }, -{ "type": "Feature", "properties": { "id": 305301, "name": "Graham Av/Richardson St", "direction": "S", "lat": 40.71847, "lon": -73.94508, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94508, 40.71847 ] } }, -{ "type": "Feature", "properties": { "id": 305304, "name": "Graham Av/Metropolitan Av", "direction": "S", "lat": 40.7142, "lon": -73.94441, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94441, 40.7142 ] } }, -{ "type": "Feature", "properties": { "id": 305305, "name": "Graham Av/Ainslie St", "direction": "S", "lat": 40.7128, "lon": -73.94418, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94418, 40.7128 ] } }, -{ "type": "Feature", "properties": { "id": 305306, "name": "Graham Av/Grand St", "direction": "S", "lat": 40.711308, "lon": -73.94394, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94394, 40.711308 ] } }, -{ "type": "Feature", "properties": { "id": 305308, "name": "Graham Av/Scholes St", "direction": "S", "lat": 40.708466, "lon": -73.94347, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94347, 40.708466 ] } }, -{ "type": "Feature", "properties": { "id": 305310, "name": "Graham Av/Johnson Av", "direction": "S", "lat": 40.706287, "lon": -73.943115, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.943115, 40.706287 ] } }, -{ "type": "Feature", "properties": { "id": 305311, "name": "Graham Av/Seigel St", "direction": "S", "lat": 40.704147, "lon": -73.942764, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.942764, 40.704147 ] } }, -{ "type": "Feature", "properties": { "id": 305312, "name": "Graham Av/Cook St", "direction": "S", "lat": 40.702034, "lon": -73.94241, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94241, 40.702034 ] } }, -{ "type": "Feature", "properties": { "id": 305334, "name": "4 Av/100 St", "direction": "NE", "lat": 40.612915, "lon": -74.033455, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.033455, 40.612915 ] } }, -{ "type": "Feature", "properties": { "id": 305335, "name": "4 Av/Marine Av", "direction": "NE", "lat": 40.614235, "lon": -74.0323, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.0323, 40.614235 ] } }, -{ "type": "Feature", "properties": { "id": 305338, "name": "5 Av/92 St", "direction": "NE", "lat": 40.618114, "lon": -74.02902, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02902, 40.618114 ] } }, -{ "type": "Feature", "properties": { "id": 305341, "name": "5 Av/86 St", "direction": "NE", "lat": 40.621754, "lon": -74.0259, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.0259, 40.621754 ] } }, -{ "type": "Feature", "properties": { "id": 305344, "name": "5 Av/80 St", "direction": "NE", "lat": 40.626053, "lon": -74.02396, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02396, 40.626053 ] } }, -{ "type": "Feature", "properties": { "id": 305346, "name": "5 Av/Bay Ridge Pkwy", "direction": "NE", "lat": 40.629814, "lon": -74.022415, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.022415, 40.629814 ] } }, -{ "type": "Feature", "properties": { "id": 305348, "name": "5 Av/Bay Ridge Av", "direction": "N", "lat": 40.633755, "lon": -74.020805, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.020805, 40.633755 ] } }, -{ "type": "Feature", "properties": { "id": 305349, "name": "5 Av/Senator St", "direction": "N", "lat": 40.635002, "lon": -74.020294, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.020294, 40.635002 ] } }, -{ "type": "Feature", "properties": { "id": 305350, "name": "5 Av/66 St", "direction": "NE", "lat": 40.636272, "lon": -74.019394, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.019394, 40.636272 ] } }, -{ "type": "Feature", "properties": { "id": 305353, "name": "5 Av/60 St", "direction": "NE", "lat": 40.63969, "lon": -74.01585, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01585, 40.63969 ] } }, -{ "type": "Feature", "properties": { "id": 305357, "name": "5 Av/52 St", "direction": "NE", "lat": 40.644184, "lon": -74.01118, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01118, 40.644184 ] } }, -{ "type": "Feature", "properties": { "id": 305358, "name": "5 Av/50 St", "direction": "NE", "lat": 40.645298, "lon": -74.01002, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01002, 40.645298 ] } }, -{ "type": "Feature", "properties": { "id": 305361, "name": "5 Av/44 St", "direction": "NE", "lat": 40.64865, "lon": -74.006516, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.006516, 40.64865 ] } }, -{ "type": "Feature", "properties": { "id": 305362, "name": "5 Av/41 St", "direction": "NE", "lat": 40.650345, "lon": -74.00476, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00476, 40.650345 ] } }, -{ "type": "Feature", "properties": { "id": 305363, "name": "5 Av/39 St", "direction": "NE", "lat": 40.651478, "lon": -74.00357, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00357, 40.651478 ] } }, -{ "type": "Feature", "properties": { "id": 305364, "name": "5 Av/36 St", "direction": "NE", "lat": 40.65281, "lon": -74.00217, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00217, 40.65281 ] } }, -{ "type": "Feature", "properties": { "id": 305365, "name": "5 Av/34 St", "direction": "NE", "lat": 40.654297, "lon": -74.00065, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00065, 40.654297 ] } }, -{ "type": "Feature", "properties": { "id": 305367, "name": "5 Av/30 St", "direction": "NE", "lat": 40.656548, "lon": -73.998314, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.998314, 40.656548 ] } }, -{ "type": "Feature", "properties": { "id": 305369, "name": "5 Av/26 St", "direction": "NE", "lat": 40.65878, "lon": -73.99598, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.99598, 40.65878 ] } }, -{ "type": "Feature", "properties": { "id": 305370, "name": "5 Av/24 St", "direction": "NE", "lat": 40.659836, "lon": -73.99487, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.99487, 40.659836 ] } }, -{ "type": "Feature", "properties": { "id": 305373, "name": "5 Av/18 St", "direction": "NE", "lat": 40.663242, "lon": -73.99138, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.99138, 40.663242 ] } }, -{ "type": "Feature", "properties": { "id": 305377, "name": "5 Av/11 St", "direction": "NE", "lat": 40.66819, "lon": -73.987015, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.987015, 40.66819 ] } }, -{ "type": "Feature", "properties": { "id": 305380, "name": "5 Av/5 St", "direction": "NE", "lat": 40.671806, "lon": -73.98399, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98399, 40.671806 ] } }, -{ "type": "Feature", "properties": { "id": 305388, "name": "5 Av/Bergen St", "direction": "NE", "lat": 40.681908, "lon": -73.976654, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.976654, 40.681908 ] } }, -{ "type": "Feature", "properties": { "id": 305392, "name": "Atlantic Av/Nevins St", "direction": "W", "lat": 40.686333, "lon": -73.98304, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98304, 40.686333 ] } }, -{ "type": "Feature", "properties": { "id": 305393, "name": "Atlantic Av/Bond St", "direction": "W", "lat": 40.68714, "lon": -73.98514, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98514, 40.68714 ] } }, -{ "type": "Feature", "properties": { "id": 305394, "name": "Atlantic Av/Hoyt St", "direction": "W", "lat": 40.688015, "lon": -73.98737, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98737, 40.688015 ] } }, -{ "type": "Feature", "properties": { "id": 305395, "name": "Atlantic Av/Smith St", "direction": "W", "lat": 40.688816, "lon": -73.98948, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98948, 40.688816 ] } }, -{ "type": "Feature", "properties": { "id": 305396, "name": "Atlantic Av/Boerum Pl", "direction": "W", "lat": 40.68927, "lon": -73.99101, "routes": "B63, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.99101, 40.68927 ] } }, -{ "type": "Feature", "properties": { "id": 305397, "name": "Atlantic Av/Court St", "direction": "W", "lat": 40.689808, "lon": -73.99253, "routes": "B63, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.99253, 40.689808 ] } }, -{ "type": "Feature", "properties": { "id": 305407, "name": "Atlantic Av/Smith St", "direction": "E", "lat": 40.68837, "lon": -73.98881, "routes": "B65, B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98881, 40.68837 ] } }, -{ "type": "Feature", "properties": { "id": 305408, "name": "Atlantic Av/Hoyt St", "direction": "E", "lat": 40.687565, "lon": -73.986725, "routes": "B65, B63" }, "geometry": { "type": "Point", "coordinates": [ -73.986725, 40.687565 ] } }, -{ "type": "Feature", "properties": { "id": 305409, "name": "Atlantic Av/Bond St", "direction": "E", "lat": 40.686733, "lon": -73.98459, "routes": "B63, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98459, 40.686733 ] } }, -{ "type": "Feature", "properties": { "id": 305410, "name": "Atlantic Av/Nevins St", "direction": "E", "lat": 40.68592, "lon": -73.982506, "routes": "B65, B63" }, "geometry": { "type": "Point", "coordinates": [ -73.982506, 40.68592 ] } }, -{ "type": "Feature", "properties": { "id": 305411, "name": "Atlantic Av/3 Av", "direction": "E", "lat": 40.685314, "lon": -73.98091, "routes": "B63, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98091, 40.685314 ] } }, -{ "type": "Feature", "properties": { "id": 305412, "name": "Atlantic Av/4 Av", "direction": "E", "lat": 40.68442, "lon": -73.97855, "routes": "B37, B63" }, "geometry": { "type": "Point", "coordinates": [ -73.97855, 40.68442 ] } }, -{ "type": "Feature", "properties": { "id": 305413, "name": "5 Av/Dean St", "direction": "SW", "lat": 40.68188, "lon": -73.97678, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.97678, 40.68188 ] } }, -{ "type": "Feature", "properties": { "id": 305423, "name": "5 Av/9 St", "direction": "SW", "lat": 40.66891, "lon": -73.98663, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98663, 40.66891 ] } }, -{ "type": "Feature", "properties": { "id": 305426, "name": "5 Av/15 St", "direction": "SW", "lat": 40.665348, "lon": -73.98962, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98962, 40.665348 ] } }, -{ "type": "Feature", "properties": { "id": 305427, "name": "5 Av/Prospect Av", "direction": "SW", "lat": 40.664173, "lon": -73.9905, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.9905, 40.664173 ] } }, -{ "type": "Feature", "properties": { "id": 305428, "name": "5 Av/18 St", "direction": "SW", "lat": 40.662384, "lon": -73.99237, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.99237, 40.662384 ] } }, -{ "type": "Feature", "properties": { "id": 305431, "name": "5 Av/24 St", "direction": "SW", "lat": 40.6595, "lon": -73.995445, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.995445, 40.6595 ] } }, -{ "type": "Feature", "properties": { "id": 305432, "name": "5 Av/26 St", "direction": "SW", "lat": 40.658333, "lon": -73.996666, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.996666, 40.658333 ] } }, -{ "type": "Feature", "properties": { "id": 305434, "name": "5 Av/30 St", "direction": "SW", "lat": 40.656094, "lon": -73.99899, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.99899, 40.656094 ] } }, -{ "type": "Feature", "properties": { "id": 305438, "name": "5 Av/39 St", "direction": "SW", "lat": 40.651062, "lon": -74.00423, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00423, 40.651062 ] } }, -{ "type": "Feature", "properties": { "id": 305439, "name": "5 Av/42 St", "direction": "SW", "lat": 40.649384, "lon": -74.005974, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.005974, 40.649384 ] } }, -{ "type": "Feature", "properties": { "id": 305442, "name": "5 Av/48 St", "direction": "SW", "lat": 40.646034, "lon": -74.00947, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00947, 40.646034 ] } }, -{ "type": "Feature", "properties": { "id": 305443, "name": "5 Av/50 St", "direction": "SW", "lat": 40.644913, "lon": -74.01062, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01062, 40.644913 ] } }, -{ "type": "Feature", "properties": { "id": 305445, "name": "5 Av/53 St", "direction": "SW", "lat": 40.643234, "lon": -74.012375, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.012375, 40.643234 ] } }, -{ "type": "Feature", "properties": { "id": 305446, "name": "5 Av/56 St", "direction": "SW", "lat": 40.641556, "lon": -74.014114, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.014114, 40.641556 ] } }, -{ "type": "Feature", "properties": { "id": 305447, "name": "5 Av/58 St", "direction": "SW", "lat": 40.64049, "lon": -74.01517, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01517, 40.64049 ] } }, -{ "type": "Feature", "properties": { "id": 305451, "name": "5 Av/66 St", "direction": "SW", "lat": 40.635853, "lon": -74.02005, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02005, 40.635853 ] } }, -{ "type": "Feature", "properties": { "id": 305452, "name": "5 Av/Senator St", "direction": "S", "lat": 40.634686, "lon": -74.0206, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.0206, 40.634686 ] } }, -{ "type": "Feature", "properties": { "id": 305453, "name": "5 Av/Bay Ridge Av", "direction": "S", "lat": 40.63319, "lon": -74.02122, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02122, 40.63319 ] } }, -{ "type": "Feature", "properties": { "id": 305455, "name": "5 Av/Bay Ridge Pkwy", "direction": "S", "lat": 40.6292, "lon": -74.02285, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02285, 40.6292 ] } }, -{ "type": "Feature", "properties": { "id": 305458, "name": "5 Av/81 St", "direction": "S", "lat": 40.624786, "lon": -74.02465, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02465, 40.624786 ] } }, -{ "type": "Feature", "properties": { "id": 305460, "name": "5 Av/86 St", "direction": "SW", "lat": 40.62145, "lon": -74.026436, "routes": "B1, B63" }, "geometry": { "type": "Point", "coordinates": [ -74.026436, 40.62145 ] } }, -{ "type": "Feature", "properties": { "id": 305477, "name": "Harway Av/28 Av", "direction": "NW", "lat": 40.58902, "lon": -73.986244, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.986244, 40.58902 ] } }, -{ "type": "Feature", "properties": { "id": 305479, "name": "Harway Av/27 Av", "direction": "NW", "lat": 40.59034, "lon": -73.98843, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98843, 40.59034 ] } }, -{ "type": "Feature", "properties": { "id": 305480, "name": "Harway Av/Bay 43 St", "direction": "NW", "lat": 40.591213, "lon": -73.989876, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.989876, 40.591213 ] } }, -{ "type": "Feature", "properties": { "id": 305481, "name": "Harway Av/Bay 41 St", "direction": "NW", "lat": 40.59212, "lon": -73.99137, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99137, 40.59212 ] } }, -{ "type": "Feature", "properties": { "id": 305483, "name": "Bath Av/25 Av", "direction": "NW", "lat": 40.59455, "lon": -73.99116, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99116, 40.59455 ] } }, -{ "type": "Feature", "properties": { "id": 305484, "name": "Bath Av/24 Av", "direction": "NW", "lat": 40.595905, "lon": -73.99338, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99338, 40.595905 ] } }, -{ "type": "Feature", "properties": { "id": 305487, "name": "Bath Av/Bay Pkwy", "direction": "NW", "lat": 40.598854, "lon": -73.99764, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99764, 40.598854 ] } }, -{ "type": "Feature", "properties": { "id": 305490, "name": "Bath Av/20 Av", "direction": "NW", "lat": 40.6017, "lon": -74.00184, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00184, 40.6017 ] } }, -{ "type": "Feature", "properties": { "id": 305493, "name": "Bath Av/18 Av", "direction": "NW", "lat": 40.604195, "lon": -74.00657, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00657, 40.604195 ] } }, -{ "type": "Feature", "properties": { "id": 305496, "name": "Bath Av/16 Av", "direction": "NW", "lat": 40.606956, "lon": -74.01111, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01111, 40.606956 ] } }, -{ "type": "Feature", "properties": { "id": 305500, "name": "14 Av/Benson Av", "direction": "NE", "lat": 40.61089, "lon": -74.013535, "routes": "X28, X38, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.013535, 40.61089 ] } }, -{ "type": "Feature", "properties": { "id": 305503, "name": "86 St/12 Av", "direction": "NW", "lat": 40.615665, "lon": -74.01638, "routes": "B1, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.01638, 40.615665 ] } }, -{ "type": "Feature", "properties": { "id": 305504, "name": "86 St/11 Av", "direction": "NW", "lat": 40.616993, "lon": -74.01858, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.01858, 40.616993 ] } }, -{ "type": "Feature", "properties": { "id": 305505, "name": "86 St/7 Av", "direction": "NW", "lat": 40.61878, "lon": -74.02154, "routes": "X28, X38, B1" }, "geometry": { "type": "Point", "coordinates": [ -74.02154, 40.61878 ] } }, -{ "type": "Feature", "properties": { "id": 305511, "name": "86 St/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.62015, "lon": -74.02418, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.02418, 40.62015 ] } }, -{ "type": "Feature", "properties": { "id": 305512, "name": "86 St/Dahlgren Pl", "direction": "SE", "lat": 40.6193, "lon": -74.022766, "routes": "B1, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.022766, 40.6193 ] } }, -{ "type": "Feature", "properties": { "id": 305513, "name": "86 St/7 Av", "direction": "SE", "lat": 40.618176, "lon": -74.02091, "routes": "X28, X38, B1" }, "geometry": { "type": "Point", "coordinates": [ -74.02091, 40.618176 ] } }, -{ "type": "Feature", "properties": { "id": 305514, "name": "86 St/11 Av", "direction": "SE", "lat": 40.6165, "lon": -74.01814, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.01814, 40.6165 ] } }, -{ "type": "Feature", "properties": { "id": 305515, "name": "86 St/12 Av", "direction": "SE", "lat": 40.615395, "lon": -74.01631, "routes": "X38, X28, B1" }, "geometry": { "type": "Point", "coordinates": [ -74.01631, 40.615395 ] } }, -{ "type": "Feature", "properties": { "id": 305519, "name": "Bath Av/14 Av", "direction": "SE", "lat": 40.609123, "lon": -74.01498, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01498, 40.609123 ] } }, -{ "type": "Feature", "properties": { "id": 305522, "name": "Bath Av/16 Av", "direction": "SE", "lat": 40.60644, "lon": -74.010544, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.010544, 40.60644 ] } }, -{ "type": "Feature", "properties": { "id": 305525, "name": "Bath Av/18 Av", "direction": "SE", "lat": 40.60364, "lon": -74.005875, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.005875, 40.60364 ] } }, -{ "type": "Feature", "properties": { "id": 305528, "name": "Bath Av/20 Av", "direction": "SE", "lat": 40.601166, "lon": -74.0013, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.0013, 40.601166 ] } }, -{ "type": "Feature", "properties": { "id": 305531, "name": "Bath Av/Bay Pkwy", "direction": "SE", "lat": 40.59823, "lon": -73.99702, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99702, 40.59823 ] } }, -{ "type": "Feature", "properties": { "id": 305532, "name": "Bath Av/23 Av", "direction": "SE", "lat": 40.59682, "lon": -73.99497, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99497, 40.59682 ] } }, -{ "type": "Feature", "properties": { "id": 305537, "name": "Harway Av/Bay 41 St", "direction": "SE", "lat": 40.591652, "lon": -73.990875, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.990875, 40.591652 ] } }, -{ "type": "Feature", "properties": { "id": 305538, "name": "Harway Av/Bay 43 St", "direction": "SE", "lat": 40.59075, "lon": -73.98938, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98938, 40.59075 ] } }, -{ "type": "Feature", "properties": { "id": 305539, "name": "Harway Av/27 Av", "direction": "SE", "lat": 40.58986, "lon": -73.98791, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98791, 40.58986 ] } }, -{ "type": "Feature", "properties": { "id": 305544, "name": "Mermaid Av/Stillwell Av", "direction": "E", "lat": 40.576973, "lon": -73.9814, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.9814, 40.576973 ] } }, -{ "type": "Feature", "properties": { "id": 305554, "name": "Smith St/Warren St", "direction": "NE", "lat": 40.685738, "lon": -73.991066, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.991066, 40.685738 ] } }, -{ "type": "Feature", "properties": { "id": 305561, "name": "Dean St/5 Av", "direction": "E", "lat": 40.682133, "lon": -73.97676, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97676, 40.682133 ] } }, -{ "type": "Feature", "properties": { "id": 305582, "name": "Saint Marks Av/Ralph Av", "direction": "E", "lat": 40.673637, "lon": -73.92227, "routes": "B45, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.92227, 40.673637 ] } }, -{ "type": "Feature", "properties": { "id": 305597, "name": "Bergen St/New York Av", "direction": "W", "lat": 40.676018, "lon": -73.94759, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.94759, 40.676018 ] } }, -{ "type": "Feature", "properties": { "id": 305598, "name": "Bergen St/Nostrand Av", "direction": "W", "lat": 40.67617, "lon": -73.950325, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.950325, 40.67617 ] } }, -{ "type": "Feature", "properties": { "id": 305600, "name": "Bergen St/Franklin Av", "direction": "W", "lat": 40.676937, "lon": -73.95614, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.95614, 40.676937 ] } }, -{ "type": "Feature", "properties": { "id": 305606, "name": "Bergen St/Carlton Av", "direction": "W", "lat": 40.680206, "lon": -73.97175, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97175, 40.680206 ] } }, -{ "type": "Feature", "properties": { "id": 305607, "name": "Bergen St/Flatbush Av", "direction": "W", "lat": 40.680893, "lon": -73.97496, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97496, 40.680893 ] } }, -{ "type": "Feature", "properties": { "id": 305608, "name": "Bergen St/5 Av", "direction": "W", "lat": 40.681477, "lon": -73.97688, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97688, 40.681477 ] } }, -{ "type": "Feature", "properties": { "id": 305610, "name": "Bergen St/3 Av", "direction": "W", "lat": 40.683403, "lon": -73.98183, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98183, 40.683403 ] } }, -{ "type": "Feature", "properties": { "id": 305611, "name": "Bergen St/Nevins St", "direction": "W", "lat": 40.684193, "lon": -73.98384, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98384, 40.684193 ] } }, -{ "type": "Feature", "properties": { "id": 305612, "name": "Bergen St/Bond St", "direction": "W", "lat": 40.685207, "lon": -73.98646, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98646, 40.685207 ] } }, -{ "type": "Feature", "properties": { "id": 305613, "name": "Bergen St/Hoyt St", "direction": "W", "lat": 40.68605, "lon": -73.98861, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98861, 40.68605 ] } }, -{ "type": "Feature", "properties": { "id": 305616, "name": "Court St/Warren St", "direction": "SW", "lat": 40.686474, "lon": -73.99398, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99398, 40.686474 ] } }, -{ "type": "Feature", "properties": { "id": 305617, "name": "Court St/Kane St", "direction": "SW", "lat": 40.685184, "lon": -73.99462, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99462, 40.685184 ] } }, -{ "type": "Feature", "properties": { "id": 305618, "name": "Court St/Sackett St", "direction": "SW", "lat": 40.68317, "lon": -73.99556, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99556, 40.68317 ] } }, -{ "type": "Feature", "properties": { "id": 305624, "name": "20 St/8 Av", "direction": "NW", "lat": 40.65816, "lon": -73.98651, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.98651, 40.65816 ] } }, -{ "type": "Feature", "properties": { "id": 305626, "name": "7 Av/Prospect Av", "direction": "NE", "lat": 40.661697, "lon": -73.985794, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.985794, 40.661697 ] } }, -{ "type": "Feature", "properties": { "id": 305627, "name": "7 Av/15 St", "direction": "NE", "lat": 40.663483, "lon": -73.984314, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.984314, 40.663483 ] } }, -{ "type": "Feature", "properties": { "id": 305628, "name": "7 Av/13 St", "direction": "NE", "lat": 40.664692, "lon": -73.98331, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98331, 40.664692 ] } }, -{ "type": "Feature", "properties": { "id": 305629, "name": "7 Av/11 St", "direction": "NE", "lat": 40.66591, "lon": -73.982285, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.982285, 40.66591 ] } }, -{ "type": "Feature", "properties": { "id": 305630, "name": "7 Av/9 St", "direction": "NE", "lat": 40.66727, "lon": -73.98118, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98118, 40.66727 ] } }, -{ "type": "Feature", "properties": { "id": 305632, "name": "7 Av/3 St", "direction": "NE", "lat": 40.67075, "lon": -73.97824, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97824, 40.67075 ] } }, -{ "type": "Feature", "properties": { "id": 305633, "name": "7 Av/Garfield Pl", "direction": "NE", "lat": 40.672527, "lon": -73.97677, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97677, 40.672527 ] } }, -{ "type": "Feature", "properties": { "id": 305634, "name": "7 Av/Union St", "direction": "NE", "lat": 40.67486, "lon": -73.97509, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97509, 40.67486 ] } }, -{ "type": "Feature", "properties": { "id": 305635, "name": "7 Av/Lincoln Pl", "direction": "NE", "lat": 40.67561, "lon": -73.97459, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97459, 40.67561 ] } }, -{ "type": "Feature", "properties": { "id": 305636, "name": "7 Av/Sterling Pl", "direction": "NE", "lat": 40.677315, "lon": -73.97344, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97344, 40.677315 ] } }, -{ "type": "Feature", "properties": { "id": 305670, "name": "7 Av/Flatbush Av", "direction": "SW", "lat": 40.677795, "lon": -73.97323, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97323, 40.677795 ] } }, -{ "type": "Feature", "properties": { "id": 305671, "name": "7 Av/Sterling Pl", "direction": "SW", "lat": 40.676846, "lon": -73.9739, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.9739, 40.676846 ] } }, -{ "type": "Feature", "properties": { "id": 305672, "name": "7 Av/Berkeley Pl", "direction": "SW", "lat": 40.675205, "lon": -73.97504, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97504, 40.675205 ] } }, -{ "type": "Feature", "properties": { "id": 305673, "name": "7 Av/Union St", "direction": "SW", "lat": 40.674187, "lon": -73.97572, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97572, 40.674187 ] } }, -{ "type": "Feature", "properties": { "id": 305674, "name": "7 Av/Garfield Pl", "direction": "SW", "lat": 40.672108, "lon": -73.97735, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97735, 40.672108 ] } }, -{ "type": "Feature", "properties": { "id": 305675, "name": "7 Av/3 St", "direction": "SW", "lat": 40.670288, "lon": -73.97887, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97887, 40.670288 ] } }, -{ "type": "Feature", "properties": { "id": 305676, "name": "7 Av/6 St", "direction": "SW", "lat": 40.668484, "lon": -73.98036, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98036, 40.668484 ] } }, -{ "type": "Feature", "properties": { "id": 305677, "name": "7 Av/9 St", "direction": "SW", "lat": 40.66665, "lon": -73.981895, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.981895, 40.66665 ] } }, -{ "type": "Feature", "properties": { "id": 305678, "name": "7 Av/11 St", "direction": "SW", "lat": 40.66546, "lon": -73.98289, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98289, 40.66546 ] } }, -{ "type": "Feature", "properties": { "id": 305679, "name": "7 Av/13 St", "direction": "SW", "lat": 40.664272, "lon": -73.98389, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98389, 40.664272 ] } }, -{ "type": "Feature", "properties": { "id": 305680, "name": "7 Av/15 St", "direction": "SW", "lat": 40.663017, "lon": -73.98488, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98488, 40.663017 ] } }, -{ "type": "Feature", "properties": { "id": 305681, "name": "7 Av/Prospect Av", "direction": "SW", "lat": 40.661602, "lon": -73.98611, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98611, 40.661602 ] } }, -{ "type": "Feature", "properties": { "id": 305682, "name": "7 Av/18 St", "direction": "SW", "lat": 40.660156, "lon": -73.9876, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.9876, 40.660156 ] } }, -{ "type": "Feature", "properties": { "id": 305687, "name": "West Brighton Av/W 2 St", "direction": "E", "lat": 40.576332, "lon": -73.970245, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.970245, 40.576332 ] } }, -{ "type": "Feature", "properties": { "id": 305688, "name": "West Brighton Av/Ocean Pkwy", "direction": "E", "lat": 40.576256, "lon": -73.96896, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96896, 40.576256 ] } }, -{ "type": "Feature", "properties": { "id": 305694, "name": "Coney Island Av/Ocean View Av", "direction": "N", "lat": 40.58018, "lon": -73.95973, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.95973, 40.58018 ] } }, -{ "type": "Feature", "properties": { "id": 305695, "name": "Coney Island Av/Neptune Av", "direction": "N", "lat": 40.581856, "lon": -73.9598, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.9598, 40.581856 ] } }, -{ "type": "Feature", "properties": { "id": 305698, "name": "Coney Island Av/Avenue Y", "direction": "N", "lat": 40.589767, "lon": -73.9604, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.9604, 40.589767 ] } }, -{ "type": "Feature", "properties": { "id": 305699, "name": "Coney Island Av/Avenue X", "direction": "N", "lat": 40.591965, "lon": -73.96057, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96057, 40.591965 ] } }, -{ "type": "Feature", "properties": { "id": 305700, "name": "Coney Island Av/Gravesend Neck Rd", "direction": "N", "lat": 40.594704, "lon": -73.96078, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96078, 40.594704 ] } }, -{ "type": "Feature", "properties": { "id": 305701, "name": "Coney Island Av/Avenue V", "direction": "N", "lat": 40.596443, "lon": -73.960915, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.960915, 40.596443 ] } }, -{ "type": "Feature", "properties": { "id": 305702, "name": "Coney Island Av/Avenue U", "direction": "N", "lat": 40.598194, "lon": -73.961044, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.961044, 40.598194 ] } }, -{ "type": "Feature", "properties": { "id": 305703, "name": "Coney Island Av/Avenue T", "direction": "N", "lat": 40.6009, "lon": -73.96126, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96126, 40.6009 ] } }, -{ "type": "Feature", "properties": { "id": 305704, "name": "Coney Island Av/Avenue S", "direction": "N", "lat": 40.60334, "lon": -73.96145, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96145, 40.60334 ] } }, -{ "type": "Feature", "properties": { "id": 305705, "name": "Coney Island Av/Avenue R", "direction": "N", "lat": 40.605663, "lon": -73.96162, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96162, 40.605663 ] } }, -{ "type": "Feature", "properties": { "id": 305706, "name": "Coney Island Av/Kings Hwy", "direction": "N", "lat": 40.60718, "lon": -73.96174, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96174, 40.60718 ] } }, -{ "type": "Feature", "properties": { "id": 305707, "name": "Coney Island Av/Avenue P", "direction": "N", "lat": 40.61042, "lon": -73.962326, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.962326, 40.61042 ] } }, -{ "type": "Feature", "properties": { "id": 305708, "name": "Coney Island Av/Avenue O", "direction": "N", "lat": 40.612907, "lon": -73.96279, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96279, 40.612907 ] } }, -{ "type": "Feature", "properties": { "id": 305709, "name": "Coney Island Av/Avenue N", "direction": "N", "lat": 40.61554, "lon": -73.963295, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.963295, 40.61554 ] } }, -{ "type": "Feature", "properties": { "id": 305710, "name": "Coney Island Av/Chestnut Av", "direction": "N", "lat": 40.617184, "lon": -73.96366, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96366, 40.617184 ] } }, -{ "type": "Feature", "properties": { "id": 305711, "name": "Coney Island Av/Avenue L", "direction": "N", "lat": 40.620354, "lon": -73.9642, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.9642, 40.620354 ] } }, -{ "type": "Feature", "properties": { "id": 305712, "name": "Coney Island Av/Avenue K", "direction": "N", "lat": 40.62273, "lon": -73.96465, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96465, 40.62273 ] } }, -{ "type": "Feature", "properties": { "id": 305713, "name": "Coney Island Av/Avenue J", "direction": "N", "lat": 40.625065, "lon": -73.9651, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.9651, 40.625065 ] } }, -{ "type": "Feature", "properties": { "id": 305715, "name": "Coney Island Av/Avenue H", "direction": "N", "lat": 40.629936, "lon": -73.96602, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96602, 40.629936 ] } }, -{ "type": "Feature", "properties": { "id": 305716, "name": "Coney Island Av/Foster Av", "direction": "N", "lat": 40.63223, "lon": -73.96663, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96663, 40.63223 ] } }, -{ "type": "Feature", "properties": { "id": 305718, "name": "Coney Island Av/Ditmas Av", "direction": "N", "lat": 40.635593, "lon": -73.9676, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.9676, 40.635593 ] } }, -{ "type": "Feature", "properties": { "id": 305719, "name": "Coney Island Av/Dorchester Rd", "direction": "N", "lat": 40.63759, "lon": -73.96818, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96818, 40.63759 ] } }, -{ "type": "Feature", "properties": { "id": 305720, "name": "Coney Island Av/Cortelyou Rd", "direction": "N", "lat": 40.63966, "lon": -73.96877, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96877, 40.63966 ] } }, -{ "type": "Feature", "properties": { "id": 305721, "name": "Coney Island Av/Slocum Pl", "direction": "N", "lat": 40.64201, "lon": -73.96945, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96945, 40.64201 ] } }, -{ "type": "Feature", "properties": { "id": 305722, "name": "Coney Island Av/Beverley Rd", "direction": "N", "lat": 40.64409, "lon": -73.970055, "routes": "B68, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.970055, 40.64409 ] } }, -{ "type": "Feature", "properties": { "id": 305724, "name": "Coney Island Av/Church Av", "direction": "N", "lat": 40.646767, "lon": -73.97083, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97083, 40.646767 ] } }, -{ "type": "Feature", "properties": { "id": 305725, "name": "Coney Island Av/Caton Av", "direction": "N", "lat": 40.648598, "lon": -73.97136, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97136, 40.648598 ] } }, -{ "type": "Feature", "properties": { "id": 305727, "name": "Prospect Park Southwest/Greenwood Av", "direction": "N", "lat": 40.652992, "lon": -73.97269, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97269, 40.652992 ] } }, -{ "type": "Feature", "properties": { "id": 305728, "name": "Prospect Park Southwest/Vanderbilt St", "direction": "N", "lat": 40.655037, "lon": -73.973274, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.973274, 40.655037 ] } }, -{ "type": "Feature", "properties": { "id": 305729, "name": "Prospect Park Southwest/Terrace Pl", "direction": "N", "lat": 40.656765, "lon": -73.97378, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97378, 40.656765 ] } }, -{ "type": "Feature", "properties": { "id": 305730, "name": "Prospect Park Southwest/11 Av", "direction": "NW", "lat": 40.658943, "lon": -73.97544, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97544, 40.658943 ] } }, -{ "type": "Feature", "properties": { "id": 305731, "name": "Prospect Park Southwest/10 Av", "direction": "NW", "lat": 40.66007, "lon": -73.977776, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.977776, 40.66007 ] } }, -{ "type": "Feature", "properties": { "id": 305733, "name": "Prospect Park Southwest/Bartel Pritchard Sq", "direction": "SE", "lat": 40.660698, "lon": -73.97941, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97941, 40.660698 ] } }, -{ "type": "Feature", "properties": { "id": 305734, "name": "Prospect Park Southwest/10 Av", "direction": "SE", "lat": 40.659626, "lon": -73.97722, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97722, 40.659626 ] } }, -{ "type": "Feature", "properties": { "id": 305735, "name": "Prospect Park Southwest/11 Av", "direction": "SE", "lat": 40.65847, "lon": -73.97483, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97483, 40.65847 ] } }, -{ "type": "Feature", "properties": { "id": 305736, "name": "Prospect Park Southwest/Terrace Pl", "direction": "S", "lat": 40.65603, "lon": -73.97376, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97376, 40.65603 ] } }, -{ "type": "Feature", "properties": { "id": 305738, "name": "Prospect Park Southwest/Reeve Pl", "direction": "S", "lat": 40.653606, "lon": -73.97304, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97304, 40.653606 ] } }, -{ "type": "Feature", "properties": { "id": 305739, "name": "Prospect Park Southwest/Greenwood Av", "direction": "S", "lat": 40.65231, "lon": -73.972694, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.972694, 40.65231 ] } }, -{ "type": "Feature", "properties": { "id": 305740, "name": "Coney Island Av/Caton Pl", "direction": "S", "lat": 40.64973, "lon": -73.97196, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97196, 40.64973 ] } }, -{ "type": "Feature", "properties": { "id": 305741, "name": "Coney Island Av/Caton Av", "direction": "S", "lat": 40.64794, "lon": -73.97145, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97145, 40.64794 ] } }, -{ "type": "Feature", "properties": { "id": 305742, "name": "Coney Island Av/Church Av", "direction": "S", "lat": 40.645973, "lon": -73.97088, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97088, 40.645973 ] } }, -{ "type": "Feature", "properties": { "id": 305743, "name": "Coney Island Av/Beverley Rd", "direction": "S", "lat": 40.643402, "lon": -73.97013, "routes": "BM3, B103, BM4, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97013, 40.643402 ] } }, -{ "type": "Feature", "properties": { "id": 305744, "name": "Coney Island Av/Avenue C", "direction": "S", "lat": 40.64089, "lon": -73.96939, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96939, 40.64089 ] } }, -{ "type": "Feature", "properties": { "id": 305745, "name": "Coney Island Av/Cortelyou Rd", "direction": "S", "lat": 40.638695, "lon": -73.968765, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.968765, 40.638695 ] } }, -{ "type": "Feature", "properties": { "id": 305746, "name": "Coney Island Av/Ditmas Av", "direction": "S", "lat": 40.636295, "lon": -73.96807, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96807, 40.636295 ] } }, -{ "type": "Feature", "properties": { "id": 305749, "name": "Coney Island Av/Foster Av", "direction": "S", "lat": 40.63191, "lon": -73.966805, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.966805, 40.63191 ] } }, -{ "type": "Feature", "properties": { "id": 305750, "name": "Coney Island Av/Avenue H", "direction": "S", "lat": 40.629173, "lon": -73.96614, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96614, 40.629173 ] } }, -{ "type": "Feature", "properties": { "id": 305752, "name": "Coney Island Av/Avenue J", "direction": "S", "lat": 40.624416, "lon": -73.96524, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96524, 40.624416 ] } }, -{ "type": "Feature", "properties": { "id": 305753, "name": "Coney Island Av/Avenue K", "direction": "S", "lat": 40.622032, "lon": -73.9648, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.9648, 40.622032 ] } }, -{ "type": "Feature", "properties": { "id": 305754, "name": "Coney Island Av/Avenue L", "direction": "S", "lat": 40.619663, "lon": -73.96434, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96434, 40.619663 ] } }, -{ "type": "Feature", "properties": { "id": 305755, "name": "Coney Island Av/Avenue M", "direction": "S", "lat": 40.617264, "lon": -73.96388, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96388, 40.617264 ] } }, -{ "type": "Feature", "properties": { "id": 305756, "name": "Coney Island Av/Avenue N", "direction": "S", "lat": 40.61487, "lon": -73.96343, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96343, 40.61487 ] } }, -{ "type": "Feature", "properties": { "id": 305757, "name": "Coney Island Av/Avenue O", "direction": "S", "lat": 40.612232, "lon": -73.96294, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96294, 40.612232 ] } }, -{ "type": "Feature", "properties": { "id": 305758, "name": "Coney Island Av/Avenue P", "direction": "S", "lat": 40.609615, "lon": -73.962456, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.962456, 40.609615 ] } }, -{ "type": "Feature", "properties": { "id": 305760, "name": "Coney Island Av/Avenue R", "direction": "S", "lat": 40.60505, "lon": -73.961845, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.961845, 40.60505 ] } }, -{ "type": "Feature", "properties": { "id": 305761, "name": "Coney Island Av/Avenue S", "direction": "S", "lat": 40.602676, "lon": -73.96166, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96166, 40.602676 ] } }, -{ "type": "Feature", "properties": { "id": 305762, "name": "Coney Island Av/Avenue T", "direction": "S", "lat": 40.60024, "lon": -73.96147, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96147, 40.60024 ] } }, -{ "type": "Feature", "properties": { "id": 305763, "name": "Coney Island Av/Avenue U", "direction": "S", "lat": 40.598404, "lon": -73.961334, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.961334, 40.598404 ] } }, -{ "type": "Feature", "properties": { "id": 305764, "name": "Coney Island Av/Avenue V", "direction": "S", "lat": 40.595806, "lon": -73.961136, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.961136, 40.595806 ] } }, -{ "type": "Feature", "properties": { "id": 305765, "name": "Coney Island Av/Avenue W", "direction": "S", "lat": 40.59343, "lon": -73.96096, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96096, 40.59343 ] } }, -{ "type": "Feature", "properties": { "id": 305766, "name": "Coney Island Av/Avenue X", "direction": "S", "lat": 40.59127, "lon": -73.96079, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96079, 40.59127 ] } }, -{ "type": "Feature", "properties": { "id": 305767, "name": "Coney Island Av/Avenue Y", "direction": "S", "lat": 40.589115, "lon": -73.960625, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.960625, 40.589115 ] } }, -{ "type": "Feature", "properties": { "id": 305768, "name": "Coney Island Av/Avenue Z", "direction": "S", "lat": 40.586987, "lon": -73.96046, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96046, 40.586987 ] } }, -{ "type": "Feature", "properties": { "id": 305770, "name": "Coney Island Av/Neptune Av", "direction": "S", "lat": 40.582047, "lon": -73.96008, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96008, 40.582047 ] } }, -{ "type": "Feature", "properties": { "id": 305771, "name": "Coney Island Av/Ocean View Av", "direction": "S", "lat": 40.579784, "lon": -73.959915, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.959915, 40.579784 ] } }, -{ "type": "Feature", "properties": { "id": 305775, "name": "Brighton Beach Av/Brighton 1 Pl", "direction": "E", "lat": 40.576653, "lon": -73.96545, "routes": "B1, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96545, 40.576653 ] } }, -{ "type": "Feature", "properties": { "id": 305792, "name": "15 St/8 Av", "direction": "NW", "lat": 40.662113, "lon": -73.982056, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.982056, 40.662113 ] } }, -{ "type": "Feature", "properties": { "id": 305793, "name": "8 Av/13 St", "direction": "NE", "lat": 40.663563, "lon": -73.98095, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98095, 40.663563 ] } }, -{ "type": "Feature", "properties": { "id": 305794, "name": "8 Av/11 St", "direction": "NE", "lat": 40.664753, "lon": -73.97996, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.97996, 40.664753 ] } }, -{ "type": "Feature", "properties": { "id": 305803, "name": "Vanderbilt Av/Sterling Pl", "direction": "N", "lat": 40.67626, "lon": -73.96925, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96925, 40.67626 ] } }, -{ "type": "Feature", "properties": { "id": 305804, "name": "Vanderbilt Av/Prospect Pl", "direction": "N", "lat": 40.67794, "lon": -73.96864, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96864, 40.67794 ] } }, -{ "type": "Feature", "properties": { "id": 305805, "name": "Vanderbilt Av/Bergen St", "direction": "N", "lat": 40.679703, "lon": -73.96801, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96801, 40.679703 ] } }, -{ "type": "Feature", "properties": { "id": 305806, "name": "Vanderbilt Av/Pacific St", "direction": "N", "lat": 40.681236, "lon": -73.96746, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96746, 40.681236 ] } }, -{ "type": "Feature", "properties": { "id": 305807, "name": "Vanderbilt Av/Fulton St", "direction": "N", "lat": 40.684124, "lon": -73.96795, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96795, 40.684124 ] } }, -{ "type": "Feature", "properties": { "id": 305808, "name": "Vanderbilt Av/Greene Av", "direction": "N", "lat": 40.686283, "lon": -73.96844, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96844, 40.686283 ] } }, -{ "type": "Feature", "properties": { "id": 305809, "name": "Vanderbilt Av/Lafayette Av", "direction": "N", "lat": 40.68778, "lon": -73.96869, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96869, 40.68778 ] } }, -{ "type": "Feature", "properties": { "id": 305810, "name": "Vanderbilt Av/De Kalb Av", "direction": "N", "lat": 40.68935, "lon": -73.969, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.969, 40.68935 ] } }, -{ "type": "Feature", "properties": { "id": 305811, "name": "Vanderbilt Av/Willoughby Av", "direction": "N", "lat": 40.691868, "lon": -73.969505, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.969505, 40.691868 ] } }, -{ "type": "Feature", "properties": { "id": 305831, "name": "Vanderbilt Av/Park Av", "direction": "S", "lat": 40.695568, "lon": -73.9704, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.9704, 40.695568 ] } }, -{ "type": "Feature", "properties": { "id": 305833, "name": "Vanderbilt Av/Willoughby Av", "direction": "S", "lat": 40.691254, "lon": -73.96954, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96954, 40.691254 ] } }, -{ "type": "Feature", "properties": { "id": 305834, "name": "Vanderbilt Av/De Kalb Av", "direction": "S", "lat": 40.689568, "lon": -73.96921, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96921, 40.689568 ] } }, -{ "type": "Feature", "properties": { "id": 305835, "name": "Vanderbilt Av/Lafayette Av", "direction": "S", "lat": 40.687504, "lon": -73.968796, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.968796, 40.687504 ] } }, -{ "type": "Feature", "properties": { "id": 305836, "name": "Vanderbilt Av/Greene Av", "direction": "S", "lat": 40.686478, "lon": -73.96859, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96859, 40.686478 ] } }, -{ "type": "Feature", "properties": { "id": 305837, "name": "Vanderbilt Av/Fulton St", "direction": "S", "lat": 40.683907, "lon": -73.96808, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96808, 40.683907 ] } }, -{ "type": "Feature", "properties": { "id": 305838, "name": "Vanderbilt Av/Atlantic Av", "direction": "S", "lat": 40.681923, "lon": -73.967545, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.967545, 40.681923 ] } }, -{ "type": "Feature", "properties": { "id": 305839, "name": "Vanderbilt Av/Dean St", "direction": "S", "lat": 40.679893, "lon": -73.96818, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96818, 40.679893 ] } }, -{ "type": "Feature", "properties": { "id": 305841, "name": "Vanderbilt Av/Saint Marks Av", "direction": "S", "lat": 40.67825, "lon": -73.968765, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.968765, 40.67825 ] } }, -{ "type": "Feature", "properties": { "id": 305842, "name": "Vanderbilt Av/Park Pl", "direction": "S", "lat": 40.6765, "lon": -73.9694, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.9694, 40.6765 ] } }, -{ "type": "Feature", "properties": { "id": 305852, "name": "Prospect Park West/9 St", "direction": "SW", "lat": 40.664314, "lon": -73.977196, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.977196, 40.664314 ] } }, -{ "type": "Feature", "properties": { "id": 305853, "name": "Prospect Park West/12 St", "direction": "SW", "lat": 40.662598, "lon": -73.97863, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.97863, 40.662598 ] } }, -{ "type": "Feature", "properties": { "id": 305855, "name": "Prospect Park West/16 St", "direction": "SW", "lat": 40.660164, "lon": -73.98067, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98067, 40.660164 ] } }, -{ "type": "Feature", "properties": { "id": 305858, "name": "Prospect Park West/19 St", "direction": "SW", "lat": 40.65694, "lon": -73.98378, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98378, 40.65694 ] } }, -{ "type": "Feature", "properties": { "id": 305872, "name": "7 Av/Poly Pl", "direction": "N", "lat": 40.610268, "lon": -74.02445, "routes": "B70, B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02445, 40.610268 ] } }, -{ "type": "Feature", "properties": { "id": 305873, "name": "7 Av/Poly Prep", "direction": "N", "lat": 40.612347, "lon": -74.023605, "routes": "B8, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.023605, 40.612347 ] } }, -{ "type": "Feature", "properties": { "id": 305883, "name": "8 Av/73 St", "direction": "NE", "lat": 40.628212, "lon": -74.017075, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.017075, 40.628212 ] } }, -{ "type": "Feature", "properties": { "id": 305884, "name": "8 Av/71 St", "direction": "NE", "lat": 40.62943, "lon": -74.015755, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.015755, 40.62943 ] } }, -{ "type": "Feature", "properties": { "id": 305885, "name": "8 Av/Bay Ridge Av", "direction": "NE", "lat": 40.630543, "lon": -74.014595, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.014595, 40.630543 ] } }, -{ "type": "Feature", "properties": { "id": 305886, "name": "8 Av/67 St", "direction": "NE", "lat": 40.631718, "lon": -74.013374, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.013374, 40.631718 ] } }, -{ "type": "Feature", "properties": { "id": 305887, "name": "8 Av/65 St", "direction": "NE", "lat": 40.632874, "lon": -74.01218, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01218, 40.632874 ] } }, -{ "type": "Feature", "properties": { "id": 305888, "name": "8 Av/62 St", "direction": "NE", "lat": 40.634544, "lon": -74.01043, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01043, 40.634544 ] } }, -{ "type": "Feature", "properties": { "id": 305889, "name": "8 Av/60 St", "direction": "NE", "lat": 40.6357, "lon": -74.00923, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00923, 40.6357 ] } }, -{ "type": "Feature", "properties": { "id": 305891, "name": "8 Av/57 St", "direction": "NE", "lat": 40.637405, "lon": -74.00746, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00746, 40.637405 ] } }, -{ "type": "Feature", "properties": { "id": 305892, "name": "8 Av/55 St", "direction": "NE", "lat": 40.638508, "lon": -74.00631, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00631, 40.638508 ] } }, -{ "type": "Feature", "properties": { "id": 305895, "name": "8 Av/50 St", "direction": "NE", "lat": 40.641315, "lon": -74.00339, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00339, 40.641315 ] } }, -{ "type": "Feature", "properties": { "id": 305897, "name": "8 Av/47 St", "direction": "NE", "lat": 40.642982, "lon": -74.001656, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.001656, 40.642982 ] } }, -{ "type": "Feature", "properties": { "id": 305900, "name": "8 Av/41 St", "direction": "NE", "lat": 40.64635, "lon": -73.99815, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -73.99815, 40.64635 ] } }, -{ "type": "Feature", "properties": { "id": 305906, "name": "36 St/4 Av", "direction": "NW", "lat": 40.654583, "lon": -74.004776, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.004776, 40.654583 ] } }, -{ "type": "Feature", "properties": { "id": 305907, "name": "36 St/3 Av", "direction": "NW", "lat": 40.655396, "lon": -74.00613, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00613, 40.655396 ] } }, -{ "type": "Feature", "properties": { "id": 305909, "name": "3 Av/39 St", "direction": "SW", "lat": 40.653984, "lon": -74.00831, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00831, 40.653984 ] } }, -{ "type": "Feature", "properties": { "id": 305922, "name": "8 Av/40 St", "direction": "SW", "lat": 40.64646, "lon": -73.9982, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -73.9982, 40.64646 ] } }, -{ "type": "Feature", "properties": { "id": 305925, "name": "8 Av/46 St", "direction": "SW", "lat": 40.643116, "lon": -74.00167, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00167, 40.643116 ] } }, -{ "type": "Feature", "properties": { "id": 305927, "name": "8 Av/49 St", "direction": "SW", "lat": 40.641426, "lon": -74.003426, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.003426, 40.641426 ] } }, -{ "type": "Feature", "properties": { "id": 305929, "name": "8 Av/52 St", "direction": "SW", "lat": 40.639763, "lon": -74.005165, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.005165, 40.639763 ] } }, -{ "type": "Feature", "properties": { "id": 305932, "name": "8 Av/58 St", "direction": "SW", "lat": 40.63644, "lon": -74.008675, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.008675, 40.63644 ] } }, -{ "type": "Feature", "properties": { "id": 305933, "name": "8 Av/60 St", "direction": "SW", "lat": 40.63528, "lon": -74.009895, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.009895, 40.63528 ] } }, -{ "type": "Feature", "properties": { "id": 305934, "name": "8 Av/62 St", "direction": "SW", "lat": 40.634445, "lon": -74.01076, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01076, 40.634445 ] } }, -{ "type": "Feature", "properties": { "id": 305935, "name": "8 Av/65 St", "direction": "SW", "lat": 40.632404, "lon": -74.01288, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01288, 40.632404 ] } }, -{ "type": "Feature", "properties": { "id": 305936, "name": "8 Av/67 St", "direction": "SW", "lat": 40.631283, "lon": -74.01405, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01405, 40.631283 ] } }, -{ "type": "Feature", "properties": { "id": 305937, "name": "8 Av/Bay Ridge Av", "direction": "SW", "lat": 40.630165, "lon": -74.015205, "routes": "B70, B64" }, "geometry": { "type": "Point", "coordinates": [ -74.015205, 40.630165 ] } }, -{ "type": "Feature", "properties": { "id": 305939, "name": "7 Av Service Rd South/Ovington Av", "direction": "S", "lat": 40.63049, "lon": -74.01752, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01752, 40.63049 ] } }, -{ "type": "Feature", "properties": { "id": 305940, "name": "7 Av Service Rd South/72 St", "direction": "S", "lat": 40.62905, "lon": -74.018, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.018, 40.62905 ] } }, -{ "type": "Feature", "properties": { "id": 305951, "name": "7 Av/92 St", "direction": "S", "lat": 40.61419, "lon": -74.02307, "routes": "B70, B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02307, 40.61419 ] } }, -{ "type": "Feature", "properties": { "id": 305952, "name": "7 Av/Poly Prep", "direction": "S", "lat": 40.61198, "lon": -74.02396, "routes": "B70, B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02396, 40.61198 ] } }, -{ "type": "Feature", "properties": { "id": 305988, "name": "Mermaid Av/W 21 St", "direction": "W", "lat": 40.576298, "lon": -73.98836, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98836, 40.576298 ] } }, -{ "type": "Feature", "properties": { "id": 305989, "name": "Mermaid Av/W 23 St", "direction": "W", "lat": 40.576115, "lon": -73.98997, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98997, 40.576115 ] } }, -{ "type": "Feature", "properties": { "id": 305990, "name": "Mermaid Av/W 25 St", "direction": "W", "lat": 40.57582, "lon": -73.99268, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.99268, 40.57582 ] } }, -{ "type": "Feature", "properties": { "id": 305991, "name": "Mermaid Av/W 28 St", "direction": "W", "lat": 40.575596, "lon": -73.99472, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.99472, 40.575596 ] } }, -{ "type": "Feature", "properties": { "id": 305992, "name": "Mermaid Av/W 30 St", "direction": "W", "lat": 40.575356, "lon": -73.99684, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.99684, 40.575356 ] } }, -{ "type": "Feature", "properties": { "id": 305993, "name": "Mermaid Av/W 32 St", "direction": "W", "lat": 40.57512, "lon": -73.998955, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.998955, 40.57512 ] } }, -{ "type": "Feature", "properties": { "id": 305994, "name": "Mermaid Av/W 36 St", "direction": "W", "lat": 40.57483, "lon": -74.00163, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -74.00163, 40.57483 ] } }, -{ "type": "Feature", "properties": { "id": 306003, "name": "Mermaid Av/W 29 St", "direction": "E", "lat": 40.575455, "lon": -73.9949, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.9949, 40.575455 ] } }, -{ "type": "Feature", "properties": { "id": 306004, "name": "Mermaid Av/W 27 St", "direction": "E", "lat": 40.575676, "lon": -73.992775, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.992775, 40.575676 ] } }, -{ "type": "Feature", "properties": { "id": 306005, "name": "Mermaid Av/W 24 St", "direction": "E", "lat": 40.575905, "lon": -73.99071, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.99071, 40.575905 ] } }, -{ "type": "Feature", "properties": { "id": 306006, "name": "Mermaid Av/W 22 St", "direction": "E", "lat": 40.576134, "lon": -73.98861, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98861, 40.576134 ] } }, -{ "type": "Feature", "properties": { "id": 306018, "name": "9 St/8 Av", "direction": "NW", "lat": 40.665997, "lon": -73.97953, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.97953, 40.665997 ] } }, -{ "type": "Feature", "properties": { "id": 306021, "name": "9 St/5 Av", "direction": "NW", "lat": 40.669434, "lon": -73.98663, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98663, 40.669434 ] } }, -{ "type": "Feature", "properties": { "id": 306022, "name": "9 St/4 Av", "direction": "NW", "lat": 40.670273, "lon": -73.988464, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.988464, 40.670273 ] } }, -{ "type": "Feature", "properties": { "id": 306023, "name": "9 St/3 Av", "direction": "NW", "lat": 40.67143, "lon": -73.99091, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.99091, 40.67143 ] } }, -{ "type": "Feature", "properties": { "id": 306034, "name": "Smith St/Bergen St", "direction": "NE", "lat": 40.686974, "lon": -73.99023, "routes": "B57, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.99023, 40.686974 ] } }, -{ "type": "Feature", "properties": { "id": 306053, "name": "Court St/Schermerhorn St", "direction": "SW", "lat": 40.691086, "lon": -73.991776, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.991776, 40.691086 ] } }, -{ "type": "Feature", "properties": { "id": 306055, "name": "Court St/Amity St", "direction": "SW", "lat": 40.688095, "lon": -73.99322, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99322, 40.688095 ] } }, -{ "type": "Feature", "properties": { "id": 306060, "name": "Court St/President St", "direction": "SW", "lat": 40.681442, "lon": -73.99638, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99638, 40.681442 ] } }, -{ "type": "Feature", "properties": { "id": 306061, "name": "Court St/1 Pl", "direction": "SW", "lat": 40.680046, "lon": -73.997055, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.997055, 40.680046 ] } }, -{ "type": "Feature", "properties": { "id": 306062, "name": "Court St/3 Pl", "direction": "SW", "lat": 40.67842, "lon": -73.99788, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99788, 40.67842 ] } }, -{ "type": "Feature", "properties": { "id": 306063, "name": "Court St/Nelson St", "direction": "SW", "lat": 40.676205, "lon": -73.998924, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.998924, 40.676205 ] } }, -{ "type": "Feature", "properties": { "id": 306064, "name": "Court St/W 9 St", "direction": "SW", "lat": 40.67494, "lon": -73.999535, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.999535, 40.67494 ] } }, -{ "type": "Feature", "properties": { "id": 306069, "name": "9 St/5 Av", "direction": "SE", "lat": 40.668915, "lon": -73.985985, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.985985, 40.668915 ] } }, -{ "type": "Feature", "properties": { "id": 306070, "name": "9 St/6 Av", "direction": "SE", "lat": 40.66777, "lon": -73.98363, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98363, 40.66777 ] } }, -{ "type": "Feature", "properties": { "id": 306072, "name": "9 St/8 Av", "direction": "SE", "lat": 40.665493, "lon": -73.978905, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.978905, 40.665493 ] } }, -{ "type": "Feature", "properties": { "id": 306075, "name": "Prospect Park Southwest/Bartel Pritchard Sq", "direction": "SW", "lat": 40.661373, "lon": -73.97965, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.97965, 40.661373 ] } }, -{ "type": "Feature", "properties": { "id": 306086, "name": "Otsego St/Lorraine St", "direction": "NE", "lat": 40.675026, "lon": -74.009605, "routes": "B61, B57" }, "geometry": { "type": "Point", "coordinates": [ -74.009605, 40.675026 ] } }, -{ "type": "Feature", "properties": { "id": 306087, "name": "Lorraine St/Columbia St", "direction": "E", "lat": 40.674454, "lon": -74.007355, "routes": "B61, B57" }, "geometry": { "type": "Point", "coordinates": [ -74.007355, 40.674454 ] } }, -{ "type": "Feature", "properties": { "id": 306089, "name": "Lorraine St/Henry St", "direction": "E", "lat": 40.67354, "lon": -74.00407, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00407, 40.67354 ] } }, -{ "type": "Feature", "properties": { "id": 306107, "name": "Court St/Hamilton Av", "direction": "S", "lat": 40.674343, "lon": -73.99979, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99979, 40.674343 ] } }, -{ "type": "Feature", "properties": { "id": 306108, "name": "Court St/Lorraine St", "direction": "SW", "lat": 40.67269, "lon": -74.000595, "routes": "B61, B57" }, "geometry": { "type": "Point", "coordinates": [ -74.000595, 40.67269 ] } }, -{ "type": "Feature", "properties": { "id": 306109, "name": "Lorraine St/Clinton St", "direction": "W", "lat": 40.673275, "lon": -74.00276, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00276, 40.673275 ] } }, -{ "type": "Feature", "properties": { "id": 306110, "name": "Lorraine St/Henry St", "direction": "W", "lat": 40.67382, "lon": -74.00475, "routes": "B61, B57" }, "geometry": { "type": "Point", "coordinates": [ -74.00475, 40.67382 ] } }, -{ "type": "Feature", "properties": { "id": 306111, "name": "Lorraine St/Hicks St", "direction": "W", "lat": 40.674225, "lon": -74.00628, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00628, 40.674225 ] } }, -{ "type": "Feature", "properties": { "id": 306112, "name": "Lorraine St/Columbia St", "direction": "W", "lat": 40.67475, "lon": -74.00802, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00802, 40.67475 ] } }, -{ "type": "Feature", "properties": { "id": 306113, "name": "Lorraine St/Otsego St", "direction": "W", "lat": 40.675133, "lon": -74.0094, "routes": "B61, B57" }, "geometry": { "type": "Point", "coordinates": [ -74.0094, 40.675133 ] } }, -{ "type": "Feature", "properties": { "id": 306114, "name": "Dwight St/Dikeman St", "direction": "SW", "lat": 40.674576, "lon": -74.010826, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.010826, 40.674576 ] } }, -{ "type": "Feature", "properties": { "id": 306115, "name": "Dwight St/Van Dyke St", "direction": "SW", "lat": 40.67378, "lon": -74.01178, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01178, 40.67378 ] } }, -{ "type": "Feature", "properties": { "id": 306116, "name": "Van Dyke St/Richards St", "direction": "NW", "lat": 40.674667, "lon": -74.01315, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01315, 40.674667 ] } }, -{ "type": "Feature", "properties": { "id": 306144, "name": "Avenue U/E 54 St", "direction": "NE", "lat": 40.611008, "lon": -73.92041, "routes": "B47, B3, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92041, 40.611008 ] } }, -{ "type": "Feature", "properties": { "id": 306153, "name": "Ralph Av/Avenue N", "direction": "N", "lat": 40.619865, "lon": -73.917244, "routes": "B47, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.917244, 40.619865 ] } }, -{ "type": "Feature", "properties": { "id": 306154, "name": "Ralph Av/E 65 St", "direction": "N", "lat": 40.62226, "lon": -73.91747, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91747, 40.62226 ] } }, -{ "type": "Feature", "properties": { "id": 306155, "name": "Ralph Av/Avenue L", "direction": "N", "lat": 40.624603, "lon": -73.91774, "routes": "B47, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91774, 40.624603 ] } }, -{ "type": "Feature", "properties": { "id": 306156, "name": "Ralph Av/Avenue K", "direction": "N", "lat": 40.62701, "lon": -73.91798, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91798, 40.62701 ] } }, -{ "type": "Feature", "properties": { "id": 306157, "name": "Ralph Av/Avenue J", "direction": "N", "lat": 40.629196, "lon": -73.91828, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91828, 40.629196 ] } }, -{ "type": "Feature", "properties": { "id": 306158, "name": "Ralph Av/Flatlands Av", "direction": "N", "lat": 40.63277, "lon": -73.918594, "routes": "B6, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.918594, 40.63277 ] } }, -{ "type": "Feature", "properties": { "id": 306159, "name": "Ralph Av/Glenwood Rd", "direction": "N", "lat": 40.63439, "lon": -73.91877, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91877, 40.63439 ] } }, -{ "type": "Feature", "properties": { "id": 306160, "name": "Ralph Av/E 76 St", "direction": "N", "lat": 40.636276, "lon": -73.919014, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.919014, 40.636276 ] } }, -{ "type": "Feature", "properties": { "id": 306161, "name": "Ralph Av/Farragut Rd", "direction": "N", "lat": 40.637905, "lon": -73.91915, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91915, 40.637905 ] } }, -{ "type": "Feature", "properties": { "id": 306162, "name": "Ralph Av/Foster Av", "direction": "N", "lat": 40.640705, "lon": -73.91947, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91947, 40.640705 ] } }, -{ "type": "Feature", "properties": { "id": 306165, "name": "Ralph Av/Avenue B", "direction": "N", "lat": 40.64748, "lon": -73.920166, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.920166, 40.64748 ] } }, -{ "type": "Feature", "properties": { "id": 306167, "name": "Ralph Av/E 88 St", "direction": "N", "lat": 40.651264, "lon": -73.920555, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.920555, 40.651264 ] } }, -{ "type": "Feature", "properties": { "id": 306168, "name": "Ralph Av/Church Av", "direction": "N", "lat": 40.653133, "lon": -73.92077, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92077, 40.653133 ] } }, -{ "type": "Feature", "properties": { "id": 306172, "name": "Clarkson Av/Remsen Av", "direction": "NE", "lat": 40.65788, "lon": -73.925026, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.925026, 40.65788 ] } }, -{ "type": "Feature", "properties": { "id": 306173, "name": "Clarkson Av/E 92 St", "direction": "NE", "lat": 40.658802, "lon": -73.923615, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.923615, 40.658802 ] } }, -{ "type": "Feature", "properties": { "id": 306174, "name": "Clarkson Av/E 94 St", "direction": "NE", "lat": 40.65976, "lon": -73.922134, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922134, 40.65976 ] } }, -{ "type": "Feature", "properties": { "id": 306175, "name": "Clarkson Av/E 96 St", "direction": "NE", "lat": 40.660778, "lon": -73.920525, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.920525, 40.660778 ] } }, -{ "type": "Feature", "properties": { "id": 306176, "name": "Rockaway Pkwy/Clarkson Av", "direction": "NW", "lat": 40.661488, "lon": -73.92043, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92043, 40.661488 ] } }, -{ "type": "Feature", "properties": { "id": 306177, "name": "Winthrop St/Rockaway Pkwy", "direction": "NE", "lat": 40.662964, "lon": -73.92146, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92146, 40.662964 ] } }, -{ "type": "Feature", "properties": { "id": 306180, "name": "Rutland Rd/E 98 St", "direction": "SW", "lat": 40.664654, "lon": -73.923454, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.923454, 40.664654 ] } }, -{ "type": "Feature", "properties": { "id": 306181, "name": "Rockaway Pkwy/Winthrop St", "direction": "SE", "lat": 40.66243, "lon": -73.921715, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.921715, 40.66243 ] } }, -{ "type": "Feature", "properties": { "id": 306182, "name": "Clarkson Av/E 96 St", "direction": "SW", "lat": 40.660454, "lon": -73.92126, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92126, 40.660454 ] } }, -{ "type": "Feature", "properties": { "id": 306183, "name": "Clarkson Av/E 94 St", "direction": "SW", "lat": 40.659416, "lon": -73.922874, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922874, 40.659416 ] } }, -{ "type": "Feature", "properties": { "id": 306184, "name": "Clarkson Av/E 91 St", "direction": "SW", "lat": 40.65802, "lon": -73.925026, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.925026, 40.65802 ] } }, -{ "type": "Feature", "properties": { "id": 306189, "name": "Ralph Av/Church Av", "direction": "S", "lat": 40.65259, "lon": -73.92082, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92082, 40.65259 ] } }, -{ "type": "Feature", "properties": { "id": 306190, "name": "Ralph Av/Snyder Av", "direction": "S", "lat": 40.650326, "lon": -73.92062, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92062, 40.650326 ] } }, -{ "type": "Feature", "properties": { "id": 306191, "name": "Ralph Av/Tilden Av", "direction": "S", "lat": 40.648438, "lon": -73.92042, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92042, 40.648438 ] } }, -{ "type": "Feature", "properties": { "id": 306192, "name": "Ralph Av/Beverly Rd", "direction": "S", "lat": 40.647144, "lon": -73.92025, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92025, 40.647144 ] } }, -{ "type": "Feature", "properties": { "id": 306193, "name": "Ralph Av/Clarendon Rd", "direction": "S", "lat": 40.645218, "lon": -73.920044, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.920044, 40.645218 ] } }, -{ "type": "Feature", "properties": { "id": 306195, "name": "Ralph Av/Foster Av", "direction": "S", "lat": 40.639763, "lon": -73.9195, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.9195, 40.639763 ] } }, -{ "type": "Feature", "properties": { "id": 306198, "name": "Ralph Av/Flatlands Av", "direction": "S", "lat": 40.631283, "lon": -73.91862, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91862, 40.631283 ] } }, -{ "type": "Feature", "properties": { "id": 306199, "name": "Ralph Av/Avenue J", "direction": "S", "lat": 40.628414, "lon": -73.918335, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.918335, 40.628414 ] } }, -{ "type": "Feature", "properties": { "id": 306200, "name": "Ralph Av/Avenue K", "direction": "S", "lat": 40.62608, "lon": -73.91806, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91806, 40.62608 ] } }, -{ "type": "Feature", "properties": { "id": 306201, "name": "Ralph Av/Avenue L", "direction": "S", "lat": 40.62378, "lon": -73.91779, "routes": "BM1, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91779, 40.62378 ] } }, -{ "type": "Feature", "properties": { "id": 306202, "name": "Ralph Av/Avenue M", "direction": "S", "lat": 40.621613, "lon": -73.91761, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91761, 40.621613 ] } }, -{ "type": "Feature", "properties": { "id": 306203, "name": "Ralph Av/Avenue N", "direction": "S", "lat": 40.61922, "lon": -73.917336, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.917336, 40.61922 ] } }, -{ "type": "Feature", "properties": { "id": 306204, "name": "Mill Av/Ralph Av", "direction": "SE", "lat": 40.617813, "lon": -73.91665, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91665, 40.617813 ] } }, -{ "type": "Feature", "properties": { "id": 306205, "name": "Mill Av/Avenue T", "direction": "SE", "lat": 40.616783, "lon": -73.91547, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91547, 40.616783 ] } }, -{ "type": "Feature", "properties": { "id": 306206, "name": "Mill Av/Avenue U", "direction": "SW", "lat": 40.615414, "lon": -73.91398, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91398, 40.615414 ] } }, -{ "type": "Feature", "properties": { "id": 306209, "name": "Avenue U/E 54 St", "direction": "SW", "lat": 40.61115, "lon": -73.92065, "routes": "B3, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92065, 40.61115 ] } }, -{ "type": "Feature", "properties": { "id": 306215, "name": "Vandalia Av/Bethel Loop", "direction": "NE", "lat": 40.65204, "lon": -73.88233, "routes": "BM5, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88233, 40.65204 ] } }, -{ "type": "Feature", "properties": { "id": 306216, "name": "Vandalia Av/Van Siclen Av", "direction": "E", "lat": 40.653194, "lon": -73.88151, "routes": "BM5, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88151, 40.653194 ] } }, -{ "type": "Feature", "properties": { "id": 306217, "name": "Van Siclen Av/Flatlands Av", "direction": "N", "lat": 40.654907, "lon": -73.882225, "routes": "B83, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.882225, 40.654907 ] } }, -{ "type": "Feature", "properties": { "id": 306218, "name": "Van Siclen Av/Cozine Av", "direction": "NW", "lat": 40.656616, "lon": -73.88265, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88265, 40.656616 ] } }, -{ "type": "Feature", "properties": { "id": 306219, "name": "Van Siclen Av/Wortman Av", "direction": "NW", "lat": 40.65776, "lon": -73.883606, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.883606, 40.65776 ] } }, -{ "type": "Feature", "properties": { "id": 306220, "name": "Van Siclen Av/Stanley Av", "direction": "NW", "lat": 40.659374, "lon": -73.884705, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.884705, 40.659374 ] } }, -{ "type": "Feature", "properties": { "id": 306221, "name": "Van Siclen Av/Linden Blvd", "direction": "NW", "lat": 40.661022, "lon": -73.885956, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.885956, 40.661022 ] } }, -{ "type": "Feature", "properties": { "id": 306222, "name": "Van Siclen Av/Hegeman Av", "direction": "NW", "lat": 40.662323, "lon": -73.88691, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88691, 40.662323 ] } }, -{ "type": "Feature", "properties": { "id": 306239, "name": "Cortelyou Rd / E 18 St", "direction": "NE", "lat": 40.642464, "lon": -73.96153, "routes": "BM3, BM2, BM1, BM4, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.96153, 40.642464 ] } }, -{ "type": "Feature", "properties": { "id": 306255, "name": "Van Siclen Av/Hegeman Av", "direction": "SE", "lat": 40.661697, "lon": -73.88671, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88671, 40.661697 ] } }, -{ "type": "Feature", "properties": { "id": 306257, "name": "Van Siclen Av/Stanley Av", "direction": "SE", "lat": 40.65872, "lon": -73.884445, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.884445, 40.65872 ] } }, -{ "type": "Feature", "properties": { "id": 306258, "name": "Van Siclen Av/Wortman Av", "direction": "SE", "lat": 40.65736, "lon": -73.88347, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88347, 40.65736 ] } }, -{ "type": "Feature", "properties": { "id": 306259, "name": "Van Siclen Av/Cozine Av", "direction": "SE", "lat": 40.65635, "lon": -73.88268, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88268, 40.65635 ] } }, -{ "type": "Feature", "properties": { "id": 306260, "name": "Van Siclen Av/Flatlands Av", "direction": "S", "lat": 40.654793, "lon": -73.88241, "routes": "BM5, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88241, 40.654793 ] } }, -{ "type": "Feature", "properties": { "id": 306261, "name": "Vandalia Av/Van Siclen Av", "direction": "S", "lat": 40.65346, "lon": -73.88192, "routes": "B83, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.88192, 40.65346 ] } }, -{ "type": "Feature", "properties": { "id": 306262, "name": "Vandalia Av/Ardsley Loop", "direction": "SW", "lat": 40.65152, "lon": -73.88326, "routes": "BM5, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88326, 40.65152 ] } }, -{ "type": "Feature", "properties": { "id": 306264, "name": "Jay St/Chapel St", "direction": "S", "lat": 40.69735, "lon": -73.98706, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98706, 40.69735 ] } }, -{ "type": "Feature", "properties": { "id": 306268, "name": "Stillwell Av/Avenue T", "direction": "N", "lat": 40.598293, "lon": -73.98544, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.98544, 40.598293 ] } }, -{ "type": "Feature", "properties": { "id": 306271, "name": "W 37 St/Canal Av", "direction": "N", "lat": 40.579235, "lon": -74.0036, "routes": "B74, B36" }, "geometry": { "type": "Point", "coordinates": [ -74.0036, 40.579235 ] } }, -{ "type": "Feature", "properties": { "id": 306273, "name": "Flatbush Av/E 46 St", "direction": "NW", "lat": 40.616936, "lon": -73.93046, "routes": "B41, B9" }, "geometry": { "type": "Point", "coordinates": [ -73.93046, 40.616936 ] } }, -{ "type": "Feature", "properties": { "id": 306276, "name": "Fort Hamilton Pkwy/70 St", "direction": "SW", "lat": 40.628056, "lon": -74.01322, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01322, 40.628056 ] } }, -{ "type": "Feature", "properties": { "id": 306280, "name": "Neptune Av/Ocean Pkwy", "direction": "W", "lat": 40.580345, "lon": -73.96813, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.96813, 40.580345 ] } }, -{ "type": "Feature", "properties": { "id": 306286, "name": "13 Av/50 St", "direction": "SW", "lat": 40.634293, "lon": -73.99299, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99299, 40.634293 ] } }, -{ "type": "Feature", "properties": { "id": 306288, "name": "Shell Rd/Avenue X", "direction": "S", "lat": 40.589733, "lon": -73.974304, "routes": "B90, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.974304, 40.589733 ] } }, -{ "type": "Feature", "properties": { "id": 306291, "name": "Euclid Av/Linden Blvd", "direction": "S", "lat": 40.66824, "lon": -73.87016, "routes": "Q08, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87016, 40.66824 ] } }, -{ "type": "Feature", "properties": { "id": 306292, "name": "Cozine Av/Crescent St", "direction": "W", "lat": 40.662247, "lon": -73.86717, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86717, 40.662247 ] } }, -{ "type": "Feature", "properties": { "id": 306304, "name": "Utica Av/Empire Blvd", "direction": "S", "lat": 40.663715, "lon": -73.93172, "routes": "B46, B46+, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.93172, 40.663715 ] } }, -{ "type": "Feature", "properties": { "id": 306318, "name": "Avenue N/E 45 St", "direction": "E", "lat": 40.61858, "lon": -73.93183, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.93183, 40.61858 ] } }, -{ "type": "Feature", "properties": { "id": 306322, "name": "Empire Blvd/Lamont Ct", "direction": "E", "lat": 40.66402, "lon": -73.94368, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94368, 40.66402 ] } }, -{ "type": "Feature", "properties": { "id": 306324, "name": "Flatbush Av/Avenue D", "direction": "NW", "lat": 40.6408, "lon": -73.955795, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.955795, 40.6408 ] } }, -{ "type": "Feature", "properties": { "id": 306325, "name": "Flatbush Av/Empire Blvd", "direction": "NW", "lat": 40.663013, "lon": -73.96221, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.96221, 40.663013 ] } }, -{ "type": "Feature", "properties": { "id": 306328, "name": "Smith St/Fulton St", "direction": "NE", "lat": 40.691216, "lon": -73.9874, "routes": "B61, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.9874, 40.691216 ] } }, -{ "type": "Feature", "properties": { "id": 306332, "name": "Ralph Av/Chase Ct", "direction": "S", "lat": 40.641876, "lon": -73.919716, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.919716, 40.641876 ] } }, -{ "type": "Feature", "properties": { "id": 306333, "name": "Ralph Av/E 86 St", "direction": "N", "lat": 40.6483, "lon": -73.92025, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92025, 40.6483 ] } }, -{ "type": "Feature", "properties": { "id": 306337, "name": "Sands St/Pearl St", "direction": "E", "lat": 40.69992, "lon": -73.987595, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.987595, 40.69992 ] } }, -{ "type": "Feature", "properties": { "id": 306340, "name": "Bedford Av/Campus Rd", "direction": "S", "lat": 40.63196, "lon": -73.95286, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.95286, 40.63196 ] } }, -{ "type": "Feature", "properties": { "id": 306341, "name": "Shore Pkwy/Bayside Oil", "direction": "SE", "lat": 40.59263, "lon": -73.99585, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99585, 40.59263 ] } }, -{ "type": "Feature", "properties": { "id": 306343, "name": "Buffalo Av/Prospect Pl", "direction": "N", "lat": 40.673264, "lon": -73.92506, "routes": "B15, B45, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.92506, 40.673264 ] } }, -{ "type": "Feature", "properties": { "id": 306344, "name": "Beverly Rd/Kings Hwy", "direction": "W", "lat": 40.646732, "lon": -73.92431, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.92431, 40.646732 ] } }, -{ "type": "Feature", "properties": { "id": 306345, "name": "Avenue D/E 42 St", "direction": "E", "lat": 40.641613, "lon": -73.93666, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.93666, 40.641613 ] } }, -{ "type": "Feature", "properties": { "id": 306347, "name": "Glenwood Rd/Albany Av", "direction": "E", "lat": 40.634567, "lon": -73.93743, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.93743, 40.634567 ] } }, -{ "type": "Feature", "properties": { "id": 306348, "name": "East New York Av/Ralph Av", "direction": "SW", "lat": 40.66699, "lon": -73.92311, "routes": "B47, B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92311, 40.66699 ] } }, -{ "type": "Feature", "properties": { "id": 306349, "name": "Clarkson Av/Kings County Hospital", "direction": "W", "lat": 40.655834, "lon": -73.94444, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.94444, 40.655834 ] } }, -{ "type": "Feature", "properties": { "id": 306359, "name": "Crescent St/Jamaica Av", "direction": "N", "lat": 40.6892, "lon": -73.87388, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87388, 40.6892 ] } }, -{ "type": "Feature", "properties": { "id": 306362, "name": "Jamaica Av/Crescent St", "direction": "SW", "lat": 40.68916, "lon": -73.874504, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.874504, 40.68916 ] } }, -{ "type": "Feature", "properties": { "id": 306366, "name": "Mill Av/Avenue T", "direction": "NW", "lat": 40.61733, "lon": -73.91588, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91588, 40.61733 ] } }, -{ "type": "Feature", "properties": { "id": 306370, "name": "Avenue X/Ocean Pkwy", "direction": "W", "lat": 40.5911, "lon": -73.965805, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.965805, 40.5911 ] } }, -{ "type": "Feature", "properties": { "id": 306371, "name": "W 37 St/Bay View Av", "direction": "N", "lat": 40.580723, "lon": -74.003876, "routes": "B74, B36" }, "geometry": { "type": "Point", "coordinates": [ -74.003876, 40.580723 ] } }, -{ "type": "Feature", "properties": { "id": 306373, "name": "Bayview Av/W 36 St", "direction": "E", "lat": 40.580933, "lon": -74.002495, "routes": "B36, B74" }, "geometry": { "type": "Point", "coordinates": [ -74.002495, 40.580933 ] } }, -{ "type": "Feature", "properties": { "id": 306374, "name": "Schaefer St/Bushwick Av", "direction": "SW", "lat": 40.68554, "lon": -73.911964, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.911964, 40.68554 ] } }, -{ "type": "Feature", "properties": { "id": 306381, "name": "Glenwood Rd/E 58 St", "direction": "NE", "lat": 40.633675, "lon": -73.919945, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.919945, 40.633675 ] } }, -{ "type": "Feature", "properties": { "id": 306382, "name": "Glenwood Rd/E 100 St", "direction": "NE", "lat": 40.64679, "lon": -73.89964, "routes": "B82, B60, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.89964, 40.64679 ] } }, -{ "type": "Feature", "properties": { "id": 306393, "name": "Gardner Av/Grand St", "direction": "NW", "lat": 40.715317, "lon": -73.9268, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.9268, 40.715317 ] } }, -{ "type": "Feature", "properties": { "id": 306395, "name": "Lafayette Av/Patchen Av", "direction": "E", "lat": 40.692493, "lon": -73.92811, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.92811, 40.692493 ] } }, -{ "type": "Feature", "properties": { "id": 306405, "name": "Rockaway Pkwy/Schenck St", "direction": "SE", "lat": 40.631428, "lon": -73.88728, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.88728, 40.631428 ] } }, -{ "type": "Feature", "properties": { "id": 306419, "name": "Stillwell Av/Neptune Av", "direction": "S", "lat": 40.579067, "lon": -73.98201, "routes": "B68, B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98201, 40.579067 ] } }, -{ "type": "Feature", "properties": { "id": 306420, "name": "Avenue H/E 56 St", "direction": "E", "lat": 40.633156, "lon": -73.92219, "routes": "B6, B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.92219, 40.633156 ] } }, -{ "type": "Feature", "properties": { "id": 306421, "name": "7 Av/19 St", "direction": "NE", "lat": 40.660007, "lon": -73.98752, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.98752, 40.660007 ] } }, -{ "type": "Feature", "properties": { "id": 306437, "name": "Old Fulton St/Hicks St", "direction": "SE", "lat": 40.70203, "lon": -73.992744, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.992744, 40.70203 ] } }, -{ "type": "Feature", "properties": { "id": 306438, "name": "Empire Blvd/Utica Av", "direction": "W", "lat": 40.6636, "lon": -73.93216, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93216, 40.6636 ] } }, -{ "type": "Feature", "properties": { "id": 306442, "name": "Palmetto St/Wyckoff Av", "direction": "NE", "lat": 40.700466, "lon": -73.90999, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90999, 40.700466 ] } }, -{ "type": "Feature", "properties": { "id": 306446, "name": "Avenue I/Coney Island Av", "direction": "W", "lat": 40.627163, "lon": -73.96612, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.96612, 40.627163 ] } }, -{ "type": "Feature", "properties": { "id": 306452, "name": "Pennsylvania Av/Hornell Loop", "direction": "NW", "lat": 40.645187, "lon": -73.878555, "routes": "B83, BM2, B82, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.878555, 40.645187 ] } }, -{ "type": "Feature", "properties": { "id": 306454, "name": "Church Av/E 93 St", "direction": "SW", "lat": 40.65394, "lon": -73.91831, "routes": "B8, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.91831, 40.65394 ] } }, -{ "type": "Feature", "properties": { "id": 306457, "name": "86 St/Stillwell Av", "direction": "SE", "lat": 40.596733, "lon": -73.98536, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.98536, 40.596733 ] } }, -{ "type": "Feature", "properties": { "id": 306461, "name": "Broadway/Bedford Av", "direction": "E", "lat": 40.710194, "lon": -73.963554, "routes": "B32, Q59, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.963554, 40.710194 ] } }, -{ "type": "Feature", "properties": { "id": 306465, "name": "Lafayette Av/Marcus Garvey Blvd", "direction": "E", "lat": 40.69121, "lon": -73.93927, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.93927, 40.69121 ] } }, -{ "type": "Feature", "properties": { "id": 306466, "name": "De Kalb Av/Marcus Garvey Blvd", "direction": "W", "lat": 40.692703, "lon": -73.9399, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.9399, 40.692703 ] } }, -{ "type": "Feature", "properties": { "id": 306468, "name": "Nostrand Av/Flatbush Av", "direction": "S", "lat": 40.63242, "lon": -73.9477, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.9477, 40.63242 ] } }, -{ "type": "Feature", "properties": { "id": 306470, "name": "Cropsey Av/Bay 17 St", "direction": "SE", "lat": 40.602848, "lon": -74.007996, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.007996, 40.602848 ] } }, -{ "type": "Feature", "properties": { "id": 306474, "name": "Graham Av/Scholes St", "direction": "N", "lat": 40.70911, "lon": -73.94341, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94341, 40.70911 ] } }, -{ "type": "Feature", "properties": { "id": 306476, "name": "Graham Av/Jackson St", "direction": "N", "lat": 40.71696, "lon": -73.94474, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94474, 40.71696 ] } }, -{ "type": "Feature", "properties": { "id": 306477, "name": "Empire Blvd/Utica Av", "direction": "E", "lat": 40.663517, "lon": -73.93152, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.93152, 40.663517 ] } }, -{ "type": "Feature", "properties": { "id": 306479, "name": "Utica Av/East New York Av", "direction": "S", "lat": 40.66284, "lon": -73.93169, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93169, 40.66284 ] } }, -{ "type": "Feature", "properties": { "id": 306480, "name": "Meeker Av/Stewart Av", "direction": "NE", "lat": 40.72671, "lon": -73.93423, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.93423, 40.72671 ] } }, -{ "type": "Feature", "properties": { "id": 306487, "name": "Greenpoint Av/North Henry St", "direction": "E", "lat": 40.73213, "lon": -73.94422, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94422, 40.73213 ] } }, -{ "type": "Feature", "properties": { "id": 306495, "name": "Bergen St/Bedford Av", "direction": "W", "lat": 40.676384, "lon": -73.953476, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.953476, 40.676384 ] } }, -{ "type": "Feature", "properties": { "id": 306496, "name": "Bedford Av/Winthrop St", "direction": "S", "lat": 40.65678, "lon": -73.95657, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95657, 40.65678 ] } }, -{ "type": "Feature", "properties": { "id": 306500, "name": "Bedford Av/President St", "direction": "S", "lat": 40.66807, "lon": -73.956116, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.956116, 40.66807 ] } }, -{ "type": "Feature", "properties": { "id": 306502, "name": "Ralph Av/Chase Ct", "direction": "N", "lat": 40.64245, "lon": -73.91966, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91966, 40.64245 ] } }, -{ "type": "Feature", "properties": { "id": 306515, "name": "Mermaid Av/W 20 St", "direction": "E", "lat": 40.576366, "lon": -73.986496, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.986496, 40.576366 ] } }, -{ "type": "Feature", "properties": { "id": 306519, "name": "14 Av/53 St", "direction": "NE", "lat": 40.63164, "lon": -73.99194, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99194, 40.63164 ] } }, -{ "type": "Feature", "properties": { "id": 306520, "name": "14 Av/50 St", "direction": "NE", "lat": 40.63333, "lon": -73.99019, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99019, 40.63333 ] } }, -{ "type": "Feature", "properties": { "id": 306521, "name": "14 Av/47 St", "direction": "NE", "lat": 40.635006, "lon": -73.98844, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98844, 40.635006 ] } }, -{ "type": "Feature", "properties": { "id": 306522, "name": "14 Av/44 St", "direction": "NE", "lat": 40.636696, "lon": -73.98669, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98669, 40.636696 ] } }, -{ "type": "Feature", "properties": { "id": 306523, "name": "14 Av/41 St", "direction": "NE", "lat": 40.63837, "lon": -73.98495, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98495, 40.63837 ] } }, -{ "type": "Feature", "properties": { "id": 306524, "name": "14 Av/39 St", "direction": "NE", "lat": 40.639484, "lon": -73.98378, "routes": "B16, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98378, 40.639484 ] } }, -{ "type": "Feature", "properties": { "id": 306526, "name": "36 St/Church Av", "direction": "NW", "lat": 40.64128, "lon": -73.98275, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.98275, 40.64128 ] } }, -{ "type": "Feature", "properties": { "id": 306530, "name": "Gates Av/Marcus Garvey Blvd", "direction": "W", "lat": 40.687515, "lon": -73.939384, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.939384, 40.687515 ] } }, -{ "type": "Feature", "properties": { "id": 306532, "name": "39 St/13 Av", "direction": "SE", "lat": 40.64039, "lon": -73.98604, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98604, 40.64039 ] } }, -{ "type": "Feature", "properties": { "id": 306533, "name": "Cadman Plaza West/Montague St", "direction": "N", "lat": 40.693577, "lon": -73.99041, "routes": "B103, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.99041, 40.693577 ] } }, -{ "type": "Feature", "properties": { "id": 306537, "name": "Fort Hamilton Pkwy/60 St", "direction": "NE", "lat": 40.632957, "lon": -74.0056, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.0056, 40.632957 ] } }, -{ "type": "Feature", "properties": { "id": 306538, "name": "Fort Hamilton Pkwy/59 St", "direction": "NE", "lat": 40.633736, "lon": -74.00444, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00444, 40.633736 ] } }, -{ "type": "Feature", "properties": { "id": 306540, "name": "56 St/11 Av", "direction": "SE", "lat": 40.63354, "lon": -74.00032, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00032, 40.63354 ] } }, -{ "type": "Feature", "properties": { "id": 306541, "name": "56 St/12 Av", "direction": "SE", "lat": 40.6322, "lon": -73.998116, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.998116, 40.6322 ] } }, -{ "type": "Feature", "properties": { "id": 306542, "name": "56 St/13 Av", "direction": "SE", "lat": 40.63114, "lon": -73.99635, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99635, 40.63114 ] } }, -{ "type": "Feature", "properties": { "id": 306543, "name": "56 St/New Utrecht Av", "direction": "SE", "lat": 40.63053, "lon": -73.99535, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99535, 40.63053 ] } }, -{ "type": "Feature", "properties": { "id": 306544, "name": "14 Av/56 St", "direction": "NE", "lat": 40.629955, "lon": -73.993706, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.993706, 40.629955 ] } }, -{ "type": "Feature", "properties": { "id": 306549, "name": "Mcdonald Av/Avenue C", "direction": "N", "lat": 40.64106, "lon": -73.979004, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.979004, 40.64106 ] } }, -{ "type": "Feature", "properties": { "id": 306550, "name": "Mcdonald Av/Church Av", "direction": "N", "lat": 40.64339, "lon": -73.97949, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97949, 40.64339 ] } }, -{ "type": "Feature", "properties": { "id": 306551, "name": "Mcdonald Av/Albemarle Rd", "direction": "N", "lat": 40.645477, "lon": -73.9799, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.9799, 40.645477 ] } }, -{ "type": "Feature", "properties": { "id": 306553, "name": "Mcdonald Av/Greenwood Av", "direction": "N", "lat": 40.649876, "lon": -73.98071, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.98071, 40.649876 ] } }, -{ "type": "Feature", "properties": { "id": 306554, "name": "Mcdonald Av/Vanderbilt Av", "direction": "N", "lat": 40.651955, "lon": -73.981125, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.981125, 40.651955 ] } }, -{ "type": "Feature", "properties": { "id": 306555, "name": "Mcdonald Av/Terrace Pl", "direction": "N", "lat": 40.65372, "lon": -73.981476, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.981476, 40.65372 ] } }, -{ "type": "Feature", "properties": { "id": 306556, "name": "20 St/10 Av", "direction": "NW", "lat": 40.65536, "lon": -73.98195, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98195, 40.65536 ] } }, -{ "type": "Feature", "properties": { "id": 306558, "name": "Mcdonald Av/Terrace Pl", "direction": "S", "lat": 40.653053, "lon": -73.9815, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.9815, 40.653053 ] } }, -{ "type": "Feature", "properties": { "id": 306559, "name": "Mcdonald Av/Vanderbilt St", "direction": "S", "lat": 40.65125, "lon": -73.98111, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98111, 40.65125 ] } }, -{ "type": "Feature", "properties": { "id": 306560, "name": "Mcdonald Av/Greenwood Av", "direction": "S", "lat": 40.649147, "lon": -73.98071, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.98071, 40.649147 ] } }, -{ "type": "Feature", "properties": { "id": 306562, "name": "Mcdonald Av/Caton Av", "direction": "S", "lat": 40.646942, "lon": -73.9803, "routes": "BM3, B67, BM4, B69, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.9803, 40.646942 ] } }, -{ "type": "Feature", "properties": { "id": 306563, "name": "Mcdonald Av/Albemarle Rd", "direction": "S", "lat": 40.644794, "lon": -73.97988, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97988, 40.644794 ] } }, -{ "type": "Feature", "properties": { "id": 306564, "name": "Mcdonald Av/Church Av", "direction": "S", "lat": 40.64194, "lon": -73.97933, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97933, 40.64194 ] } }, -{ "type": "Feature", "properties": { "id": 306565, "name": "Mcdonald Av/Avenue C", "direction": "S", "lat": 40.639954, "lon": -73.97926, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.97926, 40.639954 ] } }, -{ "type": "Feature", "properties": { "id": 306566, "name": "Mcdonald Av/Cortelyou Rd", "direction": "S", "lat": 40.63816, "lon": -73.978935, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.978935, 40.63816 ] } }, -{ "type": "Feature", "properties": { "id": 306567, "name": "Avenue Z/E 28 St", "direction": "E", "lat": 40.58932, "lon": -73.9414, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.9414, 40.58932 ] } }, -{ "type": "Feature", "properties": { "id": 306568, "name": "Atlantic Av/Chestnut St", "direction": "W", "lat": 40.680904, "lon": -73.87478, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.87478, 40.680904 ] } }, -{ "type": "Feature", "properties": { "id": 306570, "name": "Graham Av/Jackson St", "direction": "S", "lat": 40.716366, "lon": -73.94474, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94474, 40.716366 ] } }, -{ "type": "Feature", "properties": { "id": 306571, "name": "20 St/Prospect Park West", "direction": "NW", "lat": 40.656834, "lon": -73.984314, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.984314, 40.656834 ] } }, -{ "type": "Feature", "properties": { "id": 306573, "name": "19 St/Prospect Park West", "direction": "SE", "lat": 40.656666, "lon": -73.982735, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.982735, 40.656666 ] } }, -{ "type": "Feature", "properties": { "id": 306579, "name": "52 St/4 Av", "direction": "SE", "lat": 40.645435, "lon": -74.01399, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01399, 40.645435 ] } }, -{ "type": "Feature", "properties": { "id": 306580, "name": "50 St/4 Av", "direction": "SE", "lat": 40.64619, "lon": -74.01222, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01222, 40.64619 ] } }, -{ "type": "Feature", "properties": { "id": 306581, "name": "50 St/5 Av", "direction": "SE", "lat": 40.64486, "lon": -74.01002, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01002, 40.64486 ] } }, -{ "type": "Feature", "properties": { "id": 306582, "name": "49 St/6 Av", "direction": "NW", "lat": 40.64452, "lon": -74.007744, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.007744, 40.64452 ] } }, -{ "type": "Feature", "properties": { "id": 306583, "name": "49 St/5 Av", "direction": "NW", "lat": 40.645905, "lon": -74.01004, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01004, 40.645905 ] } }, -{ "type": "Feature", "properties": { "id": 306584, "name": "49 St/4 Av", "direction": "NW", "lat": 40.646976, "lon": -74.01181, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01181, 40.646976 ] } }, -{ "type": "Feature", "properties": { "id": 306585, "name": "4 Av/53 St", "direction": "SW", "lat": 40.644585, "lon": -74.01475, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01475, 40.644585 ] } }, -{ "type": "Feature", "properties": { "id": 306586, "name": "55 St/4 Av", "direction": "NW", "lat": 40.643967, "lon": -74.015884, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.015884, 40.643967 ] } }, -{ "type": "Feature", "properties": { "id": 306587, "name": "55 St/3 Av", "direction": "NW", "lat": 40.645176, "lon": -74.017975, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.017975, 40.645176 ] } }, -{ "type": "Feature", "properties": { "id": 306589, "name": "Flatlands Av/Rockaway Pkwy", "direction": "SW", "lat": 40.643623, "lon": -73.90079, "routes": "B6, B82, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90079, 40.643623 ] } }, -{ "type": "Feature", "properties": { "id": 306590, "name": "Rockaway Pkwy/Flatlands Av", "direction": "SE", "lat": 40.643078, "lon": -73.90018, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.90018, 40.643078 ] } }, -{ "type": "Feature", "properties": { "id": 306591, "name": "56 St/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.634754, "lon": -74.002335, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.002335, 40.634754 ] } }, -{ "type": "Feature", "properties": { "id": 306594, "name": "W 5 St/West Brighton Av", "direction": "N", "lat": 40.577103, "lon": -73.97262, "routes": "B36, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97262, 40.577103 ] } }, -{ "type": "Feature", "properties": { "id": 306600, "name": "Graham Av/Cook St", "direction": "N", "lat": 40.70264, "lon": -73.942345, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.942345, 40.70264 ] } }, -{ "type": "Feature", "properties": { "id": 306603, "name": "Mother Gaston Blvd/Sutter Av", "direction": "S", "lat": 40.66739, "lon": -73.906425, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.906425, 40.66739 ] } }, -{ "type": "Feature", "properties": { "id": 306604, "name": "Mother Gaston Blvd/Blake Av", "direction": "S", "lat": 40.666298, "lon": -73.90614, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90614, 40.666298 ] } }, -{ "type": "Feature", "properties": { "id": 306619, "name": "Shore Rd/3 Av", "direction": "SE", "lat": 40.612255, "lon": -74.03588, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.03588, 40.612255 ] } }, -{ "type": "Feature", "properties": { "id": 306620, "name": "E 80 St/Avenue M", "direction": "NW", "lat": 40.62992, "lon": -73.905075, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.905075, 40.62992 ] } }, -{ "type": "Feature", "properties": { "id": 306622, "name": "Graham Av/Bayard St", "direction": "NW", "lat": 40.72046, "lon": -73.94618, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94618, 40.72046 ] } }, -{ "type": "Feature", "properties": { "id": 306623, "name": "Driggs Av/Leonard St", "direction": "SW", "lat": 40.722412, "lon": -73.949486, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.949486, 40.722412 ] } }, -{ "type": "Feature", "properties": { "id": 306624, "name": "New York Av/East New York Av", "direction": "N", "lat": 40.662064, "lon": -73.947784, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.947784, 40.662064 ] } }, -{ "type": "Feature", "properties": { "id": 306633, "name": "9 St/4 Av", "direction": "SE", "lat": 40.67037, "lon": -73.98899, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98899, 40.67037 ] } }, -{ "type": "Feature", "properties": { "id": 306634, "name": "9 St/7 Av", "direction": "SE", "lat": 40.666885, "lon": -73.98178, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98178, 40.666885 ] } }, -{ "type": "Feature", "properties": { "id": 306636, "name": "39 St/9 Av", "direction": "SE", "lat": 40.645702, "lon": -73.99484, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.99484, 40.645702 ] } }, -{ "type": "Feature", "properties": { "id": 306639, "name": "70 St/7 Av", "direction": "NW", "lat": 40.630283, "lon": -74.01621, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01621, 40.630283 ] } }, -{ "type": "Feature", "properties": { "id": 306655, "name": "Surf Av/W 28 St", "direction": "E", "lat": 40.572983, "lon": -73.993324, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.993324, 40.572983 ] } }, -{ "type": "Feature", "properties": { "id": 306656, "name": "Surf Av/W 25 St", "direction": "E", "lat": 40.57344, "lon": -73.991264, "routes": "X38, B36, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.991264, 40.57344 ] } }, -{ "type": "Feature", "properties": { "id": 306658, "name": "Surf Av/W 16 St", "direction": "E", "lat": 40.5754, "lon": -73.98298, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.98298, 40.5754 ] } }, -{ "type": "Feature", "properties": { "id": 306659, "name": "De Kalb Av/Ryerson Av", "direction": "W", "lat": 40.69001, "lon": -73.96372, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.96372, 40.69001 ] } }, -{ "type": "Feature", "properties": { "id": 306665, "name": "Atlantic Av/Carlton Av", "direction": "E", "lat": 40.6822, "lon": -73.97028, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.97028, 40.6822 ] } }, -{ "type": "Feature", "properties": { "id": 306676, "name": "Graham Av/Seigel St", "direction": "N", "lat": 40.70479, "lon": -73.94271, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94271, 40.70479 ] } }, -{ "type": "Feature", "properties": { "id": 306677, "name": "Graham Av/Johnson Av", "direction": "N", "lat": 40.706924, "lon": -73.94306, "routes": "B60, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94306, 40.706924 ] } }, -{ "type": "Feature", "properties": { "id": 306680, "name": "3 Av/Shore Rd", "direction": "SW", "lat": 40.612762, "lon": -74.03606, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.03606, 40.612762 ] } }, -{ "type": "Feature", "properties": { "id": 306696, "name": "Thornton St/Throop Av", "direction": "SW", "lat": 40.70062, "lon": -73.94425, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94425, 40.70062 ] } }, -{ "type": "Feature", "properties": { "id": 306701, "name": "Emmons Av/Ford St", "direction": "W", "lat": 40.584152, "lon": -73.93484, "routes": "B4, BM3, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.93484, 40.584152 ] } }, -{ "type": "Feature", "properties": { "id": 306702, "name": "Emmons Av/Brown St", "direction": "W", "lat": 40.584087, "lon": -73.9367, "routes": "B44, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9367, 40.584087 ] } }, -{ "type": "Feature", "properties": { "id": 306707, "name": "Pitkin Av/Rockaway Av", "direction": "E", "lat": 40.66968, "lon": -73.91034, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.91034, 40.66968 ] } }, -{ "type": "Feature", "properties": { "id": 306708, "name": "Pitkin Av/Osborn St", "direction": "E", "lat": 40.669956, "lon": -73.90848, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90848, 40.669956 ] } }, -{ "type": "Feature", "properties": { "id": 306709, "name": "Mother Gaston Blvd/Pitkin Av", "direction": "S", "lat": 40.66991, "lon": -73.90703, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90703, 40.66991 ] } }, -{ "type": "Feature", "properties": { "id": 306710, "name": "Mother Gaston Blvd/Belmont Av", "direction": "S", "lat": 40.66864, "lon": -73.90671, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.90671, 40.66864 ] } }, -{ "type": "Feature", "properties": { "id": 306711, "name": "14 Av/Church Av", "direction": "NE", "lat": 40.64189, "lon": -73.981285, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.981285, 40.64189 ] } }, -{ "type": "Feature", "properties": { "id": 306713, "name": "Johnson Av/Bushwick Av", "direction": "W", "lat": 40.70693, "lon": -73.94009, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.94009, 40.70693 ] } }, -{ "type": "Feature", "properties": { "id": 306716, "name": "Flatbush Av/Grand Army Plaza", "direction": "SE", "lat": 40.672222, "lon": -73.96901, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.96901, 40.672222 ] } }, -{ "type": "Feature", "properties": { "id": 306722, "name": "Rockaway Av/Riverdale Av", "direction": "N", "lat": 40.66133, "lon": -73.90853, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90853, 40.66133 ] } }, -{ "type": "Feature", "properties": { "id": 306723, "name": "Rockaway Av/Livonia Av", "direction": "N", "lat": 40.662365, "lon": -73.9088, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9088, 40.662365 ] } }, -{ "type": "Feature", "properties": { "id": 306724, "name": "Rockaway Av/Dumont Av", "direction": "N", "lat": 40.664425, "lon": -73.90931, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90931, 40.664425 ] } }, -{ "type": "Feature", "properties": { "id": 306725, "name": "Rockaway Av/Blake Av", "direction": "N", "lat": 40.665955, "lon": -73.9097, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.9097, 40.665955 ] } }, -{ "type": "Feature", "properties": { "id": 306726, "name": "Rockaway Av/Sutter Av", "direction": "N", "lat": 40.667492, "lon": -73.910095, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.910095, 40.667492 ] } }, -{ "type": "Feature", "properties": { "id": 306727, "name": "Rockaway Av/Belmont Av", "direction": "N", "lat": 40.668674, "lon": -73.91041, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91041, 40.668674 ] } }, -{ "type": "Feature", "properties": { "id": 306728, "name": "Rockaway Av/Pitkin Av", "direction": "N", "lat": 40.670002, "lon": -73.91074, "routes": "B12, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91074, 40.670002 ] } }, -{ "type": "Feature", "properties": { "id": 306730, "name": "Ocean Av/Foster Av", "direction": "S", "lat": 40.636, "lon": -73.95844, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95844, 40.636 ] } }, -{ "type": "Feature", "properties": { "id": 306731, "name": "Lynch St/Bedford Av", "direction": "NE", "lat": 40.69985, "lon": -73.957344, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.957344, 40.69985 ] } }, -{ "type": "Feature", "properties": { "id": 306733, "name": "Gerritsen Av/Avenue X", "direction": "NW", "lat": 40.59677, "lon": -73.92937, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.92937, 40.59677 ] } }, -{ "type": "Feature", "properties": { "id": 306734, "name": "Dumont Av/Mother Gaston Blvd", "direction": "W", "lat": 40.664764, "lon": -73.9054, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.9054, 40.664764 ] } }, -{ "type": "Feature", "properties": { "id": 306755, "name": "Park Av/Carlton Av", "direction": "E", "lat": 40.695866, "lon": -73.97296, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.97296, 40.695866 ] } }, -{ "type": "Feature", "properties": { "id": 306757, "name": "Park Av/Vanderbilt Av", "direction": "E", "lat": 40.69576, "lon": -73.96992, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96992, 40.69576 ] } }, -{ "type": "Feature", "properties": { "id": 306759, "name": "Park Av/Washington Av", "direction": "E", "lat": 40.695652, "lon": -73.966896, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.966896, 40.695652 ] } }, -{ "type": "Feature", "properties": { "id": 306760, "name": "Park Av/Ryerson St", "direction": "E", "lat": 40.695557, "lon": -73.964966, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.964966, 40.695557 ] } }, -{ "type": "Feature", "properties": { "id": 306762, "name": "Classon Av/Park Av", "direction": "N", "lat": 40.69652, "lon": -73.9616, "routes": "B48, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9616, 40.69652 ] } }, -{ "type": "Feature", "properties": { "id": 306763, "name": "Kent Av/Williamsburg St East", "direction": "NW", "lat": 40.700176, "lon": -73.962074, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.962074, 40.700176 ] } }, -{ "type": "Feature", "properties": { "id": 306765, "name": "Wythe Av/Keap St", "direction": "W", "lat": 40.702633, "lon": -73.9628, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9628, 40.702633 ] } }, -{ "type": "Feature", "properties": { "id": 306777, "name": "Park Av/Washington Av", "direction": "W", "lat": 40.696053, "lon": -73.96786, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96786, 40.696053 ] } }, -{ "type": "Feature", "properties": { "id": 306778, "name": "Park Av/Vanderbilt Av", "direction": "W", "lat": 40.696163, "lon": -73.97089, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.97089, 40.696163 ] } }, -{ "type": "Feature", "properties": { "id": 306779, "name": "Park Av/Carlton Av", "direction": "W", "lat": 40.696278, "lon": -73.9739, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9739, 40.696278 ] } }, -{ "type": "Feature", "properties": { "id": 306782, "name": "Avenue L/New York Av", "direction": "E", "lat": 40.622276, "lon": -73.94276, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.94276, 40.622276 ] } }, -{ "type": "Feature", "properties": { "id": 306783, "name": "5 Av/92 St", "direction": "SW", "lat": 40.617653, "lon": -74.0296, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.0296, 40.617653 ] } }, -{ "type": "Feature", "properties": { "id": 306784, "name": "Harway Av/Bay 47 St", "direction": "SE", "lat": 40.589012, "lon": -73.9865, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.9865, 40.589012 ] } }, -{ "type": "Feature", "properties": { "id": 306787, "name": "Gerritsen Av/Avenue U", "direction": "NW", "lat": 40.6022, "lon": -73.93543, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.93543, 40.6022 ] } }, -{ "type": "Feature", "properties": { "id": 306796, "name": "Gold St/York St", "direction": "S", "lat": 40.701065, "lon": -73.982895, "routes": "B62, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.982895, 40.701065 ] } }, -{ "type": "Feature", "properties": { "id": 306798, "name": "Smith St/Livingston St", "direction": "SW", "lat": 40.69061, "lon": -73.98788, "routes": "B57, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98788, 40.69061 ] } }, -{ "type": "Feature", "properties": { "id": 306801, "name": "Navy St/Sands St", "direction": "S", "lat": 40.69936, "lon": -73.98059, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98059, 40.69936 ] } }, -{ "type": "Feature", "properties": { "id": 306805, "name": "Meserole St/Graham Av", "direction": "W", "lat": 40.70807, "lon": -73.943825, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.943825, 40.70807 ] } }, -{ "type": "Feature", "properties": { "id": 306806, "name": "Bedford Av/Grand St", "direction": "NE", "lat": 40.71472, "lon": -73.96102, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96102, 40.71472 ] } }, -{ "type": "Feature", "properties": { "id": 306808, "name": "Bedford Av/N 5 St", "direction": "NE", "lat": 40.716915, "lon": -73.958626, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.958626, 40.716915 ] } }, -{ "type": "Feature", "properties": { "id": 306809, "name": "Bedford Av/N 8 St", "direction": "NE", "lat": 40.71826, "lon": -73.95717, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95717, 40.71826 ] } }, -{ "type": "Feature", "properties": { "id": 306810, "name": "Bedford Av/N 9 St", "direction": "NE", "lat": 40.71915, "lon": -73.95624, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95624, 40.71915 ] } }, -{ "type": "Feature", "properties": { "id": 306813, "name": "Park Av/North Portland Av", "direction": "E", "lat": 40.695976, "lon": -73.97594, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.97594, 40.695976 ] } }, -{ "type": "Feature", "properties": { "id": 306814, "name": "Park Av/North Portland Av", "direction": "W", "lat": 40.696407, "lon": -73.97688, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.97688, 40.696407 ] } }, -{ "type": "Feature", "properties": { "id": 306819, "name": "Avenue N/E 3 St", "direction": "E", "lat": 40.614246, "lon": -73.97147, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.97147, 40.614246 ] } }, -{ "type": "Feature", "properties": { "id": 306822, "name": "14 Av/Benson Av", "direction": "SW", "lat": 40.61117, "lon": -74.01345, "routes": "B64, X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.01345, 40.61117 ] } }, -{ "type": "Feature", "properties": { "id": 306827, "name": "Avenue L/E 36 St", "direction": "W", "lat": 40.622646, "lon": -73.94065, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.94065, 40.622646 ] } }, -{ "type": "Feature", "properties": { "id": 306828, "name": "Avenue L/E 28 St", "direction": "W", "lat": 40.6218, "lon": -73.94832, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.94832, 40.6218 ] } }, -{ "type": "Feature", "properties": { "id": 306829, "name": "Avenue M/E 9 St", "direction": "W", "lat": 40.6174, "lon": -73.9661, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.9661, 40.6174 ] } }, -{ "type": "Feature", "properties": { "id": 306830, "name": "Avenue L/Bedford Av", "direction": "E", "lat": 40.621445, "lon": -73.95036, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95036, 40.621445 ] } }, -{ "type": "Feature", "properties": { "id": 306834, "name": "York Av/Navy St", "direction": "W", "lat": 40.70137, "lon": -73.98124, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98124, 40.70137 ] } }, -{ "type": "Feature", "properties": { "id": 306838, "name": "Church Av/Remsen Av", "direction": "NE", "lat": 40.652954, "lon": -73.919556, "routes": "B8, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.919556, 40.652954 ] } }, -{ "type": "Feature", "properties": { "id": 306843, "name": "Linden Blvd/Rockaway Pkwy", "direction": "W", "lat": 40.65423, "lon": -73.91209, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.91209, 40.65423 ] } }, -{ "type": "Feature", "properties": { "id": 306845, "name": "Avenue B/Remsen Av", "direction": "SW", "lat": 40.64938, "lon": -73.91668, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.91668, 40.64938 ] } }, -{ "type": "Feature", "properties": { "id": 306846, "name": "Avenue B/E 87 St", "direction": "SW", "lat": 40.64796, "lon": -73.91887, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.91887, 40.64796 ] } }, -{ "type": "Feature", "properties": { "id": 306847, "name": "Ashford St/Wortman Av", "direction": "SE", "lat": 40.6598, "lon": -73.87872, "routes": "B84, B20, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.87872, 40.6598 ] } }, -{ "type": "Feature", "properties": { "id": 306848, "name": "Wortman Av/Barbey St", "direction": "SW", "lat": 40.658497, "lon": -73.88144, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88144, 40.658497 ] } }, -{ "type": "Feature", "properties": { "id": 306850, "name": "Cozine Av/Pennsylvania Av", "direction": "NE", "lat": 40.654255, "lon": -73.88686, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.88686, 40.654255 ] } }, -{ "type": "Feature", "properties": { "id": 306851, "name": "Cozine Av/Vermont St", "direction": "NE", "lat": 40.654945, "lon": -73.885254, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.885254, 40.654945 ] } }, -{ "type": "Feature", "properties": { "id": 306852, "name": "Cozine Av/Van Siclen Av", "direction": "NE", "lat": 40.65608, "lon": -73.88263, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.88263, 40.65608 ] } }, -{ "type": "Feature", "properties": { "id": 306853, "name": "Cozine Av/Jerome St", "direction": "NE", "lat": 40.657738, "lon": -73.87876, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.87876, 40.657738 ] } }, -{ "type": "Feature", "properties": { "id": 306854, "name": "Ashford St/Cozine Av", "direction": "NW", "lat": 40.65895, "lon": -73.87793, "routes": "BM5, B84, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.87793, 40.65895 ] } }, -{ "type": "Feature", "properties": { "id": 306855, "name": "Ashford St/Linden Blvd", "direction": "", "lat": 40.662582, "lon": -73.880615, "routes": "B6, B84, B20, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.880615, 40.662582 ] } }, -{ "type": "Feature", "properties": { "id": 306857, "name": "Livonia Av/Ashford St", "direction": "W", "lat": 40.66642, "lon": -73.883385, "routes": "B84, B99, B6, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.883385, 40.66642 ] } }, -{ "type": "Feature", "properties": { "id": 306858, "name": "Cozine Av/Van Siclen Av", "direction": "SW", "lat": 40.656353, "lon": -73.88238, "routes": "B6, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.88238, 40.656353 ] } }, -{ "type": "Feature", "properties": { "id": 306859, "name": "Cozine Av/Vermont Av", "direction": "SW", "lat": 40.654743, "lon": -73.88612, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.88612, 40.654743 ] } }, -{ "type": "Feature", "properties": { "id": 306860, "name": "Gerritsen Av/Avenue T", "direction": "NW", "lat": 40.603333, "lon": -73.93667, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.93667, 40.603333 ] } }, -{ "type": "Feature", "properties": { "id": 306861, "name": "Gerritsen Av/Fillmore Av", "direction": "NW", "lat": 40.606598, "lon": -73.94031, "routes": "B31, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94031, 40.606598 ] } }, -{ "type": "Feature", "properties": { "id": 306862, "name": "Gerritsen Av/Batchelder St", "direction": "SE", "lat": 40.605816, "lon": -73.93974, "routes": "B31, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.93974, 40.605816 ] } }, -{ "type": "Feature", "properties": { "id": 306863, "name": "Gerritsen Av/Coyle St", "direction": "SE", "lat": 40.603653, "lon": -73.937325, "routes": "B31, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.937325, 40.603653 ] } }, -{ "type": "Feature", "properties": { "id": 306869, "name": "Avenue B/Ralph Av", "direction": "NE", "lat": 40.64718, "lon": -73.919815, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.919815, 40.64718 ] } }, -{ "type": "Feature", "properties": { "id": 306870, "name": "Remsen Av/Avenue B", "direction": "NW", "lat": 40.649807, "lon": -73.916504, "routes": "B17, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.916504, 40.649807 ] } }, -{ "type": "Feature", "properties": { "id": 306874, "name": "Church Av/Story St", "direction": "SW", "lat": 40.641968, "lon": -73.98161, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.98161, 40.641968 ] } }, -{ "type": "Feature", "properties": { "id": 306880, "name": "Shore Rd/Mackay Pl", "direction": "NE", "lat": 40.637203, "lon": -74.036026, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.036026, 40.637203 ] } }, -{ "type": "Feature", "properties": { "id": 306881, "name": "Ashford St/Wortman Av", "direction": "NW", "lat": 40.659996, "lon": -73.8787, "routes": "B20, B6, B84" }, "geometry": { "type": "Point", "coordinates": [ -73.8787, 40.659996 ] } }, -{ "type": "Feature", "properties": { "id": 306885, "name": "Gerritsen Av/Avenue S", "direction": "NW", "lat": 40.604977, "lon": -73.9385, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.9385, 40.604977 ] } }, -{ "type": "Feature", "properties": { "id": 306887, "name": "Prospect Park West/Prospect Av", "direction": "NE", "lat": 40.658676, "lon": -73.98174, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98174, 40.658676 ] } }, -{ "type": "Feature", "properties": { "id": 306890, "name": "Prospect Park West/Prospect Av", "direction": "SW", "lat": 40.65857, "lon": -73.98206, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98206, 40.65857 ] } }, -{ "type": "Feature", "properties": { "id": 306894, "name": "Saint Johns Pl/Rochester Av", "direction": "W", "lat": 40.670525, "lon": -73.9286, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.9286, 40.670525 ] } }, -{ "type": "Feature", "properties": { "id": 306898, "name": "Shore Pkwy/Nostrand Av", "direction": "E", "lat": 40.58542, "lon": -73.93872, "routes": "B44+, B44, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.93872, 40.58542 ] } }, -{ "type": "Feature", "properties": { "id": 306899, "name": "Shore Pkwy/Brown St", "direction": "E", "lat": 40.585697, "lon": -73.9369, "routes": "B44, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9369, 40.585697 ] } }, -{ "type": "Feature", "properties": { "id": 306901, "name": "Livingston St/Hoyt St", "direction": "E", "lat": 40.689465, "lon": -73.98551, "routes": "B103, B45, B93, B67, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.98551, 40.689465 ] } }, -{ "type": "Feature", "properties": { "id": 306906, "name": "Nostrand Av/Flatbush Av", "direction": "S", "lat": 40.632687, "lon": -73.94772, "routes": "B44, B96, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.94772, 40.632687 ] } }, -{ "type": "Feature", "properties": { "id": 306907, "name": "Avenue R/Madison Pl", "direction": "NE", "lat": 40.609577, "lon": -73.940155, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.940155, 40.609577 ] } }, -{ "type": "Feature", "properties": { "id": 306908, "name": "Remsen Av/Farragut Rd", "direction": "NW", "lat": 40.64349, "lon": -73.909454, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.909454, 40.64349 ] } }, -{ "type": "Feature", "properties": { "id": 306915, "name": "Kings Hwy/W 12 St", "direction": "W", "lat": 40.605846, "lon": -73.98537, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98537, 40.605846 ] } }, -{ "type": "Feature", "properties": { "id": 306916, "name": "Glenwood Rd/E 108 St", "direction": "SW", "lat": 40.650246, "lon": -73.894615, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.894615, 40.650246 ] } }, -{ "type": "Feature", "properties": { "id": 306921, "name": "Livonia Av/Ashford St", "direction": "W", "lat": 40.66638, "lon": -73.88361, "routes": "B6, B84" }, "geometry": { "type": "Point", "coordinates": [ -73.88361, 40.66638 ] } }, -{ "type": "Feature", "properties": { "id": 306922, "name": "Surf Av/W 32 St", "direction": "E", "lat": 40.572636, "lon": -73.997604, "routes": "X38, X28, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.997604, 40.572636 ] } }, -{ "type": "Feature", "properties": { "id": 306925, "name": "De Kalb Av/Bond St", "direction": "W", "lat": 40.69001, "lon": -73.982704, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.982704, 40.69001 ] } }, -{ "type": "Feature", "properties": { "id": 306927, "name": "Myrtle Av/Vanderbilt Av", "direction": "E", "lat": 40.693016, "lon": -73.969124, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.969124, 40.693016 ] } }, -{ "type": "Feature", "properties": { "id": 306929, "name": "Myrtle Av/Carlton Av", "direction": "E", "lat": 40.693207, "lon": -73.97245, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97245, 40.693207 ] } }, -{ "type": "Feature", "properties": { "id": 306930, "name": "Myrtle Av/North Portland Av", "direction": "E", "lat": 40.693295, "lon": -73.97541, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97541, 40.693295 ] } }, -{ "type": "Feature", "properties": { "id": 306931, "name": "Myrtle Av/Saint Edwards St", "direction": "E", "lat": 40.693356, "lon": -73.97737, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97737, 40.693356 ] } }, -{ "type": "Feature", "properties": { "id": 306932, "name": "Myrtle Av/Ashland Pl", "direction": "E", "lat": 40.69343, "lon": -73.97933, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97933, 40.69343 ] } }, -{ "type": "Feature", "properties": { "id": 306934, "name": "Myrtle Av/Carlton Av", "direction": "W", "lat": 40.6933, "lon": -73.97275, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97275, 40.6933 ] } }, -{ "type": "Feature", "properties": { "id": 306935, "name": "Myrtle Av/North Portland Av", "direction": "W", "lat": 40.693413, "lon": -73.97631, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97631, 40.693413 ] } }, -{ "type": "Feature", "properties": { "id": 306936, "name": "Myrtle Av/Saint Edwards St", "direction": "W", "lat": 40.693516, "lon": -73.97827, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97827, 40.693516 ] } }, -{ "type": "Feature", "properties": { "id": 306937, "name": "Myrtle Av/Navy St", "direction": "W", "lat": 40.693573, "lon": -73.97959, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97959, 40.693573 ] } }, -{ "type": "Feature", "properties": { "id": 306940, "name": "3 Av/99 St", "direction": "SW", "lat": 40.61469, "lon": -74.03478, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.03478, 40.61469 ] } }, -{ "type": "Feature", "properties": { "id": 306941, "name": "Prospect Park/Southwest", "direction": "NE", "lat": 40.660725, "lon": -73.9796, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.9796, 40.660725 ] } }, -{ "type": "Feature", "properties": { "id": 306942, "name": "Avenue M/E 15 St", "direction": "W", "lat": 40.618027, "lon": -73.960434, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.960434, 40.618027 ] } }, -{ "type": "Feature", "properties": { "id": 306943, "name": "49 St/13 Av", "direction": "NW", "lat": 40.63529, "lon": -73.99247, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99247, 40.63529 ] } }, -{ "type": "Feature", "properties": { "id": 306944, "name": "Flatlands Av/E 98 St", "direction": "SW", "lat": 40.643993, "lon": -73.90025, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90025, 40.643993 ] } }, -{ "type": "Feature", "properties": { "id": 306945, "name": "4 Av/97 St", "direction": "SW", "lat": 40.61453, "lon": -74.03233, "routes": "B8, B63" }, "geometry": { "type": "Point", "coordinates": [ -74.03233, 40.61453 ] } }, -{ "type": "Feature", "properties": { "id": 306948, "name": "Wythe Av/Williamsburg St West", "direction": "SE", "lat": 40.701687, "lon": -73.96161, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96161, 40.701687 ] } }, -{ "type": "Feature", "properties": { "id": 306949, "name": "Flatlands Av/Alabama Av", "direction": "NE", "lat": 40.651737, "lon": -73.888336, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.888336, 40.651737 ] } }, -{ "type": "Feature", "properties": { "id": 306950, "name": "Flatlands Av/Louisiana Av", "direction": "SW", "lat": 40.651134, "lon": -73.89017, "routes": "B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.89017, 40.651134 ] } }, -{ "type": "Feature", "properties": { "id": 306952, "name": "York St/Gold St", "direction": "E", "lat": 40.701305, "lon": -73.98244, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98244, 40.701305 ] } }, -{ "type": "Feature", "properties": { "id": 306953, "name": "Park Av/Navy St", "direction": "E", "lat": 40.696136, "lon": -73.9799, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9799, 40.696136 ] } }, -{ "type": "Feature", "properties": { "id": 306954, "name": "Park Av/Ryerson St", "direction": "W", "lat": 40.695984, "lon": -73.96536, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96536, 40.695984 ] } }, -{ "type": "Feature", "properties": { "id": 306958, "name": "Empire Blvd/Flatbush Av", "direction": "E", "lat": 40.66314, "lon": -73.96178, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96178, 40.66314 ] } }, -{ "type": "Feature", "properties": { "id": 306959, "name": "92 St/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.616714, "lon": -74.02721, "routes": "B70, S79+, S93, S53, B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02721, 40.616714 ] } }, -{ "type": "Feature", "properties": { "id": 306960, "name": "Jay St/Fulton St", "direction": "N", "lat": 40.69171, "lon": -73.98725, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98725, 40.69171 ] } }, -{ "type": "Feature", "properties": { "id": 306961, "name": "Jay St/Tillary St", "direction": "N", "lat": 40.696457, "lon": -73.98704, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98704, 40.696457 ] } }, -{ "type": "Feature", "properties": { "id": 306962, "name": "Jay St/Concord St", "direction": "N", "lat": 40.69757, "lon": -73.98698, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98698, 40.69757 ] } }, -{ "type": "Feature", "properties": { "id": 306965, "name": "50 St/18 Av", "direction": "SE", "lat": 40.6275, "lon": -73.98126, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.98126, 40.6275 ] } }, -{ "type": "Feature", "properties": { "id": 306967, "name": "Rockaway Av/Lott Av", "direction": "N", "lat": 40.65826, "lon": -73.907745, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.907745, 40.65826 ] } }, -{ "type": "Feature", "properties": { "id": 306969, "name": "Jay St/Willoughby St", "direction": "N", "lat": 40.69266, "lon": -73.98718, "routes": "B57, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98718, 40.69266 ] } }, -{ "type": "Feature", "properties": { "id": 306974, "name": "Empire Blvd/Brooklyn Av", "direction": "E", "lat": 40.664093, "lon": -73.94506, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94506, 40.664093 ] } }, -{ "type": "Feature", "properties": { "id": 306977, "name": "Broadway/Jefferson Av", "direction": "SE", "lat": 40.686817, "lon": -73.9175, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.9175, 40.686817 ] } }, -{ "type": "Feature", "properties": { "id": 306979, "name": "Stillwell Av/Avenue Z", "direction": "N", "lat": 40.58471, "lon": -73.98287, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98287, 40.58471 ] } }, -{ "type": "Feature", "properties": { "id": 306980, "name": "Stillwell Av/W 15 Pl", "direction": "N", "lat": 40.586422, "lon": -73.9832, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.9832, 40.586422 ] } }, -{ "type": "Feature", "properties": { "id": 306982, "name": "Harway Av/Bay 50 St", "direction": "SE", "lat": 40.587646, "lon": -73.98424, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98424, 40.587646 ] } }, -{ "type": "Feature", "properties": { "id": 306983, "name": "Stillwell Av/Avenue Z", "direction": "S", "lat": 40.58442, "lon": -73.98304, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98304, 40.58442 ] } }, -{ "type": "Feature", "properties": { "id": 306986, "name": "Ocean Av/Voorhies Av", "direction": "S", "lat": 40.585945, "lon": -73.94898, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.94898, 40.585945 ] } }, -{ "type": "Feature", "properties": { "id": 307000, "name": "Ralph Av/Saint Marks Av", "direction": "S", "lat": 40.67338, "lon": -73.922226, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.922226, 40.67338 ] } }, -{ "type": "Feature", "properties": { "id": 307004, "name": "Eastern Pkwy/Utica Av", "direction": "E", "lat": 40.668537, "lon": -73.93124, "routes": "B17, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.93124, 40.668537 ] } }, -{ "type": "Feature", "properties": { "id": 307005, "name": "Flatlands Av/Louisiana Av", "direction": "NE", "lat": 40.650978, "lon": -73.89001, "routes": "B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.89001, 40.650978 ] } }, -{ "type": "Feature", "properties": { "id": 307010, "name": "Smith St/Atlantic Av", "direction": "NE", "lat": 40.68878, "lon": -73.98898, "routes": "B61, B65, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.98898, 40.68878 ] } }, -{ "type": "Feature", "properties": { "id": 307011, "name": "Eastern Pkwy/Schenectady Av", "direction": "E", "lat": 40.6687, "lon": -73.93407, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.93407, 40.6687 ] } }, -{ "type": "Feature", "properties": { "id": 307018, "name": "Glenwood Rd/E 94 St", "direction": "NE", "lat": 40.643497, "lon": -73.90473, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90473, 40.643497 ] } }, -{ "type": "Feature", "properties": { "id": 307020, "name": "Emmons Av/Nostrand Av", "direction": "W", "lat": 40.584026, "lon": -73.93844, "routes": "BM3, B44+, B44, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.93844, 40.584026 ] } }, -{ "type": "Feature", "properties": { "id": 307021, "name": "Gerritsen Av/Avenue U", "direction": "SE", "lat": 40.601368, "lon": -73.93478, "routes": "BM4, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.93478, 40.601368 ] } }, -{ "type": "Feature", "properties": { "id": 307026, "name": "Utica Av/Eastern Pkwy", "direction": "S", "lat": 40.667946, "lon": -73.9313, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.9313, 40.667946 ] } }, -{ "type": "Feature", "properties": { "id": 307027, "name": "Utica Av/Carroll St", "direction": "S", "lat": 40.66581, "lon": -73.931526, "routes": "B46, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.931526, 40.66581 ] } }, -{ "type": "Feature", "properties": { "id": 307033, "name": "Ocean Av/Shore Pkwy", "direction": "N", "lat": 40.584217, "lon": -73.94842, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.94842, 40.584217 ] } }, -{ "type": "Feature", "properties": { "id": 307039, "name": "Gold St/Sands St", "direction": "N", "lat": 40.70033, "lon": -73.98286, "routes": "B67, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98286, 40.70033 ] } }, -{ "type": "Feature", "properties": { "id": 307040, "name": "Shore Pkwy/Ocean Av", "direction": "E", "lat": 40.58431, "lon": -73.94808, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.94808, 40.58431 ] } }, -{ "type": "Feature", "properties": { "id": 307041, "name": "Shore Pkwy/Bedford Av", "direction": "E", "lat": 40.584713, "lon": -73.94331, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.94331, 40.584713 ] } }, -{ "type": "Feature", "properties": { "id": 307042, "name": "Shore Pkwy/E 28 St", "direction": "E", "lat": 40.584995, "lon": -73.94105, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.94105, 40.584995 ] } }, -{ "type": "Feature", "properties": { "id": 307045, "name": "Shore Pkwy/Brigham St", "direction": "E", "lat": 40.585583, "lon": -73.93192, "routes": "B4, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.93192, 40.585583 ] } }, -{ "type": "Feature", "properties": { "id": 307047, "name": "Prospect Park West/18 St", "direction": "NE", "lat": 40.657635, "lon": -73.98289, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98289, 40.657635 ] } }, -{ "type": "Feature", "properties": { "id": 307049, "name": "Stillwell Av/W 15 Pl", "direction": "S", "lat": 40.586258, "lon": -73.983406, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.983406, 40.586258 ] } }, -{ "type": "Feature", "properties": { "id": 307070, "name": "60 St/Mcdonald Av", "direction": "NW", "lat": 40.614365, "lon": -73.97444, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.97444, 40.614365 ] } }, -{ "type": "Feature", "properties": { "id": 307071, "name": "60 St/Fort Hamilton Pkwy", "direction": "SE", "lat": 40.63284, "lon": -74.00532, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00532, 40.63284 ] } }, -{ "type": "Feature", "properties": { "id": 307073, "name": "60 St/5 Av", "direction": "NW", "lat": 40.639736, "lon": -74.01646, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.01646, 40.639736 ] } }, -{ "type": "Feature", "properties": { "id": 307075, "name": "60 St/Bay Pkwy", "direction": "NW", "lat": 40.616962, "lon": -73.978745, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.978745, 40.616962 ] } }, -{ "type": "Feature", "properties": { "id": 307078, "name": "3 Av/Senator St", "direction": "N", "lat": 40.637424, "lon": -74.02527, "routes": "B37, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.02527, 40.637424 ] } }, -{ "type": "Feature", "properties": { "id": 307081, "name": "Avenue M/E 7 St", "direction": "W", "lat": 40.617184, "lon": -73.96812, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96812, 40.617184 ] } }, -{ "type": "Feature", "properties": { "id": 307083, "name": "Utica Av/Empire Blvd", "direction": "N", "lat": 40.66394, "lon": -73.93145, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.93145, 40.66394 ] } }, -{ "type": "Feature", "properties": { "id": 307086, "name": "Utica Av/Carroll St", "direction": "N", "lat": 40.666447, "lon": -73.93127, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93127, 40.666447 ] } }, -{ "type": "Feature", "properties": { "id": 307089, "name": "Utica Av/Flatbush Av", "direction": "S", "lat": 40.61344, "lon": -73.926414, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.926414, 40.61344 ] } }, -{ "type": "Feature", "properties": { "id": 307090, "name": "Utica Av/Bergen St", "direction": "N", "lat": 40.67535, "lon": -73.93042, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93042, 40.67535 ] } }, -{ "type": "Feature", "properties": { "id": 307092, "name": "Utica Av/Fulton St", "direction": "NE", "lat": 40.679184, "lon": -73.929054, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.929054, 40.679184 ] } }, -{ "type": "Feature", "properties": { "id": 307093, "name": "Utica Av/Prospect Pl", "direction": "N", "lat": 40.67355, "lon": -73.930595, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.930595, 40.67355 ] } }, -{ "type": "Feature", "properties": { "id": 307094, "name": "Utica Av/Saint Johns Pl", "direction": "N", "lat": 40.670937, "lon": -73.93085, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93085, 40.670937 ] } }, -{ "type": "Feature", "properties": { "id": 307096, "name": "Nassau Av/Manhattan Av", "direction": "E", "lat": 40.72384, "lon": -73.950195, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.950195, 40.72384 ] } }, -{ "type": "Feature", "properties": { "id": 307097, "name": "Avenue U/Ocean Pkwy", "direction": "W", "lat": 40.597904, "lon": -73.96508, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.96508, 40.597904 ] } }, -{ "type": "Feature", "properties": { "id": 307098, "name": "Ashford St/New Lots Av", "direction": "SE", "lat": 40.66579, "lon": -73.88315, "routes": "B84, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.88315, 40.66579 ] } }, -{ "type": "Feature", "properties": { "id": 307099, "name": "18 Av/60 St", "direction": "SW", "lat": 40.622147, "lon": -73.98725, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.98725, 40.622147 ] } }, -{ "type": "Feature", "properties": { "id": 307102, "name": "Mcdonald Av/Caton Av", "direction": "N", "lat": 40.647125, "lon": -73.980194, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.980194, 40.647125 ] } }, -{ "type": "Feature", "properties": { "id": 307103, "name": "Wortman Av/Vermont St", "direction": "SW", "lat": 40.65609, "lon": -73.887024, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.887024, 40.65609 ] } }, -{ "type": "Feature", "properties": { "id": 307106, "name": "Jay St/High St", "direction": "S", "lat": 40.699093, "lon": -73.98693, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98693, 40.699093 ] } }, -{ "type": "Feature", "properties": { "id": 307107, "name": "Pennsylvania Av/Seaview Av", "direction": "SE", "lat": 40.64438, "lon": -73.878006, "routes": "BM2, BM5, B82, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.878006, 40.64438 ] } }, -{ "type": "Feature", "properties": { "id": 307111, "name": "Avenue M/Coney Island Av", "direction": "E", "lat": 40.617504, "lon": -73.96399, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96399, 40.617504 ] } }, -{ "type": "Feature", "properties": { "id": 307112, "name": "Avenue M/Coney Island Av", "direction": "W", "lat": 40.617676, "lon": -73.96364, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96364, 40.617676 ] } }, -{ "type": "Feature", "properties": { "id": 307113, "name": "Avenue M/E 13 St", "direction": "W", "lat": 40.617825, "lon": -73.96178, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96178, 40.617825 ] } }, -{ "type": "Feature", "properties": { "id": 307114, "name": "Graham Av/Meeker Av", "direction": "NW", "lat": 40.719326, "lon": -73.9454, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.9454, 40.719326 ] } }, -{ "type": "Feature", "properties": { "id": 307115, "name": "Hegeman Av/Thomas S Boyland St", "direction": "E", "lat": 40.65588, "lon": -73.90948, "routes": "B8, B15, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.90948, 40.65588 ] } }, -{ "type": "Feature", "properties": { "id": 307116, "name": "Hegeman Av/Thomas S Boyland St", "direction": "W", "lat": 40.655914, "lon": -73.91034, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91034, 40.655914 ] } }, -{ "type": "Feature", "properties": { "id": 307119, "name": "Wortman Av/Van Siclen Av", "direction": "NE", "lat": 40.65747, "lon": -73.88366, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88366, 40.65747 ] } }, -{ "type": "Feature", "properties": { "id": 307121, "name": "Manhattan Av/Nassau Av", "direction": "NW", "lat": 40.72369, "lon": -73.95068, "routes": "B98, B98, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95068, 40.72369 ] } }, -{ "type": "Feature", "properties": { "id": 307122, "name": "Pitkin Av/Thomas S Boyland St", "direction": "E", "lat": 40.669262, "lon": -73.91312, "routes": "B12, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.91312, 40.669262 ] } }, -{ "type": "Feature", "properties": { "id": 307124, "name": "Myrtle Av/Marcus Garvey Blvd", "direction": "W", "lat": 40.69636, "lon": -73.94116, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.94116, 40.69636 ] } }, -{ "type": "Feature", "properties": { "id": 307125, "name": "Myrtle Av/Marcus Garvey Blvd", "direction": "E", "lat": 40.696274, "lon": -73.94085, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.94085, 40.696274 ] } }, -{ "type": "Feature", "properties": { "id": 307127, "name": "Nostrand Av/Kings Hwy", "direction": "N", "lat": 40.6158, "lon": -73.94476, "routes": "B44+, B44, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94476, 40.6158 ] } }, -{ "type": "Feature", "properties": { "id": 307128, "name": "Cropsey Av/14 Av", "direction": "SW", "lat": 40.60735, "lon": -74.01739, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.01739, 40.60735 ] } }, -{ "type": "Feature", "properties": { "id": 307129, "name": "Rockaway Av/Hegeman Av", "direction": "S", "lat": 40.65549, "lon": -73.90717, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90717, 40.65549 ] } }, -{ "type": "Feature", "properties": { "id": 307132, "name": "Avenue X/Shell Rd", "direction": "E", "lat": 40.5901, "lon": -73.97352, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.97352, 40.5901 ] } }, -{ "type": "Feature", "properties": { "id": 307133, "name": "Bay Ridge Av/8 Av", "direction": "SE", "lat": 40.6301, "lon": -74.01461, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01461, 40.6301 ] } }, -{ "type": "Feature", "properties": { "id": 307151, "name": "Myrtle Av/Suydam St", "direction": "W", "lat": 40.69763, "lon": -73.92989, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.92989, 40.69763 ] } }, -{ "type": "Feature", "properties": { "id": 307152, "name": "Myrtle Av/Vanderbilt Av", "direction": "W", "lat": 40.693233, "lon": -73.97075, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.97075, 40.693233 ] } }, -{ "type": "Feature", "properties": { "id": 307154, "name": "Broadway/Quincy St", "direction": "SE", "lat": 40.68989, "lon": -73.92291, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.92291, 40.68989 ] } }, -{ "type": "Feature", "properties": { "id": 307155, "name": "Broadway/Madison St", "direction": "SE", "lat": 40.687984, "lon": -73.91958, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.91958, 40.687984 ] } }, -{ "type": "Feature", "properties": { "id": 307157, "name": "Broadway/Greene Av", "direction": "NW", "lat": 40.691708, "lon": -73.925835, "routes": "Q24, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.925835, 40.691708 ] } }, -{ "type": "Feature", "properties": { "id": 307158, "name": "Kings Hwy/Ryder St", "direction": "E", "lat": 40.62206, "lon": -73.937035, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.937035, 40.62206 ] } }, -{ "type": "Feature", "properties": { "id": 307164, "name": "Atlantic Av/Milford St", "direction": "E", "lat": 40.67959, "lon": -73.87844, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.87844, 40.67959 ] } }, -{ "type": "Feature", "properties": { "id": 307166, "name": "60 St/7 Av", "direction": "SE", "lat": 40.63661, "lon": -74.01154, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.01154, 40.63661 ] } }, -{ "type": "Feature", "properties": { "id": 307167, "name": "60 St/7 Av", "direction": "NW", "lat": 40.637077, "lon": -74.01205, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.01205, 40.637077 ] } }, -{ "type": "Feature", "properties": { "id": 307169, "name": "Franklin Av/Flushing Av", "direction": "S", "lat": 40.698326, "lon": -73.958855, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.958855, 40.698326 ] } }, -{ "type": "Feature", "properties": { "id": 307172, "name": "Glenwood Rd/Williams Av", "direction": "SW", "lat": 40.6512, "lon": -73.89314, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.89314, 40.6512 ] } }, -{ "type": "Feature", "properties": { "id": 307173, "name": "Williams Av/Wortman Av", "direction": "SE", "lat": 40.65267, "lon": -73.89395, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89395, 40.65267 ] } }, -{ "type": "Feature", "properties": { "id": 307175, "name": "Cadman Plaza West/Tillary St", "direction": "N", "lat": 40.695988, "lon": -73.99101, "routes": "B52, B103, B26" }, "geometry": { "type": "Point", "coordinates": [ -73.99101, 40.695988 ] } }, -{ "type": "Feature", "properties": { "id": 307177, "name": "39 St/1 Av", "direction": "NW", "lat": 40.656033, "lon": -74.0117, "routes": "B35, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.0117, 40.656033 ] } }, -{ "type": "Feature", "properties": { "id": 307178, "name": "7 Av/Poly Pl", "direction": "S", "lat": 40.61, "lon": -74.024704, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.024704, 40.61 ] } }, -{ "type": "Feature", "properties": { "id": 307181, "name": "Fountain Av/Brooklyn Developmental Center", "direction": "SE", "lat": 40.655804, "lon": -73.863655, "routes": "B84, Q08, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.863655, 40.655804 ] } }, -{ "type": "Feature", "properties": { "id": 307182, "name": "E 80 St/Paerdegat 15 St", "direction": "NW", "lat": 40.627792, "lon": -73.90045, "routes": "B17, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90045, 40.627792 ] } }, -{ "type": "Feature", "properties": { "id": 307189, "name": "60 St/21 Av", "direction": "NW", "lat": 40.61829, "lon": -73.98094, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98094, 40.61829 ] } }, -{ "type": "Feature", "properties": { "id": 307190, "name": "60 St/19 Av", "direction": "NW", "lat": 40.620937, "lon": -73.98533, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98533, 40.620937 ] } }, -{ "type": "Feature", "properties": { "id": 307192, "name": "60 St/11 Av", "direction": "NW", "lat": 40.631733, "lon": -74.0032, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.0032, 40.631733 ] } }, -{ "type": "Feature", "properties": { "id": 307194, "name": "60 St/19 Av", "direction": "SE", "lat": 40.620472, "lon": -73.98483, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98483, 40.620472 ] } }, -{ "type": "Feature", "properties": { "id": 307195, "name": "60 St/21 Av", "direction": "SE", "lat": 40.61782, "lon": -73.980446, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.980446, 40.61782 ] } }, -{ "type": "Feature", "properties": { "id": 307199, "name": "Avenue L/Flatbush Av", "direction": "NE", "lat": 40.622875, "lon": -73.93735, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.93735, 40.622875 ] } }, -{ "type": "Feature", "properties": { "id": 307200, "name": "Bay Ridge Av/Narrows Av", "direction": "E", "lat": 40.638, "lon": -74.03353, "routes": "B64, B9" }, "geometry": { "type": "Point", "coordinates": [ -74.03353, 40.638 ] } }, -{ "type": "Feature", "properties": { "id": 307201, "name": "60 St/11 Av", "direction": "SE", "lat": 40.63125, "lon": -74.00267, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00267, 40.63125 ] } }, -{ "type": "Feature", "properties": { "id": 307203, "name": "92 St/Gatling Pl", "direction": "NW", "lat": 40.616924, "lon": -74.02734, "routes": "S53, S93, B8, S79+, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.02734, 40.616924 ] } }, -{ "type": "Feature", "properties": { "id": 307205, "name": "Surf Av/W 25 St", "direction": "W", "lat": 40.57345, "lon": -73.99211, "routes": "X38, B36, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.99211, 40.57345 ] } }, -{ "type": "Feature", "properties": { "id": 307206, "name": "Pennsylvania Av/Geneva Loop", "direction": "SE", "lat": 40.646145, "lon": -73.88011, "routes": "BM2, B82, B83, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.88011, 40.646145 ] } }, -{ "type": "Feature", "properties": { "id": 307207, "name": "Broadway/Granite St", "direction": "SE", "lat": 40.68165, "lon": -73.90841, "routes": "Q24, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90841, 40.68165 ] } }, -{ "type": "Feature", "properties": { "id": 307208, "name": "Coney Island Av/Kings Hwy", "direction": "S", "lat": 40.607414, "lon": -73.96203, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96203, 40.607414 ] } }, -{ "type": "Feature", "properties": { "id": 307210, "name": "Flatbush Av/Saint Marks Av", "direction": "NW", "lat": 40.680035, "lon": -73.9744, "routes": "B67, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9744, 40.680035 ] } }, -{ "type": "Feature", "properties": { "id": 307214, "name": "Kingsland Av/Lombardy St", "direction": "N", "lat": 40.721523, "lon": -73.94091, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94091, 40.721523 ] } }, -{ "type": "Feature", "properties": { "id": 307221, "name": "E 95 St/Kings Hwy", "direction": "NW", "lat": 40.65863, "lon": -73.92019, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92019, 40.65863 ] } }, -{ "type": "Feature", "properties": { "id": 307225, "name": "Wortman Av/Van Siclen Av", "direction": "W", "lat": 40.657677, "lon": -73.88337, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.88337, 40.657677 ] } }, -{ "type": "Feature", "properties": { "id": 307227, "name": "Prospect Park West/18 St", "direction": "SW", "lat": 40.657486, "lon": -73.98321, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98321, 40.657486 ] } }, -{ "type": "Feature", "properties": { "id": 307228, "name": "Broadway/Lafayette Av", "direction": "SE", "lat": 40.692337, "lon": -73.92717, "routes": "B47, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.92717, 40.692337 ] } }, -{ "type": "Feature", "properties": { "id": 307238, "name": "Fulton St/Van Sinderen Av", "direction": "W", "lat": 40.67795, "lon": -73.903755, "routes": "B20, Q24, B25" }, "geometry": { "type": "Point", "coordinates": [ -73.903755, 40.67795 ] } }, -{ "type": "Feature", "properties": { "id": 307239, "name": "Fulton St/Sackman St", "direction": "W", "lat": 40.678097, "lon": -73.90634, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.90634, 40.678097 ] } }, -{ "type": "Feature", "properties": { "id": 307240, "name": "Fulton St/Eastern Pkwy", "direction": "W", "lat": 40.678158, "lon": -73.90747, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.90747, 40.678158 ] } }, -{ "type": "Feature", "properties": { "id": 307241, "name": "Fulton St/Rockaway Av", "direction": "W", "lat": 40.67836, "lon": -73.91122, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.91122, 40.67836 ] } }, -{ "type": "Feature", "properties": { "id": 307243, "name": "Fulton St/Saratoga Av", "direction": "W", "lat": 40.678665, "lon": -73.91673, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.91673, 40.678665 ] } }, -{ "type": "Feature", "properties": { "id": 307244, "name": "Fulton St/Howard Av", "direction": "W", "lat": 40.678833, "lon": -73.919525, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.919525, 40.678833 ] } }, -{ "type": "Feature", "properties": { "id": 307246, "name": "Fulton St/Buffalo Av", "direction": "W", "lat": 40.67906, "lon": -73.9241, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.9241, 40.67906 ] } }, -{ "type": "Feature", "properties": { "id": 307247, "name": "Fulton St/Malcolm X Blvd", "direction": "W", "lat": 40.679325, "lon": -73.92959, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.92959, 40.679325 ] } }, -{ "type": "Feature", "properties": { "id": 307248, "name": "Fulton St/Stuyvesant Av", "direction": "W", "lat": 40.67948, "lon": -73.93175, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.93175, 40.67948 ] } }, -{ "type": "Feature", "properties": { "id": 307249, "name": "Fulton St/Lewis Av", "direction": "W", "lat": 40.679684, "lon": -73.93538, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.93538, 40.679684 ] } }, -{ "type": "Feature", "properties": { "id": 307251, "name": "Fulton St/Troy Av", "direction": "E", "lat": 40.6795, "lon": -73.934456, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.934456, 40.6795 ] } }, -{ "type": "Feature", "properties": { "id": 307252, "name": "Fulton St/Schenectady Av", "direction": "E", "lat": 40.679398, "lon": -73.932495, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.932495, 40.679398 ] } }, -{ "type": "Feature", "properties": { "id": 307253, "name": "Fulton St/Utica Av", "direction": "E", "lat": 40.67919, "lon": -73.928635, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.928635, 40.67919 ] } }, -{ "type": "Feature", "properties": { "id": 307254, "name": "Fulton St/Buffalo Av", "direction": "E", "lat": 40.67894, "lon": -73.92411, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.92411, 40.67894 ] } }, -{ "type": "Feature", "properties": { "id": 307255, "name": "Fulton St/Ralph Av", "direction": "E", "lat": 40.67876, "lon": -73.92125, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.92125, 40.67876 ] } }, -{ "type": "Feature", "properties": { "id": 307256, "name": "Fulton St/Howard Av", "direction": "E", "lat": 40.678616, "lon": -73.918564, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.918564, 40.678616 ] } }, -{ "type": "Feature", "properties": { "id": 307257, "name": "Fulton St/Saratoga Av", "direction": "E", "lat": 40.67849, "lon": -73.91589, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.91589, 40.67849 ] } }, -{ "type": "Feature", "properties": { "id": 307258, "name": "Fulton St/Kingston Av", "direction": "W", "lat": 40.679966, "lon": -73.94107, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.94107, 40.679966 ] } }, -{ "type": "Feature", "properties": { "id": 307259, "name": "Fulton St/Thomas S Boyland St", "direction": "E", "lat": 40.678337, "lon": -73.91314, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.91314, 40.678337 ] } }, -{ "type": "Feature", "properties": { "id": 307260, "name": "Fulton St/Rockaway Av", "direction": "E", "lat": 40.67819, "lon": -73.91036, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.91036, 40.67819 ] } }, -{ "type": "Feature", "properties": { "id": 307263, "name": "Fulton St/Van Sinderen Av", "direction": "E", "lat": 40.677814, "lon": -73.90354, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.90354, 40.677814 ] } }, -{ "type": "Feature", "properties": { "id": 307269, "name": "Postal Facility Rd/Brooklyn Mail Facility", "direction": "E", "lat": 40.66472, "lon": -73.86273, "routes": "B13, B13, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86273, 40.66472 ] } }, -{ "type": "Feature", "properties": { "id": 307305, "name": "Fulton St/Alabama Av", "direction": "E", "lat": 40.676823, "lon": -73.89963, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89963, 40.676823 ] } }, -{ "type": "Feature", "properties": { "id": 307306, "name": "Ralph Av/Eastern Pkwy North", "direction": "S", "lat": 40.668655, "lon": -73.922676, "routes": "B47, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.922676, 40.668655 ] } }, -{ "type": "Feature", "properties": { "id": 307308, "name": "East New York Av/Rockaway Pywy", "direction": "NE", "lat": 40.666065, "lon": -73.92493, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92493, 40.666065 ] } }, -{ "type": "Feature", "properties": { "id": 307309, "name": "East New York Av/Portal St", "direction": "SW", "lat": 40.666332, "lon": -73.92471, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.92471, 40.666332 ] } }, -{ "type": "Feature", "properties": { "id": 307310, "name": "Classon Av/Eastern Pkwy", "direction": "N", "lat": 40.67105, "lon": -73.96139, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96139, 40.67105 ] } }, -{ "type": "Feature", "properties": { "id": 307311, "name": "Avenue U/E 38 St", "direction": "NE", "lat": 40.60752, "lon": -73.92593, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.92593, 40.60752 ] } }, -{ "type": "Feature", "properties": { "id": 307313, "name": "Poly Pl/Veterans Hospital", "direction": "SE", "lat": 40.607338, "lon": -74.02072, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02072, 40.607338 ] } }, -{ "type": "Feature", "properties": { "id": 307318, "name": "Nostrand Av/Avenue V", "direction": "N", "lat": 40.599457, "lon": -73.94165, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94165, 40.599457 ] } }, -{ "type": "Feature", "properties": { "id": 307320, "name": "Myrtle Av/Broadway", "direction": "W", "lat": 40.69693, "lon": -73.93597, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.93597, 40.69693 ] } }, -{ "type": "Feature", "properties": { "id": 307322, "name": "Glenwood Rd/Remsen Av", "direction": "NE", "lat": 40.64195, "lon": -73.90716, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90716, 40.64195 ] } }, -{ "type": "Feature", "properties": { "id": 307331, "name": "Linden Blvd/Emerald St", "direction": "W", "lat": 40.67014, "lon": -73.85952, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.85952, 40.67014 ] } }, -{ "type": "Feature", "properties": { "id": 307332, "name": "Linden Blvd/Eldert Ln", "direction": "E", "lat": 40.66917, "lon": -73.863045, "routes": "B15, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.863045, 40.66917 ] } }, -{ "type": "Feature", "properties": { "id": 307333, "name": "Hip Center Parking Lot", "direction": "E", "lat": 40.669743, "lon": -73.85935, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.85935, 40.669743 ] } }, -{ "type": "Feature", "properties": { "id": 307355, "name": "Cadman Plaza West/Cranberry St", "direction": "N", "lat": 40.69901, "lon": -73.99122, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99122, 40.69901 ] } }, -{ "type": "Feature", "properties": { "id": 307360, "name": "Flatbush Av/Saint Marks Av", "direction": "SE", "lat": 40.679493, "lon": -73.97427, "routes": "B41, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97427, 40.679493 ] } }, -{ "type": "Feature", "properties": { "id": 307361, "name": "Mill Av/Avenue U", "direction": "NW", "lat": 40.61596, "lon": -73.91439, "routes": "B100, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.91439, 40.61596 ] } }, -{ "type": "Feature", "properties": { "id": 307370, "name": "Pitkin Av/Bristol St", "direction": "W", "lat": 40.669407, "lon": -73.912994, "routes": "B14, B12" }, "geometry": { "type": "Point", "coordinates": [ -73.912994, 40.669407 ] } }, -{ "type": "Feature", "properties": { "id": 307373, "name": "Utica Av/Saint Johns Pl", "direction": "S", "lat": 40.67022, "lon": -73.93107, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93107, 40.67022 ] } }, -{ "type": "Feature", "properties": { "id": 307383, "name": "Avenue R/E 23 St", "direction": "E", "lat": 40.60658, "lon": -73.94994, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.94994, 40.60658 ] } }, -{ "type": "Feature", "properties": { "id": 307384, "name": "Avenue R/E 27 St", "direction": "E", "lat": 40.607, "lon": -73.94618, "routes": "B2, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.94618, 40.607 ] } }, -{ "type": "Feature", "properties": { "id": 307385, "name": "Avenue R/E 28 St", "direction": "W", "lat": 40.607273, "lon": -73.945015, "routes": "B2, B31" }, "geometry": { "type": "Point", "coordinates": [ -73.945015, 40.607273 ] } }, -{ "type": "Feature", "properties": { "id": 307386, "name": "Avenue R/E 22 St", "direction": "W", "lat": 40.606644, "lon": -73.95065, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.95065, 40.606644 ] } }, -{ "type": "Feature", "properties": { "id": 307389, "name": "Shore Pkwy/Storage", "direction": "SE", "lat": 40.594128, "lon": -73.99768, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99768, 40.594128 ] } }, -{ "type": "Feature", "properties": { "id": 307390, "name": "New Lots Av/Mother Gaston Blvd", "direction": "NE", "lat": 40.65701, "lon": -73.903755, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.903755, 40.65701 ] } }, -{ "type": "Feature", "properties": { "id": 307393, "name": "Marcus Garvey Blvd/Broadway", "direction": "S", "lat": 40.699715, "lon": -73.94145, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.94145, 40.699715 ] } }, -{ "type": "Feature", "properties": { "id": 307394, "name": "Avenue I/Ocean Pkwy", "direction": "E", "lat": 40.62646, "lon": -73.97132, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.97132, 40.62646 ] } }, -{ "type": "Feature", "properties": { "id": 307397, "name": "Ralph Av/Mill Av", "direction": "N", "lat": 40.618633, "lon": -73.917076, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.917076, 40.618633 ] } }, -{ "type": "Feature", "properties": { "id": 307398, "name": "Ashford St/Stanley Av", "direction": "SE", "lat": 40.660854, "lon": -73.87951, "routes": "B20, B84, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.87951, 40.660854 ] } }, -{ "type": "Feature", "properties": { "id": 307403, "name": "Cadman Plaza West/Johnson St", "direction": "N", "lat": 40.695534, "lon": -73.99083, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.99083, 40.695534 ] } }, -{ "type": "Feature", "properties": { "id": 307408, "name": "Boerum Pl/Joralemon St", "direction": "S", "lat": 40.69202, "lon": -73.98923, "routes": "B61, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98923, 40.69202 ] } }, -{ "type": "Feature", "properties": { "id": 307413, "name": "Eastern Pkwy/Franklin Av", "direction": "E", "lat": 40.67032, "lon": -73.957664, "routes": "B96" }, "geometry": { "type": "Point", "coordinates": [ -73.957664, 40.67032 ] } }, -{ "type": "Feature", "properties": { "id": 307426, "name": "Jay St/Tillary St", "direction": "S", "lat": 40.695698, "lon": -73.9872, "routes": "B57, B26, B62, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.9872, 40.695698 ] } }, -{ "type": "Feature", "properties": { "id": 307432, "name": "E 96 St/Flatlands Av", "direction": "NW", "lat": 40.643356, "lon": -73.901566, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.901566, 40.643356 ] } }, -{ "type": "Feature", "properties": { "id": 307441, "name": "Flatbush Av/Avenue U", "direction": "NW", "lat": 40.609528, "lon": -73.92182, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.92182, 40.609528 ] } }, -{ "type": "Feature", "properties": { "id": 307460, "name": "Adams St/Brooklyn Supreme Court", "direction": "S", "lat": 40.69256, "lon": -73.98913, "routes": "B25, B41, B38, B52" }, "geometry": { "type": "Point", "coordinates": [ -73.98913, 40.69256 ] } }, -{ "type": "Feature", "properties": { "id": 307475, "name": "Avenue B/E 87 St", "direction": "NE", "lat": 40.648212, "lon": -73.918205, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.918205, 40.648212 ] } }, -{ "type": "Feature", "properties": { "id": 307477, "name": "Avenue J/E 23 St", "direction": "W", "lat": 40.62607, "lon": -73.953896, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.953896, 40.62607 ] } }, -{ "type": "Feature", "properties": { "id": 307478, "name": "Avenue J/Ocean Av", "direction": "W", "lat": 40.62577, "lon": -73.95656, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.95656, 40.62577 ] } }, -{ "type": "Feature", "properties": { "id": 307479, "name": "Avenue J/E 18 St", "direction": "W", "lat": 40.62552, "lon": -73.95893, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.95893, 40.62552 ] } }, -{ "type": "Feature", "properties": { "id": 307482, "name": "Avenue J/Coney Island Av", "direction": "W", "lat": 40.624847, "lon": -73.96499, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.96499, 40.624847 ] } }, -{ "type": "Feature", "properties": { "id": 307484, "name": "58 St/1 Av", "direction": "SE", "lat": 40.64542, "lon": -74.0232, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.0232, 40.64542 ] } }, -{ "type": "Feature", "properties": { "id": 307485, "name": "2 Av/56 St", "direction": "NE", "lat": 40.645954, "lon": -74.02008, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.02008, 40.645954 ] } }, -{ "type": "Feature", "properties": { "id": 307486, "name": "7 Av Service Rd South/Bay Ridge Pkwy", "direction": "SW", "lat": 40.62675, "lon": -74.01885, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.01885, 40.62675 ] } }, -{ "type": "Feature", "properties": { "id": 307487, "name": "7 Av Service Rd South/77 St", "direction": "SW", "lat": 40.625286, "lon": -74.019485, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.019485, 40.625286 ] } }, -{ "type": "Feature", "properties": { "id": 307488, "name": "7 Av Service Rd South/79 St", "direction": "SW", "lat": 40.624023, "lon": -74.02039, "routes": "B70, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.02039, 40.624023 ] } }, -{ "type": "Feature", "properties": { "id": 307489, "name": "7 Av Service Rd South/81 St", "direction": "SW", "lat": 40.622814, "lon": -74.02141, "routes": "B70, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.02141, 40.622814 ] } }, -{ "type": "Feature", "properties": { "id": 307490, "name": "Fort Hamilton Pkwy/83 St", "direction": "SW", "lat": 40.621765, "lon": -74.02264, "routes": "B70, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.02264, 40.621765 ] } }, -{ "type": "Feature", "properties": { "id": 307491, "name": "Fulton St/Hoyt St", "direction": "E", "lat": 40.69069, "lon": -73.98555, "routes": "B26, B25, B52, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.98555, 40.69069 ] } }, -{ "type": "Feature", "properties": { "id": 307492, "name": "Fulton St/Duffield St", "direction": "NW", "lat": 40.690536, "lon": -73.98495, "routes": "B52, B38, B25, B26" }, "geometry": { "type": "Point", "coordinates": [ -73.98495, 40.690536 ] } }, -{ "type": "Feature", "properties": { "id": 307493, "name": "Tillary St/Jay St", "direction": "E", "lat": 40.695976, "lon": -73.98677, "routes": "B62, B54, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.98677, 40.695976 ] } }, -{ "type": "Feature", "properties": { "id": 307495, "name": "Atlantic Av/Euclid Av", "direction": "E", "lat": 40.681084, "lon": -73.87318, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.87318, 40.681084 ] } }, -{ "type": "Feature", "properties": { "id": 307496, "name": "Avenue J/E 8 St", "direction": "W", "lat": 40.624466, "lon": -73.96842, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.96842, 40.624466 ] } }, -{ "type": "Feature", "properties": { "id": 307497, "name": "Avenue J/Ocean Pkwy", "direction": "W", "lat": 40.62417, "lon": -73.97115, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.97115, 40.62417 ] } }, -{ "type": "Feature", "properties": { "id": 307499, "name": "60 St/15 Av", "direction": "NW", "lat": 40.62643, "lon": -73.99442, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.99442, 40.62643 ] } }, -{ "type": "Feature", "properties": { "id": 307501, "name": "86 St/Fort Hamilton Pkwy", "direction": "NW", "lat": 40.62073, "lon": -74.02477, "routes": "B1, S53, B16, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.02477, 40.62073 ] } }, -{ "type": "Feature", "properties": { "id": 307506, "name": "Fulton St/Macdougal St", "direction": "W", "lat": 40.67892, "lon": -73.92139, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.92139, 40.67892 ] } }, -{ "type": "Feature", "properties": { "id": 307508, "name": "Flatlands Av/Utica Av", "direction": "NE", "lat": 40.62596, "lon": -73.92791, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.92791, 40.62596 ] } }, -{ "type": "Feature", "properties": { "id": 307510, "name": "Avenue N/Ocean Pkwy", "direction": "W", "lat": 40.61461, "lon": -73.96935, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96935, 40.61461 ] } }, -{ "type": "Feature", "properties": { "id": 307511, "name": "Halsey St/Marcus Garvey Blvd", "direction": "W", "lat": 40.683163, "lon": -73.938484, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.938484, 40.683163 ] } }, -{ "type": "Feature", "properties": { "id": 307513, "name": "Fort Hamilton Pkwy/7 Av", "direction": "SW", "lat": 40.624523, "lon": -74.01851, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01851, 40.624523 ] } }, -{ "type": "Feature", "properties": { "id": 307514, "name": "Fort Hamilton Pkwy/86 St", "direction": "SW", "lat": 40.62059, "lon": -74.02439, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.02439, 40.62059 ] } }, -{ "type": "Feature", "properties": { "id": 307515, "name": "86 St/Narrows Av", "direction": "W", "lat": 40.6258, "lon": -74.04056, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.04056, 40.6258 ] } }, -{ "type": "Feature", "properties": { "id": 307516, "name": "Flatbush Av/Avenue K", "direction": "SE", "lat": 40.62487, "lon": -73.93941, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.93941, 40.62487 ] } }, -{ "type": "Feature", "properties": { "id": 307518, "name": "13 Av/56 St", "direction": "SW", "lat": 40.630905, "lon": -73.99651, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.99651, 40.630905 ] } }, -{ "type": "Feature", "properties": { "id": 307520, "name": "Ocean Av/Avenue L", "direction": "N", "lat": 40.621277, "lon": -73.95542, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95542, 40.621277 ] } }, -{ "type": "Feature", "properties": { "id": 307521, "name": "19 St/8 Av", "direction": "SE", "lat": 40.65821, "lon": -73.985306, "routes": "B67, B61, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.985306, 40.65821 ] } }, -{ "type": "Feature", "properties": { "id": 307526, "name": "Mermaid Av/W 31 St", "direction": "E", "lat": 40.57519, "lon": -73.99712, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.99712, 40.57519 ] } }, -{ "type": "Feature", "properties": { "id": 307531, "name": "Flatlands Av/Schenectady Av", "direction": "SW", "lat": 40.62426, "lon": -73.93069, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.93069, 40.62426 ] } }, -{ "type": "Feature", "properties": { "id": 307532, "name": "Flatlands Av/Avenue L", "direction": "SW", "lat": 40.622936, "lon": -73.93272, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.93272, 40.622936 ] } }, -{ "type": "Feature", "properties": { "id": 307533, "name": "Flatlands Av/Flatbush Av", "direction": "SW", "lat": 40.62132, "lon": -73.935234, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.935234, 40.62132 ] } }, -{ "type": "Feature", "properties": { "id": 307534, "name": "Flatlands Av/Flatbush Av", "direction": "NE", "lat": 40.621407, "lon": -73.935, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.935, 40.621407 ] } }, -{ "type": "Feature", "properties": { "id": 307535, "name": "Flatlands Av/Troy Av", "direction": "NE", "lat": 40.622864, "lon": -73.932785, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.932785, 40.622864 ] } }, -{ "type": "Feature", "properties": { "id": 307538, "name": "55 St/2 Av", "direction": "NW", "lat": 40.646233, "lon": -74.019646, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.019646, 40.646233 ] } }, -{ "type": "Feature", "properties": { "id": 307539, "name": "Pennsylvania Av/Schroeders Av", "direction": "SE", "lat": 40.64761, "lon": -73.88174, "routes": "B82, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88174, 40.64761 ] } }, -{ "type": "Feature", "properties": { "id": 307540, "name": "Atlantic Av/4 Av", "direction": "W", "lat": 40.684574, "lon": -73.97867, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.97867, 40.684574 ] } }, -{ "type": "Feature", "properties": { "id": 307541, "name": "Fulton St/Marcus Garvey Blvd", "direction": "W", "lat": 40.679832, "lon": -73.93798, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.93798, 40.679832 ] } }, -{ "type": "Feature", "properties": { "id": 307547, "name": "Greene Av/Fulton St", "direction": "E", "lat": 40.68588, "lon": -73.97255, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.97255, 40.68588 ] } }, -{ "type": "Feature", "properties": { "id": 307548, "name": "Greene Av/Adelphi St", "direction": "E", "lat": 40.68617, "lon": -73.970055, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.970055, 40.68617 ] } }, -{ "type": "Feature", "properties": { "id": 307549, "name": "Greene Av/Vanderbilt Av", "direction": "E", "lat": 40.6864, "lon": -73.96803, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.96803, 40.6864 ] } }, -{ "type": "Feature", "properties": { "id": 307550, "name": "Greene Av/Washington Av", "direction": "E", "lat": 40.686737, "lon": -73.96511, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.96511, 40.686737 ] } }, -{ "type": "Feature", "properties": { "id": 307551, "name": "Greene Av/Grand Av", "direction": "E", "lat": 40.687088, "lon": -73.962074, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.962074, 40.687088 ] } }, -{ "type": "Feature", "properties": { "id": 307552, "name": "Greene Av/Classon Av", "direction": "E", "lat": 40.687412, "lon": -73.95928, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.95928, 40.687412 ] } }, -{ "type": "Feature", "properties": { "id": 307553, "name": "Franklin Av/Greene Av", "direction": "S", "lat": 40.6874, "lon": -73.95696, "routes": "B48, B52" }, "geometry": { "type": "Point", "coordinates": [ -73.95696, 40.6874 ] } }, -{ "type": "Feature", "properties": { "id": 307572, "name": "Greene Av/Classon Av", "direction": "W", "lat": 40.68739, "lon": -73.96012, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.96012, 40.68739 ] } }, -{ "type": "Feature", "properties": { "id": 307573, "name": "Greene Av/Grand Av", "direction": "W", "lat": 40.68709, "lon": -73.96296, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.96296, 40.68709 ] } }, -{ "type": "Feature", "properties": { "id": 307575, "name": "Greene Av/Vanderbilt Av", "direction": "W", "lat": 40.686367, "lon": -73.968925, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.968925, 40.686367 ] } }, -{ "type": "Feature", "properties": { "id": 307576, "name": "Greene Av/Adelphi St", "direction": "W", "lat": 40.68613, "lon": -73.97088, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.97088, 40.68613 ] } }, -{ "type": "Feature", "properties": { "id": 307577, "name": "Greene Av/Cumberland St", "direction": "W", "lat": 40.685925, "lon": -73.97282, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.97282, 40.685925 ] } }, -{ "type": "Feature", "properties": { "id": 307581, "name": "Church Av/E 5 St", "direction": "NE", "lat": 40.64446, "lon": -73.97522, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.97522, 40.64446 ] } }, -{ "type": "Feature", "properties": { "id": 307582, "name": "4 Av/95 St", "direction": "S", "lat": 40.616104, "lon": -74.03114, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.03114, 40.616104 ] } }, -{ "type": "Feature", "properties": { "id": 307585, "name": "53 St/2 Av", "direction": "NW", "lat": 40.64757, "lon": -74.01892, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.01892, 40.64757 ] } }, -{ "type": "Feature", "properties": { "id": 307588, "name": "Flushing Av/North Portland Av", "direction": "E", "lat": 40.697994, "lon": -73.9764, "routes": "B57, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.9764, 40.697994 ] } }, -{ "type": "Feature", "properties": { "id": 307591, "name": "Flatlands Av/Schenectady Av", "direction": "NE", "lat": 40.624294, "lon": -73.93058, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.93058, 40.624294 ] } }, -{ "type": "Feature", "properties": { "id": 307593, "name": "4 Av/92 St", "direction": "S", "lat": 40.618233, "lon": -74.03032, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.03032, 40.618233 ] } }, -{ "type": "Feature", "properties": { "id": 307595, "name": "Dean St/3 Av", "direction": "E", "lat": 40.683865, "lon": -73.98121, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98121, 40.683865 ] } }, -{ "type": "Feature", "properties": { "id": 307596, "name": "Greene Av/Washington Av", "direction": "W", "lat": 40.686703, "lon": -73.96598, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.96598, 40.686703 ] } }, -{ "type": "Feature", "properties": { "id": 307599, "name": "Eldert Ln/Loring Av", "direction": "N", "lat": 40.66819, "lon": -73.86248, "routes": "B15, B13, B20, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86248, 40.66819 ] } }, -{ "type": "Feature", "properties": { "id": 307600, "name": "Ashford St/Stanley Av", "direction": "NW", "lat": 40.66142, "lon": -73.87981, "routes": "B20, B84, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.87981, 40.66142 ] } }, -{ "type": "Feature", "properties": { "id": 307615, "name": "Rockaway Av/Linden Blvd", "direction": "S", "lat": 40.65432, "lon": -73.90687, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90687, 40.65432 ] } }, -{ "type": "Feature", "properties": { "id": 307616, "name": "Bedford Av/N 3 St", "direction": "NE", "lat": 40.715782, "lon": -73.95985, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95985, 40.715782 ] } }, -{ "type": "Feature", "properties": { "id": 307618, "name": "50 St/7 Av", "direction": "SE", "lat": 40.642193, "lon": -74.00559, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.00559, 40.642193 ] } }, -{ "type": "Feature", "properties": { "id": 307619, "name": "50 St/13 Av", "direction": "SE", "lat": 40.634174, "lon": -73.99231, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.99231, 40.634174 ] } }, -{ "type": "Feature", "properties": { "id": 307623, "name": "Coney Island Av/Park Circle", "direction": "N", "lat": 40.65043, "lon": -73.97189, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97189, 40.65043 ] } }, -{ "type": "Feature", "properties": { "id": 307625, "name": "Avenue N/E 5 St", "direction": "E", "lat": 40.614384, "lon": -73.970146, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.970146, 40.614384 ] } }, -{ "type": "Feature", "properties": { "id": 307626, "name": "Ocean Av/Avenue N", "direction": "S", "lat": 40.616253, "lon": -73.954735, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.954735, 40.616253 ] } }, -{ "type": "Feature", "properties": { "id": 307627, "name": "Linden Blvd/Autumn Av", "direction": "E", "lat": 40.66876, "lon": -73.866234, "routes": "B15, B20, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.866234, 40.66876 ] } }, -{ "type": "Feature", "properties": { "id": 307628, "name": "Eldert Ln/Linden Blvd", "direction": "S", "lat": 40.669125, "lon": -73.862816, "routes": "B20, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.862816, 40.669125 ] } }, -{ "type": "Feature", "properties": { "id": 307629, "name": "Eldert Ln/Loring Av", "direction": "S", "lat": 40.667652, "lon": -73.86246, "routes": "B20, B13, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86246, 40.667652 ] } }, -{ "type": "Feature", "properties": { "id": 307631, "name": "Fulton St/Eastern Pkwy", "direction": "E", "lat": 40.678066, "lon": -73.90819, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.90819, 40.678066 ] } }, -{ "type": "Feature", "properties": { "id": 307632, "name": "Nassau Av/Varick St", "direction": "S", "lat": 40.72654, "lon": -73.93623, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.93623, 40.72654 ] } }, -{ "type": "Feature", "properties": { "id": 307636, "name": "Flatbush Av/Avenue T", "direction": "SE", "lat": 40.611275, "lon": -73.92442, "routes": "B46, B9, B41, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.92442, 40.611275 ] } }, -{ "type": "Feature", "properties": { "id": 307637, "name": "Broadway/Jefferson St", "direction": "NW", "lat": 40.697353, "lon": -73.93581, "routes": "B46, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.93581, 40.697353 ] } }, -{ "type": "Feature", "properties": { "id": 307638, "name": "Caton Av/Saint Pauls Pl", "direction": "NE", "lat": 40.65161, "lon": -73.96265, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96265, 40.65161 ] } }, -{ "type": "Feature", "properties": { "id": 307639, "name": "Ocean Av/Caton Av", "direction": "N", "lat": 40.6525, "lon": -73.96138, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96138, 40.6525 ] } }, -{ "type": "Feature", "properties": { "id": 307641, "name": "Ocean Av/231 Ocean Av", "direction": "N", "lat": 40.657322, "lon": -73.9622, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.9622, 40.657322 ] } }, -{ "type": "Feature", "properties": { "id": 307642, "name": "Ocean Av/Lincoln Rd", "direction": "N", "lat": 40.660873, "lon": -73.962776, "routes": "B16, Q90" }, "geometry": { "type": "Point", "coordinates": [ -73.962776, 40.660873 ] } }, -{ "type": "Feature", "properties": { "id": 307643, "name": "Ocean Av/Lincoln Rd", "direction": "S", "lat": 40.66015, "lon": -73.96286, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96286, 40.66015 ] } }, -{ "type": "Feature", "properties": { "id": 307644, "name": "Ocean Av/Opp 231 Ocean Av", "direction": "S", "lat": 40.65739, "lon": -73.9624, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.9624, 40.65739 ] } }, -{ "type": "Feature", "properties": { "id": 307645, "name": "Ocean Av/Parkside Av", "direction": "S", "lat": 40.654503, "lon": -73.961945, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.961945, 40.654503 ] } }, -{ "type": "Feature", "properties": { "id": 307646, "name": "Flatbush Av/Ocean Av", "direction": "SE", "lat": 40.662643, "lon": -73.96214, "routes": "B41, B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96214, 40.662643 ] } }, -{ "type": "Feature", "properties": { "id": 307647, "name": "Fort Hamilton Pkwy/83 St", "direction": "NE", "lat": 40.6218, "lon": -74.02228, "routes": "B70, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.02228, 40.6218 ] } }, -{ "type": "Feature", "properties": { "id": 307649, "name": "Fountain Av/Flatlands Av", "direction": "SE", "lat": 40.65999, "lon": -73.86696, "routes": "B13, B84, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86696, 40.65999 ] } }, -{ "type": "Feature", "properties": { "id": 307656, "name": "60 St/12 Av", "direction": "NW", "lat": 40.63038, "lon": -74.00096, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00096, 40.63038 ] } }, -{ "type": "Feature", "properties": { "id": 307665, "name": "Franklin Av/Lefferts Pl", "direction": "S", "lat": 40.680473, "lon": -73.95564, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95564, 40.680473 ] } }, -{ "type": "Feature", "properties": { "id": 307666, "name": "18 Av/57 St", "direction": "NE", "lat": 40.624054, "lon": -73.985115, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.985115, 40.624054 ] } }, -{ "type": "Feature", "properties": { "id": 307668, "name": "Utica Av/Eastern Pkwy", "direction": "N", "lat": 40.668476, "lon": -73.931076, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.931076, 40.668476 ] } }, -{ "type": "Feature", "properties": { "id": 307669, "name": "Shore Pkwy/Coyle St", "direction": "E", "lat": 40.585987, "lon": -73.93388, "routes": "B44, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.93388, 40.585987 ] } }, -{ "type": "Feature", "properties": { "id": 307673, "name": "Hegeman Av/Bristol St", "direction": "E", "lat": 40.656006, "lon": -73.90871, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.90871, 40.656006 ] } }, -{ "type": "Feature", "properties": { "id": 307674, "name": "Gates Av/Franklin Av", "direction": "E", "lat": 40.685528, "lon": -73.95611, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.95611, 40.685528 ] } }, -{ "type": "Feature", "properties": { "id": 307675, "name": "Gates Av/Bedford Av", "direction": "E", "lat": 40.685776, "lon": -73.95396, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.95396, 40.685776 ] } }, -{ "type": "Feature", "properties": { "id": 307676, "name": "Gates Av/Nostrand Av", "direction": "E", "lat": 40.68613, "lon": -73.95087, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.95087, 40.68613 ] } }, -{ "type": "Feature", "properties": { "id": 307677, "name": "Gates Av/Marcy Av", "direction": "E", "lat": 40.68657, "lon": -73.947044, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.947044, 40.68657 ] } }, -{ "type": "Feature", "properties": { "id": 307678, "name": "Gates Av/Tompkins Av", "direction": "E", "lat": 40.686905, "lon": -73.944115, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.944115, 40.686905 ] } }, -{ "type": "Feature", "properties": { "id": 307679, "name": "Gates Av/Throop Av", "direction": "E", "lat": 40.687218, "lon": -73.94134, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.94134, 40.687218 ] } }, -{ "type": "Feature", "properties": { "id": 307680, "name": "Gates Av/Marcus Garvey Blvd", "direction": "E", "lat": 40.68754, "lon": -73.93853, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.93853, 40.68754 ] } }, -{ "type": "Feature", "properties": { "id": 307681, "name": "Gates Av/Lewis Av", "direction": "E", "lat": 40.687874, "lon": -73.935616, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.935616, 40.687874 ] } }, -{ "type": "Feature", "properties": { "id": 307682, "name": "Gates Av/Stuyvesant Av", "direction": "E", "lat": 40.688213, "lon": -73.93266, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.93266, 40.688213 ] } }, -{ "type": "Feature", "properties": { "id": 307683, "name": "Gates Av/Malcolm X Blvd", "direction": "E", "lat": 40.688553, "lon": -73.92974, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.92974, 40.688553 ] } }, -{ "type": "Feature", "properties": { "id": 307684, "name": "Gates Av/Patchen Av", "direction": "E", "lat": 40.688904, "lon": -73.926865, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.926865, 40.688904 ] } }, -{ "type": "Feature", "properties": { "id": 307686, "name": "Gates Av/Broadway", "direction": "E", "lat": 40.689438, "lon": -73.92222, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.92222, 40.689438 ] } }, -{ "type": "Feature", "properties": { "id": 307687, "name": "Gates Av/Bushwick Av", "direction": "NE", "lat": 40.69113, "lon": -73.92038, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.92038, 40.69113 ] } }, -{ "type": "Feature", "properties": { "id": 307688, "name": "Gates Av/Evergreen Av", "direction": "NE", "lat": 40.69236, "lon": -73.919205, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.919205, 40.69236 ] } }, -{ "type": "Feature", "properties": { "id": 307689, "name": "Gates Av/Central Av", "direction": "NE", "lat": 40.694103, "lon": -73.91749, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.91749, 40.694103 ] } }, -{ "type": "Feature", "properties": { "id": 307690, "name": "Gates Av/Wilson Av", "direction": "NE", "lat": 40.69557, "lon": -73.91605, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.91605, 40.69557 ] } }, -{ "type": "Feature", "properties": { "id": 307691, "name": "Gates Av/Knickerbocker Av", "direction": "NE", "lat": 40.69704, "lon": -73.914566, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.914566, 40.69704 ] } }, -{ "type": "Feature", "properties": { "id": 307695, "name": "9 St/2 Av", "direction": "SE", "lat": 40.672382, "lon": -73.993, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.993, 40.672382 ] } }, -{ "type": "Feature", "properties": { "id": 307696, "name": "Smith St/W 9 St", "direction": "NE", "lat": 40.674892, "lon": -73.99767, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99767, 40.674892 ] } }, -{ "type": "Feature", "properties": { "id": 307699, "name": "Tillary St/Adams St", "direction": "E", "lat": 40.696033, "lon": -73.988144, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.988144, 40.696033 ] } }, -{ "type": "Feature", "properties": { "id": 307702, "name": "60 St/17 Av", "direction": "SE", "lat": 40.623123, "lon": -73.98923, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.98923, 40.623123 ] } }, -{ "type": "Feature", "properties": { "id": 307704, "name": "Jamaica Av/Marginal St East", "direction": "SW", "lat": 40.678524, "lon": -73.896904, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.896904, 40.678524 ] } }, -{ "type": "Feature", "properties": { "id": 307706, "name": "Avenue J/Ocean Av", "direction": "E", "lat": 40.625645, "lon": -73.95618, "routes": "B6, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.95618, 40.625645 ] } }, -{ "type": "Feature", "properties": { "id": 307709, "name": "37 St/4 Av", "direction": "SE", "lat": 40.653812, "lon": -74.00524, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00524, 40.653812 ] } }, -{ "type": "Feature", "properties": { "id": 307712, "name": "Bath Av/14 Av", "direction": "NW", "lat": 40.609344, "lon": -74.01507, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01507, 40.609344 ] } }, -{ "type": "Feature", "properties": { "id": 307713, "name": "Stillwell Av/2670 Stillwell Av", "direction": "S", "lat": 40.581463, "lon": -73.98248, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98248, 40.581463 ] } }, -{ "type": "Feature", "properties": { "id": 307728, "name": "Malcolm X Blvd/Halsey St", "direction": "S", "lat": 40.68387, "lon": -73.92934, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.92934, 40.68387 ] } }, -{ "type": "Feature", "properties": { "id": 307737, "name": "Nostrand Av/Church Av", "direction": "S", "lat": 40.65036, "lon": -73.94961, "routes": "B96, B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94961, 40.65036 ] } }, -{ "type": "Feature", "properties": { "id": 307739, "name": "Kings Hwy/W 10 St", "direction": "W", "lat": 40.605595, "lon": -73.98347, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98347, 40.605595 ] } }, -{ "type": "Feature", "properties": { "id": 307742, "name": "Kings Hwy/E 16 St", "direction": "NE", "lat": 40.60904, "lon": -73.95752, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.95752, 40.60904 ] } }, -{ "type": "Feature", "properties": { "id": 307771, "name": "Avenue X / Batchelder St", "direction": "W", "lat": 40.594204, "lon": -73.938034, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.938034, 40.594204 ] } }, -{ "type": "Feature", "properties": { "id": 307777, "name": "Jamaica Av/Eldert Ln", "direction": "E", "lat": 40.691105, "lon": -73.86815, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.86815, 40.691105 ] } }, -{ "type": "Feature", "properties": { "id": 307780, "name": "Shore Rd/83 St", "direction": "NE", "lat": 40.627895, "lon": -74.0399, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.0399, 40.627895 ] } }, -{ "type": "Feature", "properties": { "id": 307784, "name": "4 Av/94 St", "direction": "S", "lat": 40.616436, "lon": -74.03107, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.03107, 40.616436 ] } }, -{ "type": "Feature", "properties": { "id": 307786, "name": "9 St/Smith St", "direction": "NW", "lat": 40.67462, "lon": -73.99741, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.99741, 40.67462 ] } }, -{ "type": "Feature", "properties": { "id": 307789, "name": "Avenue L/E 88 St", "direction": "SW", "lat": 40.634235, "lon": -73.9023, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.9023, 40.634235 ] } }, -{ "type": "Feature", "properties": { "id": 307790, "name": "Church Av/New York Av", "direction": "W", "lat": 40.650993, "lon": -73.94711, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.94711, 40.650993 ] } }, -{ "type": "Feature", "properties": { "id": 307791, "name": "Church Av/New York Av", "direction": "E", "lat": 40.65091, "lon": -73.94622, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.94622, 40.65091 ] } }, -{ "type": "Feature", "properties": { "id": 307792, "name": "Church Av/Nostrand Av", "direction": "E", "lat": 40.650764, "lon": -73.94928, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.94928, 40.650764 ] } }, -{ "type": "Feature", "properties": { "id": 307793, "name": "Church Av/Nostrand Av", "direction": "W", "lat": 40.650852, "lon": -73.950005, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.950005, 40.650852 ] } }, -{ "type": "Feature", "properties": { "id": 307795, "name": "Church Av/Rogers Av", "direction": "W", "lat": 40.65072, "lon": -73.95287, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.95287, 40.65072 ] } }, -{ "type": "Feature", "properties": { "id": 307798, "name": "Driggs Av/N 9 St", "direction": "SW", "lat": 40.717934, "lon": -73.95555, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95555, 40.717934 ] } }, -{ "type": "Feature", "properties": { "id": 307804, "name": "Rockaway Av/Eastern Pkwy", "direction": "N", "lat": 40.67358, "lon": -73.911095, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.911095, 40.67358 ] } }, -{ "type": "Feature", "properties": { "id": 307806, "name": "Shore Pkwy/Bragg St", "direction": "W", "lat": 40.586567, "lon": -73.933334, "routes": "BM3, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.933334, 40.586567 ] } }, -{ "type": "Feature", "properties": { "id": 307809, "name": "Rodney St/Grand St", "direction": "NE", "lat": 40.711723, "lon": -73.954315, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.954315, 40.711723 ] } }, -{ "type": "Feature", "properties": { "id": 307811, "name": "Dean St/Troy Av", "direction": "E", "lat": 40.676075, "lon": -73.93615, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93615, 40.676075 ] } }, -{ "type": "Feature", "properties": { "id": 307812, "name": "Dean St/Schenectady Av", "direction": "E", "lat": 40.675896, "lon": -73.932816, "routes": "B15, B65" }, "geometry": { "type": "Point", "coordinates": [ -73.932816, 40.675896 ] } }, -{ "type": "Feature", "properties": { "id": 307813, "name": "Dean St/Utica Av", "direction": "E", "lat": 40.67574, "lon": -73.93004, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.93004, 40.67574 ] } }, -{ "type": "Feature", "properties": { "id": 307814, "name": "Dean St/Rochester Av", "direction": "E", "lat": 40.67562, "lon": -73.92789, "routes": "B65, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92789, 40.67562 ] } }, -{ "type": "Feature", "properties": { "id": 307815, "name": "Dean St/Flatbush Av", "direction": "E", "lat": 40.681667, "lon": -73.97528, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97528, 40.681667 ] } }, -{ "type": "Feature", "properties": { "id": 307816, "name": "Dean St/Carlton Av", "direction": "E", "lat": 40.680717, "lon": -73.97074, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97074, 40.680717 ] } }, -{ "type": "Feature", "properties": { "id": 307817, "name": "Dean St/Vanderbilt Av", "direction": "E", "lat": 40.680042, "lon": -73.96752, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.96752, 40.680042 ] } }, -{ "type": "Feature", "properties": { "id": 307819, "name": "Dean St/Classon Av", "direction": "E", "lat": 40.678143, "lon": -73.95845, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.95845, 40.678143 ] } }, -{ "type": "Feature", "properties": { "id": 307820, "name": "Dean St/Nostrand Av", "direction": "E", "lat": 40.676826, "lon": -73.94998, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.94998, 40.676826 ] } }, -{ "type": "Feature", "properties": { "id": 307821, "name": "Dean St/New York Av", "direction": "E", "lat": 40.67665, "lon": -73.94669, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.94669, 40.67665 ] } }, -{ "type": "Feature", "properties": { "id": 307822, "name": "Dean St/Brooklyn Av", "direction": "E", "lat": 40.676495, "lon": -73.94392, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.94392, 40.676495 ] } }, -{ "type": "Feature", "properties": { "id": 307823, "name": "Dean St/Kingston Av", "direction": "E", "lat": 40.67635, "lon": -73.941154, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.941154, 40.67635 ] } }, -{ "type": "Feature", "properties": { "id": 307824, "name": "Bergen St/Albany Av", "direction": "W", "lat": 40.675533, "lon": -73.93922, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.93922, 40.675533 ] } }, -{ "type": "Feature", "properties": { "id": 307825, "name": "Bergen St/Kingston Av", "direction": "W", "lat": 40.675713, "lon": -73.94204, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.94204, 40.675713 ] } }, -{ "type": "Feature", "properties": { "id": 307826, "name": "Bergen St/Brooklyn Av", "direction": "W", "lat": 40.67587, "lon": -73.94486, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.94486, 40.67587 ] } }, -{ "type": "Feature", "properties": { "id": 307827, "name": "Bergen St/Classon Av", "direction": "W", "lat": 40.677654, "lon": -73.95951, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.95951, 40.677654 ] } }, -{ "type": "Feature", "properties": { "id": 307828, "name": "Bergen St/Washington Av", "direction": "W", "lat": 40.678673, "lon": -73.96436, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.96436, 40.678673 ] } }, -{ "type": "Feature", "properties": { "id": 307829, "name": "Bergen St/Vanderbilt Av", "direction": "W", "lat": 40.679573, "lon": -73.96867, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.96867, 40.679573 ] } }, -{ "type": "Feature", "properties": { "id": 307831, "name": "Vanderbilt Av/Myrtle Av", "direction": "S", "lat": 40.692837, "lon": -73.96986, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96986, 40.692837 ] } }, -{ "type": "Feature", "properties": { "id": 307832, "name": "Avenue M/E 13 St", "direction": "E", "lat": 40.61772, "lon": -73.96199, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.96199, 40.61772 ] } }, -{ "type": "Feature", "properties": { "id": 307833, "name": "5 Av/5 St", "direction": "SW", "lat": 40.671356, "lon": -73.9846, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.9846, 40.671356 ] } }, -{ "type": "Feature", "properties": { "id": 307835, "name": "West Brighton Av/W 5 St", "direction": "E", "lat": 40.57651, "lon": -73.972275, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.972275, 40.57651 ] } }, -{ "type": "Feature", "properties": { "id": 307836, "name": "Avenue U/Ocean Av", "direction": "E", "lat": 40.599392, "lon": -73.95062, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.95062, 40.599392 ] } }, -{ "type": "Feature", "properties": { "id": 307838, "name": "Avenue M/E 15 St", "direction": "E", "lat": 40.61801, "lon": -73.95921, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.95921, 40.61801 ] } }, -{ "type": "Feature", "properties": { "id": 307839, "name": "Flatbush Av/E 31 St", "direction": "NW", "lat": 40.631992, "lon": -73.9467, "routes": "B103, B11" }, "geometry": { "type": "Point", "coordinates": [ -73.9467, 40.631992 ] } }, -{ "type": "Feature", "properties": { "id": 307840, "name": "Flatbush Av / Nostrand Av", "direction": "SE", "lat": 40.63251, "lon": -73.94745, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.94745, 40.63251 ] } }, -{ "type": "Feature", "properties": { "id": 307848, "name": "Classon Av/Greene Av", "direction": "N", "lat": 40.68777, "lon": -73.95972, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95972, 40.68777 ] } }, -{ "type": "Feature", "properties": { "id": 307851, "name": "Myrtle Av/Harman St", "direction": "W", "lat": 40.698635, "lon": -73.92053, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.92053, 40.698635 ] } }, -{ "type": "Feature", "properties": { "id": 307853, "name": "Flatbush Av/Plaza St East", "direction": "NW", "lat": 40.675167, "lon": -73.97087, "routes": "B69, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.97087, 40.675167 ] } }, -{ "type": "Feature", "properties": { "id": 307854, "name": "Emmons Av/Brigham St", "direction": "W", "lat": 40.584324, "lon": -73.93238, "routes": "B44, B4, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93238, 40.584324 ] } }, -{ "type": "Feature", "properties": { "id": 307856, "name": "Grand St/Metropolitan Av Bridge", "direction": "W", "lat": 40.714172, "lon": -73.93184, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.93184, 40.714172 ] } }, -{ "type": "Feature", "properties": { "id": 307857, "name": "Metropolitan Av/Varick Av", "direction": "W", "lat": 40.714417, "lon": -73.9294, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.9294, 40.714417 ] } }, -{ "type": "Feature", "properties": { "id": 307859, "name": "Jamaica Av/Miller Av", "direction": "SW", "lat": 40.680054, "lon": -73.893555, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.893555, 40.680054 ] } }, -{ "type": "Feature", "properties": { "id": 307860, "name": "Grand St/Lorimer St", "direction": "E", "lat": 40.711147, "lon": -73.9485, "routes": "Q59, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.9485, 40.711147 ] } }, -{ "type": "Feature", "properties": { "id": 307861, "name": "Grand St/Grand St Bridge", "direction": "E", "lat": 40.7162, "lon": -73.92368, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.92368, 40.7162 ] } }, -{ "type": "Feature", "properties": { "id": 307893, "name": "Columbia St/Carroll St", "direction": "NE", "lat": 40.68327, "lon": -74.00348, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00348, 40.68327 ] } }, -{ "type": "Feature", "properties": { "id": 307894, "name": "Ocean Av/Avenue U", "direction": "S", "lat": 40.598763, "lon": -73.95136, "routes": "BM3, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95136, 40.598763 ] } }, -{ "type": "Feature", "properties": { "id": 307895, "name": "Veterans Av/E 69 St", "direction": "E", "lat": 40.619938, "lon": -73.90958, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.90958, 40.619938 ] } }, -{ "type": "Feature", "properties": { "id": 307896, "name": "Stanley Av/Eldert Ln", "direction": "W", "lat": 40.666252, "lon": -73.86221, "routes": "B13, B20, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86221, 40.666252 ] } }, -{ "type": "Feature", "properties": { "id": 307897, "name": "Van Sinderen Av/Fulton St", "direction": "S", "lat": 40.678112, "lon": -73.903404, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.903404, 40.678112 ] } }, -{ "type": "Feature", "properties": { "id": 307899, "name": "Van Sinderen Av/Fulton St", "direction": "S", "lat": 40.67839, "lon": -73.90355, "routes": "Q24, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.90355, 40.67839 ] } }, -{ "type": "Feature", "properties": { "id": 307901, "name": "Gates Av/Ralph Av", "direction": "E", "lat": 40.689213, "lon": -73.92412, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.92412, 40.689213 ] } }, -{ "type": "Feature", "properties": { "id": 307902, "name": "Marcus Garvey Blvd/Gates Av", "direction": "S", "lat": 40.687206, "lon": -73.938965, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.938965, 40.687206 ] } }, -{ "type": "Feature", "properties": { "id": 307904, "name": "Classon Av/Gates Av", "direction": "N", "lat": 40.685528, "lon": -73.95927, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.95927, 40.685528 ] } }, -{ "type": "Feature", "properties": { "id": 307905, "name": "Nostrand Av/Gates Av", "direction": "S", "lat": 40.685867, "lon": -73.95075, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95075, 40.685867 ] } }, -{ "type": "Feature", "properties": { "id": 307907, "name": "Jay St/Fulton St", "direction": "NE", "lat": 40.691273, "lon": -73.98737, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.98737, 40.691273 ] } }, -{ "type": "Feature", "properties": { "id": 307908, "name": "Smith St/5 St", "direction": "NE", "lat": 40.67771, "lon": -73.99627, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99627, 40.67771 ] } }, -{ "type": "Feature", "properties": { "id": 307909, "name": "Smith St/2 St", "direction": "NE", "lat": 40.679523, "lon": -73.99523, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99523, 40.679523 ] } }, -{ "type": "Feature", "properties": { "id": 307910, "name": "Smith St/Union St", "direction": "NE", "lat": 40.68178, "lon": -73.99375, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99375, 40.68178 ] } }, -{ "type": "Feature", "properties": { "id": 307911, "name": "Smith St/Douglass St", "direction": "NE", "lat": 40.683792, "lon": -73.99238, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99238, 40.683792 ] } }, -{ "type": "Feature", "properties": { "id": 307912, "name": "Meeker Av/Morgan Av", "direction": "NE", "lat": 40.722973, "lon": -73.93925, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.93925, 40.722973 ] } }, -{ "type": "Feature", "properties": { "id": 307913, "name": "Cherry St/Vandervoort Av", "direction": "E", "lat": 40.723885, "lon": -73.937195, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.937195, 40.723885 ] } }, -{ "type": "Feature", "properties": { "id": 307914, "name": "Avenue D/New York Av", "direction": "W", "lat": 40.641167, "lon": -73.94602, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.94602, 40.641167 ] } }, -{ "type": "Feature", "properties": { "id": 307915, "name": "Williamsburg Bridge Plaza/Lane 4", "direction": "E", "lat": 40.70928, "lon": -73.95952, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.95952, 40.70928 ] } }, -{ "type": "Feature", "properties": { "id": 307916, "name": "Williamsburg Bridge Plaza/Bus Terminal", "direction": "E", "lat": 40.709435, "lon": -73.95931, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.95931, 40.709435 ] } }, -{ "type": "Feature", "properties": { "id": 307918, "name": "Borinquen Pl/S 1 St", "direction": "W", "lat": 40.710712, "lon": -73.95392, "routes": "Q54, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.95392, 40.710712 ] } }, -{ "type": "Feature", "properties": { "id": 307919, "name": "Williamsburg Bridge Plaza/Lane 4", "direction": "E", "lat": 40.709328, "lon": -73.95935, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.95935, 40.709328 ] } }, -{ "type": "Feature", "properties": { "id": 307920, "name": "Kings Plaza/Avenue U", "direction": "NW", "lat": 40.609566, "lon": -73.921814, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.921814, 40.609566 ] } }, -{ "type": "Feature", "properties": { "id": 307921, "name": "Williamsburg Bridge Plaza/Lane 2", "direction": "E", "lat": 40.709538, "lon": -73.95942, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95942, 40.709538 ] } }, -{ "type": "Feature", "properties": { "id": 307922, "name": "Fountain Av/Flatlands Av", "direction": "NW", "lat": 40.660244, "lon": -73.86694, "routes": "B13, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86694, 40.660244 ] } }, -{ "type": "Feature", "properties": { "id": 307923, "name": "Surf Av/W 21 St", "direction": "W", "lat": 40.574493, "lon": -73.98813, "routes": "X28, B36, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.98813, 40.574493 ] } }, -{ "type": "Feature", "properties": { "id": 307925, "name": "Pennsylvania Av/Atlantic Av", "direction": "S", "lat": 40.675114, "lon": -73.896805, "routes": "B83, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.896805, 40.675114 ] } }, -{ "type": "Feature", "properties": { "id": 307926, "name": "Fulton St/Albany Av", "direction": "E", "lat": 40.679665, "lon": -73.93758, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.93758, 40.679665 ] } }, -{ "type": "Feature", "properties": { "id": 307927, "name": "Fulton St/Thomas S Boyland St", "direction": "W", "lat": 40.67851, "lon": -73.91397, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.91397, 40.67851 ] } }, -{ "type": "Feature", "properties": { "id": 307928, "name": "Halsey St/Nostrand Av", "direction": "W", "lat": 40.68188, "lon": -73.94968, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.94968, 40.68188 ] } }, -{ "type": "Feature", "properties": { "id": 307935, "name": "Metrotech Underpass/Lawrence St", "direction": "W", "lat": 40.69297, "lon": -73.98604, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.98604, 40.69297 ] } }, -{ "type": "Feature", "properties": { "id": 307936, "name": "7 Av/6 St", "direction": "NE", "lat": 40.668922, "lon": -73.979774, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.979774, 40.668922 ] } }, -{ "type": "Feature", "properties": { "id": 307938, "name": "Prospect Park Southwest/Bartel Pritchard Sq", "direction": "NW", "lat": 40.660854, "lon": -73.97939, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97939, 40.660854 ] } }, -{ "type": "Feature", "properties": { "id": 307939, "name": "W 33 St/Bay View Av", "direction": "S", "lat": 40.579174, "lon": -74.00048, "routes": "B36, B74" }, "geometry": { "type": "Point", "coordinates": [ -74.00048, 40.579174 ] } }, -{ "type": "Feature", "properties": { "id": 307941, "name": "Shore Rd/71 St", "direction": "NE", "lat": 40.636852, "lon": -74.036255, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.036255, 40.636852 ] } }, -{ "type": "Feature", "properties": { "id": 307942, "name": "Brighton Beach Av/Ocean Pkwy", "direction": "E", "lat": 40.576218, "lon": -73.967606, "routes": "B68, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.967606, 40.576218 ] } }, -{ "type": "Feature", "properties": { "id": 307943, "name": "Navy St/Nassau St", "direction": "S", "lat": 40.69791, "lon": -73.980644, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.980644, 40.69791 ] } }, -{ "type": "Feature", "properties": { "id": 307945, "name": "Avenue N/Mcdonald Av", "direction": "E", "lat": 40.614017, "lon": -73.97355, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.97355, 40.614017 ] } }, -{ "type": "Feature", "properties": { "id": 307947, "name": "Church Av/Mcdonald Av", "direction": "SW", "lat": 40.642696, "lon": -73.97988, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.97988, 40.642696 ] } }, -{ "type": "Feature", "properties": { "id": 307948, "name": "Gates Av/Classon Av", "direction": "W", "lat": 40.685284, "lon": -73.959145, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.959145, 40.685284 ] } }, -{ "type": "Feature", "properties": { "id": 307951, "name": "Cropsey Av/Bay 8 St", "direction": "SE", "lat": 40.60704, "lon": -74.016, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.016, 40.60704 ] } }, -{ "type": "Feature", "properties": { "id": 307952, "name": "Surf Av/Stillwell Av", "direction": "E", "lat": 40.575527, "lon": -73.980965, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.980965, 40.575527 ] } }, -{ "type": "Feature", "properties": { "id": 307953, "name": "W 5 St/West Brighton Av", "direction": "S", "lat": 40.5763, "lon": -73.97297, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.97297, 40.5763 ] } }, -{ "type": "Feature", "properties": { "id": 307954, "name": "E 98 St/Church Av", "direction": "SE", "lat": 40.65608, "lon": -73.91313, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.91313, 40.65608 ] } }, -{ "type": "Feature", "properties": { "id": 307956, "name": "Cropsey Av/18 Av", "direction": "NW", "lat": 40.602905, "lon": -74.00781, "routes": "X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.00781, 40.602905 ] } }, -{ "type": "Feature", "properties": { "id": 307957, "name": "Cropsey Av/Bay 25 St", "direction": "NW", "lat": 40.59996, "lon": -74.00236, "routes": "X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.00236, 40.59996 ] } }, -{ "type": "Feature", "properties": { "id": 307958, "name": "Shore Rd/88 St", "direction": "N", "lat": 40.624496, "lon": -74.04064, "routes": "X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.04064, 40.624496 ] } }, -{ "type": "Feature", "properties": { "id": 307959, "name": "Shore Rd/79 St", "direction": "NE", "lat": 40.631504, "lon": -74.0385, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.0385, 40.631504 ] } }, -{ "type": "Feature", "properties": { "id": 307960, "name": "Shore Rd/Bay Ridge Pkwy", "direction": "N", "lat": 40.63394, "lon": -74.0367, "routes": "X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.0367, 40.63394 ] } }, -{ "type": "Feature", "properties": { "id": 307961, "name": "Shore Rd/72 St", "direction": "NE", "lat": 40.636204, "lon": -74.03691, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.03691, 40.636204 ] } }, -{ "type": "Feature", "properties": { "id": 307963, "name": "Washington Av/Sullivan Pl", "direction": "N", "lat": 40.664, "lon": -73.96103, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96103, 40.664 ] } }, -{ "type": "Feature", "properties": { "id": 307964, "name": "Washington Av/Montgomery St", "direction": "N", "lat": 40.66702, "lon": -73.9616, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.9616, 40.66702 ] } }, -{ "type": "Feature", "properties": { "id": 307969, "name": "Stanley Av/Crescent St", "direction": "E", "lat": 40.66546, "lon": -73.86708, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86708, 40.66546 ] } }, -{ "type": "Feature", "properties": { "id": 307971, "name": "Stanley Av/Sheridan Av", "direction": "E", "lat": 40.666054, "lon": -73.8632, "routes": "B13, B14, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.8632, 40.666054 ] } }, -{ "type": "Feature", "properties": { "id": 307975, "name": "Stillwell Av/Neptune Av", "direction": "N", "lat": 40.58219, "lon": -73.98241, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98241, 40.58219 ] } }, -{ "type": "Feature", "properties": { "id": 307977, "name": "Flushing Av/Thornton St", "direction": "W", "lat": 40.700485, "lon": -73.9442, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.9442, 40.700485 ] } }, -{ "type": "Feature", "properties": { "id": 307983, "name": "Kings Hwy/Bedford Av", "direction": "SW", "lat": 40.61282, "lon": -73.949455, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.949455, 40.61282 ] } }, -{ "type": "Feature", "properties": { "id": 307984, "name": "Eastern Pkwy/Utica Av", "direction": "E", "lat": 40.668552, "lon": -73.93151, "routes": "B14, B99" }, "geometry": { "type": "Point", "coordinates": [ -73.93151, 40.668552 ] } }, -{ "type": "Feature", "properties": { "id": 307987, "name": "Lewis Av/Lafayette Av", "direction": "N", "lat": 40.69182, "lon": -73.936745, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.936745, 40.69182 ] } }, -{ "type": "Feature", "properties": { "id": 307988, "name": "Cadman Plaza West/Johnson St", "direction": "N", "lat": 40.694942, "lon": -73.99059, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.99059, 40.694942 ] } }, -{ "type": "Feature", "properties": { "id": 307989, "name": "New Lots Av/Pennsylvania Av", "direction": "NE", "lat": 40.66201, "lon": -73.892555, "routes": "B15, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.892555, 40.66201 ] } }, -{ "type": "Feature", "properties": { "id": 307990, "name": "Ralph Av/Eastern Pkwy", "direction": "N", "lat": 40.668816, "lon": -73.92251, "routes": "B47, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.92251, 40.668816 ] } }, -{ "type": "Feature", "properties": { "id": 307994, "name": "Remsen Av/Avenue A", "direction": "SE", "lat": 40.650864, "lon": -73.917946, "routes": "B17, B8" }, "geometry": { "type": "Point", "coordinates": [ -73.917946, 40.650864 ] } }, -{ "type": "Feature", "properties": { "id": 307995, "name": "Gold St/Sands St", "direction": "S", "lat": 40.699463, "lon": -73.98303, "routes": "B57, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98303, 40.699463 ] } }, -{ "type": "Feature", "properties": { "id": 307996, "name": "Gold St/Tillary St", "direction": "S", "lat": 40.696228, "lon": -73.98328, "routes": "B57, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98328, 40.696228 ] } }, -{ "type": "Feature", "properties": { "id": 307998, "name": "Gold St/Tillary St", "direction": "N", "lat": 40.696426, "lon": -73.98313, "routes": "B62, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.98313, 40.696426 ] } }, -{ "type": "Feature", "properties": { "id": 308002, "name": "Kings Hwy/E 26 St", "direction": "SW", "lat": 40.613808, "lon": -73.94811, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.94811, 40.613808 ] } }, -{ "type": "Feature", "properties": { "id": 308003, "name": "Glenwood Rd/E 98 St", "direction": "NE", "lat": 40.645615, "lon": -73.90147, "routes": "B6, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.90147, 40.645615 ] } }, -{ "type": "Feature", "properties": { "id": 308004, "name": "Glenwood Rd/Rockaway Pkwy", "direction": "NE", "lat": 40.645454, "lon": -73.901764, "routes": "B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.901764, 40.645454 ] } }, -{ "type": "Feature", "properties": { "id": 308006, "name": "Stanley Av/Autumn Av", "direction": "W", "lat": 40.6658, "lon": -73.86556, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86556, 40.6658 ] } }, -{ "type": "Feature", "properties": { "id": 308008, "name": "Glenwood Rd/Williams Av", "direction": "NE", "lat": 40.65118, "lon": -73.892845, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.892845, 40.65118 ] } }, -{ "type": "Feature", "properties": { "id": 308014, "name": "Bath Av/25 Av", "direction": "SE", "lat": 40.594353, "lon": -73.991104, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.991104, 40.594353 ] } }, -{ "type": "Feature", "properties": { "id": 308016, "name": "Halsey St/Bushwick Av", "direction": "SW", "lat": 40.686787, "lon": -73.91426, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91426, 40.686787 ] } }, -{ "type": "Feature", "properties": { "id": 308017, "name": "Stillwell Av/Neptune Av", "direction": "NW", "lat": 40.578274, "lon": -73.98172, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98172, 40.578274 ] } }, -{ "type": "Feature", "properties": { "id": 308021, "name": "Sterling Pl/Classon Av", "direction": "W", "lat": 40.67402, "lon": -73.96024, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.96024, 40.67402 ] } }, -{ "type": "Feature", "properties": { "id": 308023, "name": "Tompkins Av/Putnam Av", "direction": "S", "lat": 40.68437, "lon": -73.94418, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94418, 40.68437 ] } }, -{ "type": "Feature", "properties": { "id": 308025, "name": "Water St/Main St", "direction": "W", "lat": 40.70332, "lon": -73.991104, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.991104, 40.70332 ] } }, -{ "type": "Feature", "properties": { "id": 308032, "name": "4 Av/90 St", "direction": "S", "lat": 40.619537, "lon": -74.02981, "routes": "S53, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.02981, 40.619537 ] } }, -{ "type": "Feature", "properties": { "id": 308036, "name": "Utica Av/Farragut Rd", "direction": "S", "lat": 40.637188, "lon": -73.928955, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.928955, 40.637188 ] } }, -{ "type": "Feature", "properties": { "id": 308038, "name": "Fort Hamilton Pkwy/Marine Av", "direction": "NE", "lat": 40.613323, "lon": -74.03062, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.03062, 40.613323 ] } }, -{ "type": "Feature", "properties": { "id": 308039, "name": "Fort Hamilton Pkwy/95 St", "direction": "NE", "lat": 40.6151, "lon": -74.02907, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02907, 40.6151 ] } }, -{ "type": "Feature", "properties": { "id": 308040, "name": "92 St/Fort Hamilton Pkwy", "direction": "NW", "lat": 40.617176, "lon": -74.02776, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02776, 40.617176 ] } }, -{ "type": "Feature", "properties": { "id": 308044, "name": "Rockaway Pkwy/Glenwood Rd", "direction": "SE", "lat": 40.645077, "lon": -73.90229, "routes": "B82, B42, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.90229, 40.645077 ] } }, -{ "type": "Feature", "properties": { "id": 308045, "name": "Brighton Beach Av/Coney Island Av", "direction": "E", "lat": 40.577934, "lon": -73.95973, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.95973, 40.577934 ] } }, -{ "type": "Feature", "properties": { "id": 308046, "name": "Gates Av/Broadway", "direction": "W", "lat": 40.68948, "lon": -73.92271, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.92271, 40.68948 ] } }, -{ "type": "Feature", "properties": { "id": 308047, "name": "Flatlands Av/E 77 St", "direction": "NE", "lat": 40.633945, "lon": -73.91551, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.91551, 40.633945 ] } }, -{ "type": "Feature", "properties": { "id": 308048, "name": "Kent Av/Hooper St", "direction": "NW", "lat": 40.70122, "lon": -73.9634, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9634, 40.70122 ] } }, -{ "type": "Feature", "properties": { "id": 308049, "name": "Columbia St/Congress St", "direction": "SW", "lat": 40.68943, "lon": -74.00063, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00063, 40.68943 ] } }, -{ "type": "Feature", "properties": { "id": 308050, "name": "26 Av/Shore Pkwy Service Rd North", "direction": "NE", "lat": 40.589954, "lon": -73.992355, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.992355, 40.589954 ] } }, -{ "type": "Feature", "properties": { "id": 308052, "name": "52 St/3 Av", "direction": "SE", "lat": 40.64623, "lon": -74.0153, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.0153, 40.64623 ] } }, -{ "type": "Feature", "properties": { "id": 308053, "name": "Avenue J/Coney Island Av", "direction": "E", "lat": 40.62483, "lon": -73.964226, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.964226, 40.62483 ] } }, -{ "type": "Feature", "properties": { "id": 308054, "name": "Bergen St/Grand Av", "direction": "W", "lat": 40.67819, "lon": -73.96208, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.96208, 40.67819 ] } }, -{ "type": "Feature", "properties": { "id": 308055, "name": "Mermaid Av/W 15 St", "direction": "W", "lat": 40.576855, "lon": -73.98303, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98303, 40.576855 ] } }, -{ "type": "Feature", "properties": { "id": 308056, "name": "Dean St/Grand Av", "direction": "E", "lat": 40.678806, "lon": -73.96162, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.96162, 40.678806 ] } }, -{ "type": "Feature", "properties": { "id": 308057, "name": "Nostrand Av/Avenue L", "direction": "S", "lat": 40.62167, "lon": -73.94601, "routes": "B44, BM4, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.94601, 40.62167 ] } }, -{ "type": "Feature", "properties": { "id": 308059, "name": "Vanderbilt Av/Plaza St East", "direction": "N", "lat": 40.67518, "lon": -73.96964, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.96964, 40.67518 ] } }, -{ "type": "Feature", "properties": { "id": 308061, "name": "Grand Army Plaza/Flatbush Av", "direction": "S", "lat": 40.674107, "lon": -73.97069, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.97069, 40.674107 ] } }, -{ "type": "Feature", "properties": { "id": 308063, "name": "Fort Hamilton Pkwy/66 St", "direction": "SW", "lat": 40.62994, "lon": -74.01041, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.01041, 40.62994 ] } }, -{ "type": "Feature", "properties": { "id": 308066, "name": "Utica Av/Atlantic Av", "direction": "N", "lat": 40.67773, "lon": -73.930214, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.930214, 40.67773 ] } }, -{ "type": "Feature", "properties": { "id": 308067, "name": "Tompkins Av/Ellery St", "direction": "S", "lat": 40.69874, "lon": -73.947044, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.947044, 40.69874 ] } }, -{ "type": "Feature", "properties": { "id": 308068, "name": "Quentin Rd/Coney Island Av", "direction": "W", "lat": 40.607887, "lon": -73.96175, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.96175, 40.607887 ] } }, -{ "type": "Feature", "properties": { "id": 308069, "name": "Parkville Av/Mcdonald Av", "direction": "SW", "lat": 40.628216, "lon": -73.97715, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -73.97715, 40.628216 ] } }, -{ "type": "Feature", "properties": { "id": 308070, "name": "Flatbush Av/Grand Army Plaza", "direction": "NW", "lat": 40.672577, "lon": -73.96897, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.96897, 40.672577 ] } }, -{ "type": "Feature", "properties": { "id": 308071, "name": "Vanderbilt Av/Plaza St East", "direction": "SW", "lat": 40.675102, "lon": -73.969894, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.969894, 40.675102 ] } }, -{ "type": "Feature", "properties": { "id": 308072, "name": "Surf Av /W 17 St", "direction": "W", "lat": 40.575333, "lon": -73.984344, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.984344, 40.575333 ] } }, -{ "type": "Feature", "properties": { "id": 308073, "name": "Franklin Av/Fulton St", "direction": "S", "lat": 40.680595, "lon": -73.955605, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.955605, 40.680595 ] } }, -{ "type": "Feature", "properties": { "id": 308079, "name": "Bay Pkwy/Cropsey Av", "direction": "SW", "lat": 40.597427, "lon": -73.99855, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99855, 40.597427 ] } }, -{ "type": "Feature", "properties": { "id": 308080, "name": "9 St/2 Av", "direction": "NW", "lat": 40.67278, "lon": -73.99356, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.99356, 40.67278 ] } }, -{ "type": "Feature", "properties": { "id": 308081, "name": "9 St/Smith St", "direction": "SE", "lat": 40.67427, "lon": -73.99697, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.99697, 40.67427 ] } }, -{ "type": "Feature", "properties": { "id": 308083, "name": "Church Av/E 39 St", "direction": "W", "lat": 40.65127, "lon": -73.941345, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.941345, 40.65127 ] } }, -{ "type": "Feature", "properties": { "id": 308084, "name": "4 Av/39 St", "direction": "NE", "lat": 40.652916, "lon": -74.005714, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.005714, 40.652916 ] } }, -{ "type": "Feature", "properties": { "id": 308085, "name": "Tompkins Av/Dekalb Av", "direction": "S", "lat": 40.692112, "lon": -73.94573, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94573, 40.692112 ] } }, -{ "type": "Feature", "properties": { "id": 308086, "name": "Linden Blvd/78 St", "direction": "E", "lat": 40.670097, "lon": -73.856544, "routes": "BM5, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.856544, 40.670097 ] } }, -{ "type": "Feature", "properties": { "id": 308087, "name": "Wakeman Pl/3 Av", "direction": "SE", "lat": 40.638126, "lon": -74.02487, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.02487, 40.638126 ] } }, -{ "type": "Feature", "properties": { "id": 308088, "name": "Shore Rd/Bay Ridge Av", "direction": "S", "lat": 40.63843, "lon": -74.03618, "routes": "X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.03618, 40.63843 ] } }, -{ "type": "Feature", "properties": { "id": 308089, "name": "Shore Rd/72 St", "direction": "SW", "lat": 40.635944, "lon": -74.03739, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.03739, 40.635944 ] } }, -{ "type": "Feature", "properties": { "id": 308090, "name": "Shore Rd/Bay Ridge Pkwy", "direction": "SW", "lat": 40.633545, "lon": -74.037094, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.037094, 40.633545 ] } }, -{ "type": "Feature", "properties": { "id": 308091, "name": "Shore Rd/79 St", "direction": "SW", "lat": 40.631405, "lon": -74.03884, "routes": "X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.03884, 40.631405 ] } }, -{ "type": "Feature", "properties": { "id": 308092, "name": "Shore Rd/83 St", "direction": "SW", "lat": 40.627754, "lon": -74.04019, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.04019, 40.627754 ] } }, -{ "type": "Feature", "properties": { "id": 308096, "name": "Cropsey Av/Bay 25 St", "direction": "SE", "lat": 40.599525, "lon": -74.001945, "routes": "X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.001945, 40.599525 ] } }, -{ "type": "Feature", "properties": { "id": 308097, "name": "Cropsey Av/18 Av", "direction": "SE", "lat": 40.602455, "lon": -74.00725, "routes": "X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.00725, 40.602455 ] } }, -{ "type": "Feature", "properties": { "id": 308099, "name": "8 Av/52 St", "direction": "NE", "lat": 40.6402, "lon": -74.004555, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.004555, 40.6402 ] } }, -{ "type": "Feature", "properties": { "id": 308100, "name": "8 Av/44 St", "direction": "NE", "lat": 40.644672, "lon": -73.99991, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -73.99991, 40.644672 ] } }, -{ "type": "Feature", "properties": { "id": 308101, "name": "8 Av/43 St", "direction": "SW", "lat": 40.644794, "lon": -73.99991, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -73.99991, 40.644794 ] } }, -{ "type": "Feature", "properties": { "id": 308102, "name": "8 Av/55 St", "direction": "SW", "lat": 40.638096, "lon": -74.00689, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.00689, 40.638096 ] } }, -{ "type": "Feature", "properties": { "id": 308103, "name": "Greenpoint Av/Franklin St", "direction": "E", "lat": 40.72984, "lon": -73.9572, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.9572, 40.72984 ] } }, -{ "type": "Feature", "properties": { "id": 308104, "name": "Fort Hamilton Pkwy/64 St", "direction": "NE", "lat": 40.631298, "lon": -74.00808, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00808, 40.631298 ] } }, -{ "type": "Feature", "properties": { "id": 308106, "name": "Rockaway Pkwy/Trucklemans Ln", "direction": "NW", "lat": 40.643303, "lon": -73.90013, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.90013, 40.643303 ] } }, -{ "type": "Feature", "properties": { "id": 308107, "name": "Wakeman Pl/Ridge Blvd", "direction": "SE", "lat": 40.63935, "lon": -74.02687, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.02687, 40.63935 ] } }, -{ "type": "Feature", "properties": { "id": 308108, "name": "Kings Hwy/New York Av", "direction": "SW", "lat": 40.618725, "lon": -73.94231, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.94231, 40.618725 ] } }, -{ "type": "Feature", "properties": { "id": 308109, "name": "Van Brunt St/Hamilton Av", "direction": "NE", "lat": 40.682846, "lon": -74.006386, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.006386, 40.682846 ] } }, -{ "type": "Feature", "properties": { "id": 308112, "name": "Voorhies Av/Knapp St", "direction": "E", "lat": 40.588097, "lon": -73.93194, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.93194, 40.588097 ] } }, -{ "type": "Feature", "properties": { "id": 308114, "name": "Flatlands Av/E 103 St", "direction": "SW", "lat": 40.646732, "lon": -73.896126, "routes": "B82, B60" }, "geometry": { "type": "Point", "coordinates": [ -73.896126, 40.646732 ] } }, -{ "type": "Feature", "properties": { "id": 308116, "name": "Ralph Av/Herkimer St", "direction": "S", "lat": 40.677376, "lon": -73.92185, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.92185, 40.677376 ] } }, -{ "type": "Feature", "properties": { "id": 308118, "name": "9 St/7 Av", "direction": "NW", "lat": 40.66714, "lon": -73.98191, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98191, 40.66714 ] } }, -{ "type": "Feature", "properties": { "id": 308119, "name": "9 St/6 Av", "direction": "NW", "lat": 40.668297, "lon": -73.9843, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.9843, 40.668297 ] } }, -{ "type": "Feature", "properties": { "id": 308120, "name": "Avenue Z/W 3 St", "direction": "E", "lat": 40.58598, "lon": -73.971794, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.971794, 40.58598 ] } }, -{ "type": "Feature", "properties": { "id": 308121, "name": "9 St/3 Av", "direction": "SE", "lat": 40.671173, "lon": -73.990654, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.990654, 40.671173 ] } }, -{ "type": "Feature", "properties": { "id": 308122, "name": "Nostrand Av/Avenue Y", "direction": "N", "lat": 40.592022, "lon": -73.94012, "routes": "B44, B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94012, 40.592022 ] } }, -{ "type": "Feature", "properties": { "id": 308123, "name": "Coney Island Av/Avenue Z", "direction": "N", "lat": 40.587654, "lon": -73.96024, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.96024, 40.587654 ] } }, -{ "type": "Feature", "properties": { "id": 308128, "name": "Neptune Av/Shore Blvd", "direction": "E", "lat": 40.58302, "lon": -73.95443, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.95443, 40.58302 ] } }, -{ "type": "Feature", "properties": { "id": 308129, "name": "Neptune Av/Brighton 10 St", "direction": "E", "lat": 40.58241, "lon": -73.95747, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.95747, 40.58241 ] } }, -{ "type": "Feature", "properties": { "id": 308130, "name": "5 Av/95 St", "direction": "NE", "lat": 40.61594, "lon": -74.03088, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.03088, 40.61594 ] } }, -{ "type": "Feature", "properties": { "id": 308131, "name": "Bergen St/Flatbush Av", "direction": "W", "lat": 40.681015, "lon": -73.97569, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97569, 40.681015 ] } }, -{ "type": "Feature", "properties": { "id": 308136, "name": "Kingston Av/Union St", "direction": "N", "lat": 40.66873, "lon": -73.94219, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.94219, 40.66873 ] } }, -{ "type": "Feature", "properties": { "id": 308152, "name": "Avenue N/Utica Av", "direction": "E", "lat": 40.618908, "lon": -73.92642, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92642, 40.618908 ] } }, -{ "type": "Feature", "properties": { "id": 308153, "name": "Avenue N/E 48 St", "direction": "W", "lat": 40.61887, "lon": -73.92896, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92896, 40.61887 ] } }, -{ "type": "Feature", "properties": { "id": 308154, "name": "Avenue N/E 46 St", "direction": "W", "lat": 40.618748, "lon": -73.93118, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.93118, 40.618748 ] } }, -{ "type": "Feature", "properties": { "id": 308155, "name": "Mcdonald Av/20 St", "direction": "S", "lat": 40.654896, "lon": -73.98186, "routes": "B67, B69" }, "geometry": { "type": "Point", "coordinates": [ -73.98186, 40.654896 ] } }, -{ "type": "Feature", "properties": { "id": 308156, "name": "Smith St/Nelson St", "direction": "NE", "lat": 40.676334, "lon": -73.99694, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.99694, 40.676334 ] } }, -{ "type": "Feature", "properties": { "id": 308157, "name": "Flushing Av/Cypress Av", "direction": "NE", "lat": 40.70961, "lon": -73.92155, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.92155, 40.70961 ] } }, -{ "type": "Feature", "properties": { "id": 308158, "name": "Flushing Av/Onderdonk Av", "direction": "SW", "lat": 40.71126, "lon": -73.920135, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.920135, 40.71126 ] } }, -{ "type": "Feature", "properties": { "id": 308159, "name": "Oriental Blvd/Mackenzie St", "direction": "E", "lat": 40.578037, "lon": -73.93995, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.93995, 40.578037 ] } }, -{ "type": "Feature", "properties": { "id": 308160, "name": "Flatlands Av/Georgia Av", "direction": "SW", "lat": 40.651993, "lon": -73.88837, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.88837, 40.651993 ] } }, -{ "type": "Feature", "properties": { "id": 308161, "name": "Jamaica Av/Cypress Hills St", "direction": "SW", "lat": 40.688393, "lon": -73.876205, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.876205, 40.688393 ] } }, -{ "type": "Feature", "properties": { "id": 308162, "name": "Jamaica Av/Eldert Ln", "direction": "W", "lat": 40.69117, "lon": -73.868484, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.868484, 40.69117 ] } }, -{ "type": "Feature", "properties": { "id": 308176, "name": "92 St/7 Av", "direction": "NW", "lat": 40.6149, "lon": -74.02317, "routes": "B8, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.02317, 40.6149 ] } }, -{ "type": "Feature", "properties": { "id": 308177, "name": "Fort Hamilton Pkwy/90 St", "direction": "NE", "lat": 40.618477, "lon": -74.026054, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.026054, 40.618477 ] } }, -{ "type": "Feature", "properties": { "id": 308178, "name": "Fort Hamilton Pkwy/90 St", "direction": "SW", "lat": 40.61806, "lon": -74.026634, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.026634, 40.61806 ] } }, -{ "type": "Feature", "properties": { "id": 308179, "name": "3 Av/46 St", "direction": "SW", "lat": 40.650093, "lon": -74.012344, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.012344, 40.650093 ] } }, -{ "type": "Feature", "properties": { "id": 308181, "name": "Grand St/Grand St Bridge", "direction": "W", "lat": 40.716045, "lon": -73.92461, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.92461, 40.716045 ] } }, -{ "type": "Feature", "properties": { "id": 308182, "name": "Surf Av/W 19 St", "direction": "E", "lat": 40.575157, "lon": -73.98512, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.98512, 40.575157 ] } }, -{ "type": "Feature", "properties": { "id": 308183, "name": "86 St/W 7 St", "direction": "NW", "lat": 40.59244, "lon": -73.977974, "routes": "B1, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.977974, 40.59244 ] } }, -{ "type": "Feature", "properties": { "id": 308186, "name": "Manhattan Av/India St", "direction": "N", "lat": 40.732635, "lon": -73.9546, "routes": "B62, B43" }, "geometry": { "type": "Point", "coordinates": [ -73.9546, 40.732635 ] } }, -{ "type": "Feature", "properties": { "id": 308187, "name": "Manhattan Av/Clay St", "direction": "N", "lat": 40.736393, "lon": -73.95519, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95519, 40.736393 ] } }, -{ "type": "Feature", "properties": { "id": 308188, "name": "Manhattan Av/India St", "direction": "S", "lat": 40.732403, "lon": -73.95473, "routes": "B43, B98, B94, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95473, 40.732403 ] } }, -{ "type": "Feature", "properties": { "id": 308189, "name": "Manhattan Av/Clay St", "direction": "S", "lat": 40.73624, "lon": -73.95535, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95535, 40.73624 ] } }, -{ "type": "Feature", "properties": { "id": 308194, "name": "39 St/1 Av", "direction": "SE", "lat": 40.656155, "lon": -74.012024, "routes": "B35, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.012024, 40.656155 ] } }, -{ "type": "Feature", "properties": { "id": 308195, "name": "Kings Hwy/W 7 St", "direction": "E", "lat": 40.605133, "lon": -73.980385, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.980385, 40.605133 ] } }, -{ "type": "Feature", "properties": { "id": 308198, "name": "Gerritsen Av/Ford St", "direction": "SE", "lat": 40.605156, "lon": -73.93891, "routes": "B31" }, "geometry": { "type": "Point", "coordinates": [ -73.93891, 40.605156 ] } }, -{ "type": "Feature", "properties": { "id": 308199, "name": "Fort Hamilton Pkwy/81 St", "direction": "E", "lat": 40.62235, "lon": -74.02015, "routes": "B70, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.02015, 40.62235 ] } }, -{ "type": "Feature", "properties": { "id": 308201, "name": "Bay Ridge Av /10 Av", "direction": "SE", "lat": 40.627445, "lon": -74.01021, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.01021, 40.627445 ] } }, -{ "type": "Feature", "properties": { "id": 308203, "name": "Linden Blvd/Drew St", "direction": "W", "lat": 40.66987, "lon": -73.861435, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.861435, 40.66987 ] } }, -{ "type": "Feature", "properties": { "id": 308204, "name": "5 Av/9 St", "direction": "NE", "lat": 40.66943, "lon": -73.98597, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98597, 40.66943 ] } }, -{ "type": "Feature", "properties": { "id": 308205, "name": "Thomas S Boyland St/Macdonough St", "direction": "N", "lat": 40.68452, "lon": -73.914734, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.914734, 40.68452 ] } }, -{ "type": "Feature", "properties": { "id": 308206, "name": "5 Av/7 St", "direction": "NE", "lat": 40.67057, "lon": -73.98502, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98502, 40.67057 ] } }, -{ "type": "Feature", "properties": { "id": 308207, "name": "5 Av/3 St", "direction": "NE", "lat": 40.673008, "lon": -73.98299, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98299, 40.673008 ] } }, -{ "type": "Feature", "properties": { "id": 308208, "name": "5 Av/Garfield Pl", "direction": "NE", "lat": 40.674824, "lon": -73.981476, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.981476, 40.674824 ] } }, -{ "type": "Feature", "properties": { "id": 308209, "name": "5 Av/Union St", "direction": "NE", "lat": 40.67668, "lon": -73.98019, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98019, 40.67668 ] } }, -{ "type": "Feature", "properties": { "id": 308210, "name": "5 Av/Saint Johns Pl", "direction": "NE", "lat": 40.678658, "lon": -73.97885, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.97885, 40.678658 ] } }, -{ "type": "Feature", "properties": { "id": 308211, "name": "5 Av/Prospect Pl", "direction": "NE", "lat": 40.680557, "lon": -73.97757, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.97757, 40.680557 ] } }, -{ "type": "Feature", "properties": { "id": 308212, "name": "5 Av/Warren St", "direction": "SW", "lat": 40.679966, "lon": -73.97814, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.97814, 40.679966 ] } }, -{ "type": "Feature", "properties": { "id": 308213, "name": "5 Av/Douglass St", "direction": "SW", "lat": 40.67805, "lon": -73.97944, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.97944, 40.67805 ] } }, -{ "type": "Feature", "properties": { "id": 308214, "name": "5 Av/Union St", "direction": "SW", "lat": 40.67615, "lon": -73.98072, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98072, 40.67615 ] } }, -{ "type": "Feature", "properties": { "id": 308215, "name": "5 Av/Garfield Pl", "direction": "SW", "lat": 40.67438, "lon": -73.98207, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98207, 40.67438 ] } }, -{ "type": "Feature", "properties": { "id": 308216, "name": "5 Av/3 St", "direction": "SW", "lat": 40.672565, "lon": -73.98358, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98358, 40.672565 ] } }, -{ "type": "Feature", "properties": { "id": 308217, "name": "5 Av/7 St", "direction": "SW", "lat": 40.67017, "lon": -73.98558, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.98558, 40.67017 ] } }, -{ "type": "Feature", "properties": { "id": 308218, "name": "Metropolitan Av/Stewart Av", "direction": "E", "lat": 40.71405, "lon": -73.92765, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.92765, 40.71405 ] } }, -{ "type": "Feature", "properties": { "id": 308219, "name": "Bath Av/15 Av", "direction": "SE", "lat": 40.607826, "lon": -74.012825, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.012825, 40.607826 ] } }, -{ "type": "Feature", "properties": { "id": 308220, "name": "Bath Av/17 Av", "direction": "SE", "lat": 40.60497, "lon": -74.0081, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.0081, 40.60497 ] } }, -{ "type": "Feature", "properties": { "id": 308222, "name": "Bath Av/21 Av", "direction": "SE", "lat": 40.59974, "lon": -73.999214, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.999214, 40.59974 ] } }, -{ "type": "Feature", "properties": { "id": 308223, "name": "Bath Av/24 Av", "direction": "SE", "lat": 40.59542, "lon": -73.99287, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99287, 40.59542 ] } }, -{ "type": "Feature", "properties": { "id": 308224, "name": "Bath Av/23 Av", "direction": "NW", "lat": 40.59736, "lon": -73.99547, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.99547, 40.59736 ] } }, -{ "type": "Feature", "properties": { "id": 308225, "name": "Bath Av/21 Av", "direction": "NW", "lat": 40.599976, "lon": -73.999275, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.999275, 40.599976 ] } }, -{ "type": "Feature", "properties": { "id": 308226, "name": "Bath Av/19 Av", "direction": "NW", "lat": 40.602875, "lon": -74.00408, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00408, 40.602875 ] } }, -{ "type": "Feature", "properties": { "id": 308227, "name": "Bath Av/17 Av", "direction": "NW", "lat": 40.605434, "lon": -74.00859, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00859, 40.605434 ] } }, -{ "type": "Feature", "properties": { "id": 308228, "name": "Bath Av/15 Av", "direction": "NW", "lat": 40.608276, "lon": -74.0133, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.0133, 40.608276 ] } }, -{ "type": "Feature", "properties": { "id": 308229, "name": "De Kalb Av/Broadway", "direction": "SW", "lat": 40.693966, "lon": -73.929695, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.929695, 40.693966 ] } }, -{ "type": "Feature", "properties": { "id": 308230, "name": "E 98 St/Hegeman Av", "direction": "SE", "lat": 40.655643, "lon": -73.91252, "routes": "B15, B35" }, "geometry": { "type": "Point", "coordinates": [ -73.91252, 40.655643 ] } }, -{ "type": "Feature", "properties": { "id": 308240, "name": "4 Av/Senator St", "direction": "NE", "lat": 40.636196, "lon": -74.02276, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.02276, 40.636196 ] } }, -{ "type": "Feature", "properties": { "id": 308242, "name": "4 Av/63 St", "direction": "NE", "lat": 40.639473, "lon": -74.0196, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.0196, 40.639473 ] } }, -{ "type": "Feature", "properties": { "id": 308245, "name": "4 Av/60 St", "direction": "SW", "lat": 40.640854, "lon": -74.018684, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.018684, 40.640854 ] } }, -{ "type": "Feature", "properties": { "id": 308247, "name": "4 Av/65 St", "direction": "SW", "lat": 40.63791, "lon": -74.02167, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.02167, 40.63791 ] } }, -{ "type": "Feature", "properties": { "id": 308248, "name": "4 Av/Senator St", "direction": "S", "lat": 40.636047, "lon": -74.02299, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.02299, 40.636047 ] } }, -{ "type": "Feature", "properties": { "id": 308254, "name": "3 Av/82 St", "direction": "NE", "lat": 40.62627, "lon": -74.02983, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.02983, 40.62627 ] } }, -{ "type": "Feature", "properties": { "id": 308255, "name": "3 Av/72 St", "direction": "NE", "lat": 40.634094, "lon": -74.02664, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.02664, 40.634094 ] } }, -{ "type": "Feature", "properties": { "id": 308257, "name": "3 Av/23 St", "direction": "NE", "lat": 40.66316, "lon": -73.99814, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.99814, 40.66316 ] } }, -{ "type": "Feature", "properties": { "id": 308258, "name": "3 Av/15 St", "direction": "NE", "lat": 40.667736, "lon": -73.99403, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.99403, 40.667736 ] } }, -{ "type": "Feature", "properties": { "id": 308259, "name": "3 Av/Baltic St", "direction": "NE", "lat": 40.681732, "lon": -73.983, "routes": "B103, B37" }, "geometry": { "type": "Point", "coordinates": [ -73.983, 40.681732 ] } }, -{ "type": "Feature", "properties": { "id": 308260, "name": "3 Av/Dean St", "direction": "NE", "lat": 40.683945, "lon": -73.981544, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.981544, 40.683945 ] } }, -{ "type": "Feature", "properties": { "id": 308263, "name": "3 Av/3 St", "direction": "SW", "lat": 40.67522, "lon": -73.98801, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98801, 40.67522 ] } }, -{ "type": "Feature", "properties": { "id": 308266, "name": "3 Av/72 St", "direction": "S", "lat": 40.633682, "lon": -74.026924, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.026924, 40.633682 ] } }, -{ "type": "Feature", "properties": { "id": 308267, "name": "3 Av/80 St", "direction": "S", "lat": 40.62804, "lon": -74.02926, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.02926, 40.62804 ] } }, -{ "type": "Feature", "properties": { "id": 308268, "name": "3 Av/89 St", "direction": "S", "lat": 40.621143, "lon": -74.03209, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03209, 40.621143 ] } }, -{ "type": "Feature", "properties": { "id": 308269, "name": "3 Av/95 St", "direction": "S", "lat": 40.616997, "lon": -74.03377, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.03377, 40.616997 ] } }, -{ "type": "Feature", "properties": { "id": 308270, "name": "Cropsey Av/Opp V A Hospital", "direction": "NW", "lat": 40.608845, "lon": -74.023155, "routes": "B70, B8" }, "geometry": { "type": "Point", "coordinates": [ -74.023155, 40.608845 ] } }, -{ "type": "Feature", "properties": { "id": 308271, "name": "Grand St/Union Av", "direction": "W", "lat": 40.711018, "lon": -73.95098, "routes": "Q54, Q59, Q59, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.95098, 40.711018 ] } }, -{ "type": "Feature", "properties": { "id": 308272, "name": "Grand St/Union Av", "direction": "E", "lat": 40.71094, "lon": -73.95069, "routes": "Q59, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.95069, 40.71094 ] } }, -{ "type": "Feature", "properties": { "id": 308278, "name": "W 17 St/Mermaid Av", "direction": "S", "lat": 40.57652, "lon": -73.98484, "routes": "X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.98484, 40.57652 ] } }, -{ "type": "Feature", "properties": { "id": 308280, "name": "3 Av/52 St", "direction": "SW", "lat": 40.646732, "lon": -74.015854, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.015854, 40.646732 ] } }, -{ "type": "Feature", "properties": { "id": 308281, "name": "Shore Pkwy/Sheepshead Bay Rd", "direction": "W", "lat": 40.58502, "lon": -73.95173, "routes": "B49, B4" }, "geometry": { "type": "Point", "coordinates": [ -73.95173, 40.58502 ] } }, -{ "type": "Feature", "properties": { "id": 308282, "name": "Avenue Z/E 15 St", "direction": "E", "lat": 40.58799, "lon": -73.95369, "routes": "B4, B36, B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95369, 40.58799 ] } }, -{ "type": "Feature", "properties": { "id": 308289, "name": "Bushwick Av/Montrose Av", "direction": "N", "lat": 40.70797, "lon": -73.93981, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.93981, 40.70797 ] } }, -{ "type": "Feature", "properties": { "id": 308292, "name": "Buskwick Av/Grand St", "direction": "SE", "lat": 40.711674, "lon": -73.94063, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.94063, 40.711674 ] } }, -{ "type": "Feature", "properties": { "id": 308294, "name": "Bushwick Av/Montrose Av", "direction": "S", "lat": 40.70739, "lon": -73.93988, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.93988, 40.70739 ] } }, -{ "type": "Feature", "properties": { "id": 308300, "name": "Neptune Av/Stillwell Av", "direction": "E", "lat": 40.57917, "lon": -73.98148, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.98148, 40.57917 ] } }, -{ "type": "Feature", "properties": { "id": 308301, "name": "Neptune Av/W 12 St", "direction": "E", "lat": 40.579403, "lon": -73.97939, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97939, 40.579403 ] } }, -{ "type": "Feature", "properties": { "id": 308302, "name": "Neptune Av/W 8 St", "direction": "E", "lat": 40.579742, "lon": -73.976456, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.976456, 40.579742 ] } }, -{ "type": "Feature", "properties": { "id": 308303, "name": "Neptune Av/W 6 St", "direction": "E", "lat": 40.57982, "lon": -73.97423, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97423, 40.57982 ] } }, -{ "type": "Feature", "properties": { "id": 308304, "name": "West Brighton Av/W 2 St", "direction": "W", "lat": 40.576633, "lon": -73.97046, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97046, 40.576633 ] } }, -{ "type": "Feature", "properties": { "id": 308305, "name": "Neptune Av/W 5 St", "direction": "W", "lat": 40.57989, "lon": -73.97205, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97205, 40.57989 ] } }, -{ "type": "Feature", "properties": { "id": 308306, "name": "Neptune Av/W 6 St", "direction": "W", "lat": 40.580063, "lon": -73.9745, "routes": "B68, B90" }, "geometry": { "type": "Point", "coordinates": [ -73.9745, 40.580063 ] } }, -{ "type": "Feature", "properties": { "id": 308307, "name": "Neptune Av/Shell Rd", "direction": "W", "lat": 40.57982, "lon": -73.976524, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.976524, 40.57982 ] } }, -{ "type": "Feature", "properties": { "id": 308308, "name": "Neptune Av/W 12 St", "direction": "W", "lat": 40.579517, "lon": -73.97939, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97939, 40.579517 ] } }, -{ "type": "Feature", "properties": { "id": 308311, "name": "E 98 St/Sutter Av", "direction": "NW", "lat": 40.665096, "lon": -73.92298, "routes": "B47, B99" }, "geometry": { "type": "Point", "coordinates": [ -73.92298, 40.665096 ] } }, -{ "type": "Feature", "properties": { "id": 308312, "name": "Marcus Garvey Blvd/Broadway", "direction": "S", "lat": 40.699574, "lon": -73.941444, "routes": "B47" }, "geometry": { "type": "Point", "coordinates": [ -73.941444, 40.699574 ] } }, -{ "type": "Feature", "properties": { "id": 308313, "name": "Rockaway Av/Hegeman Av", "direction": "S", "lat": 40.655903, "lon": -73.90732, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.90732, 40.655903 ] } }, -{ "type": "Feature", "properties": { "id": 308314, "name": "Linden Blvd/Thomas Boyland St", "direction": "W", "lat": 40.654434, "lon": -73.90959, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.90959, 40.654434 ] } }, -{ "type": "Feature", "properties": { "id": 308315, "name": "Loring Av/Drew St", "direction": "W", "lat": 40.668064, "lon": -73.86097, "routes": "B14, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.86097, 40.668064 ] } }, -{ "type": "Feature", "properties": { "id": 308318, "name": "Mcdonald Av/Avenue X", "direction": "N", "lat": 40.590454, "lon": -73.97403, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97403, 40.590454 ] } }, -{ "type": "Feature", "properties": { "id": 308322, "name": "Nassau Av/Van Dam St", "direction": "E", "lat": 40.726196, "lon": -73.9374, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.9374, 40.726196 ] } }, -{ "type": "Feature", "properties": { "id": 308323, "name": "Atlantic Av/3 Av", "direction": "W", "lat": 40.68554, "lon": -73.981, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.981, 40.68554 ] } }, -{ "type": "Feature", "properties": { "id": 308324, "name": "5 Av/72 St", "direction": "NE", "lat": 40.632004, "lon": -74.02152, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02152, 40.632004 ] } }, -{ "type": "Feature", "properties": { "id": 308325, "name": "5 Av/63 St", "direction": "NE", "lat": 40.63796, "lon": -74.01765, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01765, 40.63796 ] } }, -{ "type": "Feature", "properties": { "id": 308326, "name": "5 Av/57 St", "direction": "NE", "lat": 40.64136, "lon": -74.01411, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01411, 40.64136 ] } }, -{ "type": "Feature", "properties": { "id": 308327, "name": "5 Av/54 St", "direction": "NE", "lat": 40.643074, "lon": -74.01232, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01232, 40.643074 ] } }, -{ "type": "Feature", "properties": { "id": 308328, "name": "5 Av/47 St", "direction": "NE", "lat": 40.64697, "lon": -74.00826, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00826, 40.64697 ] } }, -{ "type": "Feature", "properties": { "id": 308331, "name": "5 Av/21 St", "direction": "NE", "lat": 40.661533, "lon": -73.9931, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.9931, 40.661533 ] } }, -{ "type": "Feature", "properties": { "id": 308332, "name": "5 Av/Prospect Av", "direction": "NE", "lat": 40.664135, "lon": -73.990456, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.990456, 40.664135 ] } }, -{ "type": "Feature", "properties": { "id": 308333, "name": "5 Av/14 St", "direction": "NE", "lat": 40.66623, "lon": -73.988556, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.988556, 40.66623 ] } }, -{ "type": "Feature", "properties": { "id": 308334, "name": "5 Av/12 St", "direction": "SW", "lat": 40.667145, "lon": -73.988106, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.988106, 40.667145 ] } }, -{ "type": "Feature", "properties": { "id": 308335, "name": "5 Av/21 St", "direction": "SW", "lat": 40.661137, "lon": -73.99376, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -73.99376, 40.661137 ] } }, -{ "type": "Feature", "properties": { "id": 308336, "name": "5 Av/33 St", "direction": "SW", "lat": 40.654415, "lon": -74.00073, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00073, 40.654415 ] } }, -{ "type": "Feature", "properties": { "id": 308337, "name": "5 Av/45 St", "direction": "SW", "lat": 40.64769, "lon": -74.00774, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00774, 40.64769 ] } }, -{ "type": "Feature", "properties": { "id": 308338, "name": "5 Av/60 St", "direction": "SW", "lat": 40.63927, "lon": -74.01649, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01649, 40.63927 ] } }, -{ "type": "Feature", "properties": { "id": 308339, "name": "5 Av/63 St", "direction": "SW", "lat": 40.637577, "lon": -74.01824, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.01824, 40.637577 ] } }, -{ "type": "Feature", "properties": { "id": 308340, "name": "5 Av/72 St", "direction": "SW", "lat": 40.631416, "lon": -74.021935, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.021935, 40.631416 ] } }, -{ "type": "Feature", "properties": { "id": 308342, "name": "53 St/1 Av", "direction": "NW", "lat": 40.64869, "lon": -74.02076, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.02076, 40.64869 ] } }, -{ "type": "Feature", "properties": { "id": 308343, "name": "Flushing Av/Marcy Av", "direction": "E", "lat": 40.699768, "lon": -73.94962, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.94962, 40.699768 ] } }, -{ "type": "Feature", "properties": { "id": 308344, "name": "Avenue L/Remsen Av", "direction": "SW", "lat": 40.635105, "lon": -73.90095, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90095, 40.635105 ] } }, -{ "type": "Feature", "properties": { "id": 308348, "name": "Flatbush Av/Church Av", "direction": "N", "lat": 40.650948, "lon": -73.95877, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95877, 40.650948 ] } }, -{ "type": "Feature", "properties": { "id": 308349, "name": "Ocean Av/Parkside Av", "direction": "N", "lat": 40.65514, "lon": -73.96184, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -73.96184, 40.65514 ] } }, -{ "type": "Feature", "properties": { "id": 308351, "name": "Oriental Blvd/Hastings St", "direction": "E", "lat": 40.577747, "lon": -73.944, "routes": "B49, B1" }, "geometry": { "type": "Point", "coordinates": [ -73.944, 40.577747 ] } }, -{ "type": "Feature", "properties": { "id": 308354, "name": "Nostrand Av/Park Av", "direction": "S", "lat": 40.69688, "lon": -73.95294, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95294, 40.69688 ] } }, -{ "type": "Feature", "properties": { "id": 308355, "name": "Cropsey Av/Brooklyn Campus", "direction": "E", "lat": 40.609104, "lon": -74.02382, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.02382, 40.609104 ] } }, -{ "type": "Feature", "properties": { "id": 308356, "name": "V A Hospital/Bay 3", "direction": "SE", "lat": 40.607533, "lon": -74.023155, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.023155, 40.607533 ] } }, -{ "type": "Feature", "properties": { "id": 308357, "name": "Poly Pl/7 Av", "direction": "SE", "lat": 40.609306, "lon": -74.02414, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02414, 40.609306 ] } }, -{ "type": "Feature", "properties": { "id": 308358, "name": "V A Hospital/Bay 1", "direction": "SE", "lat": 40.608124, "lon": -74.02299, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02299, 40.608124 ] } }, -{ "type": "Feature", "properties": { "id": 308359, "name": "V A Hospital/Bay 2", "direction": "SE", "lat": 40.608334, "lon": -74.02335, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.02335, 40.608334 ] } }, -{ "type": "Feature", "properties": { "id": 308360, "name": "Nostrand Av/Foster Av", "direction": "S", "lat": 40.63823, "lon": -73.94831, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.94831, 40.63823 ] } }, -{ "type": "Feature", "properties": { "id": 308361, "name": "Nostrand Av/Avenue V", "direction": "S", "lat": 40.59794, "lon": -73.94152, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94152, 40.59794 ] } }, -{ "type": "Feature", "properties": { "id": 308363, "name": "Flatlands Av/E 78 St", "direction": "SW", "lat": 40.63419, "lon": -73.91543, "routes": "B6, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.91543, 40.63419 ] } }, -{ "type": "Feature", "properties": { "id": 308364, "name": "Greenpoint Av/Franklin St", "direction": "W", "lat": 40.729908, "lon": -73.95803, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95803, 40.729908 ] } }, -{ "type": "Feature", "properties": { "id": 308365, "name": "Bay Pkwy/83 St", "direction": "NE", "lat": 40.603844, "lon": -73.99169, "routes": "B82, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99169, 40.603844 ] } }, -{ "type": "Feature", "properties": { "id": 308366, "name": "Fort Hamilton Pkwy/64 St", "direction": "SW", "lat": 40.631107, "lon": -74.00862, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.00862, 40.631107 ] } }, -{ "type": "Feature", "properties": { "id": 308367, "name": "60 St/9 Av", "direction": "SE", "lat": 40.633938, "lon": -74.00712, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00712, 40.633938 ] } }, -{ "type": "Feature", "properties": { "id": 308368, "name": "60 St/9 Av", "direction": "NW", "lat": 40.634388, "lon": -74.00759, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.00759, 40.634388 ] } }, -{ "type": "Feature", "properties": { "id": 308369, "name": "Flatbush Av/Church Av", "direction": "S", "lat": 40.649696, "lon": -73.95864, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.95864, 40.649696 ] } }, -{ "type": "Feature", "properties": { "id": 308370, "name": "Euclid Av/Linden Blvd", "direction": "N", "lat": 40.66859, "lon": -73.870155, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.870155, 40.66859 ] } }, -{ "type": "Feature", "properties": { "id": 308371, "name": "Euclid Av/Blake Av", "direction": "N", "lat": 40.671673, "lon": -73.87092, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87092, 40.671673 ] } }, -{ "type": "Feature", "properties": { "id": 308377, "name": "Crescent St/Atlantic Av", "direction": "N", "lat": 40.682083, "lon": -73.871635, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.871635, 40.682083 ] } }, -{ "type": "Feature", "properties": { "id": 308380, "name": "Seaview Av /Erskine St", "direction": "SW", "lat": 40.653145, "lon": -73.86663, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86663, 40.653145 ] } }, -{ "type": "Feature", "properties": { "id": 308396, "name": "Kent Av/S 6 St", "direction": "NE", "lat": 40.71216, "lon": -73.96788, "routes": "Q59, B32" }, "geometry": { "type": "Point", "coordinates": [ -73.96788, 40.71216 ] } }, -{ "type": "Feature", "properties": { "id": 308397, "name": "Kent Av/S 3 St", "direction": "NE", "lat": 40.71419, "lon": -73.966934, "routes": "B32, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.966934, 40.71419 ] } }, -{ "type": "Feature", "properties": { "id": 308398, "name": "Kent Av/S 1 St", "direction": "NE", "lat": 40.715794, "lon": -73.96622, "routes": "Q59, B32" }, "geometry": { "type": "Point", "coordinates": [ -73.96622, 40.715794 ] } }, -{ "type": "Feature", "properties": { "id": 308399, "name": "Grand St/Wythe Av", "direction": "E", "lat": 40.715736, "lon": -73.96469, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.96469, 40.715736 ] } }, -{ "type": "Feature", "properties": { "id": 308410, "name": "Cropsey Av/Hart Pl", "direction": "N", "lat": 40.58137, "lon": -73.98566, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98566, 40.58137 ] } }, -{ "type": "Feature", "properties": { "id": 308411, "name": "Cropsey Av/Canal Av", "direction": "N", "lat": 40.58336, "lon": -73.98627, "routes": "B82, X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.98627, 40.58336 ] } }, -{ "type": "Feature", "properties": { "id": 308412, "name": "Cropsey Av/Bay 52 St", "direction": "S", "lat": 40.58335, "lon": -73.98661, "routes": "X28, B82, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.98661, 40.58335 ] } }, -{ "type": "Feature", "properties": { "id": 308413, "name": "Cropsey Av/Hart Pl", "direction": "S", "lat": 40.58067, "lon": -73.9857, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.9857, 40.58067 ] } }, -{ "type": "Feature", "properties": { "id": 308417, "name": "Neptune Av/W 37 St", "direction": "E", "lat": 40.57686, "lon": -74.00268, "routes": "X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.00268, 40.57686 ] } }, -{ "type": "Feature", "properties": { "id": 308418, "name": "5 Av/89 St", "direction": "NE", "lat": 40.619972, "lon": -74.02743, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02743, 40.619972 ] } }, -{ "type": "Feature", "properties": { "id": 308419, "name": "5 Av/83 St", "direction": "NE", "lat": 40.623898, "lon": -74.02483, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02483, 40.623898 ] } }, -{ "type": "Feature", "properties": { "id": 308420, "name": "5 Av/77 St", "direction": "NE", "lat": 40.628284, "lon": -74.02305, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02305, 40.628284 ] } }, -{ "type": "Feature", "properties": { "id": 308421, "name": "5 Av/78 St", "direction": "SW", "lat": 40.62698, "lon": -74.02376, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02376, 40.62698 ] } }, -{ "type": "Feature", "properties": { "id": 308422, "name": "5 Av/84 St", "direction": "SW", "lat": 40.622585, "lon": -74.02554, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.02554, 40.622585 ] } }, -{ "type": "Feature", "properties": { "id": 308423, "name": "5 Av/89 St", "direction": "SW", "lat": 40.61928, "lon": -74.028206, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.028206, 40.61928 ] } }, -{ "type": "Feature", "properties": { "id": 308424, "name": "Wilson Av/Gates Av", "direction": "SE", "lat": 40.695076, "lon": -73.915924, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.915924, 40.695076 ] } }, -{ "type": "Feature", "properties": { "id": 308425, "name": "Saint Johns Pl/Brooklyn Av", "direction": "E", "lat": 40.671238, "lon": -73.94437, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.94437, 40.671238 ] } }, -{ "type": "Feature", "properties": { "id": 308426, "name": "Myrtle Av/Gates Av", "direction": "W", "lat": 40.699562, "lon": -73.91168, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.91168, 40.699562 ] } }, -{ "type": "Feature", "properties": { "id": 308435, "name": "Nostrand Av/Fulton St", "direction": "S", "lat": 40.67997, "lon": -73.94964, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.94964, 40.67997 ] } }, -{ "type": "Feature", "properties": { "id": 308437, "name": "3 Av/8 St", "direction": "NE", "lat": 40.67196, "lon": -73.99049, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.99049, 40.67196 ] } }, -{ "type": "Feature", "properties": { "id": 308438, "name": "Bath Av/Bay 20th St", "direction": "SE", "lat": 40.603065, "lon": -74.00484, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.00484, 40.603065 ] } }, -{ "type": "Feature", "properties": { "id": 308439, "name": "Jamaica Av/Herkimer St", "direction": "NW", "lat": 40.677433, "lon": -73.9008, "routes": "Q56, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.9008, 40.677433 ] } }, -{ "type": "Feature", "properties": { "id": 308442, "name": "Myrtle Av/Spencer St", "direction": "E", "lat": 40.694572, "lon": -73.95541, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.95541, 40.694572 ] } }, -{ "type": "Feature", "properties": { "id": 308443, "name": "Nostrand Av/Montgomery St", "direction": "S", "lat": 40.66546, "lon": -73.95097, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.95097, 40.66546 ] } }, -{ "type": "Feature", "properties": { "id": 308444, "name": "Roebling St/Grand St", "direction": "NE", "lat": 40.713356, "lon": -73.95822, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.95822, 40.713356 ] } }, -{ "type": "Feature", "properties": { "id": 308448, "name": "Metropolitan Av/N 5 St", "direction": "W", "lat": 40.714127, "lon": -73.954956, "routes": "Q59, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.954956, 40.714127 ] } }, -{ "type": "Feature", "properties": { "id": 308449, "name": "Crescent St/Mckinley Av", "direction": "N", "lat": 40.67976, "lon": -73.871, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.871, 40.67976 ] } }, -{ "type": "Feature", "properties": { "id": 308450, "name": "Crescent St/Atlantic Av", "direction": "S", "lat": 40.681435, "lon": -73.87155, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87155, 40.681435 ] } }, -{ "type": "Feature", "properties": { "id": 308455, "name": "Wythe Av/S 3 St", "direction": "SW", "lat": 40.71363, "lon": -73.96551, "routes": "B32, Q59, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.96551, 40.71363 ] } }, -{ "type": "Feature", "properties": { "id": 308456, "name": "Wythe Av/S 5 St", "direction": "SW", "lat": 40.712032, "lon": -73.9662, "routes": "B32, Q59, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.9662, 40.712032 ] } }, -{ "type": "Feature", "properties": { "id": 308457, "name": "Wilson Av/Woodbine St", "direction": "NW", "lat": 40.69463, "lon": -73.91492, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91492, 40.69463 ] } }, -{ "type": "Feature", "properties": { "id": 308458, "name": "Metropolitan Av/Onderdonk Av", "direction": "W", "lat": 40.714012, "lon": -73.92406, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.92406, 40.714012 ] } }, -{ "type": "Feature", "properties": { "id": 308459, "name": "E 36 St/Avenue S", "direction": "NW", "lat": 40.609924, "lon": -73.93147, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.93147, 40.609924 ] } }, -{ "type": "Feature", "properties": { "id": 308472, "name": "Jay St/Myrtle Plaza", "direction": "N", "lat": 40.694504, "lon": -73.98712, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.98712, 40.694504 ] } }, -{ "type": "Feature", "properties": { "id": 308477, "name": "Stillwell Terminal/Bus Loop", "direction": "W", "lat": 40.577007, "lon": -73.98136, "routes": "B74" }, "geometry": { "type": "Point", "coordinates": [ -73.98136, 40.577007 ] } }, -{ "type": "Feature", "properties": { "id": 308478, "name": "Stillwell Terminal/Bus Loop", "direction": "NW", "lat": 40.57704, "lon": -73.98116, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.98116, 40.57704 ] } }, -{ "type": "Feature", "properties": { "id": 308479, "name": "Stillwell Terminal/Bus Loop", "direction": "W", "lat": 40.577015, "lon": -73.98131, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.98131, 40.577015 ] } }, -{ "type": "Feature", "properties": { "id": 308483, "name": "Church Av/Utica Av", "direction": "W", "lat": 40.6518, "lon": -73.93056, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.93056, 40.6518 ] } }, -{ "type": "Feature", "properties": { "id": 308488, "name": "Palmetto St/Wyckoff Av", "direction": "NE", "lat": 40.699352, "lon": -73.91119, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.91119, 40.699352 ] } }, -{ "type": "Feature", "properties": { "id": 308503, "name": "Grand St/Bushwick Av", "direction": "E", "lat": 40.712063, "lon": -73.94002, "routes": "Q54, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.94002, 40.712063 ] } }, -{ "type": "Feature", "properties": { "id": 308521, "name": "Kings Hwy/E 92 St", "direction": "N", "lat": 40.6564, "lon": -73.92115, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92115, 40.6564 ] } }, -{ "type": "Feature", "properties": { "id": 308522, "name": "Kings Hwy/E 94 St", "direction": "N", "lat": 40.657707, "lon": -73.920715, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.920715, 40.657707 ] } }, -{ "type": "Feature", "properties": { "id": 308523, "name": "Flushing Av/Johnson Av", "direction": "SW", "lat": 40.709076, "lon": -73.92228, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.92228, 40.709076 ] } }, -{ "type": "Feature", "properties": { "id": 308527, "name": "Wyckoff Av/Starr St", "direction": "SE", "lat": 40.706017, "lon": -73.92207, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.92207, 40.706017 ] } }, -{ "type": "Feature", "properties": { "id": 308528, "name": "Erskine St /Gateway Pl", "direction": "NW", "lat": 40.653683, "lon": -73.8671, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.8671, 40.653683 ] } }, -{ "type": "Feature", "properties": { "id": 308533, "name": "4 Av/87 St", "direction": "S", "lat": 40.621918, "lon": -74.02879, "routes": "S93" }, "geometry": { "type": "Point", "coordinates": [ -74.02879, 40.621918 ] } }, -{ "type": "Feature", "properties": { "id": 308535, "name": "Myrtle Av/Prince St", "direction": "W", "lat": 40.693703, "lon": -73.982704, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.982704, 40.693703 ] } }, -{ "type": "Feature", "properties": { "id": 308537, "name": "18 Av/82 St", "direction": "SW", "lat": 40.609287, "lon": -74.00023, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.00023, 40.609287 ] } }, -{ "type": "Feature", "properties": { "id": 308542, "name": "Coney Island Av/Brighton Beach Av", "direction": "N", "lat": 40.5781, "lon": -73.95958, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.95958, 40.5781 ] } }, -{ "type": "Feature", "properties": { "id": 308543, "name": "Rockaway Pkwy/Skidmore Av", "direction": "NW", "lat": 40.632942, "lon": -73.88848, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.88848, 40.632942 ] } }, -{ "type": "Feature", "properties": { "id": 308544, "name": "Dean St/Washington Av", "direction": "E", "lat": 40.679226, "lon": -73.96361, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.96361, 40.679226 ] } }, -{ "type": "Feature", "properties": { "id": 308545, "name": "Avenue U/E 16 St", "direction": "E", "lat": 40.598843, "lon": -73.95526, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.95526, 40.598843 ] } }, -{ "type": "Feature", "properties": { "id": 308546, "name": "Remsen Av/Lenox Rd", "direction": "SE", "lat": 40.655907, "lon": -73.923546, "routes": "B47, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.923546, 40.655907 ] } }, -{ "type": "Feature", "properties": { "id": 308547, "name": "Saint Johns Pl/Franklin Av", "direction": "E", "lat": 40.672295, "lon": -73.95715, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.95715, 40.672295 ] } }, -{ "type": "Feature", "properties": { "id": 308557, "name": "Flatbush Av/Kings Hwy", "direction": "SE", "lat": 40.622177, "lon": -73.93652, "routes": "B41, Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.93652, 40.622177 ] } }, -{ "type": "Feature", "properties": { "id": 308561, "name": "Beard St/Otsego St", "direction": "SE", "lat": 40.67227, "lon": -74.011215, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.011215, 40.67227 ] } }, -{ "type": "Feature", "properties": { "id": 308562, "name": "Columbia St/Kane St", "direction": "NE", "lat": 40.68786, "lon": -74.00125, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00125, 40.68786 ] } }, -{ "type": "Feature", "properties": { "id": 308563, "name": "Columbia St/Warren St", "direction": "NE", "lat": 40.68891, "lon": -74.00075, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00075, 40.68891 ] } }, -{ "type": "Feature", "properties": { "id": 308564, "name": "Columbia St/Baltic St", "direction": "SW", "lat": 40.688293, "lon": -74.00119, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00119, 40.688293 ] } }, -{ "type": "Feature", "properties": { "id": 308565, "name": "Rogers Av/Albermarle Rd", "direction": "N", "lat": 40.648136, "lon": -73.9521, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.9521, 40.648136 ] } }, -{ "type": "Feature", "properties": { "id": 308566, "name": "Avenue U/E 15 St", "direction": "W", "lat": 40.598804, "lon": -73.95722, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.95722, 40.598804 ] } }, -{ "type": "Feature", "properties": { "id": 308568, "name": "Utica Av/Dean St", "direction": "S", "lat": 40.67601, "lon": -73.93058, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93058, 40.67601 ] } }, -{ "type": "Feature", "properties": { "id": 308569, "name": "New Lots Av/Williams Av", "direction": "SW", "lat": 40.66029, "lon": -73.89665, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.89665, 40.66029 ] } }, -{ "type": "Feature", "properties": { "id": 308570, "name": "4 Av/Dean St", "direction": "SW", "lat": 40.683266, "lon": -73.97928, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.97928, 40.683266 ] } }, -{ "type": "Feature", "properties": { "id": 308571, "name": "Bergen St/4 Av", "direction": "W", "lat": 40.682762, "lon": -73.98013, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.98013, 40.682762 ] } }, -{ "type": "Feature", "properties": { "id": 308572, "name": "4 Av/63 St", "direction": "SW", "lat": 40.639095, "lon": -74.02048, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.02048, 40.639095 ] } }, -{ "type": "Feature", "properties": { "id": 308574, "name": "Seaview Av/E 100 St", "direction": "SW", "lat": 40.635323, "lon": -73.88764, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.88764, 40.635323 ] } }, -{ "type": "Feature", "properties": { "id": 308576, "name": "Avenue J/E 15 St", "direction": "W", "lat": 40.62525, "lon": -73.96129, "routes": "B11, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.96129, 40.62525 ] } }, -{ "type": "Feature", "properties": { "id": 308577, "name": "Broadway/Wythe Av", "direction": "W", "lat": 40.710674, "lon": -73.96693, "routes": "B32, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.96693, 40.710674 ] } }, -{ "type": "Feature", "properties": { "id": 308582, "name": "Woodpoint Rd/Conselyea St", "direction": "S", "lat": 40.715115, "lon": -73.94225, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.94225, 40.715115 ] } }, -{ "type": "Feature", "properties": { "id": 308592, "name": "West 20 St/Mermaid Av", "direction": "N", "lat": 40.57657, "lon": -73.986855, "routes": "X38, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.986855, 40.57657 ] } }, -{ "type": "Feature", "properties": { "id": 308595, "name": "Cropsey Av/Bay 31 St", "direction": "NW", "lat": 40.59703, "lon": -73.9983, "routes": "X28, B6, B82, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.9983, 40.59703 ] } }, -{ "type": "Feature", "properties": { "id": 308596, "name": "Gates Av/Wyckoff Av", "direction": "NE", "lat": 40.700073, "lon": -73.911575, "routes": "M90, B54" }, "geometry": { "type": "Point", "coordinates": [ -73.911575, 40.700073 ] } }, -{ "type": "Feature", "properties": { "id": 308599, "name": "Division Av/Lee Av", "direction": "E", "lat": 40.707504, "lon": -73.961754, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.961754, 40.707504 ] } }, -{ "type": "Feature", "properties": { "id": 308600, "name": "Havemeyer St/Division Av", "direction": "N", "lat": 40.70762, "lon": -73.959854, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.959854, 40.70762 ] } }, -{ "type": "Feature", "properties": { "id": 308601, "name": "Roebling St/S 8 St", "direction": "S", "lat": 40.708984, "lon": -73.960945, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.960945, 40.708984 ] } }, -{ "type": "Feature", "properties": { "id": 308602, "name": "Division Av/Driggs Av", "direction": "W", "lat": 40.707706, "lon": -73.96221, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96221, 40.707706 ] } }, -{ "type": "Feature", "properties": { "id": 308603, "name": "Division Av/Berry St", "direction": "W", "lat": 40.707245, "lon": -73.96621, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.96621, 40.707245 ] } }, -{ "type": "Feature", "properties": { "id": 308620, "name": "Van Brunt St/King St", "direction": "SW", "lat": 40.67835, "lon": -74.01184, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01184, 40.67835 ] } }, -{ "type": "Feature", "properties": { "id": 308621, "name": "Bay Pkwy/West 8 St", "direction": "NE", "lat": 40.61289, "lon": -73.98233, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.98233, 40.61289 ] } }, -{ "type": "Feature", "properties": { "id": 308622, "name": "Wilson Av/Bleecker St", "direction": "SE", "lat": 40.697067, "lon": -73.91949, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91949, 40.697067 ] } }, -{ "type": "Feature", "properties": { "id": 308623, "name": "Bedford Av/N 12 St", "direction": "NE", "lat": 40.720905, "lon": -73.95433, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95433, 40.720905 ] } }, -{ "type": "Feature", "properties": { "id": 308624, "name": "Myrtle Av/Classon Av", "direction": "W", "lat": 40.69399, "lon": -73.96156, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.96156, 40.69399 ] } }, -{ "type": "Feature", "properties": { "id": 308626, "name": "Front St/York St", "direction": "E", "lat": 40.702576, "lon": -73.99195, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99195, 40.702576 ] } }, -{ "type": "Feature", "properties": { "id": 308638, "name": "Myrtle Av/Fleet Pl", "direction": "E", "lat": 40.6935, "lon": -73.9815, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.9815, 40.6935 ] } }, -{ "type": "Feature", "properties": { "id": 308640, "name": "Shore Rd/4 Av", "direction": "NW", "lat": 40.611843, "lon": -74.0352, "routes": "X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -74.0352, 40.611843 ] } }, -{ "type": "Feature", "properties": { "id": 308641, "name": "Flatbush Av/Pacific St", "direction": "NW", "lat": 40.68317, "lon": -73.976715, "routes": "B41, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.976715, 40.68317 ] } }, -{ "type": "Feature", "properties": { "id": 308650, "name": "4 Av/65 St", "direction": "NE", "lat": 40.638046, "lon": -74.02122, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.02122, 40.638046 ] } }, -{ "type": "Feature", "properties": { "id": 308651, "name": "Harway Av/Bay 50 St", "direction": "NW", "lat": 40.587845, "lon": -73.98433, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98433, 40.587845 ] } }, -{ "type": "Feature", "properties": { "id": 308652, "name": "Gravesend Neck Rd/E 29 St", "direction": "SW", "lat": 40.599884, "lon": -73.94264, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94264, 40.599884 ] } }, -{ "type": "Feature", "properties": { "id": 308653, "name": "Flatlands Av/Fountain Av", "direction": "W", "lat": 40.660507, "lon": -73.86772, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.86772, 40.660507 ] } }, -{ "type": "Feature", "properties": { "id": 308658, "name": "Flatlands Av/Jerome St", "direction": "NE", "lat": 40.65628, "lon": -73.87771, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87771, 40.65628 ] } }, -{ "type": "Feature", "properties": { "id": 308659, "name": "Flatlands Av/Elton St", "direction": "NE", "lat": 40.65762, "lon": -73.87457, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87457, 40.65762 ] } }, -{ "type": "Feature", "properties": { "id": 308660, "name": "Flatlands Av/Essex St", "direction": "NE", "lat": 40.658306, "lon": -73.87301, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87301, 40.658306 ] } }, -{ "type": "Feature", "properties": { "id": 308664, "name": "Vandalia Av/Erskine St", "direction": "NE", "lat": 40.65786, "lon": -73.868065, "routes": "B13, B84, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.868065, 40.65786 ] } }, -{ "type": "Feature", "properties": { "id": 308725, "name": "Fulton St/Ashland Pl", "direction": "E", "lat": 40.68786, "lon": -73.97846, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.97846, 40.68786 ] } }, -{ "type": "Feature", "properties": { "id": 308734, "name": "4 Av/Warren St", "direction": "SW", "lat": 40.681095, "lon": -73.98083, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.98083, 40.681095 ] } }, -{ "type": "Feature", "properties": { "id": 308735, "name": "4 Av/4 St", "direction": "SW", "lat": 40.67331, "lon": -73.986534, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.986534, 40.67331 ] } }, -{ "type": "Feature", "properties": { "id": 308736, "name": "4 Av/10 St", "direction": "SW", "lat": 40.669918, "lon": -73.98929, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.98929, 40.669918 ] } }, -{ "type": "Feature", "properties": { "id": 308746, "name": "3 Av/10 St", "direction": "SW", "lat": 40.67095, "lon": -73.99149, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.99149, 40.67095 ] } }, -{ "type": "Feature", "properties": { "id": 308747, "name": "3 Av/21 St", "direction": "SW", "lat": 40.66413, "lon": -73.997765, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.997765, 40.66413 ] } }, -{ "type": "Feature", "properties": { "id": 308749, "name": "3 Av/61 St", "direction": "SW", "lat": 40.641376, "lon": -74.021484, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.021484, 40.641376 ] } }, -{ "type": "Feature", "properties": { "id": 308753, "name": "4 Av/Pacific St", "direction": "SW", "lat": 40.68363, "lon": -73.9791, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.9791, 40.68363 ] } }, -{ "type": "Feature", "properties": { "id": 308760, "name": "Gateway Center Terminal/Gateway Dr", "direction": "N", "lat": 40.652794, "lon": -73.87623, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87623, 40.652794 ] } }, -{ "type": "Feature", "properties": { "id": 308769, "name": "Pennsylvania Av/Schroeders Av", "direction": "SE", "lat": 40.64764, "lon": -73.881775, "routes": "BM2, B82+, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.881775, 40.64764 ] } }, -{ "type": "Feature", "properties": { "id": 308777, "name": "Utica Av/Tilden Av", "direction": "S", "lat": 40.64825, "lon": -73.93009, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93009, 40.64825 ] } }, -{ "type": "Feature", "properties": { "id": 308783, "name": "Pennsylvania Av/Liberty Av", "direction": "N", "lat": 40.674698, "lon": -73.89655, "routes": "B20, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.89655, 40.674698 ] } }, -{ "type": "Feature", "properties": { "id": 308791, "name": "Cadman Plaza West/Remsen St", "direction": "NE", "lat": 40.693226, "lon": -73.9906, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.9906, 40.693226 ] } }, -{ "type": "Feature", "properties": { "id": 308800, "name": "Utica Av/Church Av", "direction": "S", "lat": 40.650967, "lon": -73.93041, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93041, 40.650967 ] } }, -{ "type": "Feature", "properties": { "id": 308804, "name": "Utica Av/Church Av", "direction": "N", "lat": 40.652508, "lon": -73.93041, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.93041, 40.652508 ] } }, -{ "type": "Feature", "properties": { "id": 308829, "name": "Sands St/Navy St", "direction": "W", "lat": 40.69973, "lon": -73.98093, "routes": "B67, B69, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.98093, 40.69973 ] } }, -{ "type": "Feature", "properties": { "id": 308832, "name": "Myrtle Av/Grand Av", "direction": "E", "lat": 40.693615, "lon": -73.96394, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.96394, 40.693615 ] } }, -{ "type": "Feature", "properties": { "id": 308835, "name": "Saint Johns Pl/Ralph Av", "direction": "W", "lat": 40.67025, "lon": -73.92385, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.92385, 40.67025 ] } }, -{ "type": "Feature", "properties": { "id": 308841, "name": "Driggs Av/N 6 St", "direction": "SW", "lat": 40.716515, "lon": -73.95702, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95702, 40.716515 ] } }, -{ "type": "Feature", "properties": { "id": 308845, "name": "Livingston St/Smith St", "direction": "E", "lat": 40.69022, "lon": -73.987434, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.987434, 40.69022 ] } }, -{ "type": "Feature", "properties": { "id": 308847, "name": "York St/Jay St", "direction": "E", "lat": 40.7014, "lon": -73.9846, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.9846, 40.7014 ] } }, -{ "type": "Feature", "properties": { "id": 308850, "name": "Kings Hwy/Nostrand Av", "direction": "NE", "lat": 40.61605, "lon": -73.94474, "routes": "B7, B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.94474, 40.61605 ] } }, -{ "type": "Feature", "properties": { "id": 308855, "name": "Kings Hwy/Ryder St", "direction": "W", "lat": 40.622124, "lon": -73.937454, "routes": "B82+, B82, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.937454, 40.622124 ] } }, -{ "type": "Feature", "properties": { "id": 308857, "name": "Nostrand Av/Avenue R", "direction": "N", "lat": 40.60725, "lon": -73.94314, "routes": "B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.94314, 40.60725 ] } }, -{ "type": "Feature", "properties": { "id": 308864, "name": "Pennsylvania Av/Vandalia Av", "direction": "NW", "lat": 40.65056, "lon": -73.88453, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.88453, 40.65056 ] } }, -{ "type": "Feature", "properties": { "id": 308865, "name": "Pennsylvania Av/Vandalia Av", "direction": "NW", "lat": 40.650684, "lon": -73.88462, "routes": "B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.88462, 40.650684 ] } }, -{ "type": "Feature", "properties": { "id": 308866, "name": "Glenwood Rd/E 102 St", "direction": "SW", "lat": 40.647472, "lon": -73.8988, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.8988, 40.647472 ] } }, -{ "type": "Feature", "properties": { "id": 308868, "name": "Kings Hwy/W 8 St", "direction": "W", "lat": 40.605328, "lon": -73.98097, "routes": "B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.98097, 40.605328 ] } }, -{ "type": "Feature", "properties": { "id": 308871, "name": "Kings Hwy/Flatbush Av", "direction": "E", "lat": 40.622326, "lon": -73.93667, "routes": "B7, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.93667, 40.622326 ] } }, -{ "type": "Feature", "properties": { "id": 308876, "name": "Prospect St/Jay St", "direction": "E", "lat": 40.700596, "lon": -73.98639, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98639, 40.700596 ] } }, -{ "type": "Feature", "properties": { "id": 308878, "name": "5 Av/37 St", "direction": "SW", "lat": 40.652267, "lon": -74.00292, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00292, 40.652267 ] } }, -{ "type": "Feature", "properties": { "id": 308886, "name": "Van Siclen Av/Linden Bl", "direction": "SE", "lat": 40.660297, "lon": -73.88561, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.88561, 40.660297 ] } }, -{ "type": "Feature", "properties": { "id": 308903, "name": "Rockaway Pkwy/Subway Station", "direction": "SW", "lat": 40.64568, "lon": -73.90211, "routes": "B82, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.90211, 40.64568 ] } }, -{ "type": "Feature", "properties": { "id": 308929, "name": "Union Av/Metropolitan Av", "direction": "N", "lat": 40.714214, "lon": -73.951614, "routes": "B98, B98" }, "geometry": { "type": "Point", "coordinates": [ -73.951614, 40.714214 ] } }, -{ "type": "Feature", "properties": { "id": 308940, "name": "Joralemon St/Adams St", "direction": "W", "lat": 40.69252, "lon": -73.99008, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.99008, 40.69252 ] } }, -{ "type": "Feature", "properties": { "id": 308967, "name": "Coney Island Av/Beverly Rd", "direction": "N", "lat": 40.644188, "lon": -73.970024, "routes": "BM3, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.970024, 40.644188 ] } }, -{ "type": "Feature", "properties": { "id": 309445, "name": "Metropolitan Av/Havemeyer St", "direction": "E", "lat": 40.714024, "lon": -73.95592, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.95592, 40.714024 ] } }, -{ "type": "Feature", "properties": { "id": 309446, "name": "Metropolitan Av/Rodney St", "direction": "E", "lat": 40.714005, "lon": -73.9528, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.9528, 40.714005 ] } }, -{ "type": "Feature", "properties": { "id": 350000, "name": "Pitkin Av /Euclid Av", "direction": "W", "lat": 40.675495, "lon": -73.87178, "routes": "Q08, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.87178, 40.675495 ] } }, -{ "type": "Feature", "properties": { "id": 350004, "name": "Liberty Av /Drew St", "direction": "E", "lat": 40.67904, "lon": -73.86343, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86343, 40.67904 ] } }, -{ "type": "Feature", "properties": { "id": 350006, "name": "Flatbush Av/Gateway Sports", "direction": "SE", "lat": 40.591263, "lon": -73.90239, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.90239, 40.591263 ] } }, -{ "type": "Feature", "properties": { "id": 350009, "name": "Flatbush Av/Gateway Sports", "direction": "NW", "lat": 40.591187, "lon": -73.90172, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.90172, 40.591187 ] } }, -{ "type": "Feature", "properties": { "id": 350011, "name": "Flatbush Av/Avenue U", "direction": "NW", "lat": 40.610123, "lon": -73.92244, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.92244, 40.610123 ] } }, -{ "type": "Feature", "properties": { "id": 350012, "name": "Flatbush Av/Marine Park Golf Course", "direction": "SE", "lat": 40.60104, "lon": -73.913284, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.913284, 40.60104 ] } }, -{ "type": "Feature", "properties": { "id": 350013, "name": "Flatbush Av/Marine Park Golf Course", "direction": "NW", "lat": 40.60126, "lon": -73.912926, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.912926, 40.60126 ] } }, -{ "type": "Feature", "properties": { "id": 350015, "name": "Flatbush Av/Floyd Bennett Field Entrance", "direction": "NW", "lat": 40.581676, "lon": -73.89108, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.89108, 40.581676 ] } }, -{ "type": "Feature", "properties": { "id": 350017, "name": "56 Dr / E 63 St", "direction": "SE", "lat": 40.60786, "lon": -73.91291, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91291, 40.60786 ] } }, -{ "type": "Feature", "properties": { "id": 350018, "name": "56 Dr / E 66 St", "direction": "SE", "lat": 40.606228, "lon": -73.91109, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91109, 40.606228 ] } }, -{ "type": "Feature", "properties": { "id": 350019, "name": "56 Dr / Strickland Av", "direction": "SE", "lat": 40.60866, "lon": -73.91379, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91379, 40.60866 ] } }, -{ "type": "Feature", "properties": { "id": 350024, "name": "Avenue H / E 39 St", "direction": "E", "lat": 40.63221, "lon": -73.93833, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.93833, 40.63221 ] } }, -{ "type": "Feature", "properties": { "id": 350025, "name": "Avenue H / E 38 St", "direction": "W", "lat": 40.632202, "lon": -73.939995, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.939995, 40.632202 ] } }, -{ "type": "Feature", "properties": { "id": 350026, "name": "Avenue H / New York Av", "direction": "E", "lat": 40.631832, "lon": -73.944214, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.944214, 40.631832 ] } }, -{ "type": "Feature", "properties": { "id": 350027, "name": "Avenue H / E 32 St", "direction": "W", "lat": 40.63185, "lon": -73.94601, "routes": "BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.94601, 40.63185 ] } }, -{ "type": "Feature", "properties": { "id": 350028, "name": "Avenue K / Bedford Av", "direction": "E", "lat": 40.623833, "lon": -73.95095, "routes": "BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.95095, 40.623833 ] } }, -{ "type": "Feature", "properties": { "id": 350029, "name": "Avenue K / Bedford Av", "direction": "W", "lat": 40.623947, "lon": -73.95142, "routes": "BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.95142, 40.623947 ] } }, -{ "type": "Feature", "properties": { "id": 350030, "name": "Avenue K / E 29 St", "direction": "E", "lat": 40.624237, "lon": -73.94718, "routes": "BM1, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94718, 40.624237 ] } }, -{ "type": "Feature", "properties": { "id": 350031, "name": "Avenue K / E 29 St", "direction": "W", "lat": 40.624355, "lon": -73.94764, "routes": "BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.94764, 40.624355 ] } }, -{ "type": "Feature", "properties": { "id": 350032, "name": "Avenue K /E 38 St", "direction": "E", "lat": 40.62557, "lon": -73.938866, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.938866, 40.62557 ] } }, -{ "type": "Feature", "properties": { "id": 350033, "name": "Avenue K /E 38 St", "direction": "W", "lat": 40.625713, "lon": -73.93891, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.93891, 40.625713 ] } }, -{ "type": "Feature", "properties": { "id": 350034, "name": "Avenue K /E 43 St", "direction": "E", "lat": 40.625866, "lon": -73.93419, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.93419, 40.625866 ] } }, -{ "type": "Feature", "properties": { "id": 350035, "name": "Avenue K /E 43 St", "direction": "W", "lat": 40.625984, "lon": -73.93467, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.93467, 40.625984 ] } }, -{ "type": "Feature", "properties": { "id": 350036, "name": "Avenue K /E 52 St", "direction": "E", "lat": 40.62592, "lon": -73.92548, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.92548, 40.62592 ] } }, -{ "type": "Feature", "properties": { "id": 350038, "name": "Avenue K /E 57 St", "direction": "E", "lat": 40.62621, "lon": -73.92069, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.92069, 40.62621 ] } }, -{ "type": "Feature", "properties": { "id": 350039, "name": "Avenue K /E 58 St", "direction": "W", "lat": 40.626404, "lon": -73.92015, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.92015, 40.626404 ] } }, -{ "type": "Feature", "properties": { "id": 350040, "name": "Avenue K /New York Av", "direction": "E", "lat": 40.624664, "lon": -73.9433, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.9433, 40.624664 ] } }, -{ "type": "Feature", "properties": { "id": 350041, "name": "Avenue K /New York Av", "direction": "W", "lat": 40.624783, "lon": -73.94383, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.94383, 40.624783 ] } }, -{ "type": "Feature", "properties": { "id": 350043, "name": "Avenue K / Ocean Av", "direction": "E", "lat": 40.623325, "lon": -73.95564, "routes": "BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.95564, 40.623325 ] } }, -{ "type": "Feature", "properties": { "id": 350044, "name": "Avenue K /Schenectady Av", "direction": "E", "lat": 40.625572, "lon": -73.93029, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.93029, 40.625572 ] } }, -{ "type": "Feature", "properties": { "id": 350045, "name": "Avenue K /Schenectady Av", "direction": "W", "lat": 40.625805, "lon": -73.93034, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.93034, 40.625805 ] } }, -{ "type": "Feature", "properties": { "id": 350046, "name": "Avenue M / E 102 St", "direction": "NE", "lat": 40.639603, "lon": -73.88948, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.88948, 40.639603 ] } }, -{ "type": "Feature", "properties": { "id": 350047, "name": "Avenue M / E 102 St", "direction": "SW", "lat": 40.639584, "lon": -73.88973, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.88973, 40.639584 ] } }, -{ "type": "Feature", "properties": { "id": 350048, "name": "Avenue M / E 105 St", "direction": "NE", "lat": 40.64086, "lon": -73.887436, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.887436, 40.64086 ] } }, -{ "type": "Feature", "properties": { "id": 350049, "name": "Avenue M / E 80 St", "direction": "NE", "lat": 40.6298, "lon": -73.90463, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.90463, 40.6298 ] } }, -{ "type": "Feature", "properties": { "id": 350050, "name": "Avenue M / E 80 St", "direction": "SW", "lat": 40.629868, "lon": -73.904755, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.904755, 40.629868 ] } }, -{ "type": "Feature", "properties": { "id": 350052, "name": "Avenue M / E 85 St", "direction": "SW", "lat": 40.631336, "lon": -73.90252, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.90252, 40.631336 ] } }, -{ "type": "Feature", "properties": { "id": 350053, "name": "Avenue M / E 93 St", "direction": "SW", "lat": 40.635117, "lon": -73.89661, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.89661, 40.635117 ] } }, -{ "type": "Feature", "properties": { "id": 350054, "name": "Avenue M / Canarsie Rd", "direction": "NE", "lat": 40.63485, "lon": -73.89684, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.89684, 40.63485 ] } }, -{ "type": "Feature", "properties": { "id": 350055, "name": "Avenue M / Remsen Av", "direction": "NE", "lat": 40.633747, "lon": -73.89846, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.89846, 40.633747 ] } }, -{ "type": "Feature", "properties": { "id": 350056, "name": "Avenue M / Remsen Av", "direction": "SW", "lat": 40.63359, "lon": -73.89895, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.89895, 40.63359 ] } }, -{ "type": "Feature", "properties": { "id": 350058, "name": "Avenue M / Rockaway Pky", "direction": "SW", "lat": 40.637135, "lon": -73.8935, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.8935, 40.637135 ] } }, -{ "type": "Feature", "properties": { "id": 350059, "name": "Avenue T / E 58 St", "direction": "SW", "lat": 40.61535, "lon": -73.91855, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.91855, 40.61535 ] } }, -{ "type": "Feature", "properties": { "id": 350060, "name": "Avenue T / E 59 St", "direction": "NE", "lat": 40.615723, "lon": -73.91768, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.91768, 40.615723 ] } }, -{ "type": "Feature", "properties": { "id": 350061, "name": "Avenue T / Mill Av", "direction": "NE", "lat": 40.616917, "lon": -73.91577, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.91577, 40.616917 ] } }, -{ "type": "Feature", "properties": { "id": 350062, "name": "Avenue T / Mill Av", "direction": "SW", "lat": 40.617054, "lon": -73.91593, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.91593, 40.617054 ] } }, -{ "type": "Feature", "properties": { "id": 350067, "name": "Avenue X / Bedford Av", "direction": "E", "lat": 40.593212, "lon": -73.945564, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.945564, 40.593212 ] } }, -{ "type": "Feature", "properties": { "id": 350069, "name": "Avenue X / E 28 St", "direction": "E", "lat": 40.593525, "lon": -73.94278, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.94278, 40.593525 ] } }, -{ "type": "Feature", "properties": { "id": 350071, "name": "Avenue X / Ocean Av", "direction": "E", "lat": 40.592747, "lon": -73.94979, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.94979, 40.592747 ] } }, -{ "type": "Feature", "properties": { "id": 350074, "name": "Batchelder St/Avenue Z", "direction": "N", "lat": 40.589714, "lon": -73.93684, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93684, 40.589714 ] } }, -{ "type": "Feature", "properties": { "id": 350075, "name": "Batchelder St / Voorhies Av", "direction": "S", "lat": 40.587833, "lon": -73.93669, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93669, 40.587833 ] } }, -{ "type": "Feature", "properties": { "id": 350076, "name": "Cortelyou Rd/Stratford Rd", "direction": "SW", "lat": 40.639683, "lon": -73.96806, "routes": "BM1, BM4, BM2, BM3, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.96806, 40.639683 ] } }, -{ "type": "Feature", "properties": { "id": 350078, "name": "E 105 St / Avenue J", "direction": "NW", "lat": 40.645885, "lon": -73.89269, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.89269, 40.645885 ] } }, -{ "type": "Feature", "properties": { "id": 350080, "name": "E 105 St / Avenue K", "direction": "NW", "lat": 40.64416, "lon": -73.89072, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.89072, 40.64416 ] } }, -{ "type": "Feature", "properties": { "id": 350081, "name": "E 105 St / Avenue K", "direction": "SE", "lat": 40.64435, "lon": -73.89129, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.89129, 40.64435 ] } }, -{ "type": "Feature", "properties": { "id": 350082, "name": "E 105 St / Avenue L", "direction": "NW", "lat": 40.642616, "lon": -73.88897, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.88897, 40.642616 ] } }, -{ "type": "Feature", "properties": { "id": 350083, "name": "E 105 St / Avenue L", "direction": "SE", "lat": 40.642677, "lon": -73.889435, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.889435, 40.642677 ] } }, -{ "type": "Feature", "properties": { "id": 350084, "name": "E 105 St / Avenue M", "direction": "SE", "lat": 40.641132, "lon": -73.88766, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.88766, 40.641132 ] } }, -{ "type": "Feature", "properties": { "id": 350086, "name": "E 66 St / 56 Dr", "direction": "SW", "lat": 40.606297, "lon": -73.910736, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.910736, 40.606297 ] } }, -{ "type": "Feature", "properties": { "id": 350087, "name": "E 66 St /Avenue U", "direction": "NW", "lat": 40.617294, "lon": -73.910736, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.910736, 40.617294 ] } }, -{ "type": "Feature", "properties": { "id": 350088, "name": "E 66 St / Bassett Av", "direction": "SW", "lat": 40.60994, "lon": -73.90713, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90713, 40.60994 ] } }, -{ "type": "Feature", "properties": { "id": 350089, "name": "E 66 St / Bassett Av", "direction": "NE", "lat": 40.609604, "lon": -73.907074, "routes": "BM1, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.907074, 40.609604 ] } }, -{ "type": "Feature", "properties": { "id": 350090, "name": "E 66 St / Dakota Pl", "direction": "NE", "lat": 40.607407, "lon": -73.908875, "routes": "BM1, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.908875, 40.607407 ] } }, -{ "type": "Feature", "properties": { "id": 350091, "name": "E 66 St / Mayfair Dr North", "direction": "S", "lat": 40.612022, "lon": -73.90676, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90676, 40.612022 ] } }, -{ "type": "Feature", "properties": { "id": 350092, "name": "E 66 St / Mayfair Dr N", "direction": "N", "lat": 40.611668, "lon": -73.90654, "routes": "BM1, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.90654, 40.611668 ] } }, -{ "type": "Feature", "properties": { "id": 350093, "name": "E 66 St / Mayfair Dr South", "direction": "SW", "lat": 40.608086, "lon": -73.90842, "routes": "BM1, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.90842, 40.608086 ] } }, -{ "type": "Feature", "properties": { "id": 350094, "name": "E 66 St / Ohio Walk", "direction": "SE", "lat": 40.614056, "lon": -73.90759, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90759, 40.614056 ] } }, -{ "type": "Feature", "properties": { "id": 350095, "name": "E 66 St / Ohio Walk", "direction": "NW", "lat": 40.613712, "lon": -73.907135, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.907135, 40.613712 ] } }, -{ "type": "Feature", "properties": { "id": 350096, "name": "E 66 St / Strickland Av", "direction": "SE", "lat": 40.615807, "lon": -73.90935, "routes": "BM1, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.90935, 40.615807 ] } }, -{ "type": "Feature", "properties": { "id": 350097, "name": "E 66 St / Strickland Av", "direction": "NW", "lat": 40.615715, "lon": -73.90899, "routes": "BM1, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.90899, 40.615715 ] } }, -{ "type": "Feature", "properties": { "id": 350099, "name": "E 80 St / Avenue K", "direction": "NW", "lat": 40.632393, "lon": -73.90961, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.90961, 40.632393 ] } }, -{ "type": "Feature", "properties": { "id": 350100, "name": "E 80 St / Avenue L", "direction": "NW", "lat": 40.630867, "lon": -73.907166, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.907166, 40.630867 ] } }, -{ "type": "Feature", "properties": { "id": 350101, "name": "E 80 St / Flatlands Av", "direction": "SE", "lat": 40.63535, "lon": -73.91317, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.91317, 40.63535 ] } }, -{ "type": "Feature", "properties": { "id": 350102, "name": "E 80 St / Flatlands Av", "direction": "NW", "lat": 40.635754, "lon": -73.913445, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.913445, 40.635754 ] } }, -{ "type": "Feature", "properties": { "id": 350104, "name": "E 80 St / Paerdegat 4 St", "direction": "SE", "lat": 40.632042, "lon": -73.90946, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.90946, 40.632042 ] } }, -{ "type": "Feature", "properties": { "id": 350105, "name": "Emmons Av / Coyle St", "direction": "E", "lat": 40.583946, "lon": -73.93411, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93411, 40.583946 ] } }, -{ "type": "Feature", "properties": { "id": 350106, "name": "Emmons Av / Nostrand Av", "direction": "E", "lat": 40.583736, "lon": -73.93908, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93908, 40.583736 ] } }, -{ "type": "Feature", "properties": { "id": 350107, "name": "Emmons Av / Ocean Av", "direction": "E", "lat": 40.583553, "lon": -73.94812, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.94812, 40.583553 ] } }, -{ "type": "Feature", "properties": { "id": 350109, "name": "Fillmore Av / Burnett St", "direction": "SW", "lat": 40.60759, "lon": -73.93925, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93925, 40.60759 ] } }, -{ "type": "Feature", "properties": { "id": 350110, "name": "Fillmore Av / Coleman St", "direction": "NE", "lat": 40.613796, "lon": -73.92933, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92933, 40.613796 ] } }, -{ "type": "Feature", "properties": { "id": 350111, "name": "Fillmore Av / Coleman St", "direction": "SW", "lat": 40.613678, "lon": -73.92983, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92983, 40.613678 ] } }, -{ "type": "Feature", "properties": { "id": 350112, "name": "Fillmore Av / E 32 St", "direction": "NE", "lat": 40.60961, "lon": -73.93579, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93579, 40.60961 ] } }, -{ "type": "Feature", "properties": { "id": 350113, "name": "Fillmore Av / E 32 St", "direction": "SW", "lat": 40.609467, "lon": -73.93635, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93635, 40.609467 ] } }, -{ "type": "Feature", "properties": { "id": 350114, "name": "Fillmore Av / E 34 St", "direction": "NE", "lat": 40.61052, "lon": -73.9344, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.9344, 40.61052 ] } }, -{ "type": "Feature", "properties": { "id": 350115, "name": "Fillmore Av / E 37 St", "direction": "NE", "lat": 40.61193, "lon": -73.932175, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.932175, 40.61193 ] } }, -{ "type": "Feature", "properties": { "id": 350116, "name": "Fillmore Av / E 37 St", "direction": "SW", "lat": 40.61183, "lon": -73.93268, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93268, 40.61183 ] } }, -{ "type": "Feature", "properties": { "id": 350117, "name": "Fillmore Av / E 51 St", "direction": "E", "lat": 40.614483, "lon": -73.92561, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92561, 40.614483 ] } }, -{ "type": "Feature", "properties": { "id": 350118, "name": "Fillmore Av / E 51 St", "direction": "W", "lat": 40.61463, "lon": -73.92524, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92524, 40.61463 ] } }, -{ "type": "Feature", "properties": { "id": 350119, "name": "Fillmore Av / E 53 St", "direction": "E", "lat": 40.6146, "lon": -73.92369, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92369, 40.6146 ] } }, -{ "type": "Feature", "properties": { "id": 350120, "name": "Fillmore Av / E 53 St", "direction": "W", "lat": 40.61478, "lon": -73.92333, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92333, 40.61478 ] } }, -{ "type": "Feature", "properties": { "id": 350121, "name": "Fillmore Av / E 55 St", "direction": "E", "lat": 40.61469, "lon": -73.921844, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.921844, 40.61469 ] } }, -{ "type": "Feature", "properties": { "id": 350122, "name": "Fillmore Av / E 55 St", "direction": "W", "lat": 40.614895, "lon": -73.9214, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.9214, 40.614895 ] } }, -{ "type": "Feature", "properties": { "id": 350123, "name": "Fillmore Av / E 57 St", "direction": "E", "lat": 40.614815, "lon": -73.91983, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.91983, 40.614815 ] } }, -{ "type": "Feature", "properties": { "id": 350124, "name": "Fillmore Av / E 57 St", "direction": "W", "lat": 40.614983, "lon": -73.919846, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.919846, 40.614983 ] } }, -{ "type": "Feature", "properties": { "id": 350125, "name": "Fillmore Av / E 34 St", "direction": "SW", "lat": 40.610413, "lon": -73.93487, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93487, 40.610413 ] } }, -{ "type": "Feature", "properties": { "id": 350126, "name": "Fillmore Av / Flatbush Av", "direction": "NE", "lat": 40.614494, "lon": -73.92814, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92814, 40.614494 ] } }, -{ "type": "Feature", "properties": { "id": 350127, "name": "Fillmore Av / Flatbush Av", "direction": "SW", "lat": 40.614662, "lon": -73.92833, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.92833, 40.614662 ] } }, -{ "type": "Feature", "properties": { "id": 350129, "name": "Fillmore Av / Gerritsen Av", "direction": "SW", "lat": 40.60681, "lon": -73.940414, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.940414, 40.60681 ] } }, -{ "type": "Feature", "properties": { "id": 350130, "name": "Fillmore Av / Marine Pkwy", "direction": "NE", "lat": 40.608646, "lon": -73.937294, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.937294, 40.608646 ] } }, -{ "type": "Feature", "properties": { "id": 350131, "name": "Fillmore Av / Marine Pkwy", "direction": "SW", "lat": 40.60853, "lon": -73.93781, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93781, 40.60853 ] } }, -{ "type": "Feature", "properties": { "id": 350132, "name": "Fillmore Av / Ryder St", "direction": "NE", "lat": 40.61287, "lon": -73.93073, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93073, 40.61287 ] } }, -{ "type": "Feature", "properties": { "id": 350133, "name": "Fillmore Av / Ryder St", "direction": "SW", "lat": 40.61275, "lon": -73.93127, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93127, 40.61275 ] } }, -{ "type": "Feature", "properties": { "id": 350148, "name": "Glenwood Rd / E 80 St", "direction": "NE", "lat": 40.63694, "lon": -73.91498, "routes": "B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.91498, 40.63694 ] } }, -{ "type": "Feature", "properties": { "id": 350149, "name": "Glenwood Rd / E 80 St", "direction": "SW", "lat": 40.636997, "lon": -73.91515, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.91515, 40.636997 ] } }, -{ "type": "Feature", "properties": { "id": 350154, "name": "Ocean Av / Ditmas Av", "direction": "S", "lat": 40.63948, "lon": -73.95911, "routes": "BM4, BM3, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.95911, 40.63948 ] } }, -{ "type": "Feature", "properties": { "id": 350158, "name": "Quentin Rd / Bedford Av", "direction": "W", "lat": 40.60944, "lon": -73.94824, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.94824, 40.60944 ] } }, -{ "type": "Feature", "properties": { "id": 350159, "name": "Quentin Rd / Bedford Av", "direction": "E", "lat": 40.609303, "lon": -73.94812, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.94812, 40.609303 ] } }, -{ "type": "Feature", "properties": { "id": 350164, "name": "Quentin Rd / Nostrand Av", "direction": "E", "lat": 40.609756, "lon": -73.94382, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.94382, 40.609756 ] } }, -{ "type": "Feature", "properties": { "id": 350168, "name": "Shore Pkwy/Batchelder St", "direction": "W", "lat": 40.586624, "lon": -73.93618, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93618, 40.586624 ] } }, -{ "type": "Feature", "properties": { "id": 350172, "name": "Pitkin Av/Drew St", "direction": "E", "lat": 40.676533, "lon": -73.86242, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.86242, 40.676533 ] } }, -{ "type": "Feature", "properties": { "id": 350174, "name": "Pitkin Av/Forbell St", "direction": "W", "lat": 40.676598, "lon": -73.86351, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.86351, 40.676598 ] } }, -{ "type": "Feature", "properties": { "id": 350175, "name": "Pitkin Av/Grant Av", "direction": "W", "lat": 40.676437, "lon": -73.865364, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.865364, 40.676437 ] } }, -{ "type": "Feature", "properties": { "id": 350176, "name": "Pitkin Av /Autumn Av", "direction": "W", "lat": 40.675995, "lon": -73.86846, "routes": "Q08, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.86846, 40.675995 ] } }, -{ "type": "Feature", "properties": { "id": 350178, "name": "Liberty Av /Forbell St", "direction": "SW", "lat": 40.679214, "lon": -73.86413, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86413, 40.679214 ] } }, -{ "type": "Feature", "properties": { "id": 350179, "name": "Grant Av /Liberty Av", "direction": "S", "lat": 40.678734, "lon": -73.86611, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86611, 40.678734 ] } }, -{ "type": "Feature", "properties": { "id": 350180, "name": "Grant Av /Pitkin Av", "direction": "S", "lat": 40.67645, "lon": -73.86554, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86554, 40.67645 ] } }, -{ "type": "Feature", "properties": { "id": 350183, "name": "National Dr / E 66 St", "direction": "NW", "lat": 40.604633, "lon": -73.91342, "routes": "B100, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91342, 40.604633 ] } }, -{ "type": "Feature", "properties": { "id": 350184, "name": "National Dr / Mill Av", "direction": "NW", "lat": 40.60694, "lon": -73.91593, "routes": "BM1, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.91593, 40.60694 ] } }, -{ "type": "Feature", "properties": { "id": 350192, "name": "Emmons Av / Bedford Av", "direction": "E", "lat": 40.583523, "lon": -73.943245, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.943245, 40.583523 ] } }, -{ "type": "Feature", "properties": { "id": 350194, "name": "Avenue K /Utica Av", "direction": "W", "lat": 40.62596, "lon": -73.927345, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.927345, 40.62596 ] } }, -{ "type": "Feature", "properties": { "id": 350198, "name": "Voorhies Av / Bragg St", "direction": "E", "lat": 40.58787, "lon": -73.93387, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93387, 40.58787 ] } }, -{ "type": "Feature", "properties": { "id": 350199, "name": "Avenue X / Bedford Av", "direction": "W", "lat": 40.59336, "lon": -73.94561, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.94561, 40.59336 ] } }, -{ "type": "Feature", "properties": { "id": 350200, "name": "Avenue X / E 28 St", "direction": "W", "lat": 40.59367, "lon": -73.942825, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.942825, 40.59367 ] } }, -{ "type": "Feature", "properties": { "id": 350203, "name": "Emmons Av/Shore Blvd", "direction": "E", "lat": 40.58303, "lon": -73.95373, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.95373, 40.58303 ] } }, -{ "type": "Feature", "properties": { "id": 350204, "name": "Emmons Av / E 19 St", "direction": "W", "lat": 40.58369, "lon": -73.94984, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.94984, 40.58369 ] } }, -{ "type": "Feature", "properties": { "id": 350205, "name": "Emmons Av / Bragg St", "direction": "E", "lat": 40.584072, "lon": -73.932365, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.932365, 40.584072 ] } }, -{ "type": "Feature", "properties": { "id": 350207, "name": "Van Siclen Av /Cozine Av", "direction": "N", "lat": 40.6562, "lon": -73.882385, "routes": "BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.882385, 40.6562 ] } }, -{ "type": "Feature", "properties": { "id": 350208, "name": "Adams St / Johnson St", "direction": "S", "lat": 40.69477, "lon": -73.989105, "routes": "B103" }, "geometry": { "type": "Point", "coordinates": [ -73.989105, 40.69477 ] } }, -{ "type": "Feature", "properties": { "id": 350217, "name": "Quentin Rd / Nostrand Av", "direction": "W", "lat": 40.609932, "lon": -73.943886, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.943886, 40.609932 ] } }, -{ "type": "Feature", "properties": { "id": 350218, "name": "Lee Av/Taylor St", "direction": "SE", "lat": 40.706825, "lon": -73.961296, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.961296, 40.706825 ] } }, -{ "type": "Feature", "properties": { "id": 350220, "name": "Cozine Av /Schenck Av", "direction": "NE", "lat": 40.65688, "lon": -73.880844, "routes": "BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.880844, 40.65688 ] } }, -{ "type": "Feature", "properties": { "id": 350224, "name": "Ocean Av / Ditmas Av", "direction": "N", "lat": 40.639168, "lon": -73.9588, "routes": "BM1, BM4, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.9588, 40.639168 ] } }, -{ "type": "Feature", "properties": { "id": 350225, "name": "Gerritsen Av / Nostrand Av", "direction": "SE", "lat": 40.60904, "lon": -73.94336, "routes": "BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.94336, 40.60904 ] } }, -{ "type": "Feature", "properties": { "id": 350226, "name": "Gerritsen Av / Haring St", "direction": "SE", "lat": 40.608074, "lon": -73.94216, "routes": "BM4, B100" }, "geometry": { "type": "Point", "coordinates": [ -73.94216, 40.608074 ] } }, -{ "type": "Feature", "properties": { "id": 350228, "name": "Avenue M / E 85 St", "direction": "NE", "lat": 40.63122, "lon": -73.902374, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.902374, 40.63122 ] } }, -{ "type": "Feature", "properties": { "id": 350229, "name": "Fountain Av /Wortman Av", "direction": "NW", "lat": 40.663727, "lon": -73.86945, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86945, 40.663727 ] } }, -{ "type": "Feature", "properties": { "id": 350230, "name": "Fountain Av /Blake Av", "direction": "N", "lat": 40.67099, "lon": -73.87417, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87417, 40.67099 ] } }, -{ "type": "Feature", "properties": { "id": 350231, "name": "Pitkin Av /Euclid Av", "direction": "E", "lat": 40.675358, "lon": -73.87206, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87206, 40.675358 ] } }, -{ "type": "Feature", "properties": { "id": 350232, "name": "Pitkin Av /Autumn Av", "direction": "E", "lat": 40.675945, "lon": -73.86806, "routes": "Q07, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86806, 40.675945 ] } }, -{ "type": "Feature", "properties": { "id": 350233, "name": "Pitkin Av /Eldert Ln", "direction": "E", "lat": 40.676414, "lon": -73.86467, "routes": "Q07, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86467, 40.676414 ] } }, -{ "type": "Feature", "properties": { "id": 350234, "name": "Fountain Av /Linden Blvd", "direction": "SE", "lat": 40.666428, "lon": -73.87173, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87173, 40.666428 ] } }, -{ "type": "Feature", "properties": { "id": 350235, "name": "Fountain Av /Wortman Av", "direction": "SE", "lat": 40.663666, "lon": -73.869675, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.869675, 40.663666 ] } }, -{ "type": "Feature", "properties": { "id": 350237, "name": "Logan St /Sutter Av", "direction": "N", "lat": 40.672436, "lon": -73.87554, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87554, 40.672436 ] } }, -{ "type": "Feature", "properties": { "id": 350238, "name": "Pitkin Av /Fountain Av", "direction": "E", "lat": 40.674873, "lon": -73.87538, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87538, 40.674873 ] } }, -{ "type": "Feature", "properties": { "id": 350240, "name": "E 66 St /Avenue U", "direction": "SE", "lat": 40.616974, "lon": -73.91066, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91066, 40.616974 ] } }, -{ "type": "Feature", "properties": { "id": 350241, "name": "Veterans Av /E 71 St", "direction": "W", "lat": 40.62025, "lon": -73.90762, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90762, 40.62025 ] } }, -{ "type": "Feature", "properties": { "id": 350243, "name": "Williams Av / Flatlands Av", "direction": "NW", "lat": 40.65038, "lon": -73.89145, "routes": "BM2, B103, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.89145, 40.65038 ] } }, -{ "type": "Feature", "properties": { "id": 350244, "name": "Flatlands Av / Williams Av", "direction": "NE", "lat": 40.650063, "lon": -73.89103, "routes": "BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.89103, 40.650063 ] } }, -{ "type": "Feature", "properties": { "id": 350245, "name": "E 105 St / Flatlands Av", "direction": "SE", "lat": 40.647354, "lon": -73.894585, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.894585, 40.647354 ] } }, -{ "type": "Feature", "properties": { "id": 350246, "name": "E 105 St / Avenue J", "direction": "SE", "lat": 40.645725, "lon": -73.892784, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.892784, 40.645725 ] } }, -{ "type": "Feature", "properties": { "id": 350247, "name": "Avenue X / Brown St", "direction": "E", "lat": 40.59401, "lon": -73.93851, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93851, 40.59401 ] } }, -{ "type": "Feature", "properties": { "id": 350248, "name": "Batchelder St/Avenue Z", "direction": "S", "lat": 40.589703, "lon": -73.93706, "routes": "BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.93706, 40.589703 ] } }, -{ "type": "Feature", "properties": { "id": 350249, "name": "Flatbush Av/Ryan Visitors Center", "direction": "SE", "lat": 40.587666, "lon": -73.89845, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.89845, 40.587666 ] } }, -{ "type": "Feature", "properties": { "id": 350250, "name": "Flatbush Av/Ryan Visitors Center", "direction": "NW", "lat": 40.58816, "lon": -73.89836, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.89836, 40.58816 ] } }, -{ "type": "Feature", "properties": { "id": 350260, "name": "Avenue H/Flatbush Av", "direction": "E", "lat": 40.63168, "lon": -73.94655, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.94655, 40.63168 ] } }, -{ "type": "Feature", "properties": { "id": 350264, "name": "Avenue M / E 98 St", "direction": "NE", "lat": 40.63743, "lon": -73.89281, "routes": "BM2, B103" }, "geometry": { "type": "Point", "coordinates": [ -73.89281, 40.63743 ] } }, -{ "type": "Feature", "properties": { "id": 350265, "name": "Flatbush Av/Avenue U", "direction": "SE", "lat": 40.60939, "lon": -73.9223, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.9223, 40.60939 ] } }, -{ "type": "Feature", "properties": { "id": 350274, "name": "Fillmore Av / Burnett St", "direction": "NE", "lat": 40.607662, "lon": -73.93887, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.93887, 40.607662 ] } }, -{ "type": "Feature", "properties": { "id": 400001, "name": "4 Av/E 10 St", "direction": "N", "lat": 40.731342, "lon": -73.990295, "routes": "M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.990295, 40.731342 ] } }, -{ "type": "Feature", "properties": { "id": 400002, "name": "4 Av/E 12 St", "direction": "N", "lat": 40.73261, "lon": -73.98996, "routes": "M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.98996, 40.73261 ] } }, -{ "type": "Feature", "properties": { "id": 400003, "name": "4 Av/E 13 St", "direction": "N", "lat": 40.733936, "lon": -73.98972, "routes": "M1, M2, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.98972, 40.733936 ] } }, -{ "type": "Feature", "properties": { "id": 400007, "name": "Park Av South/E 21 St", "direction": "NE", "lat": 40.738976, "lon": -73.98705, "routes": "M3, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.98705, 40.738976 ] } }, -{ "type": "Feature", "properties": { "id": 400018, "name": "Madison Av/E 43 St", "direction": "NE", "lat": 40.75335, "lon": -73.97876, "routes": "SIM23, M1, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.97876, 40.75335 ] } }, -{ "type": "Feature", "properties": { "id": 400019, "name": "Madison Av/E 46 St", "direction": "NE", "lat": 40.755226, "lon": -73.97739, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.97739, 40.755226 ] } }, -{ "type": "Feature", "properties": { "id": 400021, "name": "Madison Av/E 50 St", "direction": "NE", "lat": 40.75774, "lon": -73.975555, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.975555, 40.75774 ] } }, -{ "type": "Feature", "properties": { "id": 400022, "name": "Madison Av/E 53 St", "direction": "NE", "lat": 40.759605, "lon": -73.9742, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.9742, 40.759605 ] } }, -{ "type": "Feature", "properties": { "id": 400023, "name": "Madison Av/E 56 St", "direction": "NE", "lat": 40.761497, "lon": -73.97282, "routes": "BXM18, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.97282, 40.761497 ] } }, -{ "type": "Feature", "properties": { "id": 400024, "name": "Madison Av/E 58 St", "direction": "NE", "lat": 40.7627, "lon": -73.97196, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.97196, 40.7627 ] } }, -{ "type": "Feature", "properties": { "id": 400026, "name": "Madison Av/E 63 St", "direction": "NE", "lat": 40.766273, "lon": -73.96933, "routes": "M2, M4, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.96933, 40.766273 ] } }, -{ "type": "Feature", "properties": { "id": 400028, "name": "Madison Av/E 67 St", "direction": "NE", "lat": 40.76881, "lon": -73.96748, "routes": "M3, M4, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.96748, 40.76881 ] } }, -{ "type": "Feature", "properties": { "id": 400029, "name": "Madison Av/E 69 St", "direction": "NE", "lat": 40.770077, "lon": -73.96656, "routes": "M2, M3, M72, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96656, 40.770077 ] } }, -{ "type": "Feature", "properties": { "id": 400030, "name": "Madison Av/E 72 St", "direction": "NE", "lat": 40.7718, "lon": -73.96531, "routes": "M2, M1, M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96531, 40.7718 ] } }, -{ "type": "Feature", "properties": { "id": 400031, "name": "Madison Av/E 74 St", "direction": "NE", "lat": 40.772774, "lon": -73.96461, "routes": "M2, M3, M4, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.96461, 40.772774 ] } }, -{ "type": "Feature", "properties": { "id": 400032, "name": "Madison Av/E 77 St", "direction": "NE", "lat": 40.775322, "lon": -73.96274, "routes": "M4, M2, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.96274, 40.775322 ] } }, -{ "type": "Feature", "properties": { "id": 400033, "name": "Madison Av/E 79 St", "direction": "NE", "lat": 40.77647, "lon": -73.96195, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.96195, 40.77647 ] } }, -{ "type": "Feature", "properties": { "id": 400034, "name": "Madison Av/E 83 St", "direction": "NE", "lat": 40.778793, "lon": -73.960205, "routes": "M1, M2, M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.960205, 40.778793 ] } }, -{ "type": "Feature", "properties": { "id": 400036, "name": "Madison Av/E 86 St", "direction": "NE", "lat": 40.781155, "lon": -73.95848, "routes": "M4, M1, M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.95848, 40.781155 ] } }, -{ "type": "Feature", "properties": { "id": 400037, "name": "Madison Av/E 89 St", "direction": "NE", "lat": 40.782677, "lon": -73.957375, "routes": "M3, M2, M1, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.957375, 40.782677 ] } }, -{ "type": "Feature", "properties": { "id": 400038, "name": "Madison Av/E 91 St", "direction": "NE", "lat": 40.78436, "lon": -73.95614, "routes": "M3, M4, M1, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.95614, 40.78436 ] } }, -{ "type": "Feature", "properties": { "id": 400039, "name": "Madison Av/E 93 St", "direction": "NE", "lat": 40.785637, "lon": -73.95521, "routes": "M3, M1, M4, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.95521, 40.785637 ] } }, -{ "type": "Feature", "properties": { "id": 400041, "name": "Madison Av/E 98 St", "direction": "NE", "lat": 40.788414, "lon": -73.95318, "routes": "M4, M3, M106, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.95318, 40.788414 ] } }, -{ "type": "Feature", "properties": { "id": 400042, "name": "Madison Av/E 101 St", "direction": "NE", "lat": 40.790302, "lon": -73.9518, "routes": "M3, M1, M4, M106, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.9518, 40.790302 ] } }, -{ "type": "Feature", "properties": { "id": 400043, "name": "Madison Av/E 102 St", "direction": "NE", "lat": 40.79137, "lon": -73.95102, "routes": "M4, M3, M2, M106, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.95102, 40.79137 ] } }, -{ "type": "Feature", "properties": { "id": 400044, "name": "Madison Av/E 104 St", "direction": "NE", "lat": 40.79216, "lon": -73.95045, "routes": "M2, M4, M3, M106, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.95045, 40.79216 ] } }, -{ "type": "Feature", "properties": { "id": 400045, "name": "Madison Av/E 106 St", "direction": "NE", "lat": 40.793434, "lon": -73.94951, "routes": "M1, M4, M2, M106, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94951, 40.793434 ] } }, -{ "type": "Feature", "properties": { "id": 400046, "name": "Madison Av/E 107 St", "direction": "NE", "lat": 40.79455, "lon": -73.94869, "routes": "M2, M1, M4, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94869, 40.79455 ] } }, -{ "type": "Feature", "properties": { "id": 400047, "name": "Madison Av/E 109 St", "direction": "NE", "lat": 40.795815, "lon": -73.94778, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94778, 40.795815 ] } }, -{ "type": "Feature", "properties": { "id": 400051, "name": "Madison Av/E 118 St", "direction": "NE", "lat": 40.801506, "lon": -73.94362, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94362, 40.801506 ] } }, -{ "type": "Feature", "properties": { "id": 400053, "name": "Madison Av/E 123 St", "direction": "NE", "lat": 40.804775, "lon": -73.94133, "routes": "BXM3, BXM4, BXM2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94133, 40.804775 ] } }, -{ "type": "Feature", "properties": { "id": 400054, "name": "Madison Av/E 125 St", "direction": "NE", "lat": 40.806015, "lon": -73.940346, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.940346, 40.806015 ] } }, -{ "type": "Feature", "properties": { "id": 400055, "name": "Madison Av/E 127 St", "direction": "NE", "lat": 40.807247, "lon": -73.93946, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93946, 40.807247 ] } }, -{ "type": "Feature", "properties": { "id": 400056, "name": "Madison Av/E 129 St", "direction": "NE", "lat": 40.80851, "lon": -73.93854, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93854, 40.80851 ] } }, -{ "type": "Feature", "properties": { "id": 400057, "name": "Madison Av/E 132 St", "direction": "NE", "lat": 40.810425, "lon": -73.93711, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93711, 40.810425 ] } }, -{ "type": "Feature", "properties": { "id": 400059, "name": "5 Av/E 135 St", "direction": "NE", "lat": 40.813126, "lon": -73.937225, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.937225, 40.813126 ] } }, -{ "type": "Feature", "properties": { "id": 400060, "name": "5 Av/E 138 St", "direction": "NE", "lat": 40.814465, "lon": -73.93625, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93625, 40.814465 ] } }, -{ "type": "Feature", "properties": { "id": 400061, "name": "W 139 St/5 Av", "direction": "NW", "lat": 40.815617, "lon": -73.93628, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93628, 40.815617 ] } }, -{ "type": "Feature", "properties": { "id": 400062, "name": "Malcolm X Blvd/W 139 St", "direction": "NE", "lat": 40.81694, "lon": -73.938614, "routes": "M1, M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.938614, 40.81694 ] } }, -{ "type": "Feature", "properties": { "id": 400065, "name": "Malcolm X Blvd/W 145 St", "direction": "NE", "lat": 40.82068, "lon": -73.935875, "routes": "M102, M7, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.935875, 40.82068 ] } }, -{ "type": "Feature", "properties": { "id": 400066, "name": "W 147 St/Malcolm X Blvd", "direction": "NW", "lat": 40.821953, "lon": -73.93573, "routes": "M102, M1, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.93573, 40.821953 ] } }, -{ "type": "Feature", "properties": { "id": 400067, "name": "W 147 St/Adam C Powell Blvd", "direction": "W", "lat": 40.822853, "lon": -73.93787, "routes": "M102, M7, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93787, 40.822853 ] } }, -{ "type": "Feature", "properties": { "id": 400070, "name": "Trinity Pl/Rector St", "direction": "NE", "lat": 40.708008, "lon": -74.01271, "routes": "SIM33C, SIM3C, SIM4, SIM15, SIM1C, SIM2, SIM4X, SIM4C, SIM1, BM2, M55, SIM32, BM3, BM1, SIM34, BM4" }, "geometry": { "type": "Point", "coordinates": [ -74.01271, 40.708008 ] } }, -{ "type": "Feature", "properties": { "id": 400071, "name": "Church St/Liberty St", "direction": "NE", "lat": 40.710014, "lon": -74.01136, "routes": "M55, BM4, BM2, BM1, BM3" }, "geometry": { "type": "Point", "coordinates": [ -74.01136, 40.710014 ] } }, -{ "type": "Feature", "properties": { "id": 400080, "name": "Centre St/Broome St", "direction": "NE", "lat": 40.720676, "lon": -73.99767, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99767, 40.720676 ] } }, -{ "type": "Feature", "properties": { "id": 400081, "name": "Cleveland Pl/Spring St", "direction": "N", "lat": 40.72243, "lon": -73.99701, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99701, 40.72243 ] } }, -{ "type": "Feature", "properties": { "id": 400085, "name": "Lafayette St/E 4 St", "direction": "NE", "lat": 40.728065, "lon": -73.99285, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99285, 40.728065 ] } }, -{ "type": "Feature", "properties": { "id": 400086, "name": "Lafayette St/Astor Pl", "direction": "NE", "lat": 40.72975, "lon": -73.991425, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.991425, 40.72975 ] } }, -{ "type": "Feature", "properties": { "id": 400087, "name": "W 146 St/Malcolm X Blvd", "direction": "SE", "lat": 40.82118, "lon": -73.93596, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.93596, 40.82118 ] } }, -{ "type": "Feature", "properties": { "id": 400088, "name": "Malcolm X Blvd/W 145 St", "direction": "SW", "lat": 40.82036, "lon": -73.93646, "routes": "M7, M1, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.93646, 40.82036 ] } }, -{ "type": "Feature", "properties": { "id": 400089, "name": "Malcolm X Blvd/W 142 St", "direction": "SW", "lat": 40.81825, "lon": -73.938, "routes": "M102, M1, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.938, 40.81825 ] } }, -{ "type": "Feature", "properties": { "id": 400091, "name": "W 139 St/Malcolm X Blvd", "direction": "E", "lat": 40.81638, "lon": -73.93874, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93874, 40.81638 ] } }, -{ "type": "Feature", "properties": { "id": 400092, "name": "5 Av/W 138 St", "direction": "SW", "lat": 40.8152, "lon": -73.93598, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93598, 40.8152 ] } }, -{ "type": "Feature", "properties": { "id": 400093, "name": "5 Av/W 137 St", "direction": "SW", "lat": 40.81379, "lon": -73.937004, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.937004, 40.81379 ] } }, -{ "type": "Feature", "properties": { "id": 400094, "name": "5 Av/W 135 St", "direction": "SW", "lat": 40.812366, "lon": -73.93804, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93804, 40.812366 ] } }, -{ "type": "Feature", "properties": { "id": 400095, "name": "5 Av/W 132 St", "direction": "SW", "lat": 40.81062, "lon": -73.939285, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.939285, 40.81062 ] } }, -{ "type": "Feature", "properties": { "id": 400096, "name": "5 Av/W 130 St", "direction": "SW", "lat": 40.809345, "lon": -73.94021, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94021, 40.809345 ] } }, -{ "type": "Feature", "properties": { "id": 400097, "name": "5 Av/W 128 St", "direction": "SW", "lat": 40.808075, "lon": -73.94114, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94114, 40.808075 ] } }, -{ "type": "Feature", "properties": { "id": 400098, "name": "5 Av/W 125 St", "direction": "SW", "lat": 40.806137, "lon": -73.94256, "routes": "BXM3, BXM4, BXM2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94256, 40.806137 ] } }, -{ "type": "Feature", "properties": { "id": 400099, "name": "Mount Morris Park West/W 124 St", "direction": "SW", "lat": 40.80619, "lon": -73.9446, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.9446, 40.80619 ] } }, -{ "type": "Feature", "properties": { "id": 400102, "name": "5 Av/W 118 St", "direction": "SW", "lat": 40.801693, "lon": -73.94583, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94583, 40.801693 ] } }, -{ "type": "Feature", "properties": { "id": 400103, "name": "5 Av/W 116 St", "direction": "SW", "lat": 40.800354, "lon": -73.946815, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.946815, 40.800354 ] } }, -{ "type": "Feature", "properties": { "id": 400105, "name": "5 Av/W 112 St", "direction": "SW", "lat": 40.79786, "lon": -73.94859, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94859, 40.79786 ] } }, -{ "type": "Feature", "properties": { "id": 400107, "name": "5 Av/E 109 St", "direction": "SW", "lat": 40.79653, "lon": -73.94957, "routes": "M1, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94957, 40.79653 ] } }, -{ "type": "Feature", "properties": { "id": 400108, "name": "5 Av/E 108 St", "direction": "SW", "lat": 40.795513, "lon": -73.95032, "routes": "M2, M4, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95032, 40.795513 ] } }, -{ "type": "Feature", "properties": { "id": 400109, "name": "5 Av/E 106 St", "direction": "SW", "lat": 40.794174, "lon": -73.95129, "routes": "M3, M1, M4, M2, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.95129, 40.794174 ] } }, -{ "type": "Feature", "properties": { "id": 400110, "name": "5 Av/E 104 St", "direction": "SW", "lat": 40.79307, "lon": -73.952095, "routes": "M106, M2, M3, M1, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.952095, 40.79307 ] } }, -{ "type": "Feature", "properties": { "id": 400111, "name": "5 Av/E 102 St", "direction": "SW", "lat": 40.79157, "lon": -73.95318, "routes": "M2, M1, M3, M4, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.95318, 40.79157 ] } }, -{ "type": "Feature", "properties": { "id": 400115, "name": "5 Av/E 94 St", "direction": "SW", "lat": 40.78656, "lon": -73.95686, "routes": "M1, M2, M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95686, 40.78656 ] } }, -{ "type": "Feature", "properties": { "id": 400116, "name": "5 Av/E 92 St", "direction": "SW", "lat": 40.78546, "lon": -73.95766, "routes": "M4, M2, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95766, 40.78546 ] } }, -{ "type": "Feature", "properties": { "id": 400117, "name": "5 Av/E 90 St", "direction": "SW", "lat": 40.783993, "lon": -73.95871, "routes": "M3, M2, M4, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.95871, 40.783993 ] } }, -{ "type": "Feature", "properties": { "id": 400118, "name": "5 Av/E 87 St", "direction": "SW", "lat": 40.78218, "lon": -73.96004, "routes": "M4, BXM3, BXM4, M2, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.96004, 40.78218 ] } }, -{ "type": "Feature", "properties": { "id": 400119, "name": "5 Av/E 84 St", "direction": "SW", "lat": 40.780434, "lon": -73.96132, "routes": "M4, M3, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.96132, 40.780434 ] } }, -{ "type": "Feature", "properties": { "id": 400120, "name": "5 Av/E 80 St", "direction": "SW", "lat": 40.777397, "lon": -73.963486, "routes": "M3, M1, BXM2, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.963486, 40.777397 ] } }, -{ "type": "Feature", "properties": { "id": 400121, "name": "5 Av/E 79 St", "direction": "SW", "lat": 40.776726, "lon": -73.963974, "routes": "M1, M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.963974, 40.776726 ] } }, -{ "type": "Feature", "properties": { "id": 400122, "name": "5 Av/E 77 St", "direction": "SW", "lat": 40.77561, "lon": -73.964836, "routes": "M4, M3, M1, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.964836, 40.77561 ] } }, -{ "type": "Feature", "properties": { "id": 400123, "name": "5 Av/E 75 St", "direction": "SW", "lat": 40.774357, "lon": -73.965775, "routes": "M2, M4, M3, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.965775, 40.774357 ] } }, -{ "type": "Feature", "properties": { "id": 400124, "name": "5 Av/E 72 St", "direction": "SW", "lat": 40.771797, "lon": -73.96763, "routes": "M3, M1, BXM10, BXM7, BXM8, BXM6, M72, M2, BXM9, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96763, 40.771797 ] } }, -{ "type": "Feature", "properties": { "id": 400125, "name": "5 Av/E 69 St", "direction": "SW", "lat": 40.77026, "lon": -73.96874, "routes": "M2, BXM4, M1, M4, M3, BXM11, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.96874, 40.77026 ] } }, -{ "type": "Feature", "properties": { "id": 400126, "name": "5 Av/E 65 St", "direction": "SW", "lat": 40.768234, "lon": -73.97024, "routes": "M1, M4, M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.97024, 40.768234 ] } }, -{ "type": "Feature", "properties": { "id": 400127, "name": "5 Av/E 63 St", "direction": "SW", "lat": 40.766853, "lon": -73.97118, "routes": "M3, M4, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.97118, 40.766853 ] } }, -{ "type": "Feature", "properties": { "id": 400128, "name": "5 Av/E 61 St", "direction": "SW", "lat": 40.766083, "lon": -73.97178, "routes": "M3, M2, BXM4, M4, BXM3, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.97178, 40.766083 ] } }, -{ "type": "Feature", "properties": { "id": 400134, "name": "5 Av/W 44 St", "direction": "SW", "lat": 40.7545, "lon": -73.980225, "routes": "X37, X28, X38, X68, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.980225, 40.7545 ] } }, -{ "type": "Feature", "properties": { "id": 400135, "name": "5 Av/W 42 St", "direction": "SW", "lat": 40.75314, "lon": -73.98122, "routes": "X68" }, "geometry": { "type": "Point", "coordinates": [ -73.98122, 40.75314 ] } }, -{ "type": "Feature", "properties": { "id": 400145, "name": "Park Av South/E 22 St", "direction": "SW", "lat": 40.739323, "lon": -73.987114, "routes": "SIM4C, SIM1C, SIM3C, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -73.987114, 40.739323 ] } }, -{ "type": "Feature", "properties": { "id": 400153, "name": "Broadway/Waverly Pl", "direction": "SW", "lat": 40.7294, "lon": -73.993515, "routes": "M1, SIM9, M55, SIM7, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -73.993515, 40.7294 ] } }, -{ "type": "Feature", "properties": { "id": 400154, "name": "Broadway/W 3 St", "direction": "SW", "lat": 40.72754, "lon": -73.9951, "routes": "M1, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.9951, 40.72754 ] } }, -{ "type": "Feature", "properties": { "id": 400155, "name": "Broadway/Bleecker St", "direction": "SW", "lat": 40.72626, "lon": -73.99617, "routes": "M55, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99617, 40.72626 ] } }, -{ "type": "Feature", "properties": { "id": 400157, "name": "Broadway/Spring St", "direction": "SW", "lat": 40.722843, "lon": -73.99907, "routes": "M1, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.99907, 40.722843 ] } }, -{ "type": "Feature", "properties": { "id": 400159, "name": "Broadway/Grand St", "direction": "SW", "lat": 40.72069, "lon": -74.00089, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00089, 40.72069 ] } }, -{ "type": "Feature", "properties": { "id": 400161, "name": "Broadway/Lispenard St", "direction": "SW", "lat": 40.718822, "lon": -74.00248, "routes": "BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.00248, 40.718822 ] } }, -{ "type": "Feature", "properties": { "id": 400163, "name": "Broadway/Thomas St", "direction": "SW", "lat": 40.71583, "lon": -74.00495, "routes": "SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.00495, 40.71583 ] } }, -{ "type": "Feature", "properties": { "id": 400166, "name": "Broadway/Park Pl", "direction": "SW", "lat": 40.71268, "lon": -74.00767, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00767, 40.71268 ] } }, -{ "type": "Feature", "properties": { "id": 400168, "name": "Broadway/Cortlandt St", "direction": "SW", "lat": 40.70997, "lon": -74.00994, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00994, 40.70997 ] } }, -{ "type": "Feature", "properties": { "id": 400170, "name": "Broadway/Rector St", "direction": "SW", "lat": 40.707554, "lon": -74.01196, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.01196, 40.707554 ] } }, -{ "type": "Feature", "properties": { "id": 400171, "name": "Broadway/Morris St", "direction": "SW", "lat": 40.705795, "lon": -74.01347, "routes": "BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.01347, 40.705795 ] } }, -{ "type": "Feature", "properties": { "id": 400176, "name": "E 9 St/Broadway", "direction": "NW", "lat": 40.731426, "lon": -73.99241, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.99241, 40.731426 ] } }, -{ "type": "Feature", "properties": { "id": 400190, "name": "Madison Av/E 35 St", "direction": "NE", "lat": 40.748314, "lon": -73.98245, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.98245, 40.748314 ] } }, -{ "type": "Feature", "properties": { "id": 400191, "name": "Madison Av/E 37 St", "direction": "NE", "lat": 40.74981, "lon": -73.981346, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.981346, 40.74981 ] } }, -{ "type": "Feature", "properties": { "id": 400224, "name": "Central Park North/Malcolm X Blvd", "direction": "W", "lat": 40.798393, "lon": -73.9526, "routes": "M3, M4, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.9526, 40.798393 ] } }, -{ "type": "Feature", "properties": { "id": 400225, "name": "Central Park North/Adam C Powell Blvd", "direction": "NW", "lat": 40.799355, "lon": -73.95497, "routes": "M2, M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95497, 40.799355 ] } }, -{ "type": "Feature", "properties": { "id": 400226, "name": "Adam C Powell Blvd/W 113 St", "direction": "NE", "lat": 40.801483, "lon": -73.95358, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.95358, 40.801483 ] } }, -{ "type": "Feature", "properties": { "id": 400227, "name": "Adam C Powell Blvd/W 137 St", "direction": "NE", "lat": 40.816788, "lon": -73.942406, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.942406, 40.816788 ] } }, -{ "type": "Feature", "properties": { "id": 400228, "name": "Adam C Powell Blvd/W 116 St", "direction": "NE", "lat": 40.803425, "lon": -73.952156, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.952156, 40.803425 ] } }, -{ "type": "Feature", "properties": { "id": 400230, "name": "Adam C Powell Blvd/W 121 St", "direction": "NE", "lat": 40.8066, "lon": -73.949844, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.949844, 40.8066 ] } }, -{ "type": "Feature", "properties": { "id": 400231, "name": "Adam C Powell Blvd/W 123 St", "direction": "NE", "lat": 40.80752, "lon": -73.94917, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94917, 40.80752 ] } }, -{ "type": "Feature", "properties": { "id": 400233, "name": "Adam C Powell Blvd/W 127 St", "direction": "NE", "lat": 40.810474, "lon": -73.94701, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94701, 40.810474 ] } }, -{ "type": "Feature", "properties": { "id": 400234, "name": "Adam C Powell Blvd/W 129 St", "direction": "NE", "lat": 40.811718, "lon": -73.946106, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.946106, 40.811718 ] } }, -{ "type": "Feature", "properties": { "id": 400235, "name": "Adam C Powell Blvd/W 131 St", "direction": "NE", "lat": 40.812958, "lon": -73.9452, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.9452, 40.812958 ] } }, -{ "type": "Feature", "properties": { "id": 400236, "name": "Adam C Powell Blvd/W 133 St", "direction": "NE", "lat": 40.81419, "lon": -73.9443, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.9443, 40.81419 ] } }, -{ "type": "Feature", "properties": { "id": 400237, "name": "Adam C Powell Blvd/W 135 St", "direction": "NE", "lat": 40.815548, "lon": -73.943306, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.943306, 40.815548 ] } }, -{ "type": "Feature", "properties": { "id": 400238, "name": "Adam C Powell Blvd/W 139 St", "direction": "NE", "lat": 40.818035, "lon": -73.94149, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94149, 40.818035 ] } }, -{ "type": "Feature", "properties": { "id": 400239, "name": "Adam C Powell Blvd/W 141 St", "direction": "NE", "lat": 40.819298, "lon": -73.940575, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.940575, 40.819298 ] } }, -{ "type": "Feature", "properties": { "id": 400240, "name": "Adam C Powell Blvd/W 143 St", "direction": "NE", "lat": 40.820515, "lon": -73.93968, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93968, 40.820515 ] } }, -{ "type": "Feature", "properties": { "id": 400241, "name": "Adam C Powell Blvd/W 145 St", "direction": "NE", "lat": 40.821877, "lon": -73.93869, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93869, 40.821877 ] } }, -{ "type": "Feature", "properties": { "id": 400242, "name": "Adam C Powell Blvd/W 147 St", "direction": "NE", "lat": 40.823105, "lon": -73.93779, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93779, 40.823105 ] } }, -{ "type": "Feature", "properties": { "id": 400248, "name": "Edgecombe Av/W 155 St", "direction": "N", "lat": 40.830902, "lon": -73.94028, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94028, 40.830902 ] } }, -{ "type": "Feature", "properties": { "id": 400249, "name": "Edgecombe Av/W 158 St", "direction": "NE", "lat": 40.832912, "lon": -73.93946, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93946, 40.832912 ] } }, -{ "type": "Feature", "properties": { "id": 400250, "name": "Edgecombe Av/W 160 St", "direction": "NE", "lat": 40.834045, "lon": -73.93813, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93813, 40.834045 ] } }, -{ "type": "Feature", "properties": { "id": 400251, "name": "Edgecombe Av/W 162 St", "direction": "NE", "lat": 40.835243, "lon": -73.93749, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93749, 40.835243 ] } }, -{ "type": "Feature", "properties": { "id": 400252, "name": "Edgecombe Av/W 164 St", "direction": "NE", "lat": 40.83666, "lon": -73.93685, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93685, 40.83666 ] } }, -{ "type": "Feature", "properties": { "id": 400258, "name": "Broadway/W 168 St", "direction": "SW", "lat": 40.84104, "lon": -73.93997, "routes": "M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93997, 40.84104 ] } }, -{ "type": "Feature", "properties": { "id": 400259, "name": "W 166 St/Saint Nicholas Av", "direction": "E", "lat": 40.839622, "lon": -73.940186, "routes": "M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.940186, 40.839622 ] } }, -{ "type": "Feature", "properties": { "id": 400263, "name": "Edgecombe Av/W 164 St", "direction": "SW", "lat": 40.83622, "lon": -73.93723, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93723, 40.83622 ] } }, -{ "type": "Feature", "properties": { "id": 400264, "name": "Edgecombe Av/W 162 St", "direction": "SW", "lat": 40.83501, "lon": -73.937775, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.937775, 40.83501 ] } }, -{ "type": "Feature", "properties": { "id": 400265, "name": "Edgecombe Av/W 160 St", "direction": "SW", "lat": 40.833652, "lon": -73.93882, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93882, 40.833652 ] } }, -{ "type": "Feature", "properties": { "id": 400266, "name": "Edgecombe Av/W 158 St", "direction": "SW", "lat": 40.83242, "lon": -73.9399, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.9399, 40.83242 ] } }, -{ "type": "Feature", "properties": { "id": 400267, "name": "Edgecombe Av/W 155 St", "direction": "S", "lat": 40.83062, "lon": -73.94044, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94044, 40.83062 ] } }, -{ "type": "Feature", "properties": { "id": 400268, "name": "W 155 St/Edgecombe Av", "direction": "SE", "lat": 40.83018, "lon": -73.93984, "routes": "BX6, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93984, 40.83018 ] } }, -{ "type": "Feature", "properties": { "id": 400271, "name": "Adam C Powell Blvd/W 154 St", "direction": "S", "lat": 40.827305, "lon": -73.93539, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93539, 40.827305 ] } }, -{ "type": "Feature", "properties": { "id": 400272, "name": "Adam C Powell Blvd/W 151 St", "direction": "SW", "lat": 40.826046, "lon": -73.93605, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93605, 40.826046 ] } }, -{ "type": "Feature", "properties": { "id": 400273, "name": "Adam C Powell Blvd/W 149 St", "direction": "SW", "lat": 40.824627, "lon": -73.9371, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.9371, 40.824627 ] } }, -{ "type": "Feature", "properties": { "id": 400274, "name": "Adam C Powell Blvd/W 148 St", "direction": "SW", "lat": 40.823364, "lon": -73.93803, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93803, 40.823364 ] } }, -{ "type": "Feature", "properties": { "id": 400275, "name": "Adam C Powell Blvd/W 145 St", "direction": "SW", "lat": 40.82139, "lon": -73.93947, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93947, 40.82139 ] } }, -{ "type": "Feature", "properties": { "id": 400276, "name": "Adam C Powell Blvd/W 142 St", "direction": "SW", "lat": 40.819534, "lon": -73.94082, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94082, 40.819534 ] } }, -{ "type": "Feature", "properties": { "id": 400277, "name": "Adam C Powell Blvd/W 140 St", "direction": "SW", "lat": 40.818302, "lon": -73.94172, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94172, 40.818302 ] } }, -{ "type": "Feature", "properties": { "id": 400278, "name": "Adam C Powell Blvd/W 138 St", "direction": "SW", "lat": 40.817028, "lon": -73.94266, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94266, 40.817028 ] } }, -{ "type": "Feature", "properties": { "id": 400279, "name": "Adam C Powell Blvd/W 135 St", "direction": "SW", "lat": 40.815277, "lon": -73.94391, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94391, 40.815277 ] } }, -{ "type": "Feature", "properties": { "id": 400280, "name": "Adam C Powell Blvd/W 132 St", "direction": "SW", "lat": 40.813156, "lon": -73.94546, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94546, 40.813156 ] } }, -{ "type": "Feature", "properties": { "id": 400281, "name": "Adam C Powell Blvd/W 130 St", "direction": "SW", "lat": 40.81204, "lon": -73.94626, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94626, 40.81204 ] } }, -{ "type": "Feature", "properties": { "id": 400282, "name": "Adam C Powell Blvd/W 128 St", "direction": "SW", "lat": 40.8107, "lon": -73.94726, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94726, 40.8107 ] } }, -{ "type": "Feature", "properties": { "id": 400283, "name": "Adam C Powell Blvd/W 125 St", "direction": "SW", "lat": 40.80918, "lon": -73.94838, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.94838, 40.80918 ] } }, -{ "type": "Feature", "properties": { "id": 400284, "name": "Adam C Powell Blvd/W 122 St", "direction": "SW", "lat": 40.806835, "lon": -73.950096, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.950096, 40.806835 ] } }, -{ "type": "Feature", "properties": { "id": 400285, "name": "Adam C Powell Blvd/W 120 St", "direction": "SW", "lat": 40.805603, "lon": -73.951, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.951, 40.805603 ] } }, -{ "type": "Feature", "properties": { "id": 400287, "name": "Adam C Powell Blvd/W 116 St", "direction": "SW", "lat": 40.803593, "lon": -73.95243, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.95243, 40.803593 ] } }, -{ "type": "Feature", "properties": { "id": 400288, "name": "Adam C Powell Blvd/W 114 St", "direction": "SW", "lat": 40.801716, "lon": -73.953835, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.953835, 40.801716 ] } }, -{ "type": "Feature", "properties": { "id": 400289, "name": "Adam C Powell Blvd/W 112 St", "direction": "SW", "lat": 40.80046, "lon": -73.95475, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.95475, 40.80046 ] } }, -{ "type": "Feature", "properties": { "id": 400290, "name": "Central Park North/Adam C Powell Blvd", "direction": "SE", "lat": 40.79917, "lon": -73.95486, "routes": "M2, M4, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95486, 40.79917 ] } }, -{ "type": "Feature", "properties": { "id": 400292, "name": "Central Park North/5 Av", "direction": "SW", "lat": 40.796597, "lon": -73.94952, "routes": "M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94952, 40.796597 ] } }, -{ "type": "Feature", "properties": { "id": 400316, "name": "5 Av/W 56 St", "direction": "SW", "lat": 40.761997, "lon": -73.97475, "routes": "X68, X64, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.97475, 40.761997 ] } }, -{ "type": "Feature", "properties": { "id": 400322, "name": "5 Av/W 39 St", "direction": "SW", "lat": 40.75131, "lon": -73.98259, "routes": "M5, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.98259, 40.75131 ] } }, -{ "type": "Feature", "properties": { "id": 400323, "name": "5 Av/W 36 St", "direction": "SW", "lat": 40.749477, "lon": -73.98392, "routes": "M5, M3, SIM31, M2, M55, SIM10, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.98392, 40.749477 ] } }, -{ "type": "Feature", "properties": { "id": 400324, "name": "5 Av/W 33 St", "direction": "SW", "lat": 40.747494, "lon": -73.98534, "routes": "M55, BXM3, M3, M5, X68, M2, M1, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.98534, 40.747494 ] } }, -{ "type": "Feature", "properties": { "id": 400325, "name": "5 Av/W 31 St", "direction": "SW", "lat": 40.74626, "lon": -73.98627, "routes": "M55, M3, M1, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.98627, 40.74626 ] } }, -{ "type": "Feature", "properties": { "id": 400326, "name": "5 Av/W 29 St", "direction": "SW", "lat": 40.74507, "lon": -73.98714, "routes": "M3, M2, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.98714, 40.74507 ] } }, -{ "type": "Feature", "properties": { "id": 400327, "name": "5 Av/W 26 St", "direction": "SW", "lat": 40.743134, "lon": -73.98849, "routes": "M3, X68, M55, X63, M1, M2, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.98849, 40.743134 ] } }, -{ "type": "Feature", "properties": { "id": 400329, "name": "5 Av/W 23 St", "direction": "SW", "lat": 40.74124, "lon": -73.99006, "routes": "M55, M2, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.99006, 40.74124 ] } }, -{ "type": "Feature", "properties": { "id": 400330, "name": "5 Av/W 20 St", "direction": "SW", "lat": 40.739407, "lon": -73.99126, "routes": "M3, M1, M55, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.99126, 40.739407 ] } }, -{ "type": "Feature", "properties": { "id": 400331, "name": "5 Av/W 17 St", "direction": "SW", "lat": 40.73767, "lon": -73.99252, "routes": "M3, M55, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99252, 40.73767 ] } }, -{ "type": "Feature", "properties": { "id": 400333, "name": "5 Av/W 12 St", "direction": "SW", "lat": 40.73447, "lon": -73.99485, "routes": "M55, M2, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.99485, 40.73447 ] } }, -{ "type": "Feature", "properties": { "id": 400334, "name": "5 Av/W 10 St", "direction": "SW", "lat": 40.733223, "lon": -73.99575, "routes": "M3, M55, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99575, 40.733223 ] } }, -{ "type": "Feature", "properties": { "id": 400335, "name": "E 8 St/5 Av", "direction": "SE", "lat": 40.731995, "lon": -73.995926, "routes": "M2, M3, M55, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.995926, 40.731995 ] } }, -{ "type": "Feature", "properties": { "id": 400336, "name": "E 8 St/University Pl", "direction": "SE", "lat": 40.73142, "lon": -73.9945, "routes": "M8, M55, M1, M2, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.9945, 40.73142 ] } }, -{ "type": "Feature", "properties": { "id": 400337, "name": "E 8 St/Mercer St", "direction": "SE", "lat": 40.730576, "lon": -73.99259, "routes": "M3, M2, M8, M1, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.99259, 40.730576 ] } }, -{ "type": "Feature", "properties": { "id": 400352, "name": "Madison Av/E 30 St", "direction": "NE", "lat": 40.74551, "lon": -73.98449, "routes": "M2, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.98449, 40.74551 ] } }, -{ "type": "Feature", "properties": { "id": 400353, "name": "Madison Av/E 32 St", "direction": "NE", "lat": 40.74676, "lon": -73.98363, "routes": "Q32, M4, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.98363, 40.74676 ] } }, -{ "type": "Feature", "properties": { "id": 400354, "name": "Madison Av/E 34 St", "direction": "NE", "lat": 40.74833, "lon": -73.98244, "routes": "SIM4C, SIM31, BM4, Q32, BM3, SIM11, SIM33C, BM5, BM2, BM1, M2, M3, M4, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98244, 40.74833 ] } }, -{ "type": "Feature", "properties": { "id": 400358, "name": "Madison Av/E 45 St", "direction": "NE", "lat": 40.755234, "lon": -73.9774, "routes": "Q32, M3, M2, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.9774, 40.755234 ] } }, -{ "type": "Feature", "properties": { "id": 400359, "name": "Madison Av/E 47 St", "direction": "NE", "lat": 40.756493, "lon": -73.97647, "routes": "SIM22, SIM11, SIM8X, SIM31, SIM6, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -73.97647, 40.756493 ] } }, -{ "type": "Feature", "properties": { "id": 400360, "name": "Madison Av/E 49 St", "direction": "NE", "lat": 40.757755, "lon": -73.97558, "routes": "M4, M3, M2, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.97558, 40.757755 ] } }, -{ "type": "Feature", "properties": { "id": 400361, "name": "Madison Av/E 52 St", "direction": "NE", "lat": 40.759636, "lon": -73.97418, "routes": "Q32, M3, M4, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.97418, 40.759636 ] } }, -{ "type": "Feature", "properties": { "id": 400362, "name": "Madison Av/E 55 St", "direction": "NE", "lat": 40.76114, "lon": -73.973145, "routes": "M2, SIM25, SIM30, M3, Q32, SIM26, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.973145, 40.76114 ] } }, -{ "type": "Feature", "properties": { "id": 400363, "name": "Madison Av/E 57 St", "direction": "NE", "lat": 40.76286, "lon": -73.97184, "routes": "Q32, M4, M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.97184, 40.76286 ] } }, -{ "type": "Feature", "properties": { "id": 400364, "name": "Madison Av/E 60 St", "direction": "NE", "lat": 40.76467, "lon": -73.970474, "routes": "M2, M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.970474, 40.76467 ] } }, -{ "type": "Feature", "properties": { "id": 400390, "name": "Cathedral Pkwy/Frederick Douglass Blvd", "direction": "W", "lat": 40.80078, "lon": -73.95849, "routes": "M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95849, 40.80078 ] } }, -{ "type": "Feature", "properties": { "id": 400394, "name": "Manhattan Av/W 116 St", "direction": "NE", "lat": 40.80488, "lon": -73.95684, "routes": "M116, M7, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95684, 40.80488 ] } }, -{ "type": "Feature", "properties": { "id": 400395, "name": "Manhattan Av/W 119 St", "direction": "NE", "lat": 40.80717, "lon": -73.95517, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95517, 40.80717 ] } }, -{ "type": "Feature", "properties": { "id": 400396, "name": "Manhattan Av/W 121 St", "direction": "NE", "lat": 40.80845, "lon": -73.95424, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95424, 40.80845 ] } }, -{ "type": "Feature", "properties": { "id": 400397, "name": "Saint Nicholas Av/W 125 St", "direction": "NE", "lat": 40.81105, "lon": -73.952324, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.952324, 40.81105 ] } }, -{ "type": "Feature", "properties": { "id": 400398, "name": "Saint Nicholas Av/W 127 St", "direction": "NE", "lat": 40.812206, "lon": -73.95116, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95116, 40.812206 ] } }, -{ "type": "Feature", "properties": { "id": 400399, "name": "Saint Nicholas Av/W 130 St", "direction": "NE", "lat": 40.814014, "lon": -73.94958, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94958, 40.814014 ] } }, -{ "type": "Feature", "properties": { "id": 400400, "name": "Saint Nicholas Av/W 133 St", "direction": "NE", "lat": 40.815563, "lon": -73.94865, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94865, 40.815563 ] } }, -{ "type": "Feature", "properties": { "id": 400401, "name": "Saint Nicholas Av/W 135 St", "direction": "NE", "lat": 40.81728, "lon": -73.94788, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94788, 40.81728 ] } }, -{ "type": "Feature", "properties": { "id": 400403, "name": "Saint Nicholas Av/W 139 St", "direction": "NE", "lat": 40.82015, "lon": -73.94648, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94648, 40.82015 ] } }, -{ "type": "Feature", "properties": { "id": 400404, "name": "Saint Nicholas Av/W 141 St", "direction": "NE", "lat": 40.821125, "lon": -73.94604, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94604, 40.821125 ] } }, -{ "type": "Feature", "properties": { "id": 400405, "name": "Saint Nicholas Av/W 144 St", "direction": "NE", "lat": 40.823277, "lon": -73.94504, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94504, 40.823277 ] } }, -{ "type": "Feature", "properties": { "id": 400406, "name": "Saint Nicholas Av/W 145 St", "direction": "NE", "lat": 40.824337, "lon": -73.944405, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.944405, 40.824337 ] } }, -{ "type": "Feature", "properties": { "id": 400408, "name": "Saint Nicholas Av/W 151 St", "direction": "N", "lat": 40.828323, "lon": -73.94227, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94227, 40.828323 ] } }, -{ "type": "Feature", "properties": { "id": 400409, "name": "Saint Nicholas Av/W 153 St", "direction": "N", "lat": 40.829643, "lon": -73.94174, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94174, 40.829643 ] } }, -{ "type": "Feature", "properties": { "id": 400414, "name": "Saint Nicholas Av/W 163 St", "direction": "N", "lat": 40.83703, "lon": -73.94008, "routes": "M3, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94008, 40.83703 ] } }, -{ "type": "Feature", "properties": { "id": 400418, "name": "Saint Nicholas Av/W 170 St", "direction": "NE", "lat": 40.84253, "lon": -73.93855, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93855, 40.84253 ] } }, -{ "type": "Feature", "properties": { "id": 400419, "name": "Saint Nicholas Av/W 173 St", "direction": "NE", "lat": 40.844406, "lon": -73.93719, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93719, 40.844406 ] } }, -{ "type": "Feature", "properties": { "id": 400422, "name": "Saint Nicholas Av/W 179 St", "direction": "NE", "lat": 40.848225, "lon": -73.934395, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.934395, 40.848225 ] } }, -{ "type": "Feature", "properties": { "id": 400423, "name": "Saint Nicholas Av/W 181 St", "direction": "NE", "lat": 40.84957, "lon": -73.93342, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93342, 40.84957 ] } }, -{ "type": "Feature", "properties": { "id": 400426, "name": "Saint Nicholas Av/W 187 St", "direction": "NE", "lat": 40.85336, "lon": -73.93064, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93064, 40.85336 ] } }, -{ "type": "Feature", "properties": { "id": 400449, "name": "Saint Nicholas Av/W 190 St", "direction": "SW", "lat": 40.854492, "lon": -73.93004, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93004, 40.854492 ] } }, -{ "type": "Feature", "properties": { "id": 400452, "name": "Saint Nicholas Av/W 184 St", "direction": "SW", "lat": 40.85079, "lon": -73.932785, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.932785, 40.85079 ] } }, -{ "type": "Feature", "properties": { "id": 400453, "name": "Saint Nicholas Av/W 181 St", "direction": "SW", "lat": 40.849014, "lon": -73.93409, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93409, 40.849014 ] } }, -{ "type": "Feature", "properties": { "id": 400454, "name": "Saint Nicholas Av/W 178 St", "direction": "SW", "lat": 40.84748, "lon": -73.935165, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.935165, 40.84748 ] } }, -{ "type": "Feature", "properties": { "id": 400457, "name": "Saint Nicholas Av/W 172 St", "direction": "SW", "lat": 40.843216, "lon": -73.93832, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93832, 40.843216 ] } }, -{ "type": "Feature", "properties": { "id": 400459, "name": "Broadway/W 168 St", "direction": "SW", "lat": 40.841183, "lon": -73.93978, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93978, 40.841183 ] } }, -{ "type": "Feature", "properties": { "id": 400461, "name": "Saint Nicholas Av/W 164 St", "direction": "S", "lat": 40.837543, "lon": -73.94012, "routes": "M100, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94012, 40.837543 ] } }, -{ "type": "Feature", "properties": { "id": 400462, "name": "Saint Nicholas Av/W 162 St", "direction": "S", "lat": 40.83629, "lon": -73.94004, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94004, 40.83629 ] } }, -{ "type": "Feature", "properties": { "id": 400466, "name": "Saint Nicholas Av/W 152 St", "direction": "S", "lat": 40.82886, "lon": -73.94226, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94226, 40.82886 ] } }, -{ "type": "Feature", "properties": { "id": 400467, "name": "Saint Nicholas Av/W 150 St", "direction": "S", "lat": 40.827465, "lon": -73.94283, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94283, 40.827465 ] } }, -{ "type": "Feature", "properties": { "id": 400468, "name": "Saint Nicholas Av/W 148 St", "direction": "SW", "lat": 40.82571, "lon": -73.94367, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94367, 40.82571 ] } }, -{ "type": "Feature", "properties": { "id": 400469, "name": "Saint Nicholas Av/W 145 St", "direction": "SW", "lat": 40.823765, "lon": -73.94503, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94503, 40.823765 ] } }, -{ "type": "Feature", "properties": { "id": 400470, "name": "Saint Nicholas Av/W 142 St", "direction": "SW", "lat": 40.822296, "lon": -73.945724, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.945724, 40.822296 ] } }, -{ "type": "Feature", "properties": { "id": 400471, "name": "Saint Nicholas Av/W 141 St", "direction": "SW", "lat": 40.82104, "lon": -73.946304, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.946304, 40.82104 ] } }, -{ "type": "Feature", "properties": { "id": 400472, "name": "Saint Nicholas Av/W 138 St", "direction": "SW", "lat": 40.818935, "lon": -73.94728, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94728, 40.818935 ] } }, -{ "type": "Feature", "properties": { "id": 400473, "name": "Saint Nicholas Av/W 135 St", "direction": "SW", "lat": 40.817177, "lon": -73.9481, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.9481, 40.817177 ] } }, -{ "type": "Feature", "properties": { "id": 400474, "name": "Saint Nicholas Av/W 133 St", "direction": "SW", "lat": 40.81537, "lon": -73.948944, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.948944, 40.81537 ] } }, -{ "type": "Feature", "properties": { "id": 400475, "name": "Saint Nicholas Av/W 130 St", "direction": "SW", "lat": 40.81347, "lon": -73.95023, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95023, 40.81347 ] } }, -{ "type": "Feature", "properties": { "id": 400476, "name": "Saint Nicholas Av/W 128 St", "direction": "SW", "lat": 40.812805, "lon": -73.95085, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95085, 40.812805 ] } }, -{ "type": "Feature", "properties": { "id": 400477, "name": "Saint Nicholas Av/W 125 St", "direction": "SW", "lat": 40.810493, "lon": -73.95293, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95293, 40.810493 ] } }, -{ "type": "Feature", "properties": { "id": 400479, "name": "Manhattan Av/W 122 St", "direction": "SW", "lat": 40.808628, "lon": -73.95429, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95429, 40.808628 ] } }, -{ "type": "Feature", "properties": { "id": 400482, "name": "Manhattan Av/W 116 St", "direction": "SW", "lat": 40.804752, "lon": -73.95712, "routes": "M7, M116, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95712, 40.804752 ] } }, -{ "type": "Feature", "properties": { "id": 400483, "name": "Manhattan Av/W 114 St", "direction": "SW", "lat": 40.80383, "lon": -73.95779, "routes": "M3, M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.95779, 40.80383 ] } }, -{ "type": "Feature", "properties": { "id": 400484, "name": "Manhattan Av/W 112 St", "direction": "SW", "lat": 40.802216, "lon": -73.95897, "routes": "M3, M116, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.95897, 40.802216 ] } }, -{ "type": "Feature", "properties": { "id": 400485, "name": "Cathedral Pkwy/Manhattan Av", "direction": "E", "lat": 40.80105, "lon": -73.95957, "routes": "M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95957, 40.80105 ] } }, -{ "type": "Feature", "properties": { "id": 400486, "name": "110 St/Central Park West", "direction": "E", "lat": 40.800358, "lon": -73.957726, "routes": "M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.957726, 40.800358 ] } }, -{ "type": "Feature", "properties": { "id": 400512, "name": "5 Av/W 59 St", "direction": "SW", "lat": 40.764427, "lon": -73.97297, "routes": "M4, M1, M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.97297, 40.764427 ] } }, -{ "type": "Feature", "properties": { "id": 400514, "name": "5 Av/W 52 St", "direction": "SW", "lat": 40.759926, "lon": -73.9763, "routes": "Q32, M5, M2, M4, M1, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.9763, 40.759926 ] } }, -{ "type": "Feature", "properties": { "id": 400515, "name": "5 Av/W 49 St", "direction": "SW", "lat": 40.75803, "lon": -73.97768, "routes": "M1, Q32, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.97768, 40.75803 ] } }, -{ "type": "Feature", "properties": { "id": 400516, "name": "5 Av/W 46 St", "direction": "SW", "lat": 40.756157, "lon": -73.97905, "routes": "M5, M1, M3, Q32, M4, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.97905, 40.756157 ] } }, -{ "type": "Feature", "properties": { "id": 400518, "name": "5 Av/W 41 St", "direction": "SW", "lat": 40.753193, "lon": -73.981155, "routes": "M5, M4, Q32, M55, M3, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.981155, 40.753193 ] } }, -{ "type": "Feature", "properties": { "id": 400519, "name": "5 Av/W 38 St", "direction": "SW", "lat": 40.750927, "lon": -73.98281, "routes": "M4, M55, M3, Q32, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.98281, 40.750927 ] } }, -{ "type": "Feature", "properties": { "id": 400552, "name": "W 32 St/7 Av", "direction": "SE", "lat": 40.74906, "lon": -73.990135, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.990135, 40.74906 ] } }, -{ "type": "Feature", "properties": { "id": 400555, "name": "E 32 St/5 Av", "direction": "SE", "lat": 40.746998, "lon": -73.9853, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.9853, 40.746998 ] } }, -{ "type": "Feature", "properties": { "id": 400561, "name": "Madison Av/E 42 St", "direction": "NE", "lat": 40.753338, "lon": -73.97876, "routes": "M3, M2, M4, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.97876, 40.753338 ] } }, -{ "type": "Feature", "properties": { "id": 400595, "name": "Cathedral Pkwy/Manhattan Av", "direction": "W", "lat": 40.80142, "lon": -73.95995, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95995, 40.80142 ] } }, -{ "type": "Feature", "properties": { "id": 400596, "name": "Cathedral Pkwy/Morningside Dr", "direction": "NW", "lat": 40.802017, "lon": -73.961395, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.961395, 40.802017 ] } }, -{ "type": "Feature", "properties": { "id": 400597, "name": "Cathedral Pkwy/Amsterdam Av", "direction": "NW", "lat": 40.80322, "lon": -73.96421, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96421, 40.80322 ] } }, -{ "type": "Feature", "properties": { "id": 400598, "name": "Cathedral Pkwy/Broadway", "direction": "NE", "lat": 40.804142, "lon": -73.96644, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96644, 40.804142 ] } }, -{ "type": "Feature", "properties": { "id": 400599, "name": "Riverside Dr/W 112 St", "direction": "NE", "lat": 40.806297, "lon": -73.96767, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96767, 40.806297 ] } }, -{ "type": "Feature", "properties": { "id": 400602, "name": "Riverside Dr/W 119 St", "direction": "NE", "lat": 40.810905, "lon": -73.96417, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96417, 40.810905 ] } }, -{ "type": "Feature", "properties": { "id": 400609, "name": "Broadway/W 137 St", "direction": "NE", "lat": 40.82124, "lon": -73.95402, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95402, 40.82124 ] } }, -{ "type": "Feature", "properties": { "id": 400610, "name": "Broadway/W 139 St", "direction": "NE", "lat": 40.822815, "lon": -73.95287, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.95287, 40.822815 ] } }, -{ "type": "Feature", "properties": { "id": 400611, "name": "Broadway/W 141 St", "direction": "NE", "lat": 40.82408, "lon": -73.95195, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95195, 40.82408 ] } }, -{ "type": "Feature", "properties": { "id": 400612, "name": "Broadway/W 143 St", "direction": "NE", "lat": 40.825314, "lon": -73.95105, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95105, 40.825314 ] } }, -{ "type": "Feature", "properties": { "id": 400613, "name": "Broadway/W 145 St", "direction": "NE", "lat": 40.82679, "lon": -73.94997, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94997, 40.82679 ] } }, -{ "type": "Feature", "properties": { "id": 400614, "name": "Broadway/W 147 St", "direction": "NE", "lat": 40.827915, "lon": -73.94914, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94914, 40.827915 ] } }, -{ "type": "Feature", "properties": { "id": 400615, "name": "Broadway/W 149 St", "direction": "NE", "lat": 40.829166, "lon": -73.948235, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.948235, 40.829166 ] } }, -{ "type": "Feature", "properties": { "id": 400616, "name": "Broadway/W 151 St", "direction": "NE", "lat": 40.830414, "lon": -73.94732, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94732, 40.830414 ] } }, -{ "type": "Feature", "properties": { "id": 400617, "name": "Broadway/W 153 St", "direction": "NE", "lat": 40.831696, "lon": -73.94639, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94639, 40.831696 ] } }, -{ "type": "Feature", "properties": { "id": 400618, "name": "Broadway/W 155 St", "direction": "NE", "lat": 40.832993, "lon": -73.94544, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94544, 40.832993 ] } }, -{ "type": "Feature", "properties": { "id": 400619, "name": "Broadway/W 157 St", "direction": "NE", "lat": 40.834255, "lon": -73.94452, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94452, 40.834255 ] } }, -{ "type": "Feature", "properties": { "id": 400620, "name": "Broadway/W 159 St", "direction": "NE", "lat": 40.835518, "lon": -73.9436, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.9436, 40.835518 ] } }, -{ "type": "Feature", "properties": { "id": 400621, "name": "Broadway/W 161 St", "direction": "NE", "lat": 40.83674, "lon": -73.9427, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.9427, 40.83674 ] } }, -{ "type": "Feature", "properties": { "id": 400622, "name": "Broadway/W 163 St", "direction": "NE", "lat": 40.838005, "lon": -73.94177, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94177, 40.838005 ] } }, -{ "type": "Feature", "properties": { "id": 400623, "name": "Broadway/W 165 St", "direction": "NE", "lat": 40.839363, "lon": -73.94079, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94079, 40.839363 ] } }, -{ "type": "Feature", "properties": { "id": 400624, "name": "Broadway/W 168 St", "direction": "NE", "lat": 40.84031, "lon": -73.94011, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94011, 40.84031 ] } }, -{ "type": "Feature", "properties": { "id": 400626, "name": "Fort Washington Av/W 171 St", "direction": "NE", "lat": 40.844315, "lon": -73.94087, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94087, 40.844315 ] } }, -{ "type": "Feature", "properties": { "id": 400627, "name": "Fort Washington Av/W 173 St", "direction": "N", "lat": 40.8457, "lon": -73.9403, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.9403, 40.8457 ] } }, -{ "type": "Feature", "properties": { "id": 400628, "name": "Fort Washington Av/W 175 St", "direction": "N", "lat": 40.846825, "lon": -73.93984, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93984, 40.846825 ] } }, -{ "type": "Feature", "properties": { "id": 400629, "name": "Fort Washington Av/W 177 St", "direction": "N", "lat": 40.847904, "lon": -73.93941, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93941, 40.847904 ] } }, -{ "type": "Feature", "properties": { "id": 400630, "name": "Fort Washington Av/W 179 St", "direction": "NE", "lat": 40.849228, "lon": -73.938934, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.938934, 40.849228 ] } }, -{ "type": "Feature", "properties": { "id": 400631, "name": "Fort Washington Av/W 181 St", "direction": "N", "lat": 40.8512, "lon": -73.93808, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93808, 40.8512 ] } }, -{ "type": "Feature", "properties": { "id": 400632, "name": "Fort Washington Av/W 183 St", "direction": "N", "lat": 40.852394, "lon": -73.93765, "routes": "M98, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93765, 40.852394 ] } }, -{ "type": "Feature", "properties": { "id": 400633, "name": "Fort Washington Av/W 185 St", "direction": "N", "lat": 40.853638, "lon": -73.93726, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93726, 40.853638 ] } }, -{ "type": "Feature", "properties": { "id": 400634, "name": "Fort Washington Av/W 187 St", "direction": "N", "lat": 40.85507, "lon": -73.93672, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93672, 40.85507 ] } }, -{ "type": "Feature", "properties": { "id": 400635, "name": "Fort Washington Av/W 190 St", "direction": "NE", "lat": 40.857334, "lon": -73.93533, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93533, 40.857334 ] } }, -{ "type": "Feature", "properties": { "id": 400636, "name": "Fort Washington Av/Cabrini Blvd", "direction": "NE", "lat": 40.858997, "lon": -73.93419, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93419, 40.858997 ] } }, -{ "type": "Feature", "properties": { "id": 400639, "name": "Fort Washington Av/Cabrini Blvd", "direction": "SE", "lat": 40.859207, "lon": -73.93428, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93428, 40.859207 ] } }, -{ "type": "Feature", "properties": { "id": 400640, "name": "Fort Washington Av/W 190 St", "direction": "SW", "lat": 40.856808, "lon": -73.93592, "routes": "M98, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93592, 40.856808 ] } }, -{ "type": "Feature", "properties": { "id": 400641, "name": "Fort Washington Av/W 187 St", "direction": "S", "lat": 40.85482, "lon": -73.937065, "routes": "M98, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.937065, 40.85482 ] } }, -{ "type": "Feature", "properties": { "id": 400642, "name": "Fort Washington Av/W 185 St", "direction": "S", "lat": 40.853134, "lon": -73.93759, "routes": "M98, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93759, 40.853134 ] } }, -{ "type": "Feature", "properties": { "id": 400643, "name": "Fort Washington Av/W 183 St", "direction": "S", "lat": 40.851887, "lon": -73.93799, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93799, 40.851887 ] } }, -{ "type": "Feature", "properties": { "id": 400644, "name": "Fort Washington Av/W 181 St", "direction": "S", "lat": 40.850636, "lon": -73.938484, "routes": "M4, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.938484, 40.850636 ] } }, -{ "type": "Feature", "properties": { "id": 400645, "name": "Fort Washington Av/W 179 St", "direction": "SW", "lat": 40.849216, "lon": -73.939026, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.939026, 40.849216 ] } }, -{ "type": "Feature", "properties": { "id": 400646, "name": "Fort Washington Av/W 177 St", "direction": "S", "lat": 40.847584, "lon": -73.93972, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93972, 40.847584 ] } }, -{ "type": "Feature", "properties": { "id": 400647, "name": "Fort Washington Av/W 174 St", "direction": "S", "lat": 40.845856, "lon": -73.94041, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94041, 40.845856 ] } }, -{ "type": "Feature", "properties": { "id": 400648, "name": "Fort Washington Av/W 172 St", "direction": "S", "lat": 40.844437, "lon": -73.94098, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94098, 40.844437 ] } }, -{ "type": "Feature", "properties": { "id": 400649, "name": "Fort Washington Av/W 170 St", "direction": "SW", "lat": 40.843204, "lon": -73.94191, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94191, 40.843204 ] } }, -{ "type": "Feature", "properties": { "id": 400655, "name": "Broadway/W 157 St", "direction": "SW", "lat": 40.83423, "lon": -73.94492, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94492, 40.83423 ] } }, -{ "type": "Feature", "properties": { "id": 400656, "name": "Broadway/W 155 St", "direction": "SW", "lat": 40.83251, "lon": -73.94623, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94623, 40.83251 ] } }, -{ "type": "Feature", "properties": { "id": 400657, "name": "Broadway/W 152 St", "direction": "SW", "lat": 40.83067, "lon": -73.94758, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94758, 40.83067 ] } }, -{ "type": "Feature", "properties": { "id": 400658, "name": "Broadway/W 150 St", "direction": "SW", "lat": 40.8294, "lon": -73.948494, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.948494, 40.8294 ] } }, -{ "type": "Feature", "properties": { "id": 400659, "name": "Broadway/W 147 St", "direction": "SW", "lat": 40.827515, "lon": -73.94988, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94988, 40.827515 ] } }, -{ "type": "Feature", "properties": { "id": 400661, "name": "Broadway/W 142 St", "direction": "SW", "lat": 40.824314, "lon": -73.95221, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95221, 40.824314 ] } }, -{ "type": "Feature", "properties": { "id": 400662, "name": "Broadway/W 140 St", "direction": "SW", "lat": 40.823074, "lon": -73.953125, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.953125, 40.823074 ] } }, -{ "type": "Feature", "properties": { "id": 400663, "name": "Broadway/W 138 St", "direction": "SW", "lat": 40.821842, "lon": -73.954025, "routes": "M4, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.954025, 40.821842 ] } }, -{ "type": "Feature", "properties": { "id": 400676, "name": "Cathedral Pkwy/Broadway", "direction": "SE", "lat": 40.803864, "lon": -73.9662, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.9662, 40.803864 ] } }, -{ "type": "Feature", "properties": { "id": 400677, "name": "Cathedral Pkwy/Amsterdam Av", "direction": "SE", "lat": 40.802723, "lon": -73.96351, "routes": "M11, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96351, 40.802723 ] } }, -{ "type": "Feature", "properties": { "id": 400678, "name": "Cathedral Pkwy/Columbus Av", "direction": "SE", "lat": 40.80151, "lon": -73.96079, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96079, 40.80151 ] } }, -{ "type": "Feature", "properties": { "id": 400715, "name": "W 34 St/6 Av", "direction": "W", "lat": 40.74977, "lon": -73.98753, "routes": "SIM23, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.98753, 40.74977 ] } }, -{ "type": "Feature", "properties": { "id": 400716, "name": "W 34 St/Broadway", "direction": "NW", "lat": 40.74998, "lon": -73.98805, "routes": "M34+, M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98805, 40.74998 ] } }, -{ "type": "Feature", "properties": { "id": 400719, "name": "West Houston St/Sullivan St", "direction": "NW", "lat": 40.727753, "lon": -74.00152, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -74.00152, 40.727753 ] } }, -{ "type": "Feature", "properties": { "id": 400720, "name": "West Houston St/Broadway", "direction": "W", "lat": 40.725513, "lon": -73.99693, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99693, 40.725513 ] } }, -{ "type": "Feature", "properties": { "id": 400722, "name": "Avenue Of The Americas/W 3 St", "direction": "NE", "lat": 40.73088, "lon": -74.00139, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00139, 40.73088 ] } }, -{ "type": "Feature", "properties": { "id": 400723, "name": "Avenue Of The Americas/Waverly Pl", "direction": "NE", "lat": 40.733006, "lon": -73.99984, "routes": "SIM4C, M55, SIM33C, SIM7, SIM9, SIM33, SIM1C, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -73.99984, 40.733006 ] } }, -{ "type": "Feature", "properties": { "id": 400724, "name": "Avenue Of The Americas/W 10 St", "direction": "NE", "lat": 40.734863, "lon": -73.99847, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -73.99847, 40.734863 ] } }, -{ "type": "Feature", "properties": { "id": 400725, "name": "Avenue Of The Americas/W 12 St", "direction": "NE", "lat": 40.736156, "lon": -73.997536, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -73.997536, 40.736156 ] } }, -{ "type": "Feature", "properties": { "id": 400726, "name": "Avenue Of The Americas/W 15 St", "direction": "NE", "lat": 40.738155, "lon": -73.99619, "routes": "SIM33C, SIM4C, SIM1C, M55, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -73.99619, 40.738155 ] } }, -{ "type": "Feature", "properties": { "id": 400731, "name": "Avenue Of The Americas/W 27 St", "direction": "NE", "lat": 40.74528, "lon": -73.99093, "routes": "M7, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.99093, 40.74528 ] } }, -{ "type": "Feature", "properties": { "id": 400732, "name": "Avenue Of The Americas/W 29 St", "direction": "NE", "lat": 40.746544, "lon": -73.9901, "routes": "M55, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.9901, 40.746544 ] } }, -{ "type": "Feature", "properties": { "id": 400742, "name": "6 Av/W 55 St", "direction": "NE", "lat": 40.762966, "lon": -73.97808, "routes": "QM1, QM1, QM6, QM6, QM5, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.97808, 40.762966 ] } }, -{ "type": "Feature", "properties": { "id": 400744, "name": "W 57 St/7 Av", "direction": "NW", "lat": 40.765736, "lon": -73.9804, "routes": "M57, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.9804, 40.765736 ] } }, -{ "type": "Feature", "properties": { "id": 400745, "name": "W 57 St/Broadway", "direction": "W", "lat": 40.766518, "lon": -73.98225, "routes": "M57, M12, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.98225, 40.766518 ] } }, -{ "type": "Feature", "properties": { "id": 400747, "name": "Broadway/W 63 St", "direction": "N", "lat": 40.77186, "lon": -73.98199, "routes": "BXM2, M7, M104, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98199, 40.77186 ] } }, -{ "type": "Feature", "properties": { "id": 400750, "name": "Broadway/W 69 St", "direction": "N", "lat": 40.776684, "lon": -73.98192, "routes": "M5, M7, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98192, 40.776684 ] } }, -{ "type": "Feature", "properties": { "id": 400751, "name": "W 72 St/Broadway", "direction": "NW", "lat": 40.779125, "lon": -73.982765, "routes": "M72, M5, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.982765, 40.779125 ] } }, -{ "type": "Feature", "properties": { "id": 400752, "name": "W 72 St/West End Av", "direction": "NW", "lat": 40.780125, "lon": -73.98497, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98497, 40.780125 ] } }, -{ "type": "Feature", "properties": { "id": 400755, "name": "Riverside Dr/W 77 St", "direction": "NE", "lat": 40.78399, "lon": -73.98357, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98357, 40.78399 ] } }, -{ "type": "Feature", "properties": { "id": 400756, "name": "Riverside Dr/W 79 St", "direction": "NE", "lat": 40.785213, "lon": -73.982285, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.982285, 40.785213 ] } }, -{ "type": "Feature", "properties": { "id": 400759, "name": "Riverside Dr/W 85 St", "direction": "NE", "lat": 40.78929, "lon": -73.98076, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98076, 40.78929 ] } }, -{ "type": "Feature", "properties": { "id": 400760, "name": "Riverside Dr/W 87 St", "direction": "NE", "lat": 40.790737, "lon": -73.97967, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97967, 40.790737 ] } }, -{ "type": "Feature", "properties": { "id": 400761, "name": "Riverside Dr/W 89 St", "direction": "NE", "lat": 40.79185, "lon": -73.97823, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97823, 40.79185 ] } }, -{ "type": "Feature", "properties": { "id": 400762, "name": "Riverside Dr/W 91 St", "direction": "NE", "lat": 40.792603, "lon": -73.97707, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97707, 40.792603 ] } }, -{ "type": "Feature", "properties": { "id": 400764, "name": "Riverside Dr/W 97 St", "direction": "NE", "lat": 40.79649, "lon": -73.974304, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.974304, 40.79649 ] } }, -{ "type": "Feature", "properties": { "id": 400768, "name": "Riverside Dr/W 106 St", "direction": "NE", "lat": 40.802242, "lon": -73.97022, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97022, 40.802242 ] } }, -{ "type": "Feature", "properties": { "id": 400769, "name": "Riverside Dr/W 108 St", "direction": "NE", "lat": 40.803673, "lon": -73.96915, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96915, 40.803673 ] } }, -{ "type": "Feature", "properties": { "id": 400771, "name": "Riverside Dr/W 114 St", "direction": "NE", "lat": 40.807865, "lon": -73.96663, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96663, 40.807865 ] } }, -{ "type": "Feature", "properties": { "id": 400772, "name": "Riverside Dr/W 116 St", "direction": "NE", "lat": 40.80912, "lon": -73.9655, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.9655, 40.80912 ] } }, -{ "type": "Feature", "properties": { "id": 400796, "name": "Broadway/W 171 St", "direction": "N", "lat": 40.84351, "lon": -73.939, "routes": "M100, M5, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.939, 40.84351 ] } }, -{ "type": "Feature", "properties": { "id": 400798, "name": "Broadway/W 175 St", "direction": "N", "lat": 40.846485, "lon": -73.93829, "routes": "M5, M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.93829, 40.846485 ] } }, -{ "type": "Feature", "properties": { "id": 400799, "name": "W 178 St/Broadway", "direction": "E", "lat": 40.84803, "lon": -73.93699, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93699, 40.84803 ] } }, -{ "type": "Feature", "properties": { "id": 400808, "name": "Broadway/W 178 St", "direction": "SW", "lat": 40.848427, "lon": -73.9377, "routes": "M5, BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.9377, 40.848427 ] } }, -{ "type": "Feature", "properties": { "id": 400809, "name": "Broadway/W 176 St", "direction": "S", "lat": 40.846657, "lon": -73.93843, "routes": "BX7, M100, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.93843, 40.846657 ] } }, -{ "type": "Feature", "properties": { "id": 400810, "name": "Broadway/W 174 St", "direction": "S", "lat": 40.845165, "lon": -73.93883, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.93883, 40.845165 ] } }, -{ "type": "Feature", "properties": { "id": 400811, "name": "Broadway/W 172 St", "direction": "S", "lat": 40.843647, "lon": -73.93917, "routes": "BX7, M5, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93917, 40.843647 ] } }, -{ "type": "Feature", "properties": { "id": 400812, "name": "Broadway/W 170 St", "direction": "S", "lat": 40.842567, "lon": -73.93931, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.93931, 40.842567 ] } }, -{ "type": "Feature", "properties": { "id": 400814, "name": "Broadway/W 164 St", "direction": "SW", "lat": 40.838196, "lon": -73.94207, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94207, 40.838196 ] } }, -{ "type": "Feature", "properties": { "id": 400815, "name": "Broadway/W 162 St", "direction": "SW", "lat": 40.836998, "lon": -73.94295, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94295, 40.836998 ] } }, -{ "type": "Feature", "properties": { "id": 400816, "name": "Broadway/W 160 St", "direction": "SW", "lat": 40.835735, "lon": -73.94387, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.94387, 40.835735 ] } }, -{ "type": "Feature", "properties": { "id": 400832, "name": "Riverside Dr/W 119 St", "direction": "SW", "lat": 40.810963, "lon": -73.96438, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96438, 40.810963 ] } }, -{ "type": "Feature", "properties": { "id": 400834, "name": "Riverside Dr/W 116 St", "direction": "SW", "lat": 40.808777, "lon": -73.966, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.966, 40.808777 ] } }, -{ "type": "Feature", "properties": { "id": 400835, "name": "Riverside Dr/W 114 St", "direction": "SW", "lat": 40.807537, "lon": -73.967155, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.967155, 40.807537 ] } }, -{ "type": "Feature", "properties": { "id": 400836, "name": "Riverside Dr/W 112 St", "direction": "SW", "lat": 40.806236, "lon": -73.96795, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96795, 40.806236 ] } }, -{ "type": "Feature", "properties": { "id": 400837, "name": "Riverside Dr/W 108 St", "direction": "SW", "lat": 40.80358, "lon": -73.96952, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96952, 40.80358 ] } }, -{ "type": "Feature", "properties": { "id": 400838, "name": "Riverside Dr/W 106 St", "direction": "SW", "lat": 40.802322, "lon": -73.970474, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.970474, 40.802322 ] } }, -{ "type": "Feature", "properties": { "id": 400840, "name": "Riverside Dr/W 100 St", "direction": "SW", "lat": 40.798412, "lon": -73.973915, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.973915, 40.798412 ] } }, -{ "type": "Feature", "properties": { "id": 400841, "name": "Riverside Dr/W 97 St", "direction": "SW", "lat": 40.796513, "lon": -73.9744, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.9744, 40.796513 ] } }, -{ "type": "Feature", "properties": { "id": 400843, "name": "Riverside Dr/W 91 St", "direction": "SW", "lat": 40.792862, "lon": -73.977066, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.977066, 40.792862 ] } }, -{ "type": "Feature", "properties": { "id": 400846, "name": "Riverside Dr/W 86 St", "direction": "SW", "lat": 40.78974, "lon": -73.9806, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.9806, 40.78974 ] } }, -{ "type": "Feature", "properties": { "id": 400847, "name": "Riverside Dr/W 84 St", "direction": "S", "lat": 40.788277, "lon": -73.98118, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98118, 40.788277 ] } }, -{ "type": "Feature", "properties": { "id": 400848, "name": "Riverside Dr/W 82 St", "direction": "S", "lat": 40.78669, "lon": -73.98134, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98134, 40.78669 ] } }, -{ "type": "Feature", "properties": { "id": 400849, "name": "Riverside Dr/W 80 St", "direction": "SW", "lat": 40.78545, "lon": -73.98227, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98227, 40.78545 ] } }, -{ "type": "Feature", "properties": { "id": 400851, "name": "Riverside Dr/W 76 St", "direction": "SW", "lat": 40.783054, "lon": -73.98458, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98458, 40.783054 ] } }, -{ "type": "Feature", "properties": { "id": 400852, "name": "Riverside Dr/W 73 St", "direction": "S", "lat": 40.78141, "lon": -73.98532, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98532, 40.78141 ] } }, -{ "type": "Feature", "properties": { "id": 400853, "name": "W 72 St/West End Av", "direction": "SE", "lat": 40.779552, "lon": -73.984116, "routes": "M57, M72, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.984116, 40.779552 ] } }, -{ "type": "Feature", "properties": { "id": 400854, "name": "W 72 St/Broadway", "direction": "SE", "lat": 40.778767, "lon": -73.982254, "routes": "M5, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.982254, 40.778767 ] } }, -{ "type": "Feature", "properties": { "id": 400856, "name": "Broadway/W 68 St", "direction": "S", "lat": 40.775414, "lon": -73.982414, "routes": "M104, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.982414, 40.775414 ] } }, -{ "type": "Feature", "properties": { "id": 400858, "name": "Broadway/W 64 St", "direction": "S", "lat": 40.771797, "lon": -73.98236, "routes": "M5, M20, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98236, 40.771797 ] } }, -{ "type": "Feature", "properties": { "id": 400860, "name": "Broadway/W 61 St", "direction": "S", "lat": 40.76947, "lon": -73.98232, "routes": "M5, M10, M104, M20, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98232, 40.76947 ] } }, -{ "type": "Feature", "properties": { "id": 400861, "name": "Columbus Circle/8 Av", "direction": "SE", "lat": 40.767677, "lon": -73.98226, "routes": "M104, M10, M20, M5, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98226, 40.767677 ] } }, -{ "type": "Feature", "properties": { "id": 400892, "name": "W 157 St/Edward M Morgan Pl", "direction": "NW", "lat": 40.834496, "lon": -73.94579, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.94579, 40.834496 ] } }, -{ "type": "Feature", "properties": { "id": 400903, "name": "State St/Bridge St", "direction": "N", "lat": 40.70421, "lon": -74.01419, "routes": "M20, SIM15, M55, SIM5, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.01419, 40.70421 ] } }, -{ "type": "Feature", "properties": { "id": 400910, "name": "Church St/Chambers St", "direction": "NE", "lat": 40.714954, "lon": -74.007835, "routes": "BXM18, M55" }, "geometry": { "type": "Point", "coordinates": [ -74.007835, 40.714954 ] } }, -{ "type": "Feature", "properties": { "id": 400913, "name": "Avenue Of The Americas/White St", "direction": "N", "lat": 40.71932, "lon": -74.00505, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00505, 40.71932 ] } }, -{ "type": "Feature", "properties": { "id": 400916, "name": "6 Av/Broome St", "direction": "NE", "lat": 40.72423, "lon": -74.004456, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.004456, 40.72423 ] } }, -{ "type": "Feature", "properties": { "id": 400917, "name": "6 Av/Spring St", "direction": "N", "lat": 40.72573, "lon": -74.00387, "routes": "X28, M55, M21, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.00387, 40.72573 ] } }, -{ "type": "Feature", "properties": { "id": 400919, "name": "6 Av/West Houston St", "direction": "NE", "lat": 40.7287, "lon": -74.00254, "routes": "M55, SIM34, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.00254, 40.7287 ] } }, -{ "type": "Feature", "properties": { "id": 400929, "name": "Avenue Of The Americas/W 23 St", "direction": "NE", "lat": 40.743027, "lon": -73.992645, "routes": "M55, SIM1C, SIM3, SIM3C, M7, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -73.992645, 40.743027 ] } }, -{ "type": "Feature", "properties": { "id": 400933, "name": "Avenue Of The Americas/W 34 St", "direction": "NE", "lat": 40.74986, "lon": -73.98767, "routes": "SIM3C, SIM10, SIM1C, M7, SIM3, M5, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.98767, 40.74986 ] } }, -{ "type": "Feature", "properties": { "id": 400936, "name": "Avenue Of The Americas/W 42 St", "direction": "NE", "lat": 40.755108, "lon": -73.98379, "routes": "M55, M5, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98379, 40.755108 ] } }, -{ "type": "Feature", "properties": { "id": 400938, "name": "Avenue Of The Americas/W 47 St", "direction": "NE", "lat": 40.75829, "lon": -73.98147, "routes": "M7, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98147, 40.75829 ] } }, -{ "type": "Feature", "properties": { "id": 400940, "name": "Avenue Of The Americas/W 51 St", "direction": "NE", "lat": 40.76075, "lon": -73.97967, "routes": "M7, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97967, 40.76075 ] } }, -{ "type": "Feature", "properties": { "id": 400941, "name": "Avenue Of The Americas/W 54 St", "direction": "NE", "lat": 40.762615, "lon": -73.9783, "routes": "M7, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.9783, 40.762615 ] } }, -{ "type": "Feature", "properties": { "id": 400943, "name": "Central Park South/6 Av", "direction": "NW", "lat": 40.76613, "lon": -73.97702, "routes": "M5, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.97702, 40.76613 ] } }, -{ "type": "Feature", "properties": { "id": 400948, "name": "7 Av/W 58 St", "direction": "SW", "lat": 40.766136, "lon": -73.97969, "routes": "M20, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97969, 40.766136 ] } }, -{ "type": "Feature", "properties": { "id": 400950, "name": "7 Av/W 54 St", "direction": "SW", "lat": 40.763718, "lon": -73.98141, "routes": "M7, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98141, 40.763718 ] } }, -{ "type": "Feature", "properties": { "id": 400951, "name": "7 Av/W 53 St", "direction": "SW", "lat": 40.762794, "lon": -73.98213, "routes": "M104, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.98213, 40.762794 ] } }, -{ "type": "Feature", "properties": { "id": 400988, "name": "Broadway/Thames St", "direction": "SW", "lat": 40.708645, "lon": -74.01106, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.01106, 40.708645 ] } }, -{ "type": "Feature", "properties": { "id": 401014, "name": "Central Park South/7 Av", "direction": "NW", "lat": 40.7672, "lon": -73.97958, "routes": "M7, M5, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.97958, 40.7672 ] } }, -{ "type": "Feature", "properties": { "id": 401015, "name": "Central Park South/Columbus Circle", "direction": "NW", "lat": 40.767838, "lon": -73.98124, "routes": "M7, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98124, 40.767838 ] } }, -{ "type": "Feature", "properties": { "id": 401016, "name": "Broadway/W 61 St", "direction": "N", "lat": 40.769516, "lon": -73.98188, "routes": "M5, M104, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98188, 40.769516 ] } }, -{ "type": "Feature", "properties": { "id": 401021, "name": "Amsterdam Av/W 72 St", "direction": "NE", "lat": 40.778923, "lon": -73.98127, "routes": "BXM2, M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98127, 40.778923 ] } }, -{ "type": "Feature", "properties": { "id": 401022, "name": "Amsterdam Av/W 75 St", "direction": "NE", "lat": 40.780224, "lon": -73.980316, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.980316, 40.780224 ] } }, -{ "type": "Feature", "properties": { "id": 401023, "name": "Amsterdam Av/W 77 St", "direction": "NE", "lat": 40.782055, "lon": -73.97899, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.97899, 40.782055 ] } }, -{ "type": "Feature", "properties": { "id": 401024, "name": "Amsterdam Av/W 79 St", "direction": "NE", "lat": 40.78328, "lon": -73.97809, "routes": "M11, M7, M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.97809, 40.78328 ] } }, -{ "type": "Feature", "properties": { "id": 401025, "name": "Amsterdam Av/W 81 St", "direction": "NE", "lat": 40.784687, "lon": -73.97707, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.97707, 40.784687 ] } }, -{ "type": "Feature", "properties": { "id": 401026, "name": "Amsterdam Av/W 83 St", "direction": "NE", "lat": 40.785954, "lon": -73.97615, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.97615, 40.785954 ] } }, -{ "type": "Feature", "properties": { "id": 401027, "name": "Amsterdam Av/W 86 St", "direction": "NE", "lat": 40.787952, "lon": -73.97469, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.97469, 40.787952 ] } }, -{ "type": "Feature", "properties": { "id": 401029, "name": "Amsterdam Av/W 91 St", "direction": "NE", "lat": 40.791084, "lon": -73.972404, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.972404, 40.791084 ] } }, -{ "type": "Feature", "properties": { "id": 401030, "name": "Amsterdam Av/W 93 St", "direction": "NE", "lat": 40.792343, "lon": -73.97148, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.97148, 40.792343 ] } }, -{ "type": "Feature", "properties": { "id": 401031, "name": "Amsterdam Av/W 96 St", "direction": "NE", "lat": 40.794323, "lon": -73.97004, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.97004, 40.794323 ] } }, -{ "type": "Feature", "properties": { "id": 401032, "name": "Amsterdam Av/W 98 St", "direction": "NE", "lat": 40.7956, "lon": -73.96911, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96911, 40.7956 ] } }, -{ "type": "Feature", "properties": { "id": 401033, "name": "Amsterdam Av/W 100 St", "direction": "NE", "lat": 40.796867, "lon": -73.96818, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96818, 40.796867 ] } }, -{ "type": "Feature", "properties": { "id": 401034, "name": "Amsterdam Av/W 102 St", "direction": "NE", "lat": 40.798004, "lon": -73.9674, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.9674, 40.798004 ] } }, -{ "type": "Feature", "properties": { "id": 401035, "name": "Amsterdam Av/W 104 St", "direction": "NE", "lat": 40.799393, "lon": -73.96634, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96634, 40.799393 ] } }, -{ "type": "Feature", "properties": { "id": 401036, "name": "W 106 St/Amsterdam Av", "direction": "SE", "lat": 40.800182, "lon": -73.96536, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.96536, 40.800182 ] } }, -{ "type": "Feature", "properties": { "id": 401037, "name": "W 106 St/Columbus Av", "direction": "SE", "lat": 40.79899, "lon": -73.962524, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.962524, 40.79899 ] } }, -{ "type": "Feature", "properties": { "id": 401038, "name": "Manhattan Av/W 106 St", "direction": "NE", "lat": 40.79894, "lon": -73.96118, "routes": "M116, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.96118, 40.79894 ] } }, -{ "type": "Feature", "properties": { "id": 401039, "name": "Manhattan Av/W 109 St", "direction": "NE", "lat": 40.800472, "lon": -73.96005, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.96005, 40.800472 ] } }, -{ "type": "Feature", "properties": { "id": 401040, "name": "Manhattan Av/Cathedral Pkwy", "direction": "NE", "lat": 40.80148, "lon": -73.95931, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95931, 40.80148 ] } }, -{ "type": "Feature", "properties": { "id": 401044, "name": "W 116 St/Frederick Douglass Blvd", "direction": "SE", "lat": 40.80423, "lon": -73.9552, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.9552, 40.80423 ] } }, -{ "type": "Feature", "properties": { "id": 401045, "name": "W 116 St/Adam C Powell Blvd", "direction": "SE", "lat": 40.80291, "lon": -73.952034, "routes": "M116, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.952034, 40.80291 ] } }, -{ "type": "Feature", "properties": { "id": 401047, "name": "Malcolm X Blvd/W 119 St", "direction": "NE", "lat": 40.804173, "lon": -73.947945, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.947945, 40.804173 ] } }, -{ "type": "Feature", "properties": { "id": 401051, "name": "Malcolm X Blvd/W 127 St", "direction": "NE", "lat": 40.809383, "lon": -73.94414, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94414, 40.809383 ] } }, -{ "type": "Feature", "properties": { "id": 401052, "name": "Malcolm X Blvd/W 129 St", "direction": "NE", "lat": 40.810635, "lon": -73.94322, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94322, 40.810635 ] } }, -{ "type": "Feature", "properties": { "id": 401055, "name": "Lenox Av/W 135 St", "direction": "NE", "lat": 40.81393, "lon": -73.940834, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.940834, 40.81393 ] } }, -{ "type": "Feature", "properties": { "id": 401056, "name": "Malcolm X Blvd/W 137 St", "direction": "NE", "lat": 40.81575, "lon": -73.93948, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.93948, 40.81575 ] } }, -{ "type": "Feature", "properties": { "id": 401069, "name": "Malcolm X Blvd/W 135 St", "direction": "SW", "lat": 40.81371, "lon": -73.94132, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94132, 40.81371 ] } }, -{ "type": "Feature", "properties": { "id": 401070, "name": "Malcolm X Blvd/W 132 St", "direction": "SW", "lat": 40.811954, "lon": -73.942604, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.942604, 40.811954 ] } }, -{ "type": "Feature", "properties": { "id": 401074, "name": "Malcolm X Blvd/W 122 St", "direction": "SW", "lat": 40.805595, "lon": -73.94725, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94725, 40.805595 ] } }, -{ "type": "Feature", "properties": { "id": 401078, "name": "W 116 St/Saint Nicholas Av", "direction": "NW", "lat": 40.803562, "lon": -73.953094, "routes": "M116, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.953094, 40.803562 ] } }, -{ "type": "Feature", "properties": { "id": 401079, "name": "W 116 St/Frederick Douglass Blvd", "direction": "NW", "lat": 40.80442, "lon": -73.95514, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.95514, 40.80442 ] } }, -{ "type": "Feature", "properties": { "id": 401084, "name": "Manhattan Av/W 108 St", "direction": "SW", "lat": 40.799755, "lon": -73.96076, "routes": "M116, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.96076, 40.799755 ] } }, -{ "type": "Feature", "properties": { "id": 401085, "name": "Manhattan Av/W 106 St", "direction": "SW", "lat": 40.7988, "lon": -73.96146, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.96146, 40.7988 ] } }, -{ "type": "Feature", "properties": { "id": 401086, "name": "Columbus Av/W 106 St", "direction": "SW", "lat": 40.798916, "lon": -73.963234, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.963234, 40.798916 ] } }, -{ "type": "Feature", "properties": { "id": 401087, "name": "Columbus Av/W 102 St", "direction": "SW", "lat": 40.797417, "lon": -73.96432, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96432, 40.797417 ] } }, -{ "type": "Feature", "properties": { "id": 401088, "name": "Columbus Av/W 100 St", "direction": "SW", "lat": 40.795067, "lon": -73.96605, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96605, 40.795067 ] } }, -{ "type": "Feature", "properties": { "id": 401090, "name": "Columbus Av/W 94 St", "direction": "SW", "lat": 40.79129, "lon": -73.96879, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.96879, 40.79129 ] } }, -{ "type": "Feature", "properties": { "id": 401091, "name": "Columbus Av/W 92 St", "direction": "SW", "lat": 40.790024, "lon": -73.96972, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.96972, 40.790024 ] } }, -{ "type": "Feature", "properties": { "id": 401092, "name": "Columbus Av/W 89 St", "direction": "SW", "lat": 40.78816, "lon": -73.971085, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.971085, 40.78816 ] } }, -{ "type": "Feature", "properties": { "id": 401093, "name": "Columbus Av/W 86 St", "direction": "SW", "lat": 40.786186, "lon": -73.97253, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.97253, 40.786186 ] } }, -{ "type": "Feature", "properties": { "id": 401094, "name": "Columbus Av/W 84 St", "direction": "SW", "lat": 40.784897, "lon": -73.973465, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.973465, 40.784897 ] } }, -{ "type": "Feature", "properties": { "id": 401096, "name": "Columbus Av/W 78 St", "direction": "SW", "lat": 40.780994, "lon": -73.97631, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.97631, 40.780994 ] } }, -{ "type": "Feature", "properties": { "id": 401099, "name": "Columbus Av/W 72 St", "direction": "SW", "lat": 40.777084, "lon": -73.97916, "routes": "M11, BXM2, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.97916, 40.777084 ] } }, -{ "type": "Feature", "properties": { "id": 401100, "name": "Columbus Av/W 69 St", "direction": "SW", "lat": 40.77525, "lon": -73.980545, "routes": "M11, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.980545, 40.77525 ] } }, -{ "type": "Feature", "properties": { "id": 401101, "name": "Columbus Av/W 66 St", "direction": "SW", "lat": 40.773754, "lon": -73.98159, "routes": "M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98159, 40.773754 ] } }, -{ "type": "Feature", "properties": { "id": 401139, "name": "Grand St/Clinton St", "direction": "E", "lat": 40.71576, "lon": -73.98641, "routes": "L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98641, 40.71576 ] } }, -{ "type": "Feature", "properties": { "id": 401140, "name": "Grand St/Pitt St", "direction": "E", "lat": 40.715164, "lon": -73.98447, "routes": "M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98447, 40.715164 ] } }, -{ "type": "Feature", "properties": { "id": 401141, "name": "Grand St/East Broadway", "direction": "E", "lat": 40.714596, "lon": -73.9823, "routes": "M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.9823, 40.714596 ] } }, -{ "type": "Feature", "properties": { "id": 401142, "name": "Grand St/Jackson St", "direction": "E", "lat": 40.71408, "lon": -73.98061, "routes": "M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98061, 40.71408 ] } }, -{ "type": "Feature", "properties": { "id": 401147, "name": "Grand St/Columbia St", "direction": "W", "lat": 40.714485, "lon": -73.98145, "routes": "M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98145, 40.714485 ] } }, -{ "type": "Feature", "properties": { "id": 401149, "name": "Grand St/Pitt St", "direction": "W", "lat": 40.71533, "lon": -73.98445, "routes": "L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98445, 40.71533 ] } }, -{ "type": "Feature", "properties": { "id": 401150, "name": "Grand St/Clinton St", "direction": "W", "lat": 40.716095, "lon": -73.98687, "routes": "M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98687, 40.716095 ] } }, -{ "type": "Feature", "properties": { "id": 401165, "name": "Park Row/Beekman St", "direction": "E", "lat": 40.71159, "lon": -74.00709, "routes": "QM11, QM8, QM7, QM8, QM25, QM25, QM11, QM7" }, "geometry": { "type": "Point", "coordinates": [ -74.00709, 40.71159 ] } }, -{ "type": "Feature", "properties": { "id": 401168, "name": "East Broadway/Forsyth St", "direction": "E", "lat": 40.713676, "lon": -73.994095, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.994095, 40.713676 ] } }, -{ "type": "Feature", "properties": { "id": 401169, "name": "East Broadway/Pike St", "direction": "E", "lat": 40.713806, "lon": -73.99265, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.99265, 40.713806 ] } }, -{ "type": "Feature", "properties": { "id": 401182, "name": "E 14 St/Avenue B", "direction": "NW", "lat": 40.7295, "lon": -73.97812, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97812, 40.7295 ] } }, -{ "type": "Feature", "properties": { "id": 401183, "name": "E 14 St/Avenue A", "direction": "NW", "lat": 40.730453, "lon": -73.98042, "routes": "M14A+, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.98042, 40.730453 ] } }, -{ "type": "Feature", "properties": { "id": 401191, "name": "E 14 St/3 Av", "direction": "SE", "lat": 40.73301, "lon": -73.98673, "routes": "M14A+, L92, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.98673, 40.73301 ] } }, -{ "type": "Feature", "properties": { "id": 401192, "name": "E 14 St/2 Av", "direction": "SE", "lat": 40.732082, "lon": -73.984535, "routes": "L92, M14D+, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.984535, 40.732082 ] } }, -{ "type": "Feature", "properties": { "id": 401193, "name": "E 14 St/1 Av", "direction": "SE", "lat": 40.731087, "lon": -73.98217, "routes": "L92, M14D+, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98217, 40.731087 ] } }, -{ "type": "Feature", "properties": { "id": 401194, "name": "E 14 St/Avenue A", "direction": "SE", "lat": 40.730404, "lon": -73.980446, "routes": "M14D+, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.980446, 40.730404 ] } }, -{ "type": "Feature", "properties": { "id": 401195, "name": "E 14 St/Avenue B", "direction": "SE", "lat": 40.72942, "lon": -73.97817, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97817, 40.72942 ] } }, -{ "type": "Feature", "properties": { "id": 401202, "name": "Essex St/East Houston St", "direction": "SW", "lat": 40.72186, "lon": -73.98661, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.98661, 40.72186 ] } }, -{ "type": "Feature", "properties": { "id": 401206, "name": "Essex St/Grand St", "direction": "SW", "lat": 40.716866, "lon": -73.98918, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.98918, 40.716866 ] } }, -{ "type": "Feature", "properties": { "id": 401208, "name": "East Broadway/Pike St", "direction": "W", "lat": 40.713947, "lon": -73.992386, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.992386, 40.713947 ] } }, -{ "type": "Feature", "properties": { "id": 401209, "name": "East Broadway/Market St", "direction": "W", "lat": 40.71373, "lon": -73.99501, "routes": "M9, M22" }, "geometry": { "type": "Point", "coordinates": [ -73.99501, 40.71373 ] } }, -{ "type": "Feature", "properties": { "id": 401210, "name": "East Broadway/Catherine St", "direction": "W", "lat": 40.71351, "lon": -73.99763, "routes": "M9, M22" }, "geometry": { "type": "Point", "coordinates": [ -73.99763, 40.71351 ] } }, -{ "type": "Feature", "properties": { "id": 401220, "name": "Hudson St/Perry St", "direction": "N", "lat": 40.735435, "lon": -74.00592, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00592, 40.735435 ] } }, -{ "type": "Feature", "properties": { "id": 401223, "name": "8 Av/W 14 St", "direction": "NE", "lat": 40.739883, "lon": -74.002266, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.002266, 40.739883 ] } }, -{ "type": "Feature", "properties": { "id": 401224, "name": "8 Av/W 17 St", "direction": "NE", "lat": 40.741898, "lon": -74.00081, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00081, 40.741898 ] } }, -{ "type": "Feature", "properties": { "id": 401225, "name": "8 Av/W 20 St", "direction": "NE", "lat": 40.74364, "lon": -73.999535, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.999535, 40.74364 ] } }, -{ "type": "Feature", "properties": { "id": 401226, "name": "8 Av/W 23 St", "direction": "NE", "lat": 40.745586, "lon": -73.99812, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.99812, 40.745586 ] } }, -{ "type": "Feature", "properties": { "id": 401227, "name": "8 Av/W 25 St", "direction": "NE", "lat": 40.746845, "lon": -73.9972, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.9972, 40.746845 ] } }, -{ "type": "Feature", "properties": { "id": 401229, "name": "8 Av/W 28 St", "direction": "NE", "lat": 40.748684, "lon": -73.995865, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.995865, 40.748684 ] } }, -{ "type": "Feature", "properties": { "id": 401231, "name": "8 Av/W 34 St", "direction": "NE", "lat": 40.75233, "lon": -73.993256, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.993256, 40.75233 ] } }, -{ "type": "Feature", "properties": { "id": 401232, "name": "8 Av/W 37 St", "direction": "NE", "lat": 40.75396, "lon": -73.992035, "routes": "M34A+, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.992035, 40.75396 ] } }, -{ "type": "Feature", "properties": { "id": 401239, "name": "8 Av/W 52 St", "direction": "NE", "lat": 40.763786, "lon": -73.98486, "routes": "M20, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98486, 40.763786 ] } }, -{ "type": "Feature", "properties": { "id": 401245, "name": "Central Park West/W 67 St", "direction": "NE", "lat": 40.77264, "lon": -73.978424, "routes": "M72, M10" }, "geometry": { "type": "Point", "coordinates": [ -73.978424, 40.77264 ] } }, -{ "type": "Feature", "properties": { "id": 401248, "name": "Central Park West/W 72 St", "direction": "NE", "lat": 40.776516, "lon": -73.97559, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97559, 40.776516 ] } }, -{ "type": "Feature", "properties": { "id": 401250, "name": "Central Park West/W 77 St", "direction": "NE", "lat": 40.77982, "lon": -73.97319, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97319, 40.77982 ] } }, -{ "type": "Feature", "properties": { "id": 401252, "name": "Central Park West/W 82 St", "direction": "NE", "lat": 40.782562, "lon": -73.97126, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97126, 40.782562 ] } }, -{ "type": "Feature", "properties": { "id": 401253, "name": "Central Park West/W 84 St", "direction": "NE", "lat": 40.784035, "lon": -73.97012, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97012, 40.784035 ] } }, -{ "type": "Feature", "properties": { "id": 401254, "name": "Central Park West/W 87 St", "direction": "NE", "lat": 40.78585, "lon": -73.96887, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96887, 40.78585 ] } }, -{ "type": "Feature", "properties": { "id": 401255, "name": "Central Park West/W 88 St", "direction": "NE", "lat": 40.786846, "lon": -73.968056, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.968056, 40.786846 ] } }, -{ "type": "Feature", "properties": { "id": 401256, "name": "Central Park West/W 90 St", "direction": "NE", "lat": 40.78807, "lon": -73.9672, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.9672, 40.78807 ] } }, -{ "type": "Feature", "properties": { "id": 401257, "name": "Central Park West/W 92 St", "direction": "NE", "lat": 40.789326, "lon": -73.966255, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.966255, 40.789326 ] } }, -{ "type": "Feature", "properties": { "id": 401258, "name": "Central Park West/W 94 St", "direction": "NE", "lat": 40.79054, "lon": -73.96536, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96536, 40.79054 ] } }, -{ "type": "Feature", "properties": { "id": 401259, "name": "Central Park West/W 97 St", "direction": "NE", "lat": 40.79222, "lon": -73.96422, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96422, 40.79222 ] } }, -{ "type": "Feature", "properties": { "id": 401261, "name": "Central Park West/W 100 St", "direction": "NE", "lat": 40.794506, "lon": -73.96247, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96247, 40.794506 ] } }, -{ "type": "Feature", "properties": { "id": 401262, "name": "Central Park West/W 102 St", "direction": "NE", "lat": 40.79575, "lon": -73.96156, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96156, 40.79575 ] } }, -{ "type": "Feature", "properties": { "id": 401263, "name": "Central Park West/W 104 St", "direction": "NE", "lat": 40.797035, "lon": -73.96063, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96063, 40.797035 ] } }, -{ "type": "Feature", "properties": { "id": 401264, "name": "Central Park West/W 106 St", "direction": "NE", "lat": 40.798298, "lon": -73.95972, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95972, 40.798298 ] } }, -{ "type": "Feature", "properties": { "id": 401265, "name": "Central Park West/W 108 St", "direction": "NE", "lat": 40.799706, "lon": -73.95875, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95875, 40.799706 ] } }, -{ "type": "Feature", "properties": { "id": 401267, "name": "Frederick Douglass Blvd/W 111 St", "direction": "NE", "lat": 40.801445, "lon": -73.957436, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.957436, 40.801445 ] } }, -{ "type": "Feature", "properties": { "id": 401268, "name": "Frederick Douglass Blvd/W 113 St", "direction": "NE", "lat": 40.802746, "lon": -73.95648, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95648, 40.802746 ] } }, -{ "type": "Feature", "properties": { "id": 401269, "name": "Frederick Douglass Blvd/W 116 St", "direction": "NE", "lat": 40.80474, "lon": -73.955025, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.955025, 40.80474 ] } }, -{ "type": "Feature", "properties": { "id": 401270, "name": "Frederick Douglass Blvd/W 119 St", "direction": "NE", "lat": 40.806377, "lon": -73.95389, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95389, 40.806377 ] } }, -{ "type": "Feature", "properties": { "id": 401271, "name": "Frederick Douglass Blvd/W 121 St", "direction": "NE", "lat": 40.807446, "lon": -73.95305, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95305, 40.807446 ] } }, -{ "type": "Feature", "properties": { "id": 401272, "name": "Frederick Douglass Blvd/W 123 St", "direction": "NE", "lat": 40.80907, "lon": -73.95184, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95184, 40.80907 ] } }, -{ "type": "Feature", "properties": { "id": 401274, "name": "Frederick Douglass Blvd/W 127 St", "direction": "NE", "lat": 40.81175, "lon": -73.94989, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94989, 40.81175 ] } }, -{ "type": "Feature", "properties": { "id": 401275, "name": "Frederick Douglass Blvd/W 129 St", "direction": "NE", "lat": 40.812893, "lon": -73.94905, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94905, 40.812893 ] } }, -{ "type": "Feature", "properties": { "id": 401276, "name": "Frederick Douglass Blvd/W 131 St", "direction": "NE", "lat": 40.81414, "lon": -73.948135, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.948135, 40.81414 ] } }, -{ "type": "Feature", "properties": { "id": 401277, "name": "Frederick Douglass Blvd/W 133 St", "direction": "NE", "lat": 40.815434, "lon": -73.94719, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94719, 40.815434 ] } }, -{ "type": "Feature", "properties": { "id": 401281, "name": "Frederick Douglass Blvd/W 141 St", "direction": "NE", "lat": 40.82054, "lon": -73.94347, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94347, 40.82054 ] } }, -{ "type": "Feature", "properties": { "id": 401282, "name": "Frederick Douglass Blvd/W 143 St", "direction": "NE", "lat": 40.82176, "lon": -73.94257, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94257, 40.82176 ] } }, -{ "type": "Feature", "properties": { "id": 401286, "name": "Frederick Douglass Blvd/W 153 St", "direction": "NE", "lat": 40.82813, "lon": -73.93792, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.93792, 40.82813 ] } }, -{ "type": "Feature", "properties": { "id": 401287, "name": "Frederick Douglass Blvd/W 155 St", "direction": "NE", "lat": 40.829277, "lon": -73.93706, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.93706, 40.829277 ] } }, -{ "type": "Feature", "properties": { "id": 401288, "name": "Frederick Douglass Blvd/W 158 St", "direction": "NE", "lat": 40.831207, "lon": -73.93569, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.93569, 40.831207 ] } }, -{ "type": "Feature", "properties": { "id": 401294, "name": "W 14 St/7 Av", "direction": "SE", "lat": 40.73829, "lon": -73.99927, "routes": "M7, M14A+, L92, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.99927, 40.73829 ] } }, -{ "type": "Feature", "properties": { "id": 401301, "name": "Hudson St/Charlton St", "direction": "N", "lat": 40.727184, "lon": -74.00725, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00725, 40.727184 ] } }, -{ "type": "Feature", "properties": { "id": 401302, "name": "Hudson St/W Houston St", "direction": "N", "lat": 40.728924, "lon": -74.00704, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00704, 40.728924 ] } }, -{ "type": "Feature", "properties": { "id": 401305, "name": "Frederick Douglass Blvd/W 155 St", "direction": "SW", "lat": 40.82909, "lon": -73.937454, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.937454, 40.82909 ] } }, -{ "type": "Feature", "properties": { "id": 401306, "name": "Frederick Douglass Blvd/W 154 St", "direction": "SW", "lat": 40.828304, "lon": -73.93805, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.93805, 40.828304 ] } }, -{ "type": "Feature", "properties": { "id": 401307, "name": "Frederick Douglass Blvd/W 152 St", "direction": "SW", "lat": 40.82702, "lon": -73.938995, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.938995, 40.82702 ] } }, -{ "type": "Feature", "properties": { "id": 401308, "name": "Frederick Douglass Blvd/W 150 St", "direction": "SW", "lat": 40.82595, "lon": -73.93972, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.93972, 40.82595 ] } }, -{ "type": "Feature", "properties": { "id": 401310, "name": "Frederick Douglass Blvd/W 145 St", "direction": "SW", "lat": 40.82252, "lon": -73.94228, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94228, 40.82252 ] } }, -{ "type": "Feature", "properties": { "id": 401311, "name": "Frederick Douglass Blvd/W 142 St", "direction": "SW", "lat": 40.82066, "lon": -73.94364, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94364, 40.82066 ] } }, -{ "type": "Feature", "properties": { "id": 401312, "name": "Frederick Douglass Blvd/W 140 St", "direction": "SW", "lat": 40.81942, "lon": -73.94455, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94455, 40.81942 ] } }, -{ "type": "Feature", "properties": { "id": 401313, "name": "Frederick Douglass Blvd/W 138 St", "direction": "SW", "lat": 40.818184, "lon": -73.94545, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94545, 40.818184 ] } }, -{ "type": "Feature", "properties": { "id": 401314, "name": "Frederick Douglass Blvd/W 135 St", "direction": "SW", "lat": 40.816208, "lon": -73.94689, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94689, 40.816208 ] } }, -{ "type": "Feature", "properties": { "id": 401315, "name": "Frederick Douglass Blvd/W 133 St", "direction": "SW", "lat": 40.81492, "lon": -73.94783, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94783, 40.81492 ] } }, -{ "type": "Feature", "properties": { "id": 401317, "name": "Frederick Douglass Blvd/W 129 St", "direction": "SW", "lat": 40.812828, "lon": -73.94934, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94934, 40.812828 ] } }, -{ "type": "Feature", "properties": { "id": 401318, "name": "Frederick Douglass Blvd/W 125 St", "direction": "SW", "lat": 40.810364, "lon": -73.95116, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95116, 40.810364 ] } }, -{ "type": "Feature", "properties": { "id": 401324, "name": "Frederick Douglass Blvd/W 112 St", "direction": "SW", "lat": 40.801643, "lon": -73.957504, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.957504, 40.801643 ] } }, -{ "type": "Feature", "properties": { "id": 401326, "name": "Central Park West/W 108 St", "direction": "SW", "lat": 40.799137, "lon": -73.959366, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.959366, 40.799137 ] } }, -{ "type": "Feature", "properties": { "id": 401328, "name": "Central Park West/W 104 St", "direction": "SW", "lat": 40.79651, "lon": -73.96127, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96127, 40.79651 ] } }, -{ "type": "Feature", "properties": { "id": 401329, "name": "Central Park West/W 102 St", "direction": "SW", "lat": 40.795277, "lon": -73.96219, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96219, 40.795277 ] } }, -{ "type": "Feature", "properties": { "id": 401330, "name": "Central Park West/W 100 St", "direction": "SW", "lat": 40.79395, "lon": -73.96315, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96315, 40.79395 ] } }, -{ "type": "Feature", "properties": { "id": 401331, "name": "Central Park West/W 97 St", "direction": "SW", "lat": 40.792267, "lon": -73.964386, "routes": "M106, M10, M96" }, "geometry": { "type": "Point", "coordinates": [ -73.964386, 40.792267 ] } }, -{ "type": "Feature", "properties": { "id": 401333, "name": "Central Park West/W 94 St", "direction": "SW", "lat": 40.790108, "lon": -73.965965, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.965965, 40.790108 ] } }, -{ "type": "Feature", "properties": { "id": 401334, "name": "Central Park West/W 92 St", "direction": "SW", "lat": 40.788895, "lon": -73.96685, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96685, 40.788895 ] } }, -{ "type": "Feature", "properties": { "id": 401335, "name": "Central Park West/W 90 St", "direction": "SW", "lat": 40.78762, "lon": -73.96777, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96777, 40.78762 ] } }, -{ "type": "Feature", "properties": { "id": 401336, "name": "Central Park West/W 88 St", "direction": "SW", "lat": 40.786526, "lon": -73.96851, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96851, 40.786526 ] } }, -{ "type": "Feature", "properties": { "id": 401337, "name": "Central Park West/W 86 St", "direction": "SW", "lat": 40.78504, "lon": -73.96969, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.96969, 40.78504 ] } }, -{ "type": "Feature", "properties": { "id": 401338, "name": "Central Park West/W 84 St", "direction": "SW", "lat": 40.78375, "lon": -73.9706, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.9706, 40.78375 ] } }, -{ "type": "Feature", "properties": { "id": 401339, "name": "Central Park West/W 81 St", "direction": "SW", "lat": 40.781963, "lon": -73.971886, "routes": "M10, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.971886, 40.781963 ] } }, -{ "type": "Feature", "properties": { "id": 401341, "name": "Central Park West/W 77 St", "direction": "SW", "lat": 40.7794, "lon": -73.973785, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.973785, 40.7794 ] } }, -{ "type": "Feature", "properties": { "id": 401342, "name": "Central Park West/W 74 St", "direction": "SW", "lat": 40.777466, "lon": -73.97518, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97518, 40.777466 ] } }, -{ "type": "Feature", "properties": { "id": 401343, "name": "Central Park West/W 72 St", "direction": "SW", "lat": 40.77613, "lon": -73.97619, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97619, 40.77613 ] } }, -{ "type": "Feature", "properties": { "id": 401344, "name": "Central Park West/W 70 St", "direction": "SW", "lat": 40.774837, "lon": -73.97716, "routes": "M10, M72" }, "geometry": { "type": "Point", "coordinates": [ -73.97716, 40.774837 ] } }, -{ "type": "Feature", "properties": { "id": 401345, "name": "Central Park West/W 68 St", "direction": "SW", "lat": 40.773567, "lon": -73.97804, "routes": "M72, M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97804, 40.773567 ] } }, -{ "type": "Feature", "properties": { "id": 401348, "name": "Broadway/W 63 St", "direction": "S", "lat": 40.77088, "lon": -73.98234, "routes": "M20, BXM2, M10" }, "geometry": { "type": "Point", "coordinates": [ -73.98234, 40.77088 ] } }, -{ "type": "Feature", "properties": { "id": 401359, "name": "7 Av/W 37 St", "direction": "SW", "lat": 40.752567, "lon": -73.989494, "routes": "M7, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.989494, 40.752567 ] } }, -{ "type": "Feature", "properties": { "id": 401360, "name": "7 Av/W 34 St", "direction": "SW", "lat": 40.750626, "lon": -73.99102, "routes": "M20, BXM2, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.99102, 40.750626 ] } }, -{ "type": "Feature", "properties": { "id": 401361, "name": "7 Av/W 31 St", "direction": "SW", "lat": 40.74886, "lon": -73.99231, "routes": "M7, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.99231, 40.74886 ] } }, -{ "type": "Feature", "properties": { "id": 401363, "name": "7 Av/W 28 St", "direction": "SW", "lat": 40.747036, "lon": -73.99364, "routes": "M20, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.99364, 40.747036 ] } }, -{ "type": "Feature", "properties": { "id": 401364, "name": "7 Av/W 25 St", "direction": "SW", "lat": 40.74518, "lon": -73.994995, "routes": "M7, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.994995, 40.74518 ] } }, -{ "type": "Feature", "properties": { "id": 401366, "name": "7 Av/W 20 St", "direction": "SW", "lat": 40.742027, "lon": -73.997284, "routes": "M7, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.997284, 40.742027 ] } }, -{ "type": "Feature", "properties": { "id": 401371, "name": "7 Av South/Waverly Pl", "direction": "SW", "lat": 40.735233, "lon": -74.002, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.002, 40.735233 ] } }, -{ "type": "Feature", "properties": { "id": 401372, "name": "7 Av South/W 10 St", "direction": "SW", "lat": 40.73411, "lon": -74.00265, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00265, 40.73411 ] } }, -{ "type": "Feature", "properties": { "id": 401373, "name": "7 Av South/Barrow St", "direction": "SW", "lat": 40.732574, "lon": -74.003525, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.003525, 40.732574 ] } }, -{ "type": "Feature", "properties": { "id": 401374, "name": "7 Av South/Bedford St", "direction": "SW", "lat": 40.73047, "lon": -74.00473, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00473, 40.73047 ] } }, -{ "type": "Feature", "properties": { "id": 401375, "name": "7 Av South/Clarkson St", "direction": "S", "lat": 40.729332, "lon": -74.00526, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00526, 40.729332 ] } }, -{ "type": "Feature", "properties": { "id": 401377, "name": "Varick St/Charlton St", "direction": "S", "lat": 40.72686, "lon": -74.005714, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.005714, 40.72686 ] } }, -{ "type": "Feature", "properties": { "id": 401379, "name": "Varick St/Watts St", "direction": "S", "lat": 40.723663, "lon": -74.00626, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00626, 40.723663 ] } }, -{ "type": "Feature", "properties": { "id": 401380, "name": "Varick St/North Moore St", "direction": "S", "lat": 40.719658, "lon": -74.00696, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00696, 40.719658 ] } }, -{ "type": "Feature", "properties": { "id": 401381, "name": "West Broadway/Duane St", "direction": "SW", "lat": 40.716366, "lon": -74.00866, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00866, 40.716366 ] } }, -{ "type": "Feature", "properties": { "id": 401386, "name": "Hudson St/W 13 St", "direction": "S", "lat": 40.74019, "lon": -74.00534, "routes": "M11, M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00534, 40.74019 ] } }, -{ "type": "Feature", "properties": { "id": 401387, "name": "Hudson St/Horatio St", "direction": "S", "lat": 40.738853, "lon": -74.00559, "routes": "M12, M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00559, 40.738853 ] } }, -{ "type": "Feature", "properties": { "id": 401388, "name": "Hudson St/W 12 St", "direction": "S", "lat": 40.73767, "lon": -74.00577, "routes": "L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -74.00577, 40.73767 ] } }, -{ "type": "Feature", "properties": { "id": 401393, "name": "Bethune St/Greenwich St", "direction": "W", "lat": 40.736988, "lon": -74.006355, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.006355, 40.736988 ] } }, -{ "type": "Feature", "properties": { "id": 401398, "name": "10 Av/W 21 St", "direction": "NE", "lat": 40.746616, "lon": -74.00482, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00482, 40.746616 ] } }, -{ "type": "Feature", "properties": { "id": 401400, "name": "10 Av/W 25 St", "direction": "NE", "lat": 40.74922, "lon": -74.00291, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00291, 40.74922 ] } }, -{ "type": "Feature", "properties": { "id": 401401, "name": "10 Av/W 27 St", "direction": "NE", "lat": 40.750336, "lon": -74.002174, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.002174, 40.750336 ] } }, -{ "type": "Feature", "properties": { "id": 401402, "name": "10 Av/W 30 St", "direction": "NE", "lat": 40.752373, "lon": -74.0006, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.0006, 40.752373 ] } }, -{ "type": "Feature", "properties": { "id": 401407, "name": "10 Av/W 42 St", "direction": "NE", "lat": 40.759846, "lon": -73.99518, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99518, 40.759846 ] } }, -{ "type": "Feature", "properties": { "id": 401408, "name": "10 Av/W 45 St", "direction": "NE", "lat": 40.76175, "lon": -73.9938, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.9938, 40.76175 ] } }, -{ "type": "Feature", "properties": { "id": 401409, "name": "10 Av/W 47 St", "direction": "NE", "lat": 40.763023, "lon": -73.992874, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.992874, 40.763023 ] } }, -{ "type": "Feature", "properties": { "id": 401410, "name": "10 Av/W 49 St", "direction": "NE", "lat": 40.76427, "lon": -73.99196, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99196, 40.76427 ] } }, -{ "type": "Feature", "properties": { "id": 401411, "name": "10 Av/W 53 St", "direction": "NE", "lat": 40.76642, "lon": -73.990395, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.990395, 40.76642 ] } }, -{ "type": "Feature", "properties": { "id": 401412, "name": "10 Av/W 55 St", "direction": "NE", "lat": 40.76803, "lon": -73.98927, "routes": "M31, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98927, 40.76803 ] } }, -{ "type": "Feature", "properties": { "id": 401413, "name": "10 Av/W 57 St", "direction": "NE", "lat": 40.768925, "lon": -73.98856, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98856, 40.768925 ] } }, -{ "type": "Feature", "properties": { "id": 401414, "name": "Amsterdam Av/W 59 St", "direction": "NE", "lat": 40.77063, "lon": -73.98733, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98733, 40.77063 ] } }, -{ "type": "Feature", "properties": { "id": 401416, "name": "Amsterdam Av/W 62 St", "direction": "NE", "lat": 40.77264, "lon": -73.98583, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98583, 40.77264 ] } }, -{ "type": "Feature", "properties": { "id": 401417, "name": "Amsterdam Av/W 65 St", "direction": "NE", "lat": 40.77434, "lon": -73.98462, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98462, 40.77434 ] } }, -{ "type": "Feature", "properties": { "id": 401435, "name": "Amsterdam Av/W 106 St", "direction": "NE", "lat": 40.800697, "lon": -73.96539, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96539, 40.800697 ] } }, -{ "type": "Feature", "properties": { "id": 401436, "name": "Amsterdam Av/W 109 St", "direction": "NE", "lat": 40.802567, "lon": -73.96403, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96403, 40.802567 ] } }, -{ "type": "Feature", "properties": { "id": 401438, "name": "Amsterdam Av/W 112 St", "direction": "NE", "lat": 40.804558, "lon": -73.96258, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96258, 40.804558 ] } }, -{ "type": "Feature", "properties": { "id": 401440, "name": "Amsterdam Av/W 116 St", "direction": "NE", "lat": 40.8071, "lon": -73.960724, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.960724, 40.8071 ] } }, -{ "type": "Feature", "properties": { "id": 401441, "name": "Amsterdam Av/W 118 St", "direction": "NE", "lat": 40.808353, "lon": -73.95981, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95981, 40.808353 ] } }, -{ "type": "Feature", "properties": { "id": 401442, "name": "Amsterdam Av/W 120 St", "direction": "NE", "lat": 40.809586, "lon": -73.95891, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95891, 40.809586 ] } }, -{ "type": "Feature", "properties": { "id": 401443, "name": "Amsterdam Av/W 123 St", "direction": "NE", "lat": 40.812267, "lon": -73.95689, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95689, 40.812267 ] } }, -{ "type": "Feature", "properties": { "id": 401444, "name": "Amsterdam Av/W 125 St", "direction": "NE", "lat": 40.813744, "lon": -73.95587, "routes": "M100, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95587, 40.813744 ] } }, -{ "type": "Feature", "properties": { "id": 401445, "name": "Amsterdam Av/W 126 St", "direction": "NE", "lat": 40.81434, "lon": -73.95549, "routes": "M104, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95549, 40.81434 ] } }, -{ "type": "Feature", "properties": { "id": 401446, "name": "Amsterdam Av/W 129 St", "direction": "NE", "lat": 40.814995, "lon": -73.95502, "routes": "M11, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95502, 40.814995 ] } }, -{ "type": "Feature", "properties": { "id": 401447, "name": "Amsterdam Av/W 131 St", "direction": "NE", "lat": 40.816685, "lon": -73.95376, "routes": "M100, M101, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95376, 40.816685 ] } }, -{ "type": "Feature", "properties": { "id": 401448, "name": "Amsterdam Av/W 133 St", "direction": "NE", "lat": 40.81785, "lon": -73.95292, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95292, 40.81785 ] } }, -{ "type": "Feature", "properties": { "id": 401453, "name": "Hudson St/Christopher St", "direction": "N", "lat": 40.73335, "lon": -74.00626, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00626, 40.73335 ] } }, -{ "type": "Feature", "properties": { "id": 401458, "name": "Amsterdam Av/W 131 St", "direction": "SW", "lat": 40.81601, "lon": -73.95442, "routes": "M100, M101, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95442, 40.81601 ] } }, -{ "type": "Feature", "properties": { "id": 401459, "name": "Amsterdam Av/W 129 St", "direction": "SW", "lat": 40.814857, "lon": -73.95525, "routes": "M101, M100, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95525, 40.814857 ] } }, -{ "type": "Feature", "properties": { "id": 401462, "name": "Amsterdam Av/W 123 St", "direction": "SW", "lat": 40.811035, "lon": -73.958115, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.958115, 40.811035 ] } }, -{ "type": "Feature", "properties": { "id": 401463, "name": "Amsterdam Av/W 120 St", "direction": "SW", "lat": 40.809048, "lon": -73.959564, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.959564, 40.809048 ] } }, -{ "type": "Feature", "properties": { "id": 401464, "name": "Amsterdam Av/W 118 St", "direction": "SW", "lat": 40.80782, "lon": -73.960464, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.960464, 40.80782 ] } }, -{ "type": "Feature", "properties": { "id": 401465, "name": "Amsterdam Av/W 116 St", "direction": "SW", "lat": 40.806522, "lon": -73.9614, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.9614, 40.806522 ] } }, -{ "type": "Feature", "properties": { "id": 401466, "name": "Amsterdam Av/W 114 St", "direction": "SW", "lat": 40.805286, "lon": -73.96231, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96231, 40.805286 ] } }, -{ "type": "Feature", "properties": { "id": 401467, "name": "Amsterdam Av/W 112 St", "direction": "SW", "lat": 40.804035, "lon": -73.96322, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96322, 40.804035 ] } }, -{ "type": "Feature", "properties": { "id": 401469, "name": "Columbus Av/Cathedral Pkwy", "direction": "SW", "lat": 40.80144, "lon": -73.96139, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96139, 40.80144 ] } }, -{ "type": "Feature", "properties": { "id": 401470, "name": "Columbus Av/W 108 St", "direction": "SW", "lat": 40.80031, "lon": -73.96221, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96221, 40.80031 ] } }, -{ "type": "Feature", "properties": { "id": 401489, "name": "9 Av/W 59 St", "direction": "SW", "lat": 40.76895, "lon": -73.985085, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.985085, 40.76895 ] } }, -{ "type": "Feature", "properties": { "id": 401490, "name": "9 Av/W 57 St", "direction": "SW", "lat": 40.767673, "lon": -73.986046, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.986046, 40.767673 ] } }, -{ "type": "Feature", "properties": { "id": 401491, "name": "9 Av/W 55 St", "direction": "SW", "lat": 40.766556, "lon": -73.98677, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98677, 40.766556 ] } }, -{ "type": "Feature", "properties": { "id": 401492, "name": "9 Av/W 52 St", "direction": "SW", "lat": 40.764526, "lon": -73.988335, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.988335, 40.764526 ] } }, -{ "type": "Feature", "properties": { "id": 401493, "name": "9 Av/W 50 St", "direction": "SW", "lat": 40.763294, "lon": -73.989235, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.989235, 40.763294 ] } }, -{ "type": "Feature", "properties": { "id": 401495, "name": "9 Av/W 46 St", "direction": "SW", "lat": 40.760765, "lon": -73.99108, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99108, 40.760765 ] } }, -{ "type": "Feature", "properties": { "id": 401496, "name": "9 Av/W 44 St", "direction": "SW", "lat": 40.75984, "lon": -73.99172, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99172, 40.75984 ] } }, -{ "type": "Feature", "properties": { "id": 401497, "name": "9 Av/W 42 St", "direction": "SW", "lat": 40.758583, "lon": -73.99267, "routes": "M34A+, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99267, 40.758583 ] } }, -{ "type": "Feature", "properties": { "id": 401500, "name": "9 Av/W 35 St", "direction": "SW", "lat": 40.7542, "lon": -73.995865, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.995865, 40.7542 ] } }, -{ "type": "Feature", "properties": { "id": 401501, "name": "9 Av/W 34 St", "direction": "SW", "lat": 40.753155, "lon": -73.99663, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99663, 40.753155 ] } }, -{ "type": "Feature", "properties": { "id": 401502, "name": "9 Av/W 30 St", "direction": "SW", "lat": 40.75061, "lon": -73.998474, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.998474, 40.75061 ] } }, -{ "type": "Feature", "properties": { "id": 401503, "name": "9 Av/W 28 St", "direction": "SW", "lat": 40.749424, "lon": -73.999344, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.999344, 40.749424 ] } }, -{ "type": "Feature", "properties": { "id": 401506, "name": "9 Av/W 20 St", "direction": "SW", "lat": 40.744434, "lon": -74.002975, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.002975, 40.744434 ] } }, -{ "type": "Feature", "properties": { "id": 401507, "name": "9 Av/W 18 St", "direction": "SW", "lat": 40.7432, "lon": -74.003815, "routes": "M11, M14D+, M12" }, "geometry": { "type": "Point", "coordinates": [ -74.003815, 40.7432 ] } }, -{ "type": "Feature", "properties": { "id": 401528, "name": "West St/Christopher St", "direction": "N", "lat": 40.732845, "lon": -74.01008, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.01008, 40.732845 ] } }, -{ "type": "Feature", "properties": { "id": 401529, "name": "W 10 St/Washington St", "direction": "E", "lat": 40.73331, "lon": -74.008705, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.008705, 40.73331 ] } }, -{ "type": "Feature", "properties": { "id": 401531, "name": "W 10 St/Bleecker St", "direction": "E", "lat": 40.734005, "lon": -74.00426, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00426, 40.734005 ] } }, -{ "type": "Feature", "properties": { "id": 401532, "name": "W 10 St/7 Av S", "direction": "E", "lat": 40.734226, "lon": -74.00259, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00259, 40.734226 ] } }, -{ "type": "Feature", "properties": { "id": 401533, "name": "W 10 St/Waverly Pl", "direction": "E", "lat": 40.73449, "lon": -74.00102, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00102, 40.73449 ] } }, -{ "type": "Feature", "properties": { "id": 401535, "name": "Greenwich Av/Christopher St", "direction": "SE", "lat": 40.734142, "lon": -73.999725, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.999725, 40.734142 ] } }, -{ "type": "Feature", "properties": { "id": 401536, "name": "W 8 St/Av Of The Americas", "direction": "SE", "lat": 40.733368, "lon": -73.99916, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.99916, 40.733368 ] } }, -{ "type": "Feature", "properties": { "id": 401538, "name": "W 8 St/5 Av", "direction": "SE", "lat": 40.732334, "lon": -73.99671, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.99671, 40.732334 ] } }, -{ "type": "Feature", "properties": { "id": 401542, "name": "Saint Marks Pl/3 Av", "direction": "E", "lat": 40.729572, "lon": -73.990005, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.990005, 40.729572 ] } }, -{ "type": "Feature", "properties": { "id": 401543, "name": "Saint Marks Pl/2 Av", "direction": "SE", "lat": 40.72861, "lon": -73.98785, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.98785, 40.72861 ] } }, -{ "type": "Feature", "properties": { "id": 401544, "name": "Saint Marks Pl/1 Av", "direction": "SE", "lat": 40.727383, "lon": -73.984924, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.984924, 40.727383 ] } }, -{ "type": "Feature", "properties": { "id": 401545, "name": "Saint Marks Pl/Avenue A", "direction": "SE", "lat": 40.72672, "lon": -73.98335, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.98335, 40.72672 ] } }, -{ "type": "Feature", "properties": { "id": 401547, "name": "E 10 St/Avenue A", "direction": "SE", "lat": 40.727646, "lon": -73.98188, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.98188, 40.727646 ] } }, -{ "type": "Feature", "properties": { "id": 401548, "name": "E 10 St/Avenue B", "direction": "SE", "lat": 40.726673, "lon": -73.97959, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.97959, 40.726673 ] } }, -{ "type": "Feature", "properties": { "id": 401549, "name": "E 10 St/Avenue C", "direction": "E", "lat": 40.725666, "lon": -73.97722, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.97722, 40.725666 ] } }, -{ "type": "Feature", "properties": { "id": 401552, "name": "E 10 St/Avenue C", "direction": "NW", "lat": 40.726048, "lon": -73.977844, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.977844, 40.726048 ] } }, -{ "type": "Feature", "properties": { "id": 401553, "name": "E 10 St/Avenue B", "direction": "NW", "lat": 40.72705, "lon": -73.98022, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.98022, 40.72705 ] } }, -{ "type": "Feature", "properties": { "id": 401554, "name": "E 10 St/Avenue A", "direction": "NW", "lat": 40.72783, "lon": -73.98207, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.98207, 40.72783 ] } }, -{ "type": "Feature", "properties": { "id": 401555, "name": "E 9 St/Avenue A", "direction": "NW", "lat": 40.727463, "lon": -73.983, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.983, 40.727463 ] } }, -{ "type": "Feature", "properties": { "id": 401556, "name": "E 9 St/1 Av", "direction": "W", "lat": 40.728394, "lon": -73.98521, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.98521, 40.728394 ] } }, -{ "type": "Feature", "properties": { "id": 401557, "name": "E 9 St/2 Av", "direction": "W", "lat": 40.729412, "lon": -73.98764, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.98764, 40.729412 ] } }, -{ "type": "Feature", "properties": { "id": 401558, "name": "E 9 St/3 Av", "direction": "W", "lat": 40.730095, "lon": -73.989265, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.989265, 40.730095 ] } }, -{ "type": "Feature", "properties": { "id": 401559, "name": "E 9 St/4 Av", "direction": "NW", "lat": 40.73055, "lon": -73.990326, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.990326, 40.73055 ] } }, -{ "type": "Feature", "properties": { "id": 401561, "name": "E 9 St/University Pl", "direction": "NW", "lat": 40.732357, "lon": -73.994606, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.994606, 40.732357 ] } }, -{ "type": "Feature", "properties": { "id": 401562, "name": "W 9 St/5 Av", "direction": "W", "lat": 40.73309, "lon": -73.99637, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.99637, 40.73309 ] } }, -{ "type": "Feature", "properties": { "id": 401563, "name": "W 9 St/Avenue Of The Americas", "direction": "W", "lat": 40.734158, "lon": -73.99891, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.99891, 40.734158 ] } }, -{ "type": "Feature", "properties": { "id": 401564, "name": "Christopher St/Greenwich Av", "direction": "W", "lat": 40.73411, "lon": -73.99995, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.99995, 40.73411 ] } }, -{ "type": "Feature", "properties": { "id": 401565, "name": "Christopher St/Waverly Pl", "direction": "W", "lat": 40.733746, "lon": -74.0022, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.0022, 40.733746 ] } }, -{ "type": "Feature", "properties": { "id": 401566, "name": "Christopher St/7 Av South", "direction": "W", "lat": 40.733578, "lon": -74.00334, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00334, 40.733578 ] } }, -{ "type": "Feature", "properties": { "id": 401567, "name": "Christopher St/Bleecker St", "direction": "W", "lat": 40.733368, "lon": -74.00469, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00469, 40.733368 ] } }, -{ "type": "Feature", "properties": { "id": 401568, "name": "Christopher St/Hudson St", "direction": "W", "lat": 40.733143, "lon": -74.00616, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00616, 40.733143 ] } }, -{ "type": "Feature", "properties": { "id": 401569, "name": "Christopher St/Greenwich St", "direction": "W", "lat": 40.732853, "lon": -74.00793, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00793, 40.732853 ] } }, -{ "type": "Feature", "properties": { "id": 401570, "name": "Christopher St/Washington St", "direction": "W", "lat": 40.732666, "lon": -74.00906, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00906, 40.732666 ] } }, -{ "type": "Feature", "properties": { "id": 401575, "name": "W 14 St/8 Av", "direction": "SE", "lat": 40.73962, "lon": -74.002396, "routes": "M14D+, M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -74.002396, 40.73962 ] } }, -{ "type": "Feature", "properties": { "id": 401577, "name": "W 14 St/6 Av", "direction": "SE", "lat": 40.737095, "lon": -73.99643, "routes": "L92, M14D+, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.99643, 40.737095 ] } }, -{ "type": "Feature", "properties": { "id": 401579, "name": "E 14 St/University Pl", "direction": "E", "lat": 40.73522, "lon": -73.991936, "routes": "L92" }, "geometry": { "type": "Point", "coordinates": [ -73.991936, 40.73522 ] } }, -{ "type": "Feature", "properties": { "id": 401587, "name": "E 14 St/Avenue C", "direction": "SE", "lat": 40.728428, "lon": -73.97583, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97583, 40.728428 ] } }, -{ "type": "Feature", "properties": { "id": 401589, "name": "Avenue C/E 12 St", "direction": "SW", "lat": 40.72698, "lon": -73.976814, "routes": "M14D+, M9" }, "geometry": { "type": "Point", "coordinates": [ -73.976814, 40.72698 ] } }, -{ "type": "Feature", "properties": { "id": 401591, "name": "E 10 St/Avenue D", "direction": "SE", "lat": 40.72487, "lon": -73.97531, "routes": "M8, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97531, 40.72487 ] } }, -{ "type": "Feature", "properties": { "id": 401595, "name": "Avenue D/E 6 St", "direction": "SW", "lat": 40.722267, "lon": -73.97717, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97717, 40.722267 ] } }, -{ "type": "Feature", "properties": { "id": 401596, "name": "Avenue D/E 4 St", "direction": "SW", "lat": 40.721058, "lon": -73.97806, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97806, 40.721058 ] } }, -{ "type": "Feature", "properties": { "id": 401598, "name": "East Houston St/Baruch Dr", "direction": "E", "lat": 40.719097, "lon": -73.97688, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.97688, 40.719097 ] } }, -{ "type": "Feature", "properties": { "id": 401599, "name": "East Houston St/Mangin St", "direction": "E", "lat": 40.718834, "lon": -73.97562, "routes": "M14D+, M21" }, "geometry": { "type": "Point", "coordinates": [ -73.97562, 40.718834 ] } }, -{ "type": "Feature", "properties": { "id": 401600, "name": "Fdr Dr/555 Fdr Dr", "direction": "SW", "lat": 40.71675, "lon": -73.975845, "routes": "M14D+, M21" }, "geometry": { "type": "Point", "coordinates": [ -73.975845, 40.71675 ] } }, -{ "type": "Feature", "properties": { "id": 401608, "name": "8 Av/Bleecker St", "direction": "NE", "lat": 40.737377, "lon": -74.00493, "routes": "L92, M20, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -74.00493, 40.737377 ] } }, -{ "type": "Feature", "properties": { "id": 401609, "name": "8 Av/W 4 St", "direction": "NE", "lat": 40.738598, "lon": -74.00353, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00353, 40.738598 ] } }, -{ "type": "Feature", "properties": { "id": 401610, "name": "Avenue A/E 11 St", "direction": "SW", "lat": 40.728214, "lon": -73.98207, "routes": "L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98207, 40.728214 ] } }, -{ "type": "Feature", "properties": { "id": 401612, "name": "Avenue A/E 5 St", "direction": "SW", "lat": 40.724575, "lon": -73.98465, "routes": "L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98465, 40.724575 ] } }, -{ "type": "Feature", "properties": { "id": 401624, "name": "Columbia St/Rivington St", "direction": "NE", "lat": 40.71778, "lon": -73.97976, "routes": "M21, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97976, 40.71778 ] } }, -{ "type": "Feature", "properties": { "id": 401625, "name": "Avenue D/East Houston St", "direction": "NE", "lat": 40.72009, "lon": -73.97855, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97855, 40.72009 ] } }, -{ "type": "Feature", "properties": { "id": 401626, "name": "Avenue D/E 5 St", "direction": "NE", "lat": 40.72212, "lon": -73.97707, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97707, 40.72212 ] } }, -{ "type": "Feature", "properties": { "id": 401633, "name": "E 14 St/Avenue C", "direction": "NW", "lat": 40.72861, "lon": -73.97591, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.97591, 40.72861 ] } }, -{ "type": "Feature", "properties": { "id": 401657, "name": "Avenue A/E 5 St", "direction": "NE", "lat": 40.7251, "lon": -73.984116, "routes": "L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.984116, 40.7251 ] } }, -{ "type": "Feature", "properties": { "id": 401659, "name": "Avenue A/E 11 St", "direction": "NE", "lat": 40.728676, "lon": -73.98151, "routes": "M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98151, 40.728676 ] } }, -{ "type": "Feature", "properties": { "id": 401660, "name": "Avenue A/E 14 St", "direction": "NE", "lat": 40.729977, "lon": -73.98057, "routes": "L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98057, 40.729977 ] } }, -{ "type": "Feature", "properties": { "id": 401665, "name": "Water St/Old Slip", "direction": "NE", "lat": 40.704273, "lon": -74.00849, "routes": "SIM5, M15" }, "geometry": { "type": "Point", "coordinates": [ -74.00849, 40.704273 ] } }, -{ "type": "Feature", "properties": { "id": 401666, "name": "Water St/Wall St", "direction": "NE", "lat": 40.705288, "lon": -74.00711, "routes": "SIM35, SIM5, M15" }, "geometry": { "type": "Point", "coordinates": [ -74.00711, 40.705288 ] } }, -{ "type": "Feature", "properties": { "id": 401669, "name": "Pearl St/Peck Slip", "direction": "NE", "lat": 40.70897, "lon": -74.002174, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -74.002174, 40.70897 ] } }, -{ "type": "Feature", "properties": { "id": 401670, "name": "Saint James Pl/Robert F Wagner Sr Pl", "direction": "NE", "lat": 40.710594, "lon": -74.000755, "routes": "M22, M15" }, "geometry": { "type": "Point", "coordinates": [ -74.000755, 40.710594 ] } }, -{ "type": "Feature", "properties": { "id": 401675, "name": "Pike St/Division St", "direction": "N", "lat": 40.714302, "lon": -73.99247, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99247, 40.714302 ] } }, -{ "type": "Feature", "properties": { "id": 401679, "name": "Allen St/Delancey St", "direction": "NE", "lat": 40.71956, "lon": -73.99, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99, 40.71956 ] } }, -{ "type": "Feature", "properties": { "id": 401681, "name": "Allen St/Stanton St", "direction": "N", "lat": 40.721897, "lon": -73.98884, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.98884, 40.721897 ] } }, -{ "type": "Feature", "properties": { "id": 401682, "name": "1 Av/E 2 St", "direction": "NE", "lat": 40.72356, "lon": -73.988174, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.988174, 40.72356 ] } }, -{ "type": "Feature", "properties": { "id": 401685, "name": "1 Av/Saint Marks Pl", "direction": "NE", "lat": 40.72782, "lon": -73.98506, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.98506, 40.72782 ] } }, -{ "type": "Feature", "properties": { "id": 401686, "name": "1 Av/E 11 St", "direction": "NE", "lat": 40.729637, "lon": -73.983734, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.983734, 40.729637 ] } }, -{ "type": "Feature", "properties": { "id": 401687, "name": "1 Av/E 14 St", "direction": "NE", "lat": 40.73212, "lon": -73.98195, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.98195, 40.73212 ] } }, -{ "type": "Feature", "properties": { "id": 401688, "name": "1 Av/E 17 St", "direction": "NE", "lat": 40.733154, "lon": -73.981186, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.981186, 40.733154 ] } }, -{ "type": "Feature", "properties": { "id": 401689, "name": "1 Av/E 20 St", "direction": "NE", "lat": 40.735107, "lon": -73.97975, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97975, 40.735107 ] } }, -{ "type": "Feature", "properties": { "id": 401690, "name": "1 Av/E 23 St", "direction": "NE", "lat": 40.737053, "lon": -73.97837, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97837, 40.737053 ] } }, -{ "type": "Feature", "properties": { "id": 401691, "name": "1 Av/E 25 St", "direction": "NE", "lat": 40.738358, "lon": -73.9774, "routes": "M15, M9" }, "geometry": { "type": "Point", "coordinates": [ -73.9774, 40.738358 ] } }, -{ "type": "Feature", "properties": { "id": 401694, "name": "1 Av/E 31 St", "direction": "NE", "lat": 40.74196, "lon": -73.97481, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97481, 40.74196 ] } }, -{ "type": "Feature", "properties": { "id": 401696, "name": "1 Av/E 36 St", "direction": "NE", "lat": 40.745323, "lon": -73.97235, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97235, 40.745323 ] } }, -{ "type": "Feature", "properties": { "id": 401697, "name": "1 Av/E 39 St", "direction": "NE", "lat": 40.747192, "lon": -73.970985, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.970985, 40.747192 ] } }, -{ "type": "Feature", "properties": { "id": 401698, "name": "1 Av/E 42 St", "direction": "NE", "lat": 40.749252, "lon": -73.96933, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96933, 40.749252 ] } }, -{ "type": "Feature", "properties": { "id": 401699, "name": "1 Av/E 45 St", "direction": "NE", "lat": 40.750683, "lon": -73.96846, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96846, 40.750683 ] } }, -{ "type": "Feature", "properties": { "id": 401701, "name": "1 Av/Mitchell Pl", "direction": "NE", "lat": 40.75359, "lon": -73.96631, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.96631, 40.75359 ] } }, -{ "type": "Feature", "properties": { "id": 401702, "name": "1 Av/E 52 St", "direction": "NE", "lat": 40.755394, "lon": -73.96498, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96498, 40.755394 ] } }, -{ "type": "Feature", "properties": { "id": 401703, "name": "1 Av/E 55 St", "direction": "NE", "lat": 40.75726, "lon": -73.96363, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96363, 40.75726 ] } }, -{ "type": "Feature", "properties": { "id": 401704, "name": "1 Av/E 57 St", "direction": "NE", "lat": 40.758827, "lon": -73.96246, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96246, 40.758827 ] } }, -{ "type": "Feature", "properties": { "id": 401706, "name": "1 Av/E 64 St", "direction": "NE", "lat": 40.762985, "lon": -73.95949, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95949, 40.762985 ] } }, -{ "type": "Feature", "properties": { "id": 401707, "name": "1 Av/E 67 St", "direction": "NE", "lat": 40.76487, "lon": -73.95811, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95811, 40.76487 ] } }, -{ "type": "Feature", "properties": { "id": 401708, "name": "1 Av/E 70 St", "direction": "NE", "lat": 40.766743, "lon": -73.95674, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95674, 40.766743 ] } }, -{ "type": "Feature", "properties": { "id": 401709, "name": "1 Av/E 72 St", "direction": "NE", "lat": 40.768085, "lon": -73.95574, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95574, 40.768085 ] } }, -{ "type": "Feature", "properties": { "id": 401710, "name": "1 Av/E 75 St", "direction": "NE", "lat": 40.769985, "lon": -73.95435, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95435, 40.769985 ] } }, -{ "type": "Feature", "properties": { "id": 401711, "name": "1 Av/E 77 St", "direction": "NE", "lat": 40.771255, "lon": -73.95342, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95342, 40.771255 ] } }, -{ "type": "Feature", "properties": { "id": 401712, "name": "1 Av/E 79 St", "direction": "NE", "lat": 40.772633, "lon": -73.9524, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.9524, 40.772633 ] } }, -{ "type": "Feature", "properties": { "id": 401715, "name": "1 Av/E 86 St", "direction": "NE", "lat": 40.77717, "lon": -73.94911, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.94911, 40.77717 ] } }, -{ "type": "Feature", "properties": { "id": 401716, "name": "1 Av/E 89 St", "direction": "NE", "lat": 40.779037, "lon": -73.94773, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.94773, 40.779037 ] } }, -{ "type": "Feature", "properties": { "id": 401718, "name": "1 Av/E 93 St", "direction": "NE", "lat": 40.781563, "lon": -73.94589, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.94589, 40.781563 ] } }, -{ "type": "Feature", "properties": { "id": 401721, "name": "1 Av/E 99 St", "direction": "NE", "lat": 40.785416, "lon": -73.9431, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.9431, 40.785416 ] } }, -{ "type": "Feature", "properties": { "id": 401722, "name": "1 Av/E 102 St", "direction": "NE", "lat": 40.787357, "lon": -73.94168, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.94168, 40.787357 ] } }, -{ "type": "Feature", "properties": { "id": 401723, "name": "1 Av/E 106 St", "direction": "NE", "lat": 40.78986, "lon": -73.93986, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93986, 40.78986 ] } }, -{ "type": "Feature", "properties": { "id": 401724, "name": "1 Av/E 108 St", "direction": "NE", "lat": 40.79169, "lon": -73.938515, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.938515, 40.79169 ] } }, -{ "type": "Feature", "properties": { "id": 401725, "name": "1 Av/E 111 St", "direction": "NE", "lat": 40.793102, "lon": -73.937485, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.937485, 40.793102 ] } }, -{ "type": "Feature", "properties": { "id": 401726, "name": "1 Av/E 113 St", "direction": "NE", "lat": 40.79433, "lon": -73.936584, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.936584, 40.79433 ] } }, -{ "type": "Feature", "properties": { "id": 401727, "name": "1 Av/E 116 St", "direction": "NE", "lat": 40.79632, "lon": -73.93512, "routes": "M15+, M116, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93512, 40.79632 ] } }, -{ "type": "Feature", "properties": { "id": 401729, "name": "1 Av/E 120 St", "direction": "NE", "lat": 40.798935, "lon": -73.93322, "routes": "M116, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93322, 40.798935 ] } }, -{ "type": "Feature", "properties": { "id": 401730, "name": "1 Av/Paladino Av", "direction": "NE", "lat": 40.80036, "lon": -73.93218, "routes": "M116, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93218, 40.80036 ] } }, -{ "type": "Feature", "properties": { "id": 401731, "name": "1 Av/E 125 St", "direction": "NE", "lat": 40.801613, "lon": -73.93127, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93127, 40.801613 ] } }, -{ "type": "Feature", "properties": { "id": 401732, "name": "E 126 St/2 Av", "direction": "NW", "lat": 40.80323, "lon": -73.93245, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.93245, 40.80323 ] } }, -{ "type": "Feature", "properties": { "id": 401738, "name": "2 Av/E 125 St", "direction": "SW", "lat": 40.80247, "lon": -73.93385, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.93385, 40.80247 ] } }, -{ "type": "Feature", "properties": { "id": 401739, "name": "2 Av/E 122 St", "direction": "SW", "lat": 40.800564, "lon": -73.935234, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.935234, 40.800564 ] } }, -{ "type": "Feature", "properties": { "id": 401740, "name": "2 Av/E 119 St", "direction": "SW", "lat": 40.798668, "lon": -73.93661, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93661, 40.798668 ] } }, -{ "type": "Feature", "properties": { "id": 401741, "name": "2 Av/E 116 St", "direction": "SW", "lat": 40.796722, "lon": -73.93804, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93804, 40.796722 ] } }, -{ "type": "Feature", "properties": { "id": 401742, "name": "2 Av/E 113 St", "direction": "SW", "lat": 40.794823, "lon": -73.93943, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93943, 40.794823 ] } }, -{ "type": "Feature", "properties": { "id": 401744, "name": "2 Av/E 108 St", "direction": "SW", "lat": 40.79167, "lon": -73.941734, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.941734, 40.79167 ] } }, -{ "type": "Feature", "properties": { "id": 401745, "name": "2 Av/E 106 St", "direction": "SW", "lat": 40.790333, "lon": -73.94272, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.94272, 40.790333 ] } }, -{ "type": "Feature", "properties": { "id": 401746, "name": "2 Av/E 103 St", "direction": "SW", "lat": 40.788563, "lon": -73.944016, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.944016, 40.788563 ] } }, -{ "type": "Feature", "properties": { "id": 401747, "name": "2 Av/E 101 St", "direction": "SW", "lat": 40.787354, "lon": -73.94489, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.94489, 40.787354 ] } }, -{ "type": "Feature", "properties": { "id": 401748, "name": "2 Av/E 97 St", "direction": "SW", "lat": 40.785065, "lon": -73.946556, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.946556, 40.785065 ] } }, -{ "type": "Feature", "properties": { "id": 401749, "name": "2 Av/E 96 St", "direction": "SW", "lat": 40.784122, "lon": -73.94726, "routes": "M15, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.94726, 40.784122 ] } }, -{ "type": "Feature", "properties": { "id": 401753, "name": "2 Av/E 87 St", "direction": "SW", "lat": 40.778416, "lon": -73.95144, "routes": "M15, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.95144, 40.778416 ] } }, -{ "type": "Feature", "properties": { "id": 401754, "name": "2 Av/E 84 St", "direction": "SW", "lat": 40.776302, "lon": -73.95295, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95295, 40.776302 ] } }, -{ "type": "Feature", "properties": { "id": 401755, "name": "2 Av/E 82 St", "direction": "SW", "lat": 40.77505, "lon": -73.95387, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95387, 40.77505 ] } }, -{ "type": "Feature", "properties": { "id": 401756, "name": "2 Av/E 78 St", "direction": "SW", "lat": 40.772923, "lon": -73.95544, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.95544, 40.772923 ] } }, -{ "type": "Feature", "properties": { "id": 401758, "name": "2 Av/E 75 St", "direction": "SW", "lat": 40.77082, "lon": -73.95695, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95695, 40.77082 ] } }, -{ "type": "Feature", "properties": { "id": 401759, "name": "2 Av/E 72 St", "direction": "SW", "lat": 40.768726, "lon": -73.95849, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95849, 40.768726 ] } }, -{ "type": "Feature", "properties": { "id": 401760, "name": "2 Av/E 70 St", "direction": "SW", "lat": 40.76733, "lon": -73.9595, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.9595, 40.76733 ] } }, -{ "type": "Feature", "properties": { "id": 401761, "name": "2 Av/E 68 St", "direction": "SW", "lat": 40.76599, "lon": -73.96048, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96048, 40.76599 ] } }, -{ "type": "Feature", "properties": { "id": 401762, "name": "2 Av/E 66 St", "direction": "SW", "lat": 40.764664, "lon": -73.96144, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96144, 40.764664 ] } }, -{ "type": "Feature", "properties": { "id": 401763, "name": "2 Av/E 64 St", "direction": "SW", "lat": 40.76347, "lon": -73.96231, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96231, 40.76347 ] } }, -{ "type": "Feature", "properties": { "id": 401764, "name": "2 Av/E 61 St", "direction": "SW", "lat": 40.761524, "lon": -73.96375, "routes": "Q101, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96375, 40.761524 ] } }, -{ "type": "Feature", "properties": { "id": 401765, "name": "2 Av/E 57 St", "direction": "SW", "lat": 40.758987, "lon": -73.9656, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.9656, 40.758987 ] } }, -{ "type": "Feature", "properties": { "id": 401768, "name": "2 Av/E 50 St", "direction": "SW", "lat": 40.754623, "lon": -73.96879, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96879, 40.754623 ] } }, -{ "type": "Feature", "properties": { "id": 401769, "name": "2 Av/E 46 St", "direction": "SW", "lat": 40.75248, "lon": -73.97037, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97037, 40.75248 ] } }, -{ "type": "Feature", "properties": { "id": 401771, "name": "2 Av/E 42 St", "direction": "SW", "lat": 40.7495, "lon": -73.97252, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97252, 40.7495 ] } }, -{ "type": "Feature", "properties": { "id": 401772, "name": "2 Av/E 39 St", "direction": "SW", "lat": 40.74764, "lon": -73.97388, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97388, 40.74764 ] } }, -{ "type": "Feature", "properties": { "id": 401775, "name": "2 Av/E 31 St", "direction": "SW", "lat": 40.742638, "lon": -73.97752, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97752, 40.742638 ] } }, -{ "type": "Feature", "properties": { "id": 401778, "name": "2 Av/E 25 St", "direction": "SW", "lat": 40.738934, "lon": -73.980225, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.980225, 40.738934 ] } }, -{ "type": "Feature", "properties": { "id": 401779, "name": "2 Av/E 23 St", "direction": "SW", "lat": 40.737514, "lon": -73.9812, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.9812, 40.737514 ] } }, -{ "type": "Feature", "properties": { "id": 401780, "name": "2 Av/E 20 St", "direction": "SW", "lat": 40.735744, "lon": -73.98249, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.98249, 40.735744 ] } }, -{ "type": "Feature", "properties": { "id": 401781, "name": "2 Av/E 17 St", "direction": "SW", "lat": 40.733997, "lon": -73.98377, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.98377, 40.733997 ] } }, -{ "type": "Feature", "properties": { "id": 401782, "name": "2 Av/E 14 St", "direction": "SW", "lat": 40.732494, "lon": -73.9849, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.9849, 40.732494 ] } }, -{ "type": "Feature", "properties": { "id": 401784, "name": "2 Av/E 9 St", "direction": "SW", "lat": 40.72889, "lon": -73.987526, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.987526, 40.72889 ] } }, -{ "type": "Feature", "properties": { "id": 401785, "name": "2 Av/E 6 St", "direction": "SW", "lat": 40.72716, "lon": -73.988785, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.988785, 40.72716 ] } }, -{ "type": "Feature", "properties": { "id": 401786, "name": "2 Av/E 3 St", "direction": "SW", "lat": 40.72534, "lon": -73.990105, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.990105, 40.72534 ] } }, -{ "type": "Feature", "properties": { "id": 401787, "name": "East Houston St/Forsyth St", "direction": "E", "lat": 40.723328, "lon": -73.990425, "routes": "M21, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.990425, 40.723328 ] } }, -{ "type": "Feature", "properties": { "id": 401793, "name": "Allen St/Canal St", "direction": "SW", "lat": 40.714855, "lon": -73.992805, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.992805, 40.714855 ] } }, -{ "type": "Feature", "properties": { "id": 401797, "name": "Pearl St/Frankfort St", "direction": "SW", "lat": 40.7094, "lon": -74.001915, "routes": "SIM15, SIM35, M15, SIM5, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.001915, 40.7094 ] } }, -{ "type": "Feature", "properties": { "id": 401800, "name": "Water St/Maiden Ln", "direction": "SW", "lat": 40.706028, "lon": -74.00629, "routes": "QM8, SIM15, QM8, QM7, SIM5, SIM15, QM7, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.00629, 40.706028 ] } }, -{ "type": "Feature", "properties": { "id": 401802, "name": "Water St/Hanover Sq", "direction": "SW", "lat": 40.70388, "lon": -74.00943, "routes": "SIM15, SIM35, SIM5, M15, SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.00943, 40.70388 ] } }, -{ "type": "Feature", "properties": { "id": 401806, "name": "Worth St/Centre St", "direction": "NW", "lat": 40.715355, "lon": -74.0025, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.0025, 40.715355 ] } }, -{ "type": "Feature", "properties": { "id": 401808, "name": "Centre St/Chambers St", "direction": "SW", "lat": 40.713272, "lon": -74.00403, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.00403, 40.713272 ] } }, -{ "type": "Feature", "properties": { "id": 401812, "name": "W 42 St/12 Av", "direction": "SE", "lat": 40.76191, "lon": -74.00105, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -74.00105, 40.76191 ] } }, -{ "type": "Feature", "properties": { "id": 401813, "name": "W 42 St/11 Av", "direction": "E", "lat": 40.760544, "lon": -73.997925, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.997925, 40.760544 ] } }, -{ "type": "Feature", "properties": { "id": 401814, "name": "W 42 St/10 Av", "direction": "SE", "lat": 40.759357, "lon": -73.99508, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.99508, 40.759357 ] } }, -{ "type": "Feature", "properties": { "id": 401818, "name": "W 34 St/9 Av", "direction": "SE", "lat": 40.753105, "lon": -73.99586, "routes": "M34A+, SIM23, M34+, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.99586, 40.753105 ] } }, -{ "type": "Feature", "properties": { "id": 401819, "name": "W 34 St/8 Av", "direction": "SE", "lat": 40.751987, "lon": -73.99331, "routes": "SIM23, SIM24, M34+, M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.99331, 40.751987 ] } }, -{ "type": "Feature", "properties": { "id": 401821, "name": "W 34 St/Broadway", "direction": "E", "lat": 40.749622, "lon": -73.98762, "routes": "M34A+, SIM23, SIM24, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.98762, 40.749622 ] } }, -{ "type": "Feature", "properties": { "id": 401822, "name": "E 34 St/5 Av", "direction": "SE", "lat": 40.74819, "lon": -73.98413, "routes": "SIM24, BM5, M34+, M34A+, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -73.98413, 40.74819 ] } }, -{ "type": "Feature", "properties": { "id": 401823, "name": "E 34 St /Madison Av", "direction": "SE", "lat": 40.747643, "lon": -73.98283, "routes": "BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.98283, 40.747643 ] } }, -{ "type": "Feature", "properties": { "id": 401824, "name": "E 34 St/Park Av", "direction": "SE", "lat": 40.746796, "lon": -73.98089, "routes": "BM5, M34A+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.98089, 40.746796 ] } }, -{ "type": "Feature", "properties": { "id": 401826, "name": "E 34 St/3 Av", "direction": "SE", "lat": 40.745445, "lon": -73.977715, "routes": "M34+, M34A+, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.977715, 40.745445 ] } }, -{ "type": "Feature", "properties": { "id": 401827, "name": "E 34 St/2 Av", "direction": "SE", "lat": 40.74477, "lon": -73.97609, "routes": "BM5, M34+, M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.97609, 40.74477 ] } }, -{ "type": "Feature", "properties": { "id": 401832, "name": "E 23 St/2 Av", "direction": "SE", "lat": 40.737663, "lon": -73.98055, "routes": "M9, M34+, M23+, M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98055, 40.737663 ] } }, -{ "type": "Feature", "properties": { "id": 401833, "name": "E 23 St/1 Av", "direction": "SE", "lat": 40.73669, "lon": -73.97825, "routes": "SIM31, SIM6, M23+, SIM10, M34A+, SIM3, M34+, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -73.97825, 40.73669 ] } }, -{ "type": "Feature", "properties": { "id": 401840, "name": "E 34 St/3 Av", "direction": "NW", "lat": 40.746, "lon": -73.97864, "routes": "QM1, X68, QM5, QM24, QM12, QM6, M34+, QM2, QM3, QM12, QM4, QM20, QM10, QM24, M34A+, QM10, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.97864, 40.746 ] } }, -{ "type": "Feature", "properties": { "id": 401842, "name": "E 34 St/Park Av", "direction": "NW", "lat": 40.747234, "lon": -73.981544, "routes": "M34A+, X68, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.981544, 40.747234 ] } }, -{ "type": "Feature", "properties": { "id": 401844, "name": "W 34 St/5 Av", "direction": "NW", "lat": 40.748672, "lon": -73.98491, "routes": "QM12, QM24, QM24, QM2, QM5, QM20, QM4, QM12, QM6, SIM24, QM10, QM16, QM1, QM10, QM17, QM3, QM17, QM16, QM15, SIM23, QM15, QM18, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.98491, 40.748672 ] } }, -{ "type": "Feature", "properties": { "id": 401847, "name": "W 34 St/7 Av", "direction": "NW", "lat": 40.75125, "lon": -73.99103, "routes": "M34A+, SIM23, M34+, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.99103, 40.75125 ] } }, -{ "type": "Feature", "properties": { "id": 401848, "name": "W 34 St/8 Av", "direction": "NW", "lat": 40.7523, "lon": -73.99359, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.99359, 40.7523 ] } }, -{ "type": "Feature", "properties": { "id": 401850, "name": "8 Av/W 40 St", "direction": "NE", "lat": 40.75626, "lon": -73.99041, "routes": "M20, M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.99041, 40.75626 ] } }, -{ "type": "Feature", "properties": { "id": 401851, "name": "W 42 St/8 Av", "direction": "NW", "lat": 40.757576, "lon": -73.99046, "routes": "SIM8, SIM22, SIM30, SIM25, M42, SIM26, SIM8X" }, "geometry": { "type": "Point", "coordinates": [ -73.99046, 40.757576 ] } }, -{ "type": "Feature", "properties": { "id": 401852, "name": "W 42 St/9 Av", "direction": "NW", "lat": 40.75867, "lon": -73.99298, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.99298, 40.75867 ] } }, -{ "type": "Feature", "properties": { "id": 401853, "name": "W 42 St/10 Av", "direction": "NW", "lat": 40.759888, "lon": -73.995834, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.995834, 40.759888 ] } }, -{ "type": "Feature", "properties": { "id": 401857, "name": "Waterside Plaza/Waterside 1", "direction": "NE", "lat": 40.738056, "lon": -73.973465, "routes": "M34A+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.973465, 40.738056 ] } }, -{ "type": "Feature", "properties": { "id": 401858, "name": "Waterside Plaza/Waterside 2", "direction": "N", "lat": 40.739143, "lon": -73.972885, "routes": "M34A+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.972885, 40.739143 ] } }, -{ "type": "Feature", "properties": { "id": 401867, "name": "W 81 St/Columbus Av", "direction": "SE", "lat": 40.78298, "lon": -73.97419, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.97419, 40.78298 ] } }, -{ "type": "Feature", "properties": { "id": 401868, "name": "W 81 St/Central Pk W", "direction": "SE", "lat": 40.78201, "lon": -73.971924, "routes": "BXM2, M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.971924, 40.78201 ] } }, -{ "type": "Feature", "properties": { "id": 401869, "name": "E 79 St Transverse Rd/Central Park West", "direction": "SE", "lat": 40.778767, "lon": -73.96855, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.96855, 40.778767 ] } }, -{ "type": "Feature", "properties": { "id": 401870, "name": "E 79 St/5 Av", "direction": "SE", "lat": 40.776768, "lon": -73.963425, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.963425, 40.776768 ] } }, -{ "type": "Feature", "properties": { "id": 401875, "name": "E 79 St/2 Av", "direction": "SE", "lat": 40.773094, "lon": -73.9547, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.9547, 40.773094 ] } }, -{ "type": "Feature", "properties": { "id": 401876, "name": "E 79 St/1 Av", "direction": "SE", "lat": 40.772053, "lon": -73.952225, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.952225, 40.772053 ] } }, -{ "type": "Feature", "properties": { "id": 401877, "name": "York Av/E 79 St", "direction": "NE", "lat": 40.77158, "lon": -73.95023, "routes": "M31, M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.95023, 40.77158 ] } }, -{ "type": "Feature", "properties": { "id": 401878, "name": "E 80 St/East End Av", "direction": "SE", "lat": 40.77109, "lon": -73.94777, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.94777, 40.77109 ] } }, -{ "type": "Feature", "properties": { "id": 401880, "name": "E 79 St/East End Av", "direction": "NW", "lat": 40.77074, "lon": -73.948715, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.948715, 40.77074 ] } }, -{ "type": "Feature", "properties": { "id": 401881, "name": "E 79 St/York Av", "direction": "NW", "lat": 40.7717, "lon": -73.95095, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.95095, 40.7717 ] } }, -{ "type": "Feature", "properties": { "id": 401882, "name": "E 79 St/1 Av", "direction": "NW", "lat": 40.77232, "lon": -73.95244, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.95244, 40.77232 ] } }, -{ "type": "Feature", "properties": { "id": 401883, "name": "E 79 St/2 Av", "direction": "NW", "lat": 40.77358, "lon": -73.955414, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.955414, 40.77358 ] } }, -{ "type": "Feature", "properties": { "id": 401884, "name": "E 79 St/3 Av", "direction": "W", "lat": 40.77454, "lon": -73.95768, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.95768, 40.77454 ] } }, -{ "type": "Feature", "properties": { "id": 401887, "name": "E 79 St/Madison Av", "direction": "NW", "lat": 40.77623, "lon": -73.96182, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.96182, 40.77623 ] } }, -{ "type": "Feature", "properties": { "id": 401889, "name": "E 79 St Transverse/Central Park", "direction": "NW", "lat": 40.779083, "lon": -73.96875, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.96875, 40.779083 ] } }, -{ "type": "Feature", "properties": { "id": 401890, "name": "W 81 St/Central Park West", "direction": "NW", "lat": 40.78227, "lon": -73.97207, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.97207, 40.78227 ] } }, -{ "type": "Feature", "properties": { "id": 401893, "name": "W 79 St/Broadway", "direction": "NW", "lat": 40.78404, "lon": -73.98016, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.98016, 40.78404 ] } }, -{ "type": "Feature", "properties": { "id": 401897, "name": "W 86 St/Amsterdam Av", "direction": "E", "lat": 40.78775, "lon": -73.9754, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.9754, 40.78775 ] } }, -{ "type": "Feature", "properties": { "id": 401898, "name": "W 86 St/Columbus Av", "direction": "SE", "lat": 40.786476, "lon": -73.97239, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.97239, 40.786476 ] } }, -{ "type": "Feature", "properties": { "id": 401899, "name": "W 86 St/Central Park West", "direction": "SE", "lat": 40.78529, "lon": -73.969376, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.969376, 40.78529 ] } }, -{ "type": "Feature", "properties": { "id": 401900, "name": "W 86 St Transverse Rd/Central Park", "direction": "SE", "lat": 40.78323, "lon": -73.96399, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.96399, 40.78323 ] } }, -{ "type": "Feature", "properties": { "id": 401901, "name": "E 84 St/5 Av", "direction": "SE", "lat": 40.779816, "lon": -73.96063, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.96063, 40.779816 ] } }, -{ "type": "Feature", "properties": { "id": 401903, "name": "E 86 St/Madison Av", "direction": "SE", "lat": 40.780624, "lon": -73.95849, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.95849, 40.780624 ] } }, -{ "type": "Feature", "properties": { "id": 401905, "name": "E 86 St/Lexington Av", "direction": "SE", "lat": 40.77918, "lon": -73.95488, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.95488, 40.77918 ] } }, -{ "type": "Feature", "properties": { "id": 401906, "name": "E 86 St/3 Av", "direction": "SE", "lat": 40.77846, "lon": -73.9533, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.9533, 40.77846 ] } }, -{ "type": "Feature", "properties": { "id": 401908, "name": "E 86 St/1 Av", "direction": "SE", "lat": 40.776745, "lon": -73.949234, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.949234, 40.776745 ] } }, -{ "type": "Feature", "properties": { "id": 401909, "name": "York Av/E 86 St", "direction": "NE", "lat": 40.776344, "lon": -73.946754, "routes": "M31, M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.946754, 40.776344 ] } }, -{ "type": "Feature", "properties": { "id": 401910, "name": "York Av/E 88 St", "direction": "NE", "lat": 40.777473, "lon": -73.94591, "routes": "M31, M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.94591, 40.777473 ] } }, -{ "type": "Feature", "properties": { "id": 401916, "name": "York Av/E 91 St", "direction": "SW", "lat": 40.778847, "lon": -73.94506, "routes": "M31, M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.94506, 40.778847 ] } }, -{ "type": "Feature", "properties": { "id": 401917, "name": "York Av/E 88 St", "direction": "SW", "lat": 40.776997, "lon": -73.946434, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.946434, 40.776997 ] } }, -{ "type": "Feature", "properties": { "id": 401919, "name": "E 86 St/1 Av", "direction": "NW", "lat": 40.776882, "lon": -73.94916, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.94916, 40.776882 ] } }, -{ "type": "Feature", "properties": { "id": 401920, "name": "E 86 St/2 Av", "direction": "NW", "lat": 40.77813, "lon": -73.95212, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.95212, 40.77813 ] } }, -{ "type": "Feature", "properties": { "id": 401921, "name": "E 86 St/3 Av", "direction": "NW", "lat": 40.779, "lon": -73.954185, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.954185, 40.779 ] } }, -{ "type": "Feature", "properties": { "id": 401922, "name": "E 86 St/Lexington Av", "direction": "NW", "lat": 40.779903, "lon": -73.956474, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.956474, 40.779903 ] } }, -{ "type": "Feature", "properties": { "id": 401924, "name": "E 86 St/Madison Av", "direction": "NW", "lat": 40.78088, "lon": -73.958664, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.958664, 40.78088 ] } }, -{ "type": "Feature", "properties": { "id": 401925, "name": "E 86 St/5 Av", "direction": "NW", "lat": 40.781536, "lon": -73.96031, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.96031, 40.781536 ] } }, -{ "type": "Feature", "properties": { "id": 401926, "name": "W 86 St Transverse Rd/Central Park", "direction": "NW", "lat": 40.783314, "lon": -73.96394, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.96394, 40.783314 ] } }, -{ "type": "Feature", "properties": { "id": 401927, "name": "W 86 St/Central Pk West", "direction": "NW", "lat": 40.7857, "lon": -73.9701, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.9701, 40.7857 ] } }, -{ "type": "Feature", "properties": { "id": 401929, "name": "W 86 St/Amsterdam Av", "direction": "NW", "lat": 40.787697, "lon": -73.974815, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.974815, 40.787697 ] } }, -{ "type": "Feature", "properties": { "id": 401930, "name": "W 86 St/Broadway", "direction": "E", "lat": 40.788357, "lon": -73.97679, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.97679, 40.788357 ] } }, -{ "type": "Feature", "properties": { "id": 401933, "name": "W 96 St/West End Av", "direction": "SE", "lat": 40.794933, "lon": -73.97269, "routes": "M96, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.97269, 40.794933 ] } }, -{ "type": "Feature", "properties": { "id": 401934, "name": "W 96 St/Broadway", "direction": "SE", "lat": 40.79439, "lon": -73.971405, "routes": "M96, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.971405, 40.79439 ] } }, -{ "type": "Feature", "properties": { "id": 401935, "name": "W 96 St/Amsterdam Av", "direction": "SE", "lat": 40.793797, "lon": -73.97001, "routes": "M106, M96" }, "geometry": { "type": "Point", "coordinates": [ -73.97001, 40.793797 ] } }, -{ "type": "Feature", "properties": { "id": 401936, "name": "W 96 St/Columbus Av", "direction": "SE", "lat": 40.792603, "lon": -73.96716, "routes": "M96, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.96716, 40.792603 ] } }, -{ "type": "Feature", "properties": { "id": 401937, "name": "W 96 St/Central Park West", "direction": "E", "lat": 40.791668, "lon": -73.96494, "routes": "M96, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.96494, 40.791668 ] } }, -{ "type": "Feature", "properties": { "id": 401939, "name": "E 96 St/Madison Av", "direction": "SE", "lat": 40.786987, "lon": -73.95385, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.95385, 40.786987 ] } }, -{ "type": "Feature", "properties": { "id": 401941, "name": "E 96 St/Lexington Av", "direction": "E", "lat": 40.78585, "lon": -73.95121, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.95121, 40.78585 ] } }, -{ "type": "Feature", "properties": { "id": 401942, "name": "E 96 St/3 Av", "direction": "SE", "lat": 40.784946, "lon": -73.949, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.949, 40.784946 ] } }, -{ "type": "Feature", "properties": { "id": 401943, "name": "E 96 St/2 Av", "direction": "SE", "lat": 40.78407, "lon": -73.94693, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.94693, 40.78407 ] } }, -{ "type": "Feature", "properties": { "id": 401946, "name": "3 Av/E 99 St", "direction": "NE", "lat": 40.787907, "lon": -73.94727, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94727, 40.787907 ] } }, -{ "type": "Feature", "properties": { "id": 401947, "name": "3 Av/E 102 St", "direction": "NE", "lat": 40.789272, "lon": -73.94629, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94629, 40.789272 ] } }, -{ "type": "Feature", "properties": { "id": 401948, "name": "3 Av/E 104 St", "direction": "NE", "lat": 40.79054, "lon": -73.94536, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94536, 40.79054 ] } }, -{ "type": "Feature", "properties": { "id": 401950, "name": "E 106 St/2 Av", "direction": "SE", "lat": 40.790382, "lon": -73.94211, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.94211, 40.790382 ] } }, -{ "type": "Feature", "properties": { "id": 401951, "name": "E 106 St/1 Av", "direction": "SE", "lat": 40.789402, "lon": -73.93977, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.93977, 40.789402 ] } }, -{ "type": "Feature", "properties": { "id": 401954, "name": "E 97 St/1 Av", "direction": "W", "lat": 40.784527, "lon": -73.94549, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.94549, 40.784527 ] } }, -{ "type": "Feature", "properties": { "id": 401955, "name": "E 97 St/2 Av", "direction": "NW", "lat": 40.784893, "lon": -73.94628, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.94628, 40.784893 ] } }, -{ "type": "Feature", "properties": { "id": 401957, "name": "E 96 St/3 Av", "direction": "NW", "lat": 40.78536, "lon": -73.94946, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.94946, 40.78536 ] } }, -{ "type": "Feature", "properties": { "id": 401958, "name": "E 96 St/Lexington Av", "direction": "NW", "lat": 40.7861, "lon": -73.95125, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.95125, 40.7861 ] } }, -{ "type": "Feature", "properties": { "id": 401960, "name": "E 96 St/Madison Av", "direction": "NW", "lat": 40.787243, "lon": -73.95387, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.95387, 40.787243 ] } }, -{ "type": "Feature", "properties": { "id": 401961, "name": "E 97 St/5 Av", "direction": "NW", "lat": 40.78858, "lon": -73.95505, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.95505, 40.78858 ] } }, -{ "type": "Feature", "properties": { "id": 401964, "name": "W 96 St/Amsterdam Av", "direction": "NW", "lat": 40.794037, "lon": -73.97009, "routes": "M106, M96" }, "geometry": { "type": "Point", "coordinates": [ -73.97009, 40.794037 ] } }, -{ "type": "Feature", "properties": { "id": 401965, "name": "W 96 St/Broadway", "direction": "NW", "lat": 40.7946, "lon": -73.97145, "routes": "M106, M96" }, "geometry": { "type": "Point", "coordinates": [ -73.97145, 40.7946 ] } }, -{ "type": "Feature", "properties": { "id": 401966, "name": "W 97 St/West End Av", "direction": "NW", "lat": 40.795853, "lon": -73.972404, "routes": "M96, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.972404, 40.795853 ] } }, -{ "type": "Feature", "properties": { "id": 401968, "name": "E 105 St/1 Av", "direction": "NW", "lat": 40.788902, "lon": -73.940315, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.940315, 40.788902 ] } }, -{ "type": "Feature", "properties": { "id": 401969, "name": "E 106 St/1 Av", "direction": "NW", "lat": 40.789898, "lon": -73.940475, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.940475, 40.789898 ] } }, -{ "type": "Feature", "properties": { "id": 401970, "name": "E 106 St/2 Av", "direction": "NW", "lat": 40.790768, "lon": -73.9426, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.9426, 40.790768 ] } }, -{ "type": "Feature", "properties": { "id": 401971, "name": "E 106 St/3 Av", "direction": "NW", "lat": 40.791595, "lon": -73.9445, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.9445, 40.791595 ] } }, -{ "type": "Feature", "properties": { "id": 401973, "name": "Lexington Av/E 104 St", "direction": "SW", "lat": 40.79057, "lon": -73.947556, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.947556, 40.79057 ] } }, -{ "type": "Feature", "properties": { "id": 401974, "name": "Lexington Av/E 102 St", "direction": "SW", "lat": 40.789368, "lon": -73.94844, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94844, 40.789368 ] } }, -{ "type": "Feature", "properties": { "id": 401977, "name": "W 106 St/Broadway", "direction": "NW", "lat": 40.80133, "lon": -73.9676, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.9676, 40.80133 ] } }, -{ "type": "Feature", "properties": { "id": 401988, "name": "W 116 St/Malcolm X Blvd", "direction": "SE", "lat": 40.801754, "lon": -73.94921, "routes": "M116, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94921, 40.801754 ] } }, -{ "type": "Feature", "properties": { "id": 401989, "name": "W 116 St/5 Av", "direction": "E", "lat": 40.800667, "lon": -73.94671, "routes": "M102, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.94671, 40.800667 ] } }, -{ "type": "Feature", "properties": { "id": 401990, "name": "E 116 St/Madison Av", "direction": "SE", "lat": 40.799717, "lon": -73.9444, "routes": "M116, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.9444, 40.799717 ] } }, -{ "type": "Feature", "properties": { "id": 401991, "name": "E 116 St/Park Av", "direction": "SE", "lat": 40.79935, "lon": -73.94352, "routes": "M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94352, 40.79935 ] } }, -{ "type": "Feature", "properties": { "id": 401992, "name": "E 116 St/Lexington Av", "direction": "SE", "lat": 40.798607, "lon": -73.94182, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.94182, 40.798607 ] } }, -{ "type": "Feature", "properties": { "id": 401993, "name": "E 116 St/3 Av", "direction": "SE", "lat": 40.79771, "lon": -73.93969, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93969, 40.79771 ] } }, -{ "type": "Feature", "properties": { "id": 401994, "name": "E 116 St/2 Av", "direction": "SE", "lat": 40.79699, "lon": -73.93799, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93799, 40.79699 ] } }, -{ "type": "Feature", "properties": { "id": 401998, "name": "Pleasant Av/E 120 St", "direction": "NW", "lat": 40.79764, "lon": -73.93111, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93111, 40.79764 ] } }, -{ "type": "Feature", "properties": { "id": 401999, "name": "E 116 St/Pleasant Av", "direction": "NW", "lat": 40.795307, "lon": -73.93351, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93351, 40.795307 ] } }, -{ "type": "Feature", "properties": { "id": 402000, "name": "E 116 St/1 Av", "direction": "W", "lat": 40.796005, "lon": -73.93517, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93517, 40.796005 ] } }, -{ "type": "Feature", "properties": { "id": 402001, "name": "E 116 St/2 Av", "direction": "NW", "lat": 40.79725, "lon": -73.93812, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93812, 40.79725 ] } }, -{ "type": "Feature", "properties": { "id": 402002, "name": "E 116 St/3 Av", "direction": "NW", "lat": 40.797928, "lon": -73.93974, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93974, 40.797928 ] } }, -{ "type": "Feature", "properties": { "id": 402003, "name": "E 116 St/Lexington Av", "direction": "NW", "lat": 40.7986, "lon": -73.94147, "routes": "M102, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.94147, 40.7986 ] } }, -{ "type": "Feature", "properties": { "id": 402004, "name": "E 116 St/Park Av", "direction": "NW", "lat": 40.79917, "lon": -73.942825, "routes": "M102, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.942825, 40.79917 ] } }, -{ "type": "Feature", "properties": { "id": 402005, "name": "E 116 St/Madison Av", "direction": "NW", "lat": 40.80017, "lon": -73.94517, "routes": "M102, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.94517, 40.80017 ] } }, -{ "type": "Feature", "properties": { "id": 402006, "name": "E 116 St/5 Av", "direction": "NW", "lat": 40.800625, "lon": -73.94622, "routes": "M102, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.94622, 40.800625 ] } }, -{ "type": "Feature", "properties": { "id": 402016, "name": "W 106 St/Columbus Av", "direction": "NW", "lat": 40.79924, "lon": -73.96266, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.96266, 40.79924 ] } }, -{ "type": "Feature", "properties": { "id": 402017, "name": "W 106 St/Amsterdam Av", "direction": "NW", "lat": 40.80068, "lon": -73.96606, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.96606, 40.80068 ] } }, -{ "type": "Feature", "properties": { "id": 402018, "name": "W 106 St/Broadway", "direction": "E", "lat": 40.801422, "lon": -73.96824, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.96824, 40.801422 ] } }, -{ "type": "Feature", "properties": { "id": 402022, "name": "West Houston St/Avenue Of The Americas", "direction": "E", "lat": 40.728226, "lon": -74.00266, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -74.00266, 40.728226 ] } }, -{ "type": "Feature", "properties": { "id": 402023, "name": "West Houston St/Sullivan St", "direction": "SE", "lat": 40.727478, "lon": -74.0011, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -74.0011, 40.727478 ] } }, -{ "type": "Feature", "properties": { "id": 402024, "name": "West Houston St/West Broadway", "direction": "SE", "lat": 40.726524, "lon": -73.99941, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99941, 40.726524 ] } }, -{ "type": "Feature", "properties": { "id": 402027, "name": "East Houston St/Lafayette St", "direction": "E", "lat": 40.72502, "lon": -73.99523, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99523, 40.72502 ] } }, -{ "type": "Feature", "properties": { "id": 402028, "name": "East Houston St/Mott St", "direction": "E", "lat": 40.72445, "lon": -73.993706, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.993706, 40.72445 ] } }, -{ "type": "Feature", "properties": { "id": 402029, "name": "East Houston St/Bowery", "direction": "SE", "lat": 40.72391, "lon": -73.992386, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.992386, 40.72391 ] } }, -{ "type": "Feature", "properties": { "id": 402032, "name": "East Houston St/Essex St", "direction": "E", "lat": 40.72215, "lon": -73.986565, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.986565, 40.72215 ] } }, -{ "type": "Feature", "properties": { "id": 402033, "name": "East Houston St/Norfolk St", "direction": "E", "lat": 40.721684, "lon": -73.98497, "routes": "M9, M21" }, "geometry": { "type": "Point", "coordinates": [ -73.98497, 40.721684 ] } }, -{ "type": "Feature", "properties": { "id": 402034, "name": "East Houston St/Clinton St", "direction": "E", "lat": 40.721287, "lon": -73.983734, "routes": "M9, M21" }, "geometry": { "type": "Point", "coordinates": [ -73.983734, 40.721287 ] } }, -{ "type": "Feature", "properties": { "id": 402036, "name": "Avenue C/E 3 St", "direction": "NE", "lat": 40.721783, "lon": -73.98042, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.98042, 40.721783 ] } }, -{ "type": "Feature", "properties": { "id": 402037, "name": "Avenue C/E 5 St", "direction": "NE", "lat": 40.723007, "lon": -73.979515, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.979515, 40.723007 ] } }, -{ "type": "Feature", "properties": { "id": 402038, "name": "Avenue C/E 7 St", "direction": "NE", "lat": 40.724335, "lon": -73.97858, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97858, 40.724335 ] } }, -{ "type": "Feature", "properties": { "id": 402039, "name": "Avenue C/E 11 St", "direction": "NE", "lat": 40.726276, "lon": -73.97714, "routes": "M14D+, M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97714, 40.726276 ] } }, -{ "type": "Feature", "properties": { "id": 402041, "name": "Avenue C/E 14 St", "direction": "NE", "lat": 40.7283, "lon": -73.97569, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97569, 40.7283 ] } }, -{ "type": "Feature", "properties": { "id": 402042, "name": "Avenue C/E 16 St", "direction": "NE", "lat": 40.7297, "lon": -73.97472, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97472, 40.7297 ] } }, -{ "type": "Feature", "properties": { "id": 402043, "name": "Avenue C/Fdr Drive", "direction": "N", "lat": 40.730812, "lon": -73.9739, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.9739, 40.730812 ] } }, -{ "type": "Feature", "properties": { "id": 402048, "name": "E 29 St/1 Av", "direction": "NW", "lat": 40.740788, "lon": -73.97591, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97591, 40.740788 ] } }, -{ "type": "Feature", "properties": { "id": 402049, "name": "E 29 St/2 Av", "direction": "NW", "lat": 40.741592, "lon": -73.97791, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97791, 40.741592 ] } }, -{ "type": "Feature", "properties": { "id": 402052, "name": "E 23 St/Av C", "direction": "SE", "lat": 40.7355, "lon": -73.97537, "routes": "M34A+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.97537, 40.7355 ] } }, -{ "type": "Feature", "properties": { "id": 402054, "name": "Avenue C/E 20 St", "direction": "S", "lat": 40.732796, "lon": -73.97454, "routes": "M9, M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.97454, 40.732796 ] } }, -{ "type": "Feature", "properties": { "id": 402055, "name": "Avenue C/E 18 St", "direction": "S", "lat": 40.731266, "lon": -73.97418, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97418, 40.731266 ] } }, -{ "type": "Feature", "properties": { "id": 402056, "name": "Avenue C/E 16 St", "direction": "SW", "lat": 40.73003, "lon": -73.974884, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.974884, 40.73003 ] } }, -{ "type": "Feature", "properties": { "id": 402057, "name": "Avenue C/E 14 St", "direction": "SW", "lat": 40.728542, "lon": -73.975655, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.975655, 40.728542 ] } }, -{ "type": "Feature", "properties": { "id": 402067, "name": "East Houston St/Avenue B", "direction": "W", "lat": 40.72169, "lon": -73.98416, "routes": "M9, M21" }, "geometry": { "type": "Point", "coordinates": [ -73.98416, 40.72169 ] } }, -{ "type": "Feature", "properties": { "id": 402068, "name": "East Houston St/Avenue A", "direction": "W", "lat": 40.722233, "lon": -73.98607, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.98607, 40.722233 ] } }, -{ "type": "Feature", "properties": { "id": 402071, "name": "East Houston St/Bowery", "direction": "W", "lat": 40.724255, "lon": -73.99285, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99285, 40.724255 ] } }, -{ "type": "Feature", "properties": { "id": 402080, "name": "Chambers St/West St", "direction": "NW", "lat": 40.717133, "lon": -74.012596, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.012596, 40.717133 ] } }, -{ "type": "Feature", "properties": { "id": 402082, "name": "Park Row/Spruce St", "direction": "E", "lat": 40.71187, "lon": -74.00611, "routes": "BM3, BM4, BM1, BM1, BM3, BM2, BM2, BM4" }, "geometry": { "type": "Point", "coordinates": [ -74.00611, 40.71187 ] } }, -{ "type": "Feature", "properties": { "id": 402085, "name": "Frankfort St/Pearl St", "direction": "SE", "lat": 40.709557, "lon": -74.00187, "routes": "QM7, QM8, M22, QM25, QM25, QM8, QM7, QM11, QM11" }, "geometry": { "type": "Point", "coordinates": [ -74.00187, 40.709557 ] } }, -{ "type": "Feature", "properties": { "id": 402088, "name": "Madison St/Oliver St", "direction": "E", "lat": 40.711876, "lon": -73.997925, "routes": "M22, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.997925, 40.711876 ] } }, -{ "type": "Feature", "properties": { "id": 402090, "name": "Madison St/Market St", "direction": "E", "lat": 40.712208, "lon": -73.994095, "routes": "M22, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.994095, 40.712208 ] } }, -{ "type": "Feature", "properties": { "id": 402091, "name": "Madison St/Pike St", "direction": "E", "lat": 40.712395, "lon": -73.992035, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.992035, 40.712395 ] } }, -{ "type": "Feature", "properties": { "id": 402092, "name": "Madison St/Rutgers St", "direction": "E", "lat": 40.7126, "lon": -73.98956, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.98956, 40.7126 ] } }, -{ "type": "Feature", "properties": { "id": 402093, "name": "Madison St/Jefferson St", "direction": "E", "lat": 40.712696, "lon": -73.988396, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.988396, 40.712696 ] } }, -{ "type": "Feature", "properties": { "id": 402094, "name": "Madison St/Clinton St", "direction": "E", "lat": 40.712864, "lon": -73.98646, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.98646, 40.712864 ] } }, -{ "type": "Feature", "properties": { "id": 402095, "name": "Madison St/Montgomery St", "direction": "E", "lat": 40.713043, "lon": -73.98458, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.98458, 40.713043 ] } }, -{ "type": "Feature", "properties": { "id": 402096, "name": "Madison St/Gouverneur St", "direction": "E", "lat": 40.713154, "lon": -73.98356, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.98356, 40.713154 ] } }, -{ "type": "Feature", "properties": { "id": 402097, "name": "Madison St/Gouverneur St", "direction": "E", "lat": 40.71333, "lon": -73.981766, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.981766, 40.71333 ] } }, -{ "type": "Feature", "properties": { "id": 402100, "name": "Grand St/Fdr Dr", "direction": "E", "lat": 40.713264, "lon": -73.97798, "routes": "L92, M14A+, M22" }, "geometry": { "type": "Point", "coordinates": [ -73.97798, 40.713264 ] } }, -{ "type": "Feature", "properties": { "id": 402103, "name": "Jackson St/Madison St", "direction": "N", "lat": 40.71336, "lon": -73.980705, "routes": "M22, L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.980705, 40.71336 ] } }, -{ "type": "Feature", "properties": { "id": 402104, "name": "Madison St/Jackson St", "direction": "W", "lat": 40.713585, "lon": -73.98136, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.98136, 40.713585 ] } }, -{ "type": "Feature", "properties": { "id": 402105, "name": "Madison St/Gouverneur St", "direction": "W", "lat": 40.71322, "lon": -73.984344, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.984344, 40.71322 ] } }, -{ "type": "Feature", "properties": { "id": 402106, "name": "Madison St/Montgomery St", "direction": "W", "lat": 40.713093, "lon": -73.98555, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.98555, 40.713093 ] } }, -{ "type": "Feature", "properties": { "id": 402107, "name": "Madison St/Clinton St", "direction": "W", "lat": 40.712933, "lon": -73.98744, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.98744, 40.712933 ] } }, -{ "type": "Feature", "properties": { "id": 402108, "name": "Madison St/Jefferson St", "direction": "W", "lat": 40.712807, "lon": -73.988884, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.988884, 40.712807 ] } }, -{ "type": "Feature", "properties": { "id": 402109, "name": "Madison St/Rutgers St", "direction": "W", "lat": 40.712685, "lon": -73.99042, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.99042, 40.712685 ] } }, -{ "type": "Feature", "properties": { "id": 402110, "name": "Madison St/Pike St", "direction": "W", "lat": 40.71249, "lon": -73.992195, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.992195, 40.71249 ] } }, -{ "type": "Feature", "properties": { "id": 402111, "name": "Madison St/Market St", "direction": "W", "lat": 40.712326, "lon": -73.99474, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99474, 40.712326 ] } }, -{ "type": "Feature", "properties": { "id": 402112, "name": "Madison St/Catherine St", "direction": "W", "lat": 40.712063, "lon": -73.99746, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.99746, 40.712063 ] } }, -{ "type": "Feature", "properties": { "id": 402118, "name": "Chambers St/Broadway", "direction": "NW", "lat": 40.714165, "lon": -74.00614, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.00614, 40.714165 ] } }, -{ "type": "Feature", "properties": { "id": 402119, "name": "Chambers St/Church St", "direction": "NW", "lat": 40.714935, "lon": -74.00773, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.00773, 40.714935 ] } }, -{ "type": "Feature", "properties": { "id": 402120, "name": "Chambers St/Hudson St", "direction": "NW", "lat": 40.715652, "lon": -74.00944, "routes": "M20, M22" }, "geometry": { "type": "Point", "coordinates": [ -74.00944, 40.715652 ] } }, -{ "type": "Feature", "properties": { "id": 402124, "name": "W 23 St/10 Av", "direction": "SE", "lat": 40.747425, "lon": -74.00376, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00376, 40.747425 ] } }, -{ "type": "Feature", "properties": { "id": 402125, "name": "W 23 St/9 Av", "direction": "SE", "lat": 40.746243, "lon": -74.00095, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00095, 40.746243 ] } }, -{ "type": "Feature", "properties": { "id": 402126, "name": "W 23 St/8 Av", "direction": "E", "lat": 40.74506, "lon": -73.99814, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.99814, 40.74506 ] } }, -{ "type": "Feature", "properties": { "id": 402127, "name": "W 23 St/7 Av", "direction": "SE", "lat": 40.743954, "lon": -73.99549, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.99549, 40.743954 ] } }, -{ "type": "Feature", "properties": { "id": 402128, "name": "W 23 St/6 Av", "direction": "SE", "lat": 40.74236, "lon": -73.99176, "routes": "X28, M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.99176, 40.74236 ] } }, -{ "type": "Feature", "properties": { "id": 402130, "name": "E 23 St/Broadway", "direction": "SE", "lat": 40.741142, "lon": -73.98879, "routes": "X64, SIM4C, X63, X38, SIM31, M23+, X68, SIM33C, X37, SIM10, X27, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.98879, 40.741142 ] } }, -{ "type": "Feature", "properties": { "id": 402132, "name": "E 23 St/Park Av South", "direction": "E", "lat": 40.73992, "lon": -73.98599, "routes": "X38, BM2, SIM10, X37, BM3, M23+, BM4, BM1, SIM31, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -73.98599, 40.73992 ] } }, -{ "type": "Feature", "properties": { "id": 402133, "name": "E 23 St/Lexington Av", "direction": "SE", "lat": 40.739216, "lon": -73.98428, "routes": "X68, SIM11, X64, X63, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98428, 40.739216 ] } }, -{ "type": "Feature", "properties": { "id": 402134, "name": "E 23 St/3 Av", "direction": "SE", "lat": 40.73859, "lon": -73.98276, "routes": "SIM10, SIM11, BM4, SIM31, X63, X64, M23+, BM2, X38, SIM6, X37, SIM3, BM3, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.98276, 40.73859 ] } }, -{ "type": "Feature", "properties": { "id": 402135, "name": "E 23 St/2 Av", "direction": "SE", "lat": 40.737682, "lon": -73.98058, "routes": "SIM11, BM3, SIM31, BM2, BM4, SIM6, BM1, SIM10, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -73.98058, 40.737682 ] } }, -{ "type": "Feature", "properties": { "id": 402142, "name": "E 20 St/1 Av", "direction": "NW", "lat": 40.73495, "lon": -73.97953, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.97953, 40.73495 ] } }, -{ "type": "Feature", "properties": { "id": 402143, "name": "E 23 St/1 Av", "direction": "NW", "lat": 40.737297, "lon": -73.97936, "routes": "BM1, BM2, BM3, SIM6, SIM31, X38, SIM3, SIM10, BM4, X63, SIM11, X68, X64, X37, M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.97936, 40.737297 ] } }, -{ "type": "Feature", "properties": { "id": 402144, "name": "E 23 St/2 Av", "direction": "W", "lat": 40.73831, "lon": -73.98171, "routes": "SIM31, SIM6, SIM3, SIM11, M23+, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -73.98171, 40.73831 ] } }, -{ "type": "Feature", "properties": { "id": 402145, "name": "E 23 St/3 Av", "direction": "NW", "lat": 40.739025, "lon": -73.98346, "routes": "M23+, SIM31, BM1, BM3, X38, BM4, X37, SIM10, SIM3, SIM6, BM2, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -73.98346, 40.739025 ] } }, -{ "type": "Feature", "properties": { "id": 402146, "name": "E 23 St/Lexington Av", "direction": "NW", "lat": 40.739662, "lon": -73.98499, "routes": "X63, X64, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.98499, 40.739662 ] } }, -{ "type": "Feature", "properties": { "id": 402152, "name": "W 23 St/Avenue Of The Americas", "direction": "NW", "lat": 40.7431, "lon": -73.993065, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.993065, 40.7431 ] } }, -{ "type": "Feature", "properties": { "id": 402153, "name": "W 23 St/7 Av", "direction": "NW", "lat": 40.744404, "lon": -73.99617, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.99617, 40.744404 ] } }, -{ "type": "Feature", "properties": { "id": 402154, "name": "W 23 St/8 Av", "direction": "W", "lat": 40.74555, "lon": -73.998886, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.998886, 40.74555 ] } }, -{ "type": "Feature", "properties": { "id": 402155, "name": "W 23 St/9 Av", "direction": "NW", "lat": 40.746716, "lon": -74.001656, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.001656, 40.746716 ] } }, -{ "type": "Feature", "properties": { "id": 402157, "name": "W 23 St/11 Av", "direction": "NW", "lat": 40.748875, "lon": -74.00678, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00678, 40.748875 ] } }, -{ "type": "Feature", "properties": { "id": 402160, "name": "12 Av/W 43 St", "direction": "NE", "lat": 40.76255, "lon": -74.00016, "routes": "M12, M50" }, "geometry": { "type": "Point", "coordinates": [ -74.00016, 40.76255 ] } }, -{ "type": "Feature", "properties": { "id": 402161, "name": "12 Av/W 46 St", "direction": "NE", "lat": 40.764286, "lon": -73.99834, "routes": "M50, M12" }, "geometry": { "type": "Point", "coordinates": [ -73.99834, 40.764286 ] } }, -{ "type": "Feature", "properties": { "id": 402162, "name": "12 Av/W 48 St", "direction": "NE", "lat": 40.765583, "lon": -73.99743, "routes": "M12, M50" }, "geometry": { "type": "Point", "coordinates": [ -73.99743, 40.765583 ] } }, -{ "type": "Feature", "properties": { "id": 402163, "name": "W 50 St/12 Av", "direction": "E", "lat": 40.76662, "lon": -73.99665, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.99665, 40.76662 ] } }, -{ "type": "Feature", "properties": { "id": 402164, "name": "W 50 St/11 Av", "direction": "SE", "lat": 40.765736, "lon": -73.99454, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.99454, 40.765736 ] } }, -{ "type": "Feature", "properties": { "id": 402165, "name": "W 50 St/10 Av", "direction": "SE", "lat": 40.764503, "lon": -73.99171, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.99171, 40.764503 ] } }, -{ "type": "Feature", "properties": { "id": 402166, "name": "W 50 St/9 Av", "direction": "SE", "lat": 40.76347, "lon": -73.9891, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.9891, 40.76347 ] } }, -{ "type": "Feature", "properties": { "id": 402167, "name": "W 50 St/8 Av", "direction": "SE", "lat": 40.762024, "lon": -73.985794, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.985794, 40.762024 ] } }, -{ "type": "Feature", "properties": { "id": 402169, "name": "W 50 St/Avenue Of The Americas", "direction": "SE", "lat": 40.759674, "lon": -73.98022, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.98022, 40.759674 ] } }, -{ "type": "Feature", "properties": { "id": 402171, "name": "E 50 St/5 Av", "direction": "SE", "lat": 40.75843, "lon": -73.977104, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.977104, 40.75843 ] } }, -{ "type": "Feature", "properties": { "id": 402172, "name": "E 50 St/Madison Av", "direction": "SE", "lat": 40.757725, "lon": -73.975395, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.975395, 40.757725 ] } }, -{ "type": "Feature", "properties": { "id": 402173, "name": "E 50 St/Lexington Av", "direction": "SE", "lat": 40.756245, "lon": -73.97214, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.97214, 40.756245 ] } }, -{ "type": "Feature", "properties": { "id": 402174, "name": "E 50 St/3 Av", "direction": "SE", "lat": 40.755547, "lon": -73.97048, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.97048, 40.755547 ] } }, -{ "type": "Feature", "properties": { "id": 402175, "name": "E 50 St/2 Av", "direction": "SE", "lat": 40.754883, "lon": -73.9688, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.9688, 40.754883 ] } }, -{ "type": "Feature", "properties": { "id": 402183, "name": "E 49 St/1 Av", "direction": "NW", "lat": 40.75351, "lon": -73.966965, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.966965, 40.75351 ] } }, -{ "type": "Feature", "properties": { "id": 402185, "name": "E 49 St/3 Av", "direction": "NW", "lat": 40.755383, "lon": -73.97142, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.97142, 40.755383 ] } }, -{ "type": "Feature", "properties": { "id": 402186, "name": "E 49 St/Lexington Av", "direction": "NW", "lat": 40.756138, "lon": -73.97308, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.97308, 40.756138 ] } }, -{ "type": "Feature", "properties": { "id": 402188, "name": "E 49 St/Madison Av", "direction": "NW", "lat": 40.75744, "lon": -73.97622, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.97622, 40.75744 ] } }, -{ "type": "Feature", "properties": { "id": 402189, "name": "W 49 St/5 Av", "direction": "W", "lat": 40.758114, "lon": -73.97802, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.97802, 40.758114 ] } }, -{ "type": "Feature", "properties": { "id": 402191, "name": "W 49 St/Avenue Of The Americas", "direction": "W", "lat": 40.759502, "lon": -73.98112, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.98112, 40.759502 ] } }, -{ "type": "Feature", "properties": { "id": 402194, "name": "W 49 St/9 Av", "direction": "NW", "lat": 40.763035, "lon": -73.989555, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.989555, 40.763035 ] } }, -{ "type": "Feature", "properties": { "id": 402195, "name": "W 49 St/10 Av", "direction": "NW", "lat": 40.7641, "lon": -73.99198, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.99198, 40.7641 ] } }, -{ "type": "Feature", "properties": { "id": 402205, "name": "W 57 St/11 Av", "direction": "SE", "lat": 40.77023, "lon": -73.99133, "routes": "M57, M12" }, "geometry": { "type": "Point", "coordinates": [ -73.99133, 40.77023 ] } }, -{ "type": "Feature", "properties": { "id": 402212, "name": "E 57 St/Park Av", "direction": "E", "lat": 40.761368, "lon": -73.97028, "routes": "X63, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.97028, 40.761368 ] } }, -{ "type": "Feature", "properties": { "id": 402214, "name": "E 57 St/Lexington Av", "direction": "SE", "lat": 40.760727, "lon": -73.96873, "routes": "M31, SIM31, SIM6, SIM22, X63, M57, SIM8X, X64, SIM8, SIM26, SIM11, X68, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -73.96873, 40.760727 ] } }, -{ "type": "Feature", "properties": { "id": 402215, "name": "E 57 St/3 Av", "direction": "SE", "lat": 40.75991, "lon": -73.966805, "routes": "BM3, BM4, BM4, BM3, BM2, BM1, X64, M57, X63, BM1, M31, X68, BM5, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.966805, 40.75991 ] } }, -{ "type": "Feature", "properties": { "id": 402216, "name": "E 57 St/2 Av", "direction": "SE", "lat": 40.759087, "lon": -73.96486, "routes": "M57, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.96486, 40.759087 ] } }, -{ "type": "Feature", "properties": { "id": 402217, "name": "E 57 St/1 Av", "direction": "SE", "lat": 40.758095, "lon": -73.96248, "routes": "M57, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.96248, 40.758095 ] } }, -{ "type": "Feature", "properties": { "id": 402218, "name": "E 57 St/Sutton Pl", "direction": "SE", "lat": 40.757656, "lon": -73.96149, "routes": "M31, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.96149, 40.757656 ] } }, -{ "type": "Feature", "properties": { "id": 402221, "name": "E 55 St/1 Av", "direction": "NW", "lat": 40.756996, "lon": -73.96363, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.96363, 40.756996 ] } }, -{ "type": "Feature", "properties": { "id": 402222, "name": "E 57 St/1 Av", "direction": "W", "lat": 40.75856, "lon": -73.9633, "routes": "M31, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.9633, 40.75856 ] } }, -{ "type": "Feature", "properties": { "id": 402223, "name": "E 57 St/2 Av", "direction": "NW", "lat": 40.75957, "lon": -73.965675, "routes": "M57, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.965675, 40.75957 ] } }, -{ "type": "Feature", "properties": { "id": 402224, "name": "E 57 St/3 Av", "direction": "NW", "lat": 40.76052, "lon": -73.96793, "routes": "M57, X68, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.96793, 40.76052 ] } }, -{ "type": "Feature", "properties": { "id": 402227, "name": "E 57 St/Madison Av", "direction": "NW", "lat": 40.762524, "lon": -73.972824, "routes": "X28, SIM8, X37, SIM25, SIM31, SIM8X, X38, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.972824, 40.762524 ] } }, -{ "type": "Feature", "properties": { "id": 402228, "name": "W 57 St/5 Av", "direction": "NW", "lat": 40.763206, "lon": -73.97445, "routes": "M31, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.97445, 40.763206 ] } }, -{ "type": "Feature", "properties": { "id": 402229, "name": "W 57 St/Avenue Of The Americas", "direction": "NW", "lat": 40.764576, "lon": -73.97764, "routes": "M31, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.97764, 40.764576 ] } }, -{ "type": "Feature", "properties": { "id": 402233, "name": "W 57 St/9 Av", "direction": "NW", "lat": 40.768066, "lon": -73.9859, "routes": "M31, M12, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.9859, 40.768066 ] } }, -{ "type": "Feature", "properties": { "id": 402269, "name": "W 72 St/Central Park West", "direction": "SE", "lat": 40.776207, "lon": -73.97617, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.97617, 40.776207 ] } }, -{ "type": "Feature", "properties": { "id": 402290, "name": "E 72 St/Madison Av", "direction": "SE", "lat": 40.771503, "lon": -73.965, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.965, 40.771503 ] } }, -{ "type": "Feature", "properties": { "id": 402292, "name": "E 72 St/Lexington Av", "direction": "SE", "lat": 40.770267, "lon": -73.962105, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.962105, 40.770267 ] } }, -{ "type": "Feature", "properties": { "id": 402293, "name": "E 72 St/3 Av", "direction": "SE", "lat": 40.76952, "lon": -73.96028, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.96028, 40.76952 ] } }, -{ "type": "Feature", "properties": { "id": 402295, "name": "E 72 St/1 Av", "direction": "E", "lat": 40.767673, "lon": -73.95585, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.95585, 40.767673 ] } }, -{ "type": "Feature", "properties": { "id": 402296, "name": "E 72 St/York Av", "direction": "SE", "lat": 40.76695, "lon": -73.95412, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.95412, 40.76695 ] } }, -{ "type": "Feature", "properties": { "id": 402298, "name": "E 72 St/1 Av", "direction": "NW", "lat": 40.768047, "lon": -73.956375, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.956375, 40.768047 ] } }, -{ "type": "Feature", "properties": { "id": 402299, "name": "E 72 St/2 Av", "direction": "NW", "lat": 40.769047, "lon": -73.95872, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.95872, 40.769047 ] } }, -{ "type": "Feature", "properties": { "id": 402300, "name": "E 72 St/3 Av", "direction": "NW", "lat": 40.769997, "lon": -73.96098, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.96098, 40.769997 ] } }, -{ "type": "Feature", "properties": { "id": 402301, "name": "E 72 St/Lexington Av", "direction": "NW", "lat": 40.770657, "lon": -73.96255, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.96255, 40.770657 ] } }, -{ "type": "Feature", "properties": { "id": 402303, "name": "E 72 St/Madison Av", "direction": "NW", "lat": 40.77179, "lon": -73.96525, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.96525, 40.77179 ] } }, -{ "type": "Feature", "properties": { "id": 402328, "name": "Sutton Pl/Sutton Sq", "direction": "NE", "lat": 40.75826, "lon": -73.95995, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95995, 40.75826 ] } }, -{ "type": "Feature", "properties": { "id": 402330, "name": "York Av/E 63 St", "direction": "NE", "lat": 40.761482, "lon": -73.95757, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95757, 40.761482 ] } }, -{ "type": "Feature", "properties": { "id": 402331, "name": "York Av/E 66 St", "direction": "NE", "lat": 40.763332, "lon": -73.95624, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95624, 40.763332 ] } }, -{ "type": "Feature", "properties": { "id": 402334, "name": "York Av/E 72 St", "direction": "NE", "lat": 40.767166, "lon": -73.95344, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95344, 40.767166 ] } }, -{ "type": "Feature", "properties": { "id": 402336, "name": "York Av/E 76 St", "direction": "NE", "lat": 40.76968, "lon": -73.95161, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95161, 40.76968 ] } }, -{ "type": "Feature", "properties": { "id": 402338, "name": "York Av/E 82 St", "direction": "NE", "lat": 40.773598, "lon": -73.94877, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.94877, 40.773598 ] } }, -{ "type": "Feature", "properties": { "id": 402339, "name": "York Av/E 84 St", "direction": "NE", "lat": 40.774864, "lon": -73.947845, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.947845, 40.774864 ] } }, -{ "type": "Feature", "properties": { "id": 402345, "name": "York Av/E 86 St", "direction": "SW", "lat": 40.775776, "lon": -73.94732, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.94732, 40.775776 ] } }, -{ "type": "Feature", "properties": { "id": 402346, "name": "York Av/E 84 St", "direction": "SW", "lat": 40.774315, "lon": -73.94839, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.94839, 40.774315 ] } }, -{ "type": "Feature", "properties": { "id": 402347, "name": "York Av/E 82 St", "direction": "SW", "lat": 40.77311, "lon": -73.949265, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.949265, 40.77311 ] } }, -{ "type": "Feature", "properties": { "id": 402348, "name": "York Av/E 79 St", "direction": "SW", "lat": 40.77108, "lon": -73.95075, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95075, 40.77108 ] } }, -{ "type": "Feature", "properties": { "id": 402349, "name": "York Av/E 77 St", "direction": "SW", "lat": 40.769814, "lon": -73.951645, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.951645, 40.769814 ] } }, -{ "type": "Feature", "properties": { "id": 402351, "name": "York Av/E 72 St", "direction": "SW", "lat": 40.766594, "lon": -73.95401, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95401, 40.766594 ] } }, -{ "type": "Feature", "properties": { "id": 402355, "name": "York Av/E 64 St", "direction": "SW", "lat": 40.76155, "lon": -73.95769, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95769, 40.76155 ] } }, -{ "type": "Feature", "properties": { "id": 402377, "name": "E 59 St/Madison Av", "direction": "SE", "lat": 40.763374, "lon": -73.97115, "routes": "Q32, QM2, QM3, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.97115, 40.763374 ] } }, -{ "type": "Feature", "properties": { "id": 402379, "name": "E 59 St/Lexington Av", "direction": "SE", "lat": 40.762005, "lon": -73.9678, "routes": "QM20, QM3, QM2, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.9678, 40.762005 ] } }, -{ "type": "Feature", "properties": { "id": 402380, "name": "E 59 St/3 Av", "direction": "SE", "lat": 40.761375, "lon": -73.96648, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.96648, 40.761375 ] } }, -{ "type": "Feature", "properties": { "id": 402441, "name": "E 60 St/2 Av", "direction": "NW", "lat": 40.761513, "lon": -73.96442, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.96442, 40.761513 ] } }, -{ "type": "Feature", "properties": { "id": 402443, "name": "E 60 St/Lexington Av", "direction": "NW", "lat": 40.762833, "lon": -73.96757, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.96757, 40.762833 ] } }, -{ "type": "Feature", "properties": { "id": 402446, "name": "5 Av/W 58 St", "direction": "SW", "lat": 40.763252, "lon": -73.9738, "routes": "M5, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.9738, 40.763252 ] } }, -{ "type": "Feature", "properties": { "id": 402460, "name": "E 124 St/3 Av", "direction": "SE", "lat": 40.80305, "lon": -73.936516, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.936516, 40.80305 ] } }, -{ "type": "Feature", "properties": { "id": 402461, "name": "E 124 St/2 Av", "direction": "SE", "lat": 40.802147, "lon": -73.93448, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.93448, 40.802147 ] } }, -{ "type": "Feature", "properties": { "id": 402502, "name": "E 125 St/3 Av", "direction": "NW", "lat": 40.803936, "lon": -73.93622, "routes": "M125, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93622, 40.803936 ] } }, -{ "type": "Feature", "properties": { "id": 402503, "name": "E 125 St/Lexington Av", "direction": "W", "lat": 40.804585, "lon": -73.93776, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.93776, 40.804585 ] } }, -{ "type": "Feature", "properties": { "id": 402504, "name": "E 125 St/Park Av", "direction": "NW", "lat": 40.8053, "lon": -73.939476, "routes": "M125, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.939476, 40.8053 ] } }, -{ "type": "Feature", "properties": { "id": 402505, "name": "E 125 St/Madison Av", "direction": "NW", "lat": 40.80598, "lon": -73.941, "routes": "M125, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.941, 40.80598 ] } }, -{ "type": "Feature", "properties": { "id": 402506, "name": "W 125 St/5 Av", "direction": "NW", "lat": 40.80654, "lon": -73.94244, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.94244, 40.80654 ] } }, -{ "type": "Feature", "properties": { "id": 402507, "name": "W 125 St/Malcolm X Blvd", "direction": "W", "lat": 40.808025, "lon": -73.94596, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.94596, 40.808025 ] } }, -{ "type": "Feature", "properties": { "id": 402508, "name": "W 125 St/Adam C Powell Blvd", "direction": "NW", "lat": 40.809227, "lon": -73.948784, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.948784, 40.809227 ] } }, -{ "type": "Feature", "properties": { "id": 402509, "name": "W 125 St/Frederick Douglass Blvd", "direction": "NW", "lat": 40.810402, "lon": -73.9516, "routes": "M125, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.9516, 40.810402 ] } }, -{ "type": "Feature", "properties": { "id": 402510, "name": "W 125 St/Saint Nicholas Av", "direction": "NW", "lat": 40.811005, "lon": -73.95301, "routes": "M125, M100, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95301, 40.811005 ] } }, -{ "type": "Feature", "properties": { "id": 402512, "name": "W 125 St/Amsterdam Av", "direction": "NW", "lat": 40.81327, "lon": -73.95612, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95612, 40.81327 ] } }, -{ "type": "Feature", "properties": { "id": 402517, "name": "Amsterdam Av/W 135 St", "direction": "NE", "lat": 40.819317, "lon": -73.95184, "routes": "M100, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95184, 40.819317 ] } }, -{ "type": "Feature", "properties": { "id": 402518, "name": "Amsterdam Av/W 138 St", "direction": "NE", "lat": 40.82104, "lon": -73.95058, "routes": "M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.95058, 40.82104 ] } }, -{ "type": "Feature", "properties": { "id": 402519, "name": "Amsterdam Av/W 140 St", "direction": "NE", "lat": 40.822403, "lon": -73.94959, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94959, 40.822403 ] } }, -{ "type": "Feature", "properties": { "id": 402520, "name": "Amsterdam Av/W 143 St", "direction": "NE", "lat": 40.82424, "lon": -73.94826, "routes": "M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94826, 40.82424 ] } }, -{ "type": "Feature", "properties": { "id": 402521, "name": "Amsterdam Av/W 145 St", "direction": "NE", "lat": 40.825615, "lon": -73.94723, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94723, 40.825615 ] } }, -{ "type": "Feature", "properties": { "id": 402523, "name": "Amsterdam Av/W 149 St", "direction": "NE", "lat": 40.82811, "lon": -73.94543, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94543, 40.82811 ] } }, -{ "type": "Feature", "properties": { "id": 402526, "name": "Amsterdam Av/W 155 St", "direction": "NE", "lat": 40.831684, "lon": -73.942825, "routes": "M101, M100, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.942825, 40.831684 ] } }, -{ "type": "Feature", "properties": { "id": 402535, "name": "Broadway/W 173 St", "direction": "N", "lat": 40.84495, "lon": -73.938675, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.938675, 40.84495 ] } }, -{ "type": "Feature", "properties": { "id": 402538, "name": "Broadway/W 181 St", "direction": "NE", "lat": 40.850063, "lon": -73.93575, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93575, 40.850063 ] } }, -{ "type": "Feature", "properties": { "id": 402543, "name": "Broadway/Fairview Av", "direction": "NE", "lat": 40.856964, "lon": -73.93238, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.93238, 40.856964 ] } }, -{ "type": "Feature", "properties": { "id": 402544, "name": "Broadway/W 193 St", "direction": "NE", "lat": 40.85852, "lon": -73.93156, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.93156, 40.85852 ] } }, -{ "type": "Feature", "properties": { "id": 402545, "name": "Broadway/W 196 St", "direction": "NE", "lat": 40.86087, "lon": -73.9305, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.9305, 40.86087 ] } }, -{ "type": "Feature", "properties": { "id": 402546, "name": "Broadway/Sherman Av", "direction": "N", "lat": 40.862907, "lon": -73.92987, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.92987, 40.862907 ] } }, -{ "type": "Feature", "properties": { "id": 402549, "name": "Broadway/Dyckman St", "direction": "E", "lat": 40.865578, "lon": -73.92684, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.92684, 40.865578 ] } }, -{ "type": "Feature", "properties": { "id": 402551, "name": "Broadway/W 204 St", "direction": "E", "lat": 40.867016, "lon": -73.9229, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.9229, 40.867016 ] } }, -{ "type": "Feature", "properties": { "id": 402555, "name": "Broadway/W 215 St", "direction": "NE", "lat": 40.869667, "lon": -73.915955, "routes": "BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.915955, 40.869667 ] } }, -{ "type": "Feature", "properties": { "id": 402556, "name": "Broadway/W 218 St", "direction": "NE", "lat": 40.87104, "lon": -73.91423, "routes": "BX7, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91423, 40.87104 ] } }, -{ "type": "Feature", "properties": { "id": 402607, "name": "Broadway/W 218 St", "direction": "SW", "lat": 40.870884, "lon": -73.914604, "routes": "BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.914604, 40.870884 ] } }, -{ "type": "Feature", "properties": { "id": 402608, "name": "Broadway/W 215 St", "direction": "SW", "lat": 40.86967, "lon": -73.91619, "routes": "BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.91619, 40.86967 ] } }, -{ "type": "Feature", "properties": { "id": 402611, "name": "Broadway/Isham St", "direction": "E", "lat": 40.868073, "lon": -73.9198, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.9198, 40.868073 ] } }, -{ "type": "Feature", "properties": { "id": 402612, "name": "Broadway/W 204 St", "direction": "W", "lat": 40.86692, "lon": -73.92352, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.92352, 40.86692 ] } }, -{ "type": "Feature", "properties": { "id": 402617, "name": "Broadway/Sherman Av", "direction": "SW", "lat": 40.86174, "lon": -73.93022, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93022, 40.86174 ] } }, -{ "type": "Feature", "properties": { "id": 402619, "name": "Broadway/Bennett Av", "direction": "S", "lat": 40.859745, "lon": -73.93122, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93122, 40.859745 ] } }, -{ "type": "Feature", "properties": { "id": 402620, "name": "Broadway/W 192 St", "direction": "SW", "lat": 40.857502, "lon": -73.93228, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93228, 40.857502 ] } }, -{ "type": "Feature", "properties": { "id": 402623, "name": "Broadway/W 187 St", "direction": "SW", "lat": 40.853916, "lon": -73.933945, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.933945, 40.853916 ] } }, -{ "type": "Feature", "properties": { "id": 402624, "name": "Broadway/W 185 St", "direction": "SW", "lat": 40.852516, "lon": -73.93467, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93467, 40.852516 ] } }, -{ "type": "Feature", "properties": { "id": 402626, "name": "Broadway/W 181 St", "direction": "SW", "lat": 40.849922, "lon": -73.93604, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93604, 40.849922 ] } }, -{ "type": "Feature", "properties": { "id": 402634, "name": "3 Av/E 31 St", "direction": "NE", "lat": 40.743706, "lon": -73.979546, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.979546, 40.743706 ] } }, -{ "type": "Feature", "properties": { "id": 402638, "name": "Amsterdam Av/W 158 St", "direction": "SW", "lat": 40.83335, "lon": -73.94177, "routes": "M3, M100, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94177, 40.83335 ] } }, -{ "type": "Feature", "properties": { "id": 402639, "name": "Amsterdam Av/W 156 St", "direction": "SW", "lat": 40.831932, "lon": -73.94281, "routes": "M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94281, 40.831932 ] } }, -{ "type": "Feature", "properties": { "id": 402641, "name": "Amsterdam Av/W 152 St", "direction": "SW", "lat": 40.829746, "lon": -73.944374, "routes": "M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.944374, 40.829746 ] } }, -{ "type": "Feature", "properties": { "id": 402642, "name": "Amsterdam Av/W 150 St", "direction": "SW", "lat": 40.82806, "lon": -73.94561, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94561, 40.82806 ] } }, -{ "type": "Feature", "properties": { "id": 402643, "name": "Amsterdam Av/W 148 St", "direction": "SW", "lat": 40.82691, "lon": -73.94645, "routes": "M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94645, 40.82691 ] } }, -{ "type": "Feature", "properties": { "id": 402644, "name": "Amsterdam Av/W 145 St", "direction": "SW", "lat": 40.824947, "lon": -73.94789, "routes": "M100, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94789, 40.824947 ] } }, -{ "type": "Feature", "properties": { "id": 402645, "name": "Amsterdam Av/W 143 St", "direction": "SW", "lat": 40.823627, "lon": -73.94887, "routes": "M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94887, 40.823627 ] } }, -{ "type": "Feature", "properties": { "id": 402646, "name": "Amsterdam Av/W 140 St", "direction": "SW", "lat": 40.821716, "lon": -73.95024, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95024, 40.821716 ] } }, -{ "type": "Feature", "properties": { "id": 402647, "name": "Amsterdam Av/W 138 St", "direction": "SW", "lat": 40.820488, "lon": -73.95113, "routes": "M100, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95113, 40.820488 ] } }, -{ "type": "Feature", "properties": { "id": 402653, "name": "W 125 St/Amsterdam Av", "direction": "SE", "lat": 40.812603, "lon": -73.955696, "routes": "M125, M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.955696, 40.812603 ] } }, -{ "type": "Feature", "properties": { "id": 402656, "name": "W 125 St/Saint Nicholas Av", "direction": "SE", "lat": 40.810528, "lon": -73.95217, "routes": "M101, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.95217, 40.810528 ] } }, -{ "type": "Feature", "properties": { "id": 402657, "name": "W 125 St/Frederick Douglass Blvd", "direction": "SE", "lat": 40.80991, "lon": -73.95071, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.95071, 40.80991 ] } }, -{ "type": "Feature", "properties": { "id": 402658, "name": "W 125 St/Adam C Powell Blvd", "direction": "SE", "lat": 40.8087, "lon": -73.94784, "routes": "M125, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94784, 40.8087 ] } }, -{ "type": "Feature", "properties": { "id": 402659, "name": "W 125 St/Malcolm X Blvd", "direction": "E", "lat": 40.807514, "lon": -73.94502, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.94502, 40.807514 ] } }, -{ "type": "Feature", "properties": { "id": 402660, "name": "E 125 St/5 Av", "direction": "SE", "lat": 40.806202, "lon": -73.94186, "routes": "M125, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94186, 40.806202 ] } }, -{ "type": "Feature", "properties": { "id": 402661, "name": "E 125 St/Madison Av", "direction": "SE", "lat": 40.805534, "lon": -73.94029, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.94029, 40.805534 ] } }, -{ "type": "Feature", "properties": { "id": 402662, "name": "E 125 St/Park Av", "direction": "E", "lat": 40.8048, "lon": -73.93858, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.93858, 40.8048 ] } }, -{ "type": "Feature", "properties": { "id": 402666, "name": "Cooper Sq/E 6 St", "direction": "NE", "lat": 40.728394, "lon": -73.99061, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99061, 40.728394 ] } }, -{ "type": "Feature", "properties": { "id": 402670, "name": "3 Av/E 17 St", "direction": "NE", "lat": 40.73551, "lon": -73.985466, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.985466, 40.73551 ] } }, -{ "type": "Feature", "properties": { "id": 402673, "name": "3 Av/E 26 St", "direction": "NE", "lat": 40.741066, "lon": -73.98142, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.98142, 40.741066 ] } }, -{ "type": "Feature", "properties": { "id": 402674, "name": "3 Av/E 29 St", "direction": "NE", "lat": 40.742893, "lon": -73.9801, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.9801, 40.742893 ] } }, -{ "type": "Feature", "properties": { "id": 402677, "name": "3 Av/E 37 St", "direction": "NE", "lat": 40.74799, "lon": -73.97637, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.97637, 40.74799 ] } }, -{ "type": "Feature", "properties": { "id": 402678, "name": "3 Av/E 39 St", "direction": "NE", "lat": 40.749176, "lon": -73.97552, "routes": "QM44, QM44, M103, QM32, M101, M102, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.97552, 40.749176 ] } }, -{ "type": "Feature", "properties": { "id": 402679, "name": "3 Av/E 42 St", "direction": "NE", "lat": 40.751083, "lon": -73.97412, "routes": "M102, M101, X64, X63, M103, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.97412, 40.751083 ] } }, -{ "type": "Feature", "properties": { "id": 402680, "name": "3 Av/E 45 St", "direction": "NE", "lat": 40.752407, "lon": -73.97316, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.97316, 40.752407 ] } }, -{ "type": "Feature", "properties": { "id": 402681, "name": "3 Av/E 47 St", "direction": "NE", "lat": 40.754234, "lon": -73.97185, "routes": "M101, M103, M102, X63, X68, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.97185, 40.754234 ] } }, -{ "type": "Feature", "properties": { "id": 402682, "name": "3 Av/E 50 St", "direction": "NE", "lat": 40.755505, "lon": -73.970924, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.970924, 40.755505 ] } }, -{ "type": "Feature", "properties": { "id": 402687, "name": "3 Av/E 65 St", "direction": "NE", "lat": 40.7656, "lon": -73.96351, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.96351, 40.7656 ] } }, -{ "type": "Feature", "properties": { "id": 402688, "name": "3 Av/E 67 St", "direction": "NE", "lat": 40.767113, "lon": -73.96252, "routes": "M101, M103, M102, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.96252, 40.767113 ] } }, -{ "type": "Feature", "properties": { "id": 402689, "name": "3 Av/E 69 St", "direction": "NE", "lat": 40.768112, "lon": -73.961716, "routes": "BXM1, M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.961716, 40.768112 ] } }, -{ "type": "Feature", "properties": { "id": 402691, "name": "3 Av/E 75 St", "direction": "NE", "lat": 40.77186, "lon": -73.959, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.959, 40.77186 ] } }, -{ "type": "Feature", "properties": { "id": 402692, "name": "3 Av/E 77 St", "direction": "NE", "lat": 40.77321, "lon": -73.95799, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.95799, 40.77321 ] } }, -{ "type": "Feature", "properties": { "id": 402694, "name": "3 Av/E 82 St", "direction": "NE", "lat": 40.77658, "lon": -73.95556, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95556, 40.77658 ] } }, -{ "type": "Feature", "properties": { "id": 402696, "name": "3 Av/E 88 St", "direction": "NE", "lat": 40.78048, "lon": -73.9527, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.9527, 40.78048 ] } }, -{ "type": "Feature", "properties": { "id": 402697, "name": "3 Av/E 91 St", "direction": "NE", "lat": 40.782257, "lon": -73.95142, "routes": "M101, M102, BXM1, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.95142, 40.782257 ] } }, -{ "type": "Feature", "properties": { "id": 402704, "name": "3 Av/E 109 St", "direction": "NE", "lat": 40.793766, "lon": -73.94301, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94301, 40.793766 ] } }, -{ "type": "Feature", "properties": { "id": 402705, "name": "3 Av/E 112 St", "direction": "NE", "lat": 40.795776, "lon": -73.94152, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94152, 40.795776 ] } }, -{ "type": "Feature", "properties": { "id": 402707, "name": "3 Av/E 118 St", "direction": "NE", "lat": 40.79958, "lon": -73.93872, "routes": "M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93872, 40.79958 ] } }, -{ "type": "Feature", "properties": { "id": 402723, "name": "W 125 St/Morningside Av", "direction": "SE", "lat": 40.8114, "lon": -73.954185, "routes": "M101, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.954185, 40.8114 ] } }, -{ "type": "Feature", "properties": { "id": 402740, "name": "Amsterdam Av/W 171 St", "direction": "NE", "lat": 40.841976, "lon": -73.935265, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.935265, 40.841976 ] } }, -{ "type": "Feature", "properties": { "id": 402741, "name": "Amsterdam Av/W 173 St", "direction": "NE", "lat": 40.84312, "lon": -73.93444, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93444, 40.84312 ] } }, -{ "type": "Feature", "properties": { "id": 402744, "name": "Amsterdam Av/W 179 St", "direction": "NE", "lat": 40.847008, "lon": -73.93161, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93161, 40.847008 ] } }, -{ "type": "Feature", "properties": { "id": 402745, "name": "Amsterdam Av/W 181 St", "direction": "NE", "lat": 40.84836, "lon": -73.93062, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93062, 40.84836 ] } }, -{ "type": "Feature", "properties": { "id": 402748, "name": "Amsterdam Av/W 187 St", "direction": "NE", "lat": 40.852203, "lon": -73.927826, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.927826, 40.852203 ] } }, -{ "type": "Feature", "properties": { "id": 402749, "name": "Amsterdam Av/W 190 St", "direction": "NE", "lat": 40.853928, "lon": -73.92655, "routes": "M101, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.92655, 40.853928 ] } }, -{ "type": "Feature", "properties": { "id": 402753, "name": "Bowery/Bayard St", "direction": "NE", "lat": 40.71539, "lon": -73.99647, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99647, 40.71539 ] } }, -{ "type": "Feature", "properties": { "id": 402755, "name": "Bowery/Grand St", "direction": "NE", "lat": 40.71879, "lon": -73.994545, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.994545, 40.71879 ] } }, -{ "type": "Feature", "properties": { "id": 402757, "name": "Bowery/Delancey St", "direction": "N", "lat": 40.72075, "lon": -73.99373, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99373, 40.72075 ] } }, -{ "type": "Feature", "properties": { "id": 402760, "name": "Bowery/E Houston St", "direction": "N", "lat": 40.72392, "lon": -73.992584, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.992584, 40.72392 ] } }, -{ "type": "Feature", "properties": { "id": 402762, "name": "Bowery/E 3 St", "direction": "N", "lat": 40.726723, "lon": -73.99152, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99152, 40.726723 ] } }, -{ "type": "Feature", "properties": { "id": 402764, "name": "Amsterdam Av/W 188 St", "direction": "SW", "lat": 40.85224, "lon": -73.927956, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.927956, 40.85224 ] } }, -{ "type": "Feature", "properties": { "id": 402766, "name": "Amsterdam Av/W 184 St", "direction": "SW", "lat": 40.84956, "lon": -73.9299, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.9299, 40.84956 ] } }, -{ "type": "Feature", "properties": { "id": 402767, "name": "Amsterdam Av/W 181 St", "direction": "SW", "lat": 40.84823, "lon": -73.93085, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93085, 40.84823 ] } }, -{ "type": "Feature", "properties": { "id": 402769, "name": "Amsterdam Av/W 178 St", "direction": "SW", "lat": 40.845882, "lon": -73.9326, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.9326, 40.845882 ] } }, -{ "type": "Feature", "properties": { "id": 402772, "name": "Amsterdam Av/W 172 St", "direction": "SW", "lat": 40.842045, "lon": -73.93538, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93538, 40.842045 ] } }, -{ "type": "Feature", "properties": { "id": 402773, "name": "Amsterdam Av/W 170 St", "direction": "SW", "lat": 40.840656, "lon": -73.9364, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.9364, 40.840656 ] } }, -{ "type": "Feature", "properties": { "id": 402774, "name": "Amsterdam Av/W 168 St", "direction": "SW", "lat": 40.83955, "lon": -73.937225, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.937225, 40.83955 ] } }, -{ "type": "Feature", "properties": { "id": 402805, "name": "Lexington Av/E 122 St", "direction": "SW", "lat": 40.802094, "lon": -73.93914, "routes": "M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93914, 40.802094 ] } }, -{ "type": "Feature", "properties": { "id": 402809, "name": "Lexington Av/E 114 St", "direction": "SW", "lat": 40.797176, "lon": -73.94275, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94275, 40.797176 ] } }, -{ "type": "Feature", "properties": { "id": 402811, "name": "Lexington Av/E 110 St", "direction": "SW", "lat": 40.794544, "lon": -73.944664, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.944664, 40.794544 ] } }, -{ "type": "Feature", "properties": { "id": 402816, "name": "Lexington Av/E 100 St", "direction": "SW", "lat": 40.78827, "lon": -73.94921, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.94921, 40.78827 ] } }, -{ "type": "Feature", "properties": { "id": 402819, "name": "Lexington Av/E 94 St", "direction": "SW", "lat": 40.784405, "lon": -73.95203, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.95203, 40.784405 ] } }, -{ "type": "Feature", "properties": { "id": 402826, "name": "Lexington Av/E 79 St", "direction": "SW", "lat": 40.774868, "lon": -73.95903, "routes": "M103, M101, M102, BXM1, M98" }, "geometry": { "type": "Point", "coordinates": [ -73.95903, 40.774868 ] } }, -{ "type": "Feature", "properties": { "id": 402829, "name": "Lexington Av/E 74 St", "direction": "SW", "lat": 40.771397, "lon": -73.961555, "routes": "M101, M102, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.961555, 40.771397 ] } }, -{ "type": "Feature", "properties": { "id": 402831, "name": "Lexington Av/E 70 St", "direction": "SW", "lat": 40.76876, "lon": -73.96348, "routes": "BXM1, M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.96348, 40.76876 ] } }, -{ "type": "Feature", "properties": { "id": 402835, "name": "Lexington Av/E 62 St", "direction": "SW", "lat": 40.763813, "lon": -73.96708, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.96708, 40.763813 ] } }, -{ "type": "Feature", "properties": { "id": 402838, "name": "Lexington Av/E 56 St", "direction": "SW", "lat": 40.76012, "lon": -73.96977, "routes": "BXM1, M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.96977, 40.76012 ] } }, -{ "type": "Feature", "properties": { "id": 402839, "name": "Lexington Av/E 53 St", "direction": "SW", "lat": 40.75806, "lon": -73.97134, "routes": "SIM11, SIM22, SIM6, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -73.97134, 40.75806 ] } }, -{ "type": "Feature", "properties": { "id": 402842, "name": "Lexington Av/E 46 St", "direction": "SW", "lat": 40.754143, "lon": -73.97413, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.97413, 40.754143 ] } }, -{ "type": "Feature", "properties": { "id": 402845, "name": "Lexington Av/E 40 St", "direction": "SW", "lat": 40.749767, "lon": -73.97732, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.97732, 40.749767 ] } }, -{ "type": "Feature", "properties": { "id": 402846, "name": "Lexington Av/E 37 St", "direction": "SW", "lat": 40.748386, "lon": -73.978325, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.978325, 40.748386 ] } }, -{ "type": "Feature", "properties": { "id": 402851, "name": "Lexington Av/E 28 St", "direction": "SW", "lat": 40.742374, "lon": -73.98272, "routes": "M103, SIM11, M102, SIM6, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.98272, 40.742374 ] } }, -{ "type": "Feature", "properties": { "id": 402852, "name": "Lexington Av/E 26 St", "direction": "SW", "lat": 40.741116, "lon": -73.98365, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.98365, 40.741116 ] } }, -{ "type": "Feature", "properties": { "id": 402854, "name": "3 Av/E 23 St", "direction": "SW", "lat": 40.738983, "lon": -73.98313, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.98313, 40.738983 ] } }, -{ "type": "Feature", "properties": { "id": 402856, "name": "3 Av/E 17 St", "direction": "SW", "lat": 40.73487, "lon": -73.9861, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.9861, 40.73487 ] } }, -{ "type": "Feature", "properties": { "id": 402857, "name": "5 Av/W 14 St", "direction": "SW", "lat": 40.735714, "lon": -73.99395, "routes": "M3, M55, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99395, 40.735714 ] } }, -{ "type": "Feature", "properties": { "id": 402858, "name": "3 Av/E 11 St", "direction": "SW", "lat": 40.730972, "lon": -73.988945, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.988945, 40.730972 ] } }, -{ "type": "Feature", "properties": { "id": 402862, "name": "Bowery/Bleecker St", "direction": "S", "lat": 40.725346, "lon": -73.99221, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99221, 40.725346 ] } }, -{ "type": "Feature", "properties": { "id": 402863, "name": "Bowery/East Houston St", "direction": "S", "lat": 40.723755, "lon": -73.992905, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.992905, 40.723755 ] } }, -{ "type": "Feature", "properties": { "id": 402864, "name": "Bowery/Prince St", "direction": "S", "lat": 40.722054, "lon": -73.993515, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.993515, 40.722054 ] } }, -{ "type": "Feature", "properties": { "id": 402865, "name": "Bowery/Kenmare St", "direction": "SW", "lat": 40.720036, "lon": -73.99429, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99429, 40.720036 ] } }, -{ "type": "Feature", "properties": { "id": 402867, "name": "Bowery/Grand St", "direction": "SW", "lat": 40.718136, "lon": -73.99508, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99508, 40.718136 ] } }, -{ "type": "Feature", "properties": { "id": 402868, "name": "Bowery/Canal St", "direction": "SW", "lat": 40.715916, "lon": -73.99642, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99642, 40.715916 ] } }, -{ "type": "Feature", "properties": { "id": 402869, "name": "Bowery/Bayard St", "direction": "SW", "lat": 40.71477, "lon": -73.9971, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.9971, 40.71477 ] } }, -{ "type": "Feature", "properties": { "id": 402870, "name": "Park Row/Worth St", "direction": "W", "lat": 40.71341, "lon": -73.99896, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.99896, 40.71341 ] } }, -{ "type": "Feature", "properties": { "id": 403036, "name": "West End Av/W 72 St", "direction": "SW", "lat": 40.779533, "lon": -73.98481, "routes": "M57, M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98481, 40.779533 ] } }, -{ "type": "Feature", "properties": { "id": 403037, "name": "West End Av/W 69 St", "direction": "SW", "lat": 40.77747, "lon": -73.986336, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.986336, 40.77747 ] } }, -{ "type": "Feature", "properties": { "id": 403038, "name": "West End Av/W 66 St", "direction": "SW", "lat": 40.77618, "lon": -73.987274, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.987274, 40.77618 ] } }, -{ "type": "Feature", "properties": { "id": 403047, "name": "Central Park South/Avenue Of The Americas", "direction": "SE", "lat": 40.765656, "lon": -73.97644, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97644, 40.765656 ] } }, -{ "type": "Feature", "properties": { "id": 403076, "name": "West End Av/W 66 St", "direction": "NE", "lat": 40.776333, "lon": -73.986855, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.986855, 40.776333 ] } }, -{ "type": "Feature", "properties": { "id": 403103, "name": "Broadway/W 73 St", "direction": "N", "lat": 40.77959, "lon": -73.981514, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.981514, 40.77959 ] } }, -{ "type": "Feature", "properties": { "id": 403104, "name": "Broadway/W 75 St", "direction": "N", "lat": 40.7813, "lon": -73.98102, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98102, 40.7813 ] } }, -{ "type": "Feature", "properties": { "id": 403105, "name": "Broadway/W 77 St", "direction": "NE", "lat": 40.782726, "lon": -73.9805, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.9805, 40.782726 ] } }, -{ "type": "Feature", "properties": { "id": 403106, "name": "Broadway/W 79 St", "direction": "NE", "lat": 40.784084, "lon": -73.97958, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97958, 40.784084 ] } }, -{ "type": "Feature", "properties": { "id": 403107, "name": "Broadway/W 82 St", "direction": "NE", "lat": 40.785995, "lon": -73.978165, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.978165, 40.785995 ] } }, -{ "type": "Feature", "properties": { "id": 403109, "name": "Broadway/W 86 St", "direction": "NE", "lat": 40.788532, "lon": -73.97609, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97609, 40.788532 ] } }, -{ "type": "Feature", "properties": { "id": 403110, "name": "Broadway/W 88 St", "direction": "NE", "lat": 40.789803, "lon": -73.97511, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97511, 40.789803 ] } }, -{ "type": "Feature", "properties": { "id": 403111, "name": "Broadway/W 91 St", "direction": "NE", "lat": 40.791668, "lon": -73.97375, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97375, 40.791668 ] } }, -{ "type": "Feature", "properties": { "id": 403112, "name": "Broadway/W 93 St", "direction": "NE", "lat": 40.79297, "lon": -73.97281, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97281, 40.79297 ] } }, -{ "type": "Feature", "properties": { "id": 403114, "name": "Broadway/W 99 St", "direction": "NE", "lat": 40.796722, "lon": -73.97005, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97005, 40.796722 ] } }, -{ "type": "Feature", "properties": { "id": 403115, "name": "Broadway/W 101 St", "direction": "NE", "lat": 40.79814, "lon": -73.968925, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.968925, 40.79814 ] } }, -{ "type": "Feature", "properties": { "id": 403116, "name": "Broadway/W 103 St", "direction": "NE", "lat": 40.79932, "lon": -73.96824, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96824, 40.79932 ] } }, -{ "type": "Feature", "properties": { "id": 403117, "name": "Broadway/W 106 St", "direction": "N", "lat": 40.80182, "lon": -73.96764, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.96764, 40.80182 ] } }, -{ "type": "Feature", "properties": { "id": 403118, "name": "Broadway/W 108 St", "direction": "NE", "lat": 40.80313, "lon": -73.96724, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96724, 40.80313 ] } }, -{ "type": "Feature", "properties": { "id": 403119, "name": "Broadway/Cathedral Pkwy", "direction": "NE", "lat": 40.804268, "lon": -73.96635, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96635, 40.804268 ] } }, -{ "type": "Feature", "properties": { "id": 403122, "name": "Broadway/W 116 St", "direction": "NE", "lat": 40.80799, "lon": -73.96375, "routes": "M104, M60+, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96375, 40.80799 ] } }, -{ "type": "Feature", "properties": { "id": 403125, "name": "Broadway/W 122 St", "direction": "NE", "lat": 40.812035, "lon": -73.96074, "routes": "M104, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96074, 40.812035 ] } }, -{ "type": "Feature", "properties": { "id": 403126, "name": "Broadway/La Salle St", "direction": "NE", "lat": 40.813972, "lon": -73.959305, "routes": "M104, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.959305, 40.813972 ] } }, -{ "type": "Feature", "properties": { "id": 403127, "name": "Broadway/Tiemann Pl", "direction": "NE", "lat": 40.814922, "lon": -73.95853, "routes": "M104, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95853, 40.814922 ] } }, -{ "type": "Feature", "properties": { "id": 403132, "name": "Avenue Of The Americas/W 50 St", "direction": "NE", "lat": 40.75977, "lon": -73.98038, "routes": "M7, SIM3, SIM10, M5, SIM3C, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -73.98038, 40.75977 ] } }, -{ "type": "Feature", "properties": { "id": 403139, "name": "Morningside Av/W 125 St", "direction": "SW", "lat": 40.811474, "lon": -73.95402, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.95402, 40.811474 ] } }, -{ "type": "Feature", "properties": { "id": 403142, "name": "Broadway/Tiemann Pl", "direction": "SW", "lat": 40.815025, "lon": -73.959045, "routes": "M4, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.959045, 40.815025 ] } }, -{ "type": "Feature", "properties": { "id": 403144, "name": "Broadway/La Salle St", "direction": "SW", "lat": 40.813736, "lon": -73.95996, "routes": "M4, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.95996, 40.813736 ] } }, -{ "type": "Feature", "properties": { "id": 403145, "name": "Broadway/W 122 St", "direction": "SW", "lat": 40.811737, "lon": -73.961464, "routes": "M104, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.961464, 40.811737 ] } }, -{ "type": "Feature", "properties": { "id": 403147, "name": "Broadway/W 116 St", "direction": "SW", "lat": 40.807957, "lon": -73.96422, "routes": "M104, M60+, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96422, 40.807957 ] } }, -{ "type": "Feature", "properties": { "id": 403148, "name": "Broadway/W 114 St", "direction": "SW", "lat": 40.806644, "lon": -73.965164, "routes": "M104, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.965164, 40.806644 ] } }, -{ "type": "Feature", "properties": { "id": 403149, "name": "Broadway/W 112 St", "direction": "SW", "lat": 40.805378, "lon": -73.96607, "routes": "M4, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96607, 40.805378 ] } }, -{ "type": "Feature", "properties": { "id": 403150, "name": "Broadway/Cathedral Pkwy", "direction": "SW", "lat": 40.804085, "lon": -73.96702, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96702, 40.804085 ] } }, -{ "type": "Feature", "properties": { "id": 403151, "name": "Broadway/W 108 St", "direction": "SW", "lat": 40.80316, "lon": -73.96773, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96773, 40.80316 ] } }, -{ "type": "Feature", "properties": { "id": 403152, "name": "Broadway/W 106 St", "direction": "S", "lat": 40.800987, "lon": -73.96811, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96811, 40.800987 ] } }, -{ "type": "Feature", "properties": { "id": 403153, "name": "Broadway/W 104 St", "direction": "SW", "lat": 40.79974, "lon": -73.9685, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.9685, 40.79974 ] } }, -{ "type": "Feature", "properties": { "id": 403154, "name": "Broadway/W 102 St", "direction": "SW", "lat": 40.798435, "lon": -73.96929, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96929, 40.798435 ] } }, -{ "type": "Feature", "properties": { "id": 403155, "name": "Broadway/W 100 St", "direction": "SW", "lat": 40.79718, "lon": -73.97023, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97023, 40.79718 ] } }, -{ "type": "Feature", "properties": { "id": 403158, "name": "Broadway/W 94 St", "direction": "SW", "lat": 40.793163, "lon": -73.97309, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97309, 40.793163 ] } }, -{ "type": "Feature", "properties": { "id": 403159, "name": "Broadway/W 92 St", "direction": "SW", "lat": 40.791904, "lon": -73.974014, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.974014, 40.791904 ] } }, -{ "type": "Feature", "properties": { "id": 403162, "name": "Broadway/W 86 St", "direction": "SW", "lat": 40.788067, "lon": -73.976944, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.976944, 40.788067 ] } }, -{ "type": "Feature", "properties": { "id": 403163, "name": "Broadway/W 84 St", "direction": "SW", "lat": 40.78682, "lon": -73.97798, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97798, 40.78682 ] } }, -{ "type": "Feature", "properties": { "id": 403164, "name": "Broadway/W 82 St", "direction": "SW", "lat": 40.785595, "lon": -73.9789, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.9789, 40.785595 ] } }, -{ "type": "Feature", "properties": { "id": 403165, "name": "Broadway/W 79 St", "direction": "SW", "lat": 40.7836, "lon": -73.98039, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98039, 40.7836 ] } }, -{ "type": "Feature", "properties": { "id": 403166, "name": "Broadway/W 76 St", "direction": "S", "lat": 40.781643, "lon": -73.981415, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.981415, 40.781643 ] } }, -{ "type": "Feature", "properties": { "id": 403167, "name": "Broadway/W 74 St", "direction": "S", "lat": 40.780167, "lon": -73.981865, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.981865, 40.780167 ] } }, -{ "type": "Feature", "properties": { "id": 403168, "name": "Broadway/W 72 St", "direction": "S", "lat": 40.778656, "lon": -73.98212, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98212, 40.778656 ] } }, -{ "type": "Feature", "properties": { "id": 403169, "name": "Broadway/W 70 St", "direction": "S", "lat": 40.776768, "lon": -73.98231, "routes": "M104, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98231, 40.776768 ] } }, -{ "type": "Feature", "properties": { "id": 403171, "name": "Broadway/W 65 St", "direction": "S", "lat": 40.773285, "lon": -73.98241, "routes": "M5, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98241, 40.773285 ] } }, -{ "type": "Feature", "properties": { "id": 403191, "name": "W 34 St/11 Av", "direction": "SE", "lat": 40.75572, "lon": -74.00191, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -74.00191, 40.75572 ] } }, -{ "type": "Feature", "properties": { "id": 403192, "name": "W 34 St/10 Av", "direction": "SE", "lat": 40.75433, "lon": -73.99878, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.99878, 40.75433 ] } }, -{ "type": "Feature", "properties": { "id": 403216, "name": "E 34 St/2 Av", "direction": "NW", "lat": 40.74504, "lon": -73.976265, "routes": "M34+, M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.976265, 40.74504 ] } }, -{ "type": "Feature", "properties": { "id": 403238, "name": "W 42 St/9 Av", "direction": "SE", "lat": 40.75796, "lon": -73.99193, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.99193, 40.75796 ] } }, -{ "type": "Feature", "properties": { "id": 403239, "name": "W 42 St/8 Av", "direction": "SE", "lat": 40.75719, "lon": -73.98991, "routes": "SIM8X, SIM26, SIM25, SIM22, M42, SIM30, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -73.98991, 40.75719 ] } }, -{ "type": "Feature", "properties": { "id": 403240, "name": "W 42 St/7 Av", "direction": "SE", "lat": 40.75626, "lon": -73.98773, "routes": "SIM26, SIM22, M42, SIM8, SIM8X, SIM30, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -73.98773, 40.75626 ] } }, -{ "type": "Feature", "properties": { "id": 403241, "name": "W 42 St/Broadway", "direction": "SE", "lat": 40.755272, "lon": -73.98534, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.98534, 40.755272 ] } }, -{ "type": "Feature", "properties": { "id": 403242, "name": "W 42 St/6 Av", "direction": "SE", "lat": 40.754536, "lon": -73.98364, "routes": "SIM25, SIM8, SIM22, M42, SIM30, SIM26, SIM8X" }, "geometry": { "type": "Point", "coordinates": [ -73.98364, 40.754536 ] } }, -{ "type": "Feature", "properties": { "id": 403245, "name": "E 42 St/Lexington Av", "direction": "SE", "lat": 40.75115, "lon": -73.9756, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.9756, 40.75115 ] } }, -{ "type": "Feature", "properties": { "id": 403246, "name": "E 42 St/3 Av", "direction": "SE", "lat": 40.750774, "lon": -73.9745, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.9745, 40.750774 ] } }, -{ "type": "Feature", "properties": { "id": 403247, "name": "E 42 St/2 Av", "direction": "E", "lat": 40.74958, "lon": -73.97188, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.97188, 40.74958 ] } }, -{ "type": "Feature", "properties": { "id": 403248, "name": "E 42 St/1 Av", "direction": "SE", "lat": 40.74858, "lon": -73.96966, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.96966, 40.74858 ] } }, -{ "type": "Feature", "properties": { "id": 403249, "name": "E 41 St/1 Av", "direction": "NW", "lat": 40.747864, "lon": -73.969574, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.969574, 40.747864 ] } }, -{ "type": "Feature", "properties": { "id": 403251, "name": "E 42 St/1 Av", "direction": "NW", "lat": 40.749077, "lon": -73.97028, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.97028, 40.749077 ] } }, -{ "type": "Feature", "properties": { "id": 403252, "name": "E 42 St/2 Av", "direction": "W", "lat": 40.750088, "lon": -73.972595, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.972595, 40.750088 ] } }, -{ "type": "Feature", "properties": { "id": 403253, "name": "E 42 St/3 Av", "direction": "NW", "lat": 40.751015, "lon": -73.97476, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.97476, 40.751015 ] } }, -{ "type": "Feature", "properties": { "id": 403257, "name": "W 42 St/5 Av", "direction": "NW", "lat": 40.75357, "lon": -73.98098, "routes": "SIM30, M42, SIM8X, SIM25, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -73.98098, 40.75357 ] } }, -{ "type": "Feature", "properties": { "id": 403259, "name": "W 42 St/7 Av", "direction": "NW", "lat": 40.75631, "lon": -73.98737, "routes": "SIM22, SIM8, Q92, SIM25, SIM26, M42, SIM8X, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -73.98737, 40.75631 ] } }, -{ "type": "Feature", "properties": { "id": 403264, "name": "11 Av/W 42 St", "direction": "SW", "lat": 40.76064, "lon": -73.998505, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.998505, 40.76064 ] } }, -{ "type": "Feature", "properties": { "id": 403266, "name": "5 Av/W 55 St", "direction": "SW", "lat": 40.761574, "lon": -73.97504, "routes": "M4, M5, M1, M3, Q32, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.97504, 40.761574 ] } }, -{ "type": "Feature", "properties": { "id": 403267, "name": "Central Park North/5 Av", "direction": "W", "lat": 40.79718, "lon": -73.94915, "routes": "M3, M2, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94915, 40.79718 ] } }, -{ "type": "Feature", "properties": { "id": 403271, "name": "Broadway/W 66 St", "direction": "N", "lat": 40.77427, "lon": -73.982025, "routes": "M7, M104, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.982025, 40.77427 ] } }, -{ "type": "Feature", "properties": { "id": 403276, "name": "Frederick Douglass Blvd/W 128 St", "direction": "SW", "lat": 40.811897, "lon": -73.95004, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95004, 40.811897 ] } }, -{ "type": "Feature", "properties": { "id": 403292, "name": "Amsterdam Av/La Salle St", "direction": "NE", "lat": 40.812756, "lon": -73.95659, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95659, 40.812756 ] } }, -{ "type": "Feature", "properties": { "id": 403293, "name": "Pearl St / Peck Slip", "direction": "SW", "lat": 40.70877, "lon": -74.002754, "routes": "QM11, QM25, QM11, QM7, BM2, BM3, BM1, QM8, BM4, BM2, QM7, QM8, BM3, QM25, BM1, BM4" }, "geometry": { "type": "Point", "coordinates": [ -74.002754, 40.70877 ] } }, -{ "type": "Feature", "properties": { "id": 403295, "name": "Broadway/W 190 St", "direction": "SW", "lat": 40.85622, "lon": -73.93303, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93303, 40.85622 ] } }, -{ "type": "Feature", "properties": { "id": 403297, "name": "York Av/E 69 St", "direction": "SW", "lat": 40.76502, "lon": -73.95517, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95517, 40.76502 ] } }, -{ "type": "Feature", "properties": { "id": 403303, "name": "East Houston St/Avenue C", "direction": "W", "lat": 40.72099, "lon": -73.981735, "routes": "M21, M9" }, "geometry": { "type": "Point", "coordinates": [ -73.981735, 40.72099 ] } }, -{ "type": "Feature", "properties": { "id": 403304, "name": "Avenue C/E 3 St", "direction": "SW", "lat": 40.721382, "lon": -73.9809, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.9809, 40.721382 ] } }, -{ "type": "Feature", "properties": { "id": 403305, "name": "Avenue C/E 6 St", "direction": "SW", "lat": 40.723244, "lon": -73.979576, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.979576, 40.723244 ] } }, -{ "type": "Feature", "properties": { "id": 403306, "name": "Avenue C/E 8 St", "direction": "SW", "lat": 40.72444, "lon": -73.9787, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.9787, 40.72444 ] } }, -{ "type": "Feature", "properties": { "id": 403307, "name": "Avenue C/E 10 St", "direction": "SW", "lat": 40.725624, "lon": -73.97784, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97784, 40.725624 ] } }, -{ "type": "Feature", "properties": { "id": 403311, "name": "Broadway/West Houston St", "direction": "SW", "lat": 40.725105, "lon": -73.99711, "routes": "M1, SIM34, SIM3C, SIM4C, M55, SIM1C, SIM1, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -73.99711, 40.725105 ] } }, -{ "type": "Feature", "properties": { "id": 403312, "name": "W 10 St/Hudson St", "direction": "E", "lat": 40.733776, "lon": -74.00585, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00585, 40.733776 ] } }, -{ "type": "Feature", "properties": { "id": 403313, "name": "W 10 St/Greenwich St", "direction": "E", "lat": 40.7335, "lon": -74.00746, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.00746, 40.7335 ] } }, -{ "type": "Feature", "properties": { "id": 403316, "name": "E 25 St/Park Av South", "direction": "NW", "lat": 40.741566, "lon": -73.9855, "routes": "M2, M3, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.9855, 40.741566 ] } }, -{ "type": "Feature", "properties": { "id": 403317, "name": "Essex St/Grand St", "direction": "NE", "lat": 40.71682, "lon": -73.989006, "routes": "M9, M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.989006, 40.71682 ] } }, -{ "type": "Feature", "properties": { "id": 403318, "name": "Essex St/Delancey St", "direction": "SW", "lat": 40.718246, "lon": -73.98847, "routes": "M14A+, L92, M9" }, "geometry": { "type": "Point", "coordinates": [ -73.98847, 40.718246 ] } }, -{ "type": "Feature", "properties": { "id": 403319, "name": "Essex St/Rivington St", "direction": "SW", "lat": 40.719585, "lon": -73.98778, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.98778, 40.719585 ] } }, -{ "type": "Feature", "properties": { "id": 403320, "name": "Avenue A/East Houston St", "direction": "NE", "lat": 40.722572, "lon": -73.985954, "routes": "M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.985954, 40.722572 ] } }, -{ "type": "Feature", "properties": { "id": 403323, "name": "West Houston St/Laguardia Pl", "direction": "NW", "lat": 40.726917, "lon": -73.99976, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99976, 40.726917 ] } }, -{ "type": "Feature", "properties": { "id": 403326, "name": "E 105 St/Fdr Dr", "direction": "NW", "lat": 40.788277, "lon": -73.93884, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.93884, 40.788277 ] } }, -{ "type": "Feature", "properties": { "id": 403338, "name": "Adam C Powell Blvd/W 151 St", "direction": "NE", "lat": 40.82561, "lon": -73.93595, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93595, 40.82561 ] } }, -{ "type": "Feature", "properties": { "id": 403342, "name": "2 Av/E 94 St", "direction": "SW", "lat": 40.782677, "lon": -73.9483, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.9483, 40.782677 ] } }, -{ "type": "Feature", "properties": { "id": 403350, "name": "Worth St/Mott St", "direction": "NW", "lat": 40.713757, "lon": -73.99904, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.99904, 40.713757 ] } }, -{ "type": "Feature", "properties": { "id": 403354, "name": "W 42 St/Broadway", "direction": "NW", "lat": 40.755753, "lon": -73.986046, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.986046, 40.755753 ] } }, -{ "type": "Feature", "properties": { "id": 403359, "name": "E 34 St/1 Av", "direction": "NW", "lat": 40.744007, "lon": -73.97394, "routes": "M34A+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.97394, 40.744007 ] } }, -{ "type": "Feature", "properties": { "id": 403362, "name": "Columbus Av/W 97 St", "direction": "SW", "lat": 40.793274, "lon": -73.96736, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.96736, 40.793274 ] } }, -{ "type": "Feature", "properties": { "id": 403367, "name": "E 91 St/York Av", "direction": "W", "lat": 40.779213, "lon": -73.94494, "routes": "M86+, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.94494, 40.779213 ] } }, -{ "type": "Feature", "properties": { "id": 403372, "name": "Columbus Av/W 75 St", "direction": "SW", "lat": 40.778873, "lon": -73.97786, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.97786, 40.778873 ] } }, -{ "type": "Feature", "properties": { "id": 403373, "name": "Fort Washington Av/W 168 St", "direction": "S", "lat": 40.8419, "lon": -73.94247, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94247, 40.8419 ] } }, -{ "type": "Feature", "properties": { "id": 403374, "name": "Fort Washington Av/W 165 St", "direction": "S", "lat": 40.839905, "lon": -73.94326, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94326, 40.839905 ] } }, -{ "type": "Feature", "properties": { "id": 403375, "name": "Fort Washington Av/W 164 St", "direction": "S", "lat": 40.838726, "lon": -73.94373, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94373, 40.838726 ] } }, -{ "type": "Feature", "properties": { "id": 403376, "name": "Fort Washington Av/W 162 St", "direction": "S", "lat": 40.837543, "lon": -73.9442, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.9442, 40.837543 ] } }, -{ "type": "Feature", "properties": { "id": 403377, "name": "Fort Washington Av/W 160 St", "direction": "S", "lat": 40.836094, "lon": -73.944756, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.944756, 40.836094 ] } }, -{ "type": "Feature", "properties": { "id": 403380, "name": "Delancey St/Columbia St", "direction": "W", "lat": 40.71645, "lon": -73.98047, "routes": "M21, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.98047, 40.71645 ] } }, -{ "type": "Feature", "properties": { "id": 403383, "name": "1 Av/E 91 St", "direction": "NE", "lat": 40.780247, "lon": -73.94681, "routes": "M31, M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.94681, 40.780247 ] } }, -{ "type": "Feature", "properties": { "id": 403392, "name": "Manhattan Av/Cathedral Pkwy", "direction": "SW", "lat": 40.80088, "lon": -73.95994, "routes": "M116, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.95994, 40.80088 ] } }, -{ "type": "Feature", "properties": { "id": 403397, "name": "West Thames St/South End Av", "direction": "NW", "lat": 40.70841, "lon": -74.01709, "routes": "M20, M9" }, "geometry": { "type": "Point", "coordinates": [ -74.01709, 40.70841 ] } }, -{ "type": "Feature", "properties": { "id": 403399, "name": "South End Av/Albany St", "direction": "N", "lat": 40.71147, "lon": -74.01576, "routes": "M20, M9" }, "geometry": { "type": "Point", "coordinates": [ -74.01576, 40.71147 ] } }, -{ "type": "Feature", "properties": { "id": 403415, "name": "Park Av/E 125 St", "direction": "SW", "lat": 40.804806, "lon": -73.93945, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93945, 40.804806 ] } }, -{ "type": "Feature", "properties": { "id": 403416, "name": "Lexington Av/E 116 St", "direction": "SW", "lat": 40.79815, "lon": -73.942024, "routes": "M103, M102, M98, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.942024, 40.79815 ] } }, -{ "type": "Feature", "properties": { "id": 403417, "name": "Lexington Av/E 106 St", "direction": "SW", "lat": 40.791893, "lon": -73.94659, "routes": "M102, M103, M98, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94659, 40.791893 ] } }, -{ "type": "Feature", "properties": { "id": 403418, "name": "Lexington Av/E 96 St", "direction": "SW", "lat": 40.785503, "lon": -73.9512, "routes": "M103, M98, M102, M101, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.9512, 40.785503 ] } }, -{ "type": "Feature", "properties": { "id": 403419, "name": "Lexington Av/E 86 St", "direction": "SW", "lat": 40.77931, "lon": -73.955765, "routes": "BXM1, M103, M102, M98, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.955765, 40.77931 ] } }, -{ "type": "Feature", "properties": { "id": 403421, "name": "Lexington Av/E 72 St", "direction": "SW", "lat": 40.770317, "lon": -73.96235, "routes": "M98, M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.96235, 40.770317 ] } }, -{ "type": "Feature", "properties": { "id": 403422, "name": "Lexington Av/E 68 St", "direction": "SW", "lat": 40.76771, "lon": -73.96425, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.96425, 40.76771 ] } }, -{ "type": "Feature", "properties": { "id": 403424, "name": "Lexington Av/E 50 St", "direction": "SW", "lat": 40.756584, "lon": -73.97235, "routes": "BXM1, M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.97235, 40.756584 ] } }, -{ "type": "Feature", "properties": { "id": 403425, "name": "Lexington Av/E 42 St", "direction": "SW", "lat": 40.750843, "lon": -73.97653, "routes": "M101, M102, M103, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.97653, 40.750843 ] } }, -{ "type": "Feature", "properties": { "id": 403427, "name": "3 Av/E 33 St", "direction": "NE", "lat": 40.74519, "lon": -73.97843, "routes": "M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.97843, 40.74519 ] } }, -{ "type": "Feature", "properties": { "id": 403432, "name": "3 Av/E 72 St", "direction": "NE", "lat": 40.770077, "lon": -73.96028, "routes": "M101, M102, M98, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.96028, 40.770077 ] } }, -{ "type": "Feature", "properties": { "id": 403433, "name": "3 Av/E 79 St", "direction": "NE", "lat": 40.774605, "lon": -73.95697, "routes": "M102, M98, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95697, 40.774605 ] } }, -{ "type": "Feature", "properties": { "id": 403434, "name": "3 Av/E 86 St", "direction": "NE", "lat": 40.778465, "lon": -73.95418, "routes": "M101, M102, M98, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.95418, 40.778465 ] } }, -{ "type": "Feature", "properties": { "id": 403436, "name": "3 Av/E 106 St", "direction": "NE", "lat": 40.79189, "lon": -73.94437, "routes": "M103, M98, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94437, 40.79189 ] } }, -{ "type": "Feature", "properties": { "id": 403439, "name": "W 179 St/Amsterdam Av", "direction": "W", "lat": 40.847046, "lon": -73.93225, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93225, 40.847046 ] } }, -{ "type": "Feature", "properties": { "id": 403440, "name": "W 179 St/Saint Nicholas Av", "direction": "NW", "lat": 40.848026, "lon": -73.93448, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93448, 40.848026 ] } }, -{ "type": "Feature", "properties": { "id": 403443, "name": "E 10 St/Avenue D", "direction": "NW", "lat": 40.725082, "lon": -73.97546, "routes": "M14D+, M8" }, "geometry": { "type": "Point", "coordinates": [ -73.97546, 40.725082 ] } }, -{ "type": "Feature", "properties": { "id": 403444, "name": "Hudson St/North Moore St", "direction": "N", "lat": 40.71986, "lon": -74.0085, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.0085, 40.71986 ] } }, -{ "type": "Feature", "properties": { "id": 403447, "name": "W 135 St/Broadway", "direction": "SE", "lat": 40.819614, "lon": -73.954285, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.954285, 40.819614 ] } }, -{ "type": "Feature", "properties": { "id": 403456, "name": "Madison Av/E 37 St", "direction": "NE", "lat": 40.750126, "lon": -73.98108, "routes": "M2, Q32, M4, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.98108, 40.750126 ] } }, -{ "type": "Feature", "properties": { "id": 403457, "name": "Madison Av/E 40 St", "direction": "NE", "lat": 40.752018, "lon": -73.979744, "routes": "M3, BM3, BM1, M4, BM5, BM4, BM2, M2, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.979744, 40.752018 ] } }, -{ "type": "Feature", "properties": { "id": 403458, "name": "Madison Av/E 41 St", "direction": "NE", "lat": 40.75203, "lon": -73.97975, "routes": "SIM33C, SIM31, M1, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -73.97975, 40.75203 ] } }, -{ "type": "Feature", "properties": { "id": 403459, "name": "E 42 St/Park Av", "direction": "SE", "lat": 40.75188, "lon": -73.97733, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.97733, 40.75188 ] } }, -{ "type": "Feature", "properties": { "id": 403461, "name": "Broadway/W 133 St", "direction": "NE", "lat": 40.818493, "lon": -73.95594, "routes": "M11, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95594, 40.818493 ] } }, -{ "type": "Feature", "properties": { "id": 403465, "name": "W 42 St/5 Av", "direction": "E", "lat": 40.75332, "lon": -73.98075, "routes": "SIM25, M42, SIM26, SIM22, SIM8, SIM30, SIM8X" }, "geometry": { "type": "Point", "coordinates": [ -73.98075, 40.75332 ] } }, -{ "type": "Feature", "properties": { "id": 403466, "name": "Saint Nicholas Av/Fort George Hill", "direction": "W", "lat": 40.85707, "lon": -73.92793, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.92793, 40.85707 ] } }, -{ "type": "Feature", "properties": { "id": 403472, "name": "Amsterdam Av/W 67 St", "direction": "NE", "lat": 40.77564, "lon": -73.98367, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98367, 40.77564 ] } }, -{ "type": "Feature", "properties": { "id": 403475, "name": "Grand St/Essex St", "direction": "E", "lat": 40.716484, "lon": -73.98882, "routes": "L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98882, 40.716484 ] } }, -{ "type": "Feature", "properties": { "id": 403480, "name": "1 Av/E 34 St", "direction": "NE", "lat": 40.74417, "lon": -73.97319, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97319, 40.74417 ] } }, -{ "type": "Feature", "properties": { "id": 403483, "name": "Broadway/W 145 St", "direction": "SW", "lat": 40.826694, "lon": -73.95048, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95048, 40.826694 ] } }, -{ "type": "Feature", "properties": { "id": 403485, "name": "Broadway/W 220 St", "direction": "SW", "lat": 40.87245, "lon": -73.91266, "routes": "BXM1, BX20, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.91266, 40.87245 ] } }, -{ "type": "Feature", "properties": { "id": 403486, "name": "W 42 St/11 Av", "direction": "NW", "lat": 40.760822, "lon": -73.99805, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.99805, 40.760822 ] } }, -{ "type": "Feature", "properties": { "id": 403487, "name": "W 66 St/West End Av", "direction": "NW", "lat": 40.77601, "lon": -73.98702, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98702, 40.77601 ] } }, -{ "type": "Feature", "properties": { "id": 403488, "name": "W 65 St/West End Av", "direction": "SE", "lat": 40.77512, "lon": -73.98728, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98728, 40.77512 ] } }, -{ "type": "Feature", "properties": { "id": 403489, "name": "W 65 St/Amsterdam Av", "direction": "SE", "lat": 40.773872, "lon": -73.98429, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98429, 40.773872 ] } }, -{ "type": "Feature", "properties": { "id": 403491, "name": "W 65 St/Broadway", "direction": "SE", "lat": 40.77318, "lon": -73.98279, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98279, 40.77318 ] } }, -{ "type": "Feature", "properties": { "id": 403492, "name": "W 65 St/Central Park West", "direction": "E", "lat": 40.77181, "lon": -73.979385, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.979385, 40.77181 ] } }, -{ "type": "Feature", "properties": { "id": 403494, "name": "E 65 St/5 Av", "direction": "SE", "lat": 40.76781, "lon": -73.96993, "routes": "M72, M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96993, 40.76781 ] } }, -{ "type": "Feature", "properties": { "id": 403495, "name": "E 68 St/Madison Av", "direction": "SE", "lat": 40.768993, "lon": -73.96691, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96691, 40.768993 ] } }, -{ "type": "Feature", "properties": { "id": 403497, "name": "E 68 St/Lexington Av", "direction": "SE", "lat": 40.76765, "lon": -73.96371, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96371, 40.76765 ] } }, -{ "type": "Feature", "properties": { "id": 403503, "name": "E 67 St/1 Av", "direction": "NW", "lat": 40.76483, "lon": -73.95871, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.95871, 40.76483 ] } }, -{ "type": "Feature", "properties": { "id": 403504, "name": "E 67 St/2 Av", "direction": "NW", "lat": 40.76583, "lon": -73.96108, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96108, 40.76583 ] } }, -{ "type": "Feature", "properties": { "id": 403505, "name": "E 67 St/3 Av", "direction": "NW", "lat": 40.766525, "lon": -73.96273, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96273, 40.766525 ] } }, -{ "type": "Feature", "properties": { "id": 403506, "name": "E 67 St/Lexington Av", "direction": "NW", "lat": 40.767437, "lon": -73.96489, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96489, 40.767437 ] } }, -{ "type": "Feature", "properties": { "id": 403508, "name": "E 67 St/Madison Av", "direction": "NW", "lat": 40.76857, "lon": -73.96758, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96758, 40.76857 ] } }, -{ "type": "Feature", "properties": { "id": 403510, "name": "W 66 St/Central Pk W", "direction": "NW", "lat": 40.772617, "lon": -73.97912, "routes": "M20, M66" }, "geometry": { "type": "Point", "coordinates": [ -73.97912, 40.772617 ] } }, -{ "type": "Feature", "properties": { "id": 403512, "name": "W 66 St/Broadway", "direction": "NW", "lat": 40.77413, "lon": -73.98273, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98273, 40.77413 ] } }, -{ "type": "Feature", "properties": { "id": 403513, "name": "W 66 St/Amsterdam Av", "direction": "NW", "lat": 40.775047, "lon": -73.98475, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98475, 40.775047 ] } }, -{ "type": "Feature", "properties": { "id": 403518, "name": "W 87 St/West End Av", "direction": "NW", "lat": 40.78955, "lon": -73.977196, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.977196, 40.78955 ] } }, -{ "type": "Feature", "properties": { "id": 403519, "name": "W 34 St/Dyer Av", "direction": "W", "lat": 40.75408, "lon": -73.997734, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.997734, 40.75408 ] } }, -{ "type": "Feature", "properties": { "id": 403522, "name": "W 79 St/Riverside Dr", "direction": "E", "lat": 40.784786, "lon": -73.982315, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.982315, 40.784786 ] } }, -{ "type": "Feature", "properties": { "id": 403523, "name": "W 79 St/Broadway", "direction": "SE", "lat": 40.783867, "lon": -73.980286, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.980286, 40.783867 ] } }, -{ "type": "Feature", "properties": { "id": 403525, "name": "2 Av/E 28 St", "direction": "SW", "lat": 40.74097, "lon": -73.97876, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.97876, 40.74097 ] } }, -{ "type": "Feature", "properties": { "id": 403526, "name": "3 Av/E 11 St", "direction": "NE", "lat": 40.73168, "lon": -73.98828, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.98828, 40.73168 ] } }, -{ "type": "Feature", "properties": { "id": 403528, "name": "W 34 St/9 Av", "direction": "NW", "lat": 40.75336, "lon": -73.99604, "routes": "M34+, SIM23, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.99604, 40.75336 ] } }, -{ "type": "Feature", "properties": { "id": 403537, "name": "3 Av/E 125 St", "direction": "NE", "lat": 40.80389, "lon": -73.935524, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.935524, 40.80389 ] } }, -{ "type": "Feature", "properties": { "id": 403539, "name": "W 32 St/Broadway", "direction": "SE", "lat": 40.74838, "lon": -73.988594, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.988594, 40.74838 ] } }, -{ "type": "Feature", "properties": { "id": 403545, "name": "3 Av/E 60 St", "direction": "NE", "lat": 40.762558, "lon": -73.96574, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.96574, 40.762558 ] } }, -{ "type": "Feature", "properties": { "id": 403547, "name": "W 23 St/10 Av", "direction": "W", "lat": 40.747917, "lon": -74.00451, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00451, 40.747917 ] } }, -{ "type": "Feature", "properties": { "id": 403555, "name": "Amsterdam Av/W 69 St", "direction": "NE", "lat": 40.776913, "lon": -73.98274, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98274, 40.776913 ] } }, -{ "type": "Feature", "properties": { "id": 403556, "name": "E 14 St/Irving Pl", "direction": "SE", "lat": 40.733948, "lon": -73.9889, "routes": "M14A+, L92, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.9889, 40.733948 ] } }, -{ "type": "Feature", "properties": { "id": 403557, "name": "Delancey St/Fdr Dr", "direction": "W", "lat": 40.715366, "lon": -73.976654, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.976654, 40.715366 ] } }, -{ "type": "Feature", "properties": { "id": 403560, "name": "W 86 St/West End Av", "direction": "SE", "lat": 40.788815, "lon": -73.97773, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.97773, 40.788815 ] } }, -{ "type": "Feature", "properties": { "id": 403562, "name": "W 57 St/8 Av", "direction": "SE", "lat": 40.76659, "lon": -73.98272, "routes": "M31, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.98272, 40.76659 ] } }, -{ "type": "Feature", "properties": { "id": 403563, "name": "York Av/E 69 St", "direction": "NE", "lat": 40.764812, "lon": -73.95516, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95516, 40.764812 ] } }, -{ "type": "Feature", "properties": { "id": 403573, "name": "W 65 St/Columbus Av", "direction": "E", "lat": 40.772835, "lon": -73.98187, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98187, 40.772835 ] } }, -{ "type": "Feature", "properties": { "id": 403590, "name": "Pearl St/Fulton St", "direction": "SW", "lat": 40.70763, "lon": -74.004, "routes": "M15, SIM15, SIM5, SIM15, SIM35, M15+" }, "geometry": { "type": "Point", "coordinates": [ -74.004, 40.70763 ] } }, -{ "type": "Feature", "properties": { "id": 403593, "name": "E 60 St/Madison Av", "direction": "W", "lat": 40.764442, "lon": -73.9713, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.9713, 40.764442 ] } }, -{ "type": "Feature", "properties": { "id": 403595, "name": "Lexington Av/E 65 St", "direction": "SW", "lat": 40.765636, "lon": -73.96581, "routes": "BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.96581, 40.765636 ] } }, -{ "type": "Feature", "properties": { "id": 403601, "name": "Pearl St/Beekman St", "direction": "NE", "lat": 40.708263, "lon": -74.0031, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -74.0031, 40.708263 ] } }, -{ "type": "Feature", "properties": { "id": 403604, "name": "W 125 St/Amsterdam Av", "direction": "NW", "lat": 40.813694, "lon": -73.95639, "routes": "M104, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.95639, 40.813694 ] } }, -{ "type": "Feature", "properties": { "id": 403606, "name": "W 72 St/Columbus Av", "direction": "E", "lat": 40.777405, "lon": -73.97902, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.97902, 40.777405 ] } }, -{ "type": "Feature", "properties": { "id": 403608, "name": "West End Av/W 69 St", "direction": "NE", "lat": 40.777706, "lon": -73.985855, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.985855, 40.777706 ] } }, -{ "type": "Feature", "properties": { "id": 403610, "name": "W 72 St/Central Park West", "direction": "NW", "lat": 40.77647, "lon": -73.97632, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.97632, 40.77647 ] } }, -{ "type": "Feature", "properties": { "id": 403611, "name": "W 72 St/Columbus Av", "direction": "NW", "lat": 40.777657, "lon": -73.97914, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.97914, 40.777657 ] } }, -{ "type": "Feature", "properties": { "id": 403612, "name": "W 72 St/Amsterdam Av", "direction": "NW", "lat": 40.77861, "lon": -73.9814, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.9814, 40.77861 ] } }, -{ "type": "Feature", "properties": { "id": 403617, "name": "E 57 St/Lexington Av", "direction": "NW", "lat": 40.761185, "lon": -73.969505, "routes": "BM5, BM1, M31, X64, X63, BM3, M57, BM4, BM2, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.969505, 40.761185 ] } }, -{ "type": "Feature", "properties": { "id": 403620, "name": "E 57 St/Madison Av", "direction": "SE", "lat": 40.762047, "lon": -73.97195, "routes": "M57, SIM31, SIM22, SIM25, SIM11, SIM26, SIM8, SIM6, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.97195, 40.762047 ] } }, -{ "type": "Feature", "properties": { "id": 403621, "name": "W 57 St/Avenue Of The Americas", "direction": "SE", "lat": 40.76406, "lon": -73.97673, "routes": "SIM33C, SIM3C, SIM3, M31, M57, SIM1C, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -73.97673, 40.76406 ] } }, -{ "type": "Feature", "properties": { "id": 403626, "name": "West End Av/W 59 St", "direction": "SW", "lat": 40.77141, "lon": -73.9908, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.9908, 40.77141 ] } }, -{ "type": "Feature", "properties": { "id": 403632, "name": "E 96 St/2 Av", "direction": "NW", "lat": 40.784336, "lon": -73.94722, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.94722, 40.784336 ] } }, -{ "type": "Feature", "properties": { "id": 403640, "name": "3 Av/E 50 St", "direction": "NE", "lat": 40.756157, "lon": -73.97039, "routes": "QM36, QM44, QM44, QM35, QM31, QM31, QM32, QM32, QM36, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.97039, 40.756157 ] } }, -{ "type": "Feature", "properties": { "id": 403647, "name": "Allen St/Delancey St", "direction": "SW", "lat": 40.71941, "lon": -73.99046, "routes": "B39, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99046, 40.71941 ] } }, -{ "type": "Feature", "properties": { "id": 403652, "name": "W 181 St/Amsterdam Av", "direction": "NW", "lat": 40.848236, "lon": -73.931, "routes": "BX3, BX11, BX13, BX35, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.931, 40.848236 ] } }, -{ "type": "Feature", "properties": { "id": 403653, "name": "W 181 St/Saint Nicholas Av", "direction": "NW", "lat": 40.84931, "lon": -73.93352, "routes": "BX36, BX3, BX35, BX13, BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.93352, 40.84931 ] } }, -{ "type": "Feature", "properties": { "id": 403656, "name": "W 181 St/Saint Nicholas Av", "direction": "SE", "lat": 40.849247, "lon": -73.93366, "routes": "BX35, BX36, BX11, BX13, BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.93366, 40.849247 ] } }, -{ "type": "Feature", "properties": { "id": 403658, "name": "W 181 St/Amsterdam Av", "direction": "SE", "lat": 40.848164, "lon": -73.93118, "routes": "BX3, BX11, BX35, BX13, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.93118, 40.848164 ] } }, -{ "type": "Feature", "properties": { "id": 403667, "name": "W 178 St/Fort Washington Av", "direction": "E", "lat": 40.84843, "lon": -73.93812, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.93812, 40.84843 ] } }, -{ "type": "Feature", "properties": { "id": 403669, "name": "Broadway/179 St", "direction": "NE", "lat": 40.849327, "lon": -73.93651, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.93651, 40.849327 ] } }, -{ "type": "Feature", "properties": { "id": 403670, "name": "W 179 St/Broadway", "direction": "W", "lat": 40.849167, "lon": -73.937996, "routes": "M98, BX11, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.937996, 40.849167 ] } }, -{ "type": "Feature", "properties": { "id": 403671, "name": "E 125 St/Lexington Av", "direction": "SE", "lat": 40.804176, "lon": -73.937065, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.937065, 40.804176 ] } }, -{ "type": "Feature", "properties": { "id": 403672, "name": "E 125 St/3 Av", "direction": "SE", "lat": 40.803486, "lon": -73.93544, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.93544, 40.803486 ] } }, -{ "type": "Feature", "properties": { "id": 403673, "name": "E 125 St/2 Av", "direction": "E", "lat": 40.80279, "lon": -73.933784, "routes": "M125, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.933784, 40.80279 ] } }, -{ "type": "Feature", "properties": { "id": 403674, "name": "E 125 St/1 Av", "direction": "SE", "lat": 40.801792, "lon": -73.93155, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.93155, 40.801792 ] } }, -{ "type": "Feature", "properties": { "id": 403676, "name": "E 125 St/2 Av", "direction": "W", "lat": 40.803, "lon": -73.934006, "routes": "M35, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.934006, 40.803 ] } }, -{ "type": "Feature", "properties": { "id": 403677, "name": "W 125 St/Broadway", "direction": "NW", "lat": 40.816174, "lon": -73.95857, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.95857, 40.816174 ] } }, -{ "type": "Feature", "properties": { "id": 403679, "name": "Delancey St/Essex St", "direction": "W", "lat": 40.71869, "lon": -73.9883, "routes": "B39" }, "geometry": { "type": "Point", "coordinates": [ -73.9883, 40.71869 ] } }, -{ "type": "Feature", "properties": { "id": 403681, "name": "W 145 St/Broadway", "direction": "SE", "lat": 40.8262, "lon": -73.95015, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.95015, 40.8262 ] } }, -{ "type": "Feature", "properties": { "id": 403682, "name": "W 145 St/Amsterdam Av", "direction": "SE", "lat": 40.82527, "lon": -73.947945, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.947945, 40.82527 ] } }, -{ "type": "Feature", "properties": { "id": 403683, "name": "W 145 St/Convent Av", "direction": "SE", "lat": 40.82462, "lon": -73.946396, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.946396, 40.82462 ] } }, -{ "type": "Feature", "properties": { "id": 403684, "name": "W 145 St/Saint Nicholas Av", "direction": "SE", "lat": 40.82402, "lon": -73.94496, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.94496, 40.82402 ] } }, -{ "type": "Feature", "properties": { "id": 403686, "name": "W 145 St/Frederick Douglass Blvd", "direction": "SE", "lat": 40.82256, "lon": -73.94149, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.94149, 40.82256 ] } }, -{ "type": "Feature", "properties": { "id": 403687, "name": "W 145 St/Adam C Powell Blvd", "direction": "SE", "lat": 40.821648, "lon": -73.939354, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.939354, 40.821648 ] } }, -{ "type": "Feature", "properties": { "id": 403688, "name": "W 145 St/Malcolm X Blvd", "direction": "SE", "lat": 40.820442, "lon": -73.93639, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.93639, 40.820442 ] } }, -{ "type": "Feature", "properties": { "id": 403689, "name": "W 145 St/Malcolm X Blvd", "direction": "NW", "lat": 40.820557, "lon": -73.93635, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.93635, 40.820557 ] } }, -{ "type": "Feature", "properties": { "id": 403690, "name": "W 145 St/Adam C Powell Blvd", "direction": "NW", "lat": 40.821617, "lon": -73.9388, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.9388, 40.821617 ] } }, -{ "type": "Feature", "properties": { "id": 403691, "name": "W 145 St/Frederick Douglass Blvd", "direction": "NW", "lat": 40.82284, "lon": -73.9417, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.9417, 40.82284 ] } }, -{ "type": "Feature", "properties": { "id": 403693, "name": "W 145 St/Saint Nicholas Av", "direction": "W", "lat": 40.82403, "lon": -73.94452, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.94452, 40.82403 ] } }, -{ "type": "Feature", "properties": { "id": 403694, "name": "W 145 St/Convent Av", "direction": "NW", "lat": 40.824665, "lon": -73.94603, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.94603, 40.824665 ] } }, -{ "type": "Feature", "properties": { "id": 403695, "name": "W 145 St/Amsterdam Av", "direction": "NW", "lat": 40.82523, "lon": -73.94737, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.94737, 40.82523 ] } }, -{ "type": "Feature", "properties": { "id": 403696, "name": "W 145 St/Broadway", "direction": "NW", "lat": 40.82641, "lon": -73.95017, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.95017, 40.82641 ] } }, -{ "type": "Feature", "properties": { "id": 403697, "name": "W 155 St/Broadway", "direction": "SE", "lat": 40.832497, "lon": -73.94543, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.94543, 40.832497 ] } }, -{ "type": "Feature", "properties": { "id": 403698, "name": "W 155 St/Amsterdam Av", "direction": "SE", "lat": 40.831467, "lon": -73.94288, "routes": "BX6, M3, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.94288, 40.831467 ] } }, -{ "type": "Feature", "properties": { "id": 403702, "name": "W 155 St/Edgecombe Av", "direction": "NW", "lat": 40.830677, "lon": -73.94064, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.94064, 40.830677 ] } }, -{ "type": "Feature", "properties": { "id": 403703, "name": "W 155 St/Amsterdam Av", "direction": "NW", "lat": 40.831577, "lon": -73.94289, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.94289, 40.831577 ] } }, -{ "type": "Feature", "properties": { "id": 403704, "name": "W 155 St/Broadway", "direction": "NE", "lat": 40.832752, "lon": -73.945564, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.945564, 40.832752 ] } }, -{ "type": "Feature", "properties": { "id": 403711, "name": "E 135 St/Madison Av", "direction": "NW", "lat": 40.8123, "lon": -73.93653, "routes": "BX33, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93653, 40.8123 ] } }, -{ "type": "Feature", "properties": { "id": 403712, "name": "W 135 St/5 Av", "direction": "NW", "lat": 40.812923, "lon": -73.937965, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.937965, 40.812923 ] } }, -{ "type": "Feature", "properties": { "id": 403713, "name": "W 135 St/Malcolm X Blvd", "direction": "NW", "lat": 40.814346, "lon": -73.94132, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.94132, 40.814346 ] } }, -{ "type": "Feature", "properties": { "id": 403716, "name": "W 135 St/Saint Nicholas Av", "direction": "NW", "lat": 40.817043, "lon": -73.94777, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.94777, 40.817043 ] } }, -{ "type": "Feature", "properties": { "id": 403717, "name": "W 135 St/Saint Nicholas Av", "direction": "SE", "lat": 40.816986, "lon": -73.94779, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.94779, 40.816986 ] } }, -{ "type": "Feature", "properties": { "id": 403720, "name": "W 135 St/Malcolm X Blvd", "direction": "SE", "lat": 40.813835, "lon": -73.94033, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.94033, 40.813835 ] } }, -{ "type": "Feature", "properties": { "id": 403721, "name": "W 135 St/5 Av", "direction": "SE", "lat": 40.81256, "lon": -73.93732, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.93732, 40.81256 ] } }, -{ "type": "Feature", "properties": { "id": 403722, "name": "E 135 St/Madison Av", "direction": "SE", "lat": 40.812103, "lon": -73.93625, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.93625, 40.812103 ] } }, -{ "type": "Feature", "properties": { "id": 403726, "name": "York Av/E 74 St", "direction": "SW", "lat": 40.768032, "lon": -73.95296, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95296, 40.768032 ] } }, -{ "type": "Feature", "properties": { "id": 403728, "name": "Riverside Dr West/157-10 Riverside Dr", "direction": "N", "lat": 40.83631, "lon": -73.94843, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.94843, 40.83631 ] } }, -{ "type": "Feature", "properties": { "id": 403731, "name": "East Houston St/2 Av", "direction": "W", "lat": 40.72388, "lon": -73.9914, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.9914, 40.72388 ] } }, -{ "type": "Feature", "properties": { "id": 403732, "name": "Essex St/Delancey St", "direction": "NE", "lat": 40.718945, "lon": -73.98789, "routes": "M14A+, M9, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98789, 40.718945 ] } }, -{ "type": "Feature", "properties": { "id": 403733, "name": "W 79 St/Amsterdam Av", "direction": "W", "lat": 40.78306, "lon": -73.97788, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.97788, 40.78306 ] } }, -{ "type": "Feature", "properties": { "id": 403736, "name": "W 57 St/7 Av", "direction": "SE", "lat": 40.765564, "lon": -73.98032, "routes": "M31, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.98032, 40.765564 ] } }, -{ "type": "Feature", "properties": { "id": 403749, "name": "Lexington Av/E 98 St", "direction": "SW", "lat": 40.78727, "lon": -73.949974, "routes": "M101, M102, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.949974, 40.78727 ] } }, -{ "type": "Feature", "properties": { "id": 403754, "name": "Water St/Wall St", "direction": "SW", "lat": 40.705044, "lon": -74.00776, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -74.00776, 40.705044 ] } }, -{ "type": "Feature", "properties": { "id": 403757, "name": "W 135 St/Amsterdam Av", "direction": "NW", "lat": 40.81916, "lon": -73.95262, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95262, 40.81916 ] } }, -{ "type": "Feature", "properties": { "id": 403760, "name": "W 50 St/7 Av", "direction": "E", "lat": 40.761063, "lon": -73.983505, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.983505, 40.761063 ] } }, -{ "type": "Feature", "properties": { "id": 403763, "name": "W 125 St/Old Broadway", "direction": "NW", "lat": 40.81507, "lon": -73.95759, "routes": "M104, M125" }, "geometry": { "type": "Point", "coordinates": [ -73.95759, 40.81507 ] } }, -{ "type": "Feature", "properties": { "id": 403765, "name": "3 Av/E 93 St", "direction": "NE", "lat": 40.783504, "lon": -73.95049, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95049, 40.783504 ] } }, -{ "type": "Feature", "properties": { "id": 403766, "name": "E 128 St/3 Av", "direction": "E", "lat": 40.805378, "lon": -73.93398, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.93398, 40.805378 ] } }, -{ "type": "Feature", "properties": { "id": 403769, "name": "Avenue Of The Americas/W 31 St", "direction": "NE", "lat": 40.747986, "lon": -73.98891, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -73.98891, 40.747986 ] } }, -{ "type": "Feature", "properties": { "id": 403772, "name": "3 Av/E 20 St", "direction": "SW", "lat": 40.73671, "lon": -73.984764, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.984764, 40.73671 ] } }, -{ "type": "Feature", "properties": { "id": 403776, "name": "Saint Nicholas Av/W 137 St", "direction": "NE", "lat": 40.81836, "lon": -73.94731, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94731, 40.81836 ] } }, -{ "type": "Feature", "properties": { "id": 403777, "name": "3 Av/E 97 St", "direction": "NE", "lat": 40.785748, "lon": -73.94886, "routes": "BXM1, BXM10, M101, M98, M103, BXM7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94886, 40.785748 ] } }, -{ "type": "Feature", "properties": { "id": 403779, "name": "W 66 St/Columbus Av", "direction": "NW", "lat": 40.77358, "lon": -73.981384, "routes": "M66, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.981384, 40.77358 ] } }, -{ "type": "Feature", "properties": { "id": 403781, "name": "Central Park South/Columbus Circle", "direction": "SE", "lat": 40.767567, "lon": -73.98099, "routes": "M104, M5, M7, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.98099, 40.767567 ] } }, -{ "type": "Feature", "properties": { "id": 403782, "name": "Park Av South/E 23 St", "direction": "NE", "lat": 40.74047, "lon": -73.98594, "routes": "M1, M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.98594, 40.74047 ] } }, -{ "type": "Feature", "properties": { "id": 403783, "name": "Wadsworth Av/W 181 St", "direction": "NE", "lat": 40.84958, "lon": -73.93507, "routes": "BX35, BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.93507, 40.84958 ] } }, -{ "type": "Feature", "properties": { "id": 403786, "name": "W 135 St/Amsterdam Av", "direction": "SE", "lat": 40.818924, "lon": -73.95253, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95253, 40.818924 ] } }, -{ "type": "Feature", "properties": { "id": 403790, "name": "Riverside Dr/W 156 St", "direction": "SW", "lat": 40.83468, "lon": -73.947845, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.947845, 40.83468 ] } }, -{ "type": "Feature", "properties": { "id": 403791, "name": "W 125 St/Old Broadway", "direction": "SE", "lat": 40.815197, "lon": -73.95803, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.95803, 40.815197 ] } }, -{ "type": "Feature", "properties": { "id": 403793, "name": "4 Av/E 9 St", "direction": "N", "lat": 40.73028, "lon": -73.99053, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.99053, 40.73028 ] } }, -{ "type": "Feature", "properties": { "id": 403797, "name": "7 Av/W 50 St", "direction": "SW", "lat": 40.760853, "lon": -73.98357, "routes": "M104, M7, M20, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.98357, 40.760853 ] } }, -{ "type": "Feature", "properties": { "id": 403802, "name": "10 Av/W 23 St", "direction": "NE", "lat": 40.74793, "lon": -74.003845, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.003845, 40.74793 ] } }, -{ "type": "Feature", "properties": { "id": 403805, "name": "E 42 St/Madison Av", "direction": "W", "lat": 40.753094, "lon": -73.97977, "routes": "SIM22, SIM26, M42" }, "geometry": { "type": "Point", "coordinates": [ -73.97977, 40.753094 ] } }, -{ "type": "Feature", "properties": { "id": 403808, "name": "East Houston St/Columbia St", "direction": "SE", "lat": 40.719627, "lon": -73.978386, "routes": "M14D+, M21" }, "geometry": { "type": "Point", "coordinates": [ -73.978386, 40.719627 ] } }, -{ "type": "Feature", "properties": { "id": 403813, "name": "Broadway/Riverside Dr", "direction": "SW", "lat": 40.865143, "lon": -73.92807, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.92807, 40.865143 ] } }, -{ "type": "Feature", "properties": { "id": 403816, "name": "11 Av/W 34 St", "direction": "SW", "lat": 40.755665, "lon": -74.00217, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -74.00217, 40.755665 ] } }, -{ "type": "Feature", "properties": { "id": 403821, "name": "Lexington Av/E 34 St", "direction": "SW", "lat": 40.746227, "lon": -73.97989, "routes": "BXM1, M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.97989, 40.746227 ] } }, -{ "type": "Feature", "properties": { "id": 403822, "name": "Lexington Av/E 31 St", "direction": "SW", "lat": 40.744102, "lon": -73.98146, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.98146, 40.744102 ] } }, -{ "type": "Feature", "properties": { "id": 403826, "name": "Frederick Douglass Blvd/W 145 St", "direction": "NE", "lat": 40.82312, "lon": -73.94158, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94158, 40.82312 ] } }, -{ "type": "Feature", "properties": { "id": 403829, "name": "W 125 St/Saint Clair Pl", "direction": "NW", "lat": 40.817204, "lon": -73.9595, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.9595, 40.817204 ] } }, -{ "type": "Feature", "properties": { "id": 403830, "name": "W 42 St/Av Of The Americas", "direction": "NW", "lat": 40.754993, "lon": -73.984276, "routes": "SIM30, SIM8X, SIM25, SIM26, SIM8, M42, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -73.984276, 40.754993 ] } }, -{ "type": "Feature", "properties": { "id": 403831, "name": "Water St/John St", "direction": "SW", "lat": 40.706814, "lon": -74.00523, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -74.00523, 40.706814 ] } }, -{ "type": "Feature", "properties": { "id": 403832, "name": "Frederick Douglass Blvd/W 138 St", "direction": "NE", "lat": 40.818645, "lon": -73.94485, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94485, 40.818645 ] } }, -{ "type": "Feature", "properties": { "id": 403835, "name": "Margaret Corbin Dr/Cloisters", "direction": "NW", "lat": 40.865314, "lon": -73.93091, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93091, 40.865314 ] } }, -{ "type": "Feature", "properties": { "id": 403837, "name": "Madison Av/E 61 St", "direction": "NE", "lat": 40.764725, "lon": -73.97047, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.97047, 40.764725 ] } }, -{ "type": "Feature", "properties": { "id": 403846, "name": "8 Av/W 57 St", "direction": "NE", "lat": 40.76674, "lon": -73.98268, "routes": "M12, M10" }, "geometry": { "type": "Point", "coordinates": [ -73.98268, 40.76674 ] } }, -{ "type": "Feature", "properties": { "id": 403847, "name": "Avenue Of The Americas/West Broadway", "direction": "N", "lat": 40.7209, "lon": -74.00517, "routes": "BXM18, M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00517, 40.7209 ] } }, -{ "type": "Feature", "properties": { "id": 403849, "name": "Allen St/East Houston St", "direction": "S", "lat": 40.722515, "lon": -73.98899, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.98899, 40.722515 ] } }, -{ "type": "Feature", "properties": { "id": 403851, "name": "Spring St/Hudson St", "direction": "E", "lat": 40.725735, "lon": -74.007195, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -74.007195, 40.725735 ] } }, -{ "type": "Feature", "properties": { "id": 403853, "name": "West Houston St/Hudson St", "direction": "W", "lat": 40.72889, "lon": -74.0073, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -74.0073, 40.72889 ] } }, -{ "type": "Feature", "properties": { "id": 403854, "name": "Washington St/West Houston St", "direction": "S", "lat": 40.72725, "lon": -74.00971, "routes": "M21, M21" }, "geometry": { "type": "Point", "coordinates": [ -74.00971, 40.72725 ] } }, -{ "type": "Feature", "properties": { "id": 403855, "name": "3 Av/E 23 St", "direction": "NE", "lat": 40.73922, "lon": -73.98277, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.98277, 40.73922 ] } }, -{ "type": "Feature", "properties": { "id": 403870, "name": "E 14 St/2 Av", "direction": "NW", "lat": 40.732483, "lon": -73.98519, "routes": "M14D+, M14A+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98519, 40.732483 ] } }, -{ "type": "Feature", "properties": { "id": 403871, "name": "E 14 St/3 Av", "direction": "W", "lat": 40.733547, "lon": -73.98758, "routes": "L92, M14D+, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98758, 40.733547 ] } }, -{ "type": "Feature", "properties": { "id": 403876, "name": "Hudson St/Bethune St", "direction": "S", "lat": 40.737072, "lon": -74.00587, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00587, 40.737072 ] } }, -{ "type": "Feature", "properties": { "id": 403878, "name": "Vesey St/North End Av", "direction": "SE", "lat": 40.714554, "lon": -74.01585, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01585, 40.714554 ] } }, -{ "type": "Feature", "properties": { "id": 403886, "name": "Amsterdam Av/W 114 St", "direction": "NE", "lat": 40.805725, "lon": -73.961716, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.961716, 40.805725 ] } }, -{ "type": "Feature", "properties": { "id": 403887, "name": "2 Av/E 54 St", "direction": "SW", "lat": 40.75715, "lon": -73.966934, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.966934, 40.75715 ] } }, -{ "type": "Feature", "properties": { "id": 403893, "name": "E 14 St/Union Square West", "direction": "W", "lat": 40.735466, "lon": -73.992134, "routes": "L92, M14A+, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.992134, 40.735466 ] } }, -{ "type": "Feature", "properties": { "id": 403894, "name": "W 14 St/5 Av", "direction": "NW", "lat": 40.73623, "lon": -73.99396, "routes": "M14A+, M14D+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.99396, 40.73623 ] } }, -{ "type": "Feature", "properties": { "id": 403895, "name": "W 14 St/6 Av", "direction": "NW", "lat": 40.737663, "lon": -73.99736, "routes": "M14A+, M14D+, L92" }, "geometry": { "type": "Point", "coordinates": [ -73.99736, 40.737663 ] } }, -{ "type": "Feature", "properties": { "id": 403896, "name": "W 14 St/7 Av", "direction": "NW", "lat": 40.738796, "lon": -74.000046, "routes": "L92, M14D+, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -74.000046, 40.738796 ] } }, -{ "type": "Feature", "properties": { "id": 403897, "name": "W 14 St/8 Av", "direction": "NW", "lat": 40.74003, "lon": -74.00297, "routes": "M14A+, M14D+, M12, L92" }, "geometry": { "type": "Point", "coordinates": [ -74.00297, 40.74003 ] } }, -{ "type": "Feature", "properties": { "id": 403902, "name": "Riverside Dr/W 100 St", "direction": "NE", "lat": 40.79885, "lon": -73.97345, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97345, 40.79885 ] } }, -{ "type": "Feature", "properties": { "id": 403903, "name": "Broadway/W 125 St", "direction": "SW", "lat": 40.81617, "lon": -73.95818, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95818, 40.81617 ] } }, -{ "type": "Feature", "properties": { "id": 403906, "name": "E 14 St/4 Av", "direction": "NW", "lat": 40.734417, "lon": -73.9897, "routes": "M14A+, L92, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.9897, 40.734417 ] } }, -{ "type": "Feature", "properties": { "id": 403907, "name": "W 165 St/Amsterdam Av", "direction": "W", "lat": 40.83787, "lon": -73.938156, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.938156, 40.83787 ] } }, -{ "type": "Feature", "properties": { "id": 403908, "name": "Audubon Av/W 165 St", "direction": "NE", "lat": 40.83905, "lon": -73.939316, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.939316, 40.83905 ] } }, -{ "type": "Feature", "properties": { "id": 403910, "name": "W 165 St/Amsterdam Av", "direction": "E", "lat": 40.83769, "lon": -73.93804, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93804, 40.83769 ] } }, -{ "type": "Feature", "properties": { "id": 403913, "name": "3 Av/E 14 St", "direction": "NE", "lat": 40.73369, "lon": -73.986786, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.986786, 40.73369 ] } }, -{ "type": "Feature", "properties": { "id": 403914, "name": "Avenue Of The Americas/W 20 St", "direction": "NE", "lat": 40.741154, "lon": -73.99387, "routes": "M7, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.99387, 40.741154 ] } }, -{ "type": "Feature", "properties": { "id": 403942, "name": "Convent Av/W 129 St", "direction": "S", "lat": 40.814224, "lon": -73.95318, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.95318, 40.814224 ] } }, -{ "type": "Feature", "properties": { "id": 403950, "name": "W 145 St/Riverside Dr", "direction": "W", "lat": 40.827015, "lon": -73.95157, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.95157, 40.827015 ] } }, -{ "type": "Feature", "properties": { "id": 403953, "name": "State St/Bridge St", "direction": "S", "lat": 40.70335, "lon": -74.01453, "routes": "M20, M55" }, "geometry": { "type": "Point", "coordinates": [ -74.01453, 40.70335 ] } }, -{ "type": "Feature", "properties": { "id": 403954, "name": "W 49 St/11 Av", "direction": "NW", "lat": 40.765476, "lon": -73.995476, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.995476, 40.765476 ] } }, -{ "type": "Feature", "properties": { "id": 403955, "name": "W 49 St/12 Av", "direction": "W", "lat": 40.766193, "lon": -73.997185, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.997185, 40.766193 ] } }, -{ "type": "Feature", "properties": { "id": 403956, "name": "12 Av/W 46 St", "direction": "SW", "lat": 40.76446, "lon": -73.99869, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.99869, 40.76446 ] } }, -{ "type": "Feature", "properties": { "id": 403971, "name": "Broadway/Cortlandt St", "direction": "SW", "lat": 40.709423, "lon": -74.01034, "routes": "SIM33C, SIM1C, SIM3C, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.01034, 40.709423 ] } }, -{ "type": "Feature", "properties": { "id": 403975, "name": "Saint Nicholas Av/W 176 St", "direction": "NE", "lat": 40.846367, "lon": -73.935745, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.935745, 40.846367 ] } }, -{ "type": "Feature", "properties": { "id": 403976, "name": "Saint Nicholas Av/W 184 St", "direction": "NE", "lat": 40.851368, "lon": -73.9321, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.9321, 40.851368 ] } }, -{ "type": "Feature", "properties": { "id": 403978, "name": "Saint Nicholas Av/W 187 St", "direction": "SW", "lat": 40.85276, "lon": -73.93134, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93134, 40.85276 ] } }, -{ "type": "Feature", "properties": { "id": 403979, "name": "Saint Nicholas Av/W 174 St", "direction": "SW", "lat": 40.844906, "lon": -73.937096, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.937096, 40.844906 ] } }, -{ "type": "Feature", "properties": { "id": 403980, "name": "Madison Av/E 121 St", "direction": "NE", "lat": 40.803482, "lon": -73.94222, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94222, 40.803482 ] } }, -{ "type": "Feature", "properties": { "id": 403981, "name": "Central Park West/W 69 St", "direction": "NE", "lat": 40.77451, "lon": -73.97707, "routes": "M72, M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97707, 40.77451 ] } }, -{ "type": "Feature", "properties": { "id": 403982, "name": "Frederick Douglass Blvd/W 135 St", "direction": "NE", "lat": 40.816772, "lon": -73.94621, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94621, 40.816772 ] } }, -{ "type": "Feature", "properties": { "id": 403984, "name": "W 57 St/9 Av", "direction": "SE", "lat": 40.767696, "lon": -73.98534, "routes": "M57, M31, M12" }, "geometry": { "type": "Point", "coordinates": [ -73.98534, 40.767696 ] } }, -{ "type": "Feature", "properties": { "id": 403986, "name": "W 57 St/10 Av", "direction": "NW", "lat": 40.76932, "lon": -73.98895, "routes": "M31, M57, M12" }, "geometry": { "type": "Point", "coordinates": [ -73.98895, 40.76932 ] } }, -{ "type": "Feature", "properties": { "id": 403987, "name": "11 Av/W 57 St", "direction": "SW", "lat": 40.770023, "lon": -73.99169, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.99169, 40.770023 ] } }, -{ "type": "Feature", "properties": { "id": 403989, "name": "E 79 St/5 Av", "direction": "NW", "lat": 40.77698, "lon": -73.96348, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.96348, 40.77698 ] } }, -{ "type": "Feature", "properties": { "id": 403992, "name": "W 57 St/10 Av", "direction": "SE", "lat": 40.768867, "lon": -73.98815, "routes": "M31, M57, M12" }, "geometry": { "type": "Point", "coordinates": [ -73.98815, 40.768867 ] } }, -{ "type": "Feature", "properties": { "id": 403993, "name": "E 68 St/3 Av", "direction": "SE", "lat": 40.766964, "lon": -73.962074, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.962074, 40.766964 ] } }, -{ "type": "Feature", "properties": { "id": 403994, "name": "E 68 St/2 Av", "direction": "SE", "lat": 40.766262, "lon": -73.96043, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96043, 40.766262 ] } }, -{ "type": "Feature", "properties": { "id": 403995, "name": "E 68 St/1 Av", "direction": "SE", "lat": 40.76503, "lon": -73.9575, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.9575, 40.76503 ] } }, -{ "type": "Feature", "properties": { "id": 403996, "name": "E 68 St/York Av", "direction": "SW", "lat": 40.76425, "lon": -73.95575, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.95575, 40.76425 ] } }, -{ "type": "Feature", "properties": { "id": 403997, "name": "E 67 St/York Av", "direction": "NW", "lat": 40.76391, "lon": -73.9563, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.9563, 40.76391 ] } }, -{ "type": "Feature", "properties": { "id": 404008, "name": "Amsterdam Av/W 190 St", "direction": "SW", "lat": 40.85344, "lon": -73.92707, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.92707, 40.85344 ] } }, -{ "type": "Feature", "properties": { "id": 404010, "name": "E 8 St/Lafayette St", "direction": "SE", "lat": 40.73007, "lon": -73.99128, "routes": "M3, M1, M1, M2, M8" }, "geometry": { "type": "Point", "coordinates": [ -73.99128, 40.73007 ] } }, -{ "type": "Feature", "properties": { "id": 404011, "name": "W 135 St/Broadway", "direction": "NW", "lat": 40.82044, "lon": -73.95573, "routes": "M11, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.95573, 40.82044 ] } }, -{ "type": "Feature", "properties": { "id": 404012, "name": "W 135 St/Riverside Dr", "direction": "NW", "lat": 40.821026, "lon": -73.95703, "routes": "M5, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95703, 40.821026 ] } }, -{ "type": "Feature", "properties": { "id": 404013, "name": "Riverside Dr/W 137 St", "direction": "NE", "lat": 40.822433, "lon": -73.95586, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95586, 40.822433 ] } }, -{ "type": "Feature", "properties": { "id": 404014, "name": "Riverside Dr/W 142 St", "direction": "NE", "lat": 40.825462, "lon": -73.9533, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.9533, 40.825462 ] } }, -{ "type": "Feature", "properties": { "id": 404015, "name": "Riverside Dr/W 144 St", "direction": "NE", "lat": 40.826653, "lon": -73.952225, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.952225, 40.826653 ] } }, -{ "type": "Feature", "properties": { "id": 404017, "name": "Riverside Dr/W 142 St", "direction": "SW", "lat": 40.825382, "lon": -73.95399, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95399, 40.825382 ] } }, -{ "type": "Feature", "properties": { "id": 404018, "name": "Riverside Dr/W 139 St", "direction": "SW", "lat": 40.823483, "lon": -73.9555, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.9555, 40.823483 ] } }, -{ "type": "Feature", "properties": { "id": 404019, "name": "W 135 St/Riverside Dr", "direction": "SE", "lat": 40.82086, "lon": -73.957, "routes": "M5, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.957, 40.82086 ] } }, -{ "type": "Feature", "properties": { "id": 404022, "name": "W 145 St/Riverside Dr", "direction": "E", "lat": 40.826817, "lon": -73.95165, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.95165, 40.826817 ] } }, -{ "type": "Feature", "properties": { "id": 404024, "name": "Central Park West/W 75 St", "direction": "NE", "lat": 40.77851, "lon": -73.97414, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97414, 40.77851 ] } }, -{ "type": "Feature", "properties": { "id": 404026, "name": "Broadway/W 178 St", "direction": "NE", "lat": 40.848648, "lon": -73.937355, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.937355, 40.848648 ] } }, -{ "type": "Feature", "properties": { "id": 404028, "name": "Broadway/W 220 St", "direction": "NE", "lat": 40.872517, "lon": -73.912415, "routes": "BX7, M100, BXM1, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.912415, 40.872517 ] } }, -{ "type": "Feature", "properties": { "id": 404029, "name": "E 14 St/1 Av", "direction": "NW", "lat": 40.73115, "lon": -73.981964, "routes": "L92, M14D+, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.981964, 40.73115 ] } }, -{ "type": "Feature", "properties": { "id": 404030, "name": "Columbus Av/W 61 St", "direction": "SW", "lat": 40.770016, "lon": -73.984344, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.984344, 40.770016 ] } }, -{ "type": "Feature", "properties": { "id": 404031, "name": "Riverside Dr/W 145 St", "direction": "SW", "lat": 40.82701, "lon": -73.95215, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95215, 40.82701 ] } }, -{ "type": "Feature", "properties": { "id": 404035, "name": "W 49 St/7 Av", "direction": "NW", "lat": 40.760704, "lon": -73.98407, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.98407, 40.760704 ] } }, -{ "type": "Feature", "properties": { "id": 404036, "name": "West End Av/W 61 St", "direction": "SW", "lat": 40.77299, "lon": -73.9896, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.9896, 40.77299 ] } }, -{ "type": "Feature", "properties": { "id": 404037, "name": "Sutton Pl/E 55 St", "direction": "SW", "lat": 40.756195, "lon": -73.961655, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.961655, 40.756195 ] } }, -{ "type": "Feature", "properties": { "id": 404039, "name": "Avenue Of The Americas/W 38 St", "direction": "NE", "lat": 40.75214, "lon": -73.98597, "routes": "M55, M7, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98597, 40.75214 ] } }, -{ "type": "Feature", "properties": { "id": 404040, "name": "Avenue Of The Americas/W 40 St", "direction": "NE", "lat": 40.753708, "lon": -73.98473, "routes": "M55, M5, M7, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.98473, 40.753708 ] } }, -{ "type": "Feature", "properties": { "id": 404043, "name": "Avenue Of The Americas/W 45 St", "direction": "NE", "lat": 40.75703, "lon": -73.982376, "routes": "M7, M5" }, "geometry": { "type": "Point", "coordinates": [ -73.982376, 40.75703 ] } }, -{ "type": "Feature", "properties": { "id": 404049, "name": "Central Park West/W 63 St", "direction": "NE", "lat": 40.770657, "lon": -73.97987, "routes": "M20, M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97987, 40.770657 ] } }, -{ "type": "Feature", "properties": { "id": 404054, "name": "Riverside Dr/W 94 St", "direction": "NE", "lat": 40.794693, "lon": -73.97659, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97659, 40.794693 ] } }, -{ "type": "Feature", "properties": { "id": 404056, "name": "Riverside Dr/W 139 St", "direction": "NE", "lat": 40.82343, "lon": -73.95532, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95532, 40.82343 ] } }, -{ "type": "Feature", "properties": { "id": 404058, "name": "W 54 St/11 Av", "direction": "SE", "lat": 40.767925, "lon": -73.99186, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.99186, 40.767925 ] } }, -{ "type": "Feature", "properties": { "id": 404066, "name": "Saint Nicholas Av/W 167 St", "direction": "N", "lat": 40.840878, "lon": -73.93944, "routes": "M3, M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.93944, 40.840878 ] } }, -{ "type": "Feature", "properties": { "id": 404075, "name": "W 96 St/Columbus Av", "direction": "NW", "lat": 40.79308, "lon": -73.96783, "routes": "M96, M106" }, "geometry": { "type": "Point", "coordinates": [ -73.96783, 40.79308 ] } }, -{ "type": "Feature", "properties": { "id": 404076, "name": "E 106 St/Lexington Av", "direction": "SE", "lat": 40.79201, "lon": -73.94597, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.94597, 40.79201 ] } }, -{ "type": "Feature", "properties": { "id": 404077, "name": "E 106 St/3 Av", "direction": "SE", "lat": 40.791325, "lon": -73.944336, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.944336, 40.791325 ] } }, -{ "type": "Feature", "properties": { "id": 404079, "name": "E 106 St/Lexington Av", "direction": "NW", "lat": 40.792465, "lon": -73.94657, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.94657, 40.792465 ] } }, -{ "type": "Feature", "properties": { "id": 404080, "name": "E 106 St/Madison Av", "direction": "NW", "lat": 40.793835, "lon": -73.94983, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.94983, 40.793835 ] } }, -{ "type": "Feature", "properties": { "id": 404081, "name": "5 Av/E 98 St", "direction": "SW", "lat": 40.789204, "lon": -73.95493, "routes": "M2, M3, BXM11, M1, M4, M106, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.95493, 40.789204 ] } }, -{ "type": "Feature", "properties": { "id": 404085, "name": "12 Av/W 23 St", "direction": "SE", "lat": 40.748875, "lon": -74.00803, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00803, 40.748875 ] } }, -{ "type": "Feature", "properties": { "id": 404087, "name": "E 96 St/5 Av", "direction": "SE", "lat": 40.78766, "lon": -73.955414, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.955414, 40.78766 ] } }, -{ "type": "Feature", "properties": { "id": 404092, "name": "3 Av/Astor Pl", "direction": "SW", "lat": 40.729313, "lon": -73.9902, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.9902, 40.729313 ] } }, -{ "type": "Feature", "properties": { "id": 404099, "name": "E 20 St/E 20 St Loop", "direction": "NW", "lat": 40.734055, "lon": -73.97755, "routes": "M9, M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.97755, 40.734055 ] } }, -{ "type": "Feature", "properties": { "id": 404100, "name": "East Houston St/Ridge St", "direction": "E", "lat": 40.720654, "lon": -73.98164, "routes": "M21, M9" }, "geometry": { "type": "Point", "coordinates": [ -73.98164, 40.720654 ] } }, -{ "type": "Feature", "properties": { "id": 404101, "name": "Frankfort St/William St", "direction": "SE", "lat": 40.711388, "lon": -74.0044, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.0044, 40.711388 ] } }, -{ "type": "Feature", "properties": { "id": 404104, "name": "Riverside Dr/W 103 St", "direction": "NE", "lat": 40.80043, "lon": -73.971725, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.971725, 40.80043 ] } }, -{ "type": "Feature", "properties": { "id": 404105, "name": "2 Av/E 12 St", "direction": "SW", "lat": 40.730797, "lon": -73.98615, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.98615, 40.730797 ] } }, -{ "type": "Feature", "properties": { "id": 404106, "name": "3 Av/E 14 St", "direction": "SW", "lat": 40.732956, "lon": -73.9875, "routes": "M101, M102, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.9875, 40.732956 ] } }, -{ "type": "Feature", "properties": { "id": 404108, "name": "Church St/Vesey St", "direction": "NE", "lat": 40.712128, "lon": -74.01005, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.01005, 40.712128 ] } }, -{ "type": "Feature", "properties": { "id": 404113, "name": "W 135 St/Adam C Powell Blvd", "direction": "SE", "lat": 40.815, "lon": -73.94311, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.94311, 40.815 ] } }, -{ "type": "Feature", "properties": { "id": 404114, "name": "W 135 St/Adam C Powell Blvd", "direction": "NW", "lat": 40.815598, "lon": -73.9443, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.9443, 40.815598 ] } }, -{ "type": "Feature", "properties": { "id": 404116, "name": "W 43 St/8 Av", "direction": "NW", "lat": 40.758392, "lon": -73.99019, "routes": "M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.99019, 40.758392 ] } }, -{ "type": "Feature", "properties": { "id": 404117, "name": "Fort Tryon Park/Opp Cafe Lot", "direction": "NE", "lat": 40.86333, "lon": -73.932396, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.932396, 40.86333 ] } }, -{ "type": "Feature", "properties": { "id": 404118, "name": "Fort Tryon Park/Cafe Lot", "direction": "S", "lat": 40.863796, "lon": -73.932495, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.932495, 40.863796 ] } }, -{ "type": "Feature", "properties": { "id": 404120, "name": "Union Sq East/E 15 St", "direction": "NE", "lat": 40.73555, "lon": -73.98961, "routes": "M3, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.98961, 40.73555 ] } }, -{ "type": "Feature", "properties": { "id": 404122, "name": "5 Av/E 67 St", "direction": "SW", "lat": 40.76903, "lon": -73.96965, "routes": "M72, M66" }, "geometry": { "type": "Point", "coordinates": [ -73.96965, 40.76903 ] } }, -{ "type": "Feature", "properties": { "id": 404124, "name": "W 178 St/Saint Nicholas Av", "direction": "SE", "lat": 40.847336, "lon": -73.93538, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93538, 40.847336 ] } }, -{ "type": "Feature", "properties": { "id": 404125, "name": "W 178 St/Audubon Av", "direction": "SE", "lat": 40.84655, "lon": -73.93345, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.93345, 40.84655 ] } }, -{ "type": "Feature", "properties": { "id": 404129, "name": "Adam C Powell Blvd/W 149 St", "direction": "NE", "lat": 40.82426, "lon": -73.93694, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93694, 40.82426 ] } }, -{ "type": "Feature", "properties": { "id": 404130, "name": "Riverside Dr/W 104 St", "direction": "SW", "lat": 40.800945, "lon": -73.97134, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97134, 40.800945 ] } }, -{ "type": "Feature", "properties": { "id": 404131, "name": "Riverside Dr/W 94 St", "direction": "SW", "lat": 40.79492, "lon": -73.97656, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97656, 40.79492 ] } }, -{ "type": "Feature", "properties": { "id": 404132, "name": "6 Av/Prince St", "direction": "NE", "lat": 40.727024, "lon": -74.00335, "routes": "SIM7, M55, SIM9, SIM3C, M21, SIM4C, SIM33, SIM33C, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -74.00335, 40.727024 ] } }, -{ "type": "Feature", "properties": { "id": 404133, "name": "Hudson St/Barrow St", "direction": "N", "lat": 40.73157, "lon": -74.00653, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00653, 40.73157 ] } }, -{ "type": "Feature", "properties": { "id": 404134, "name": "Central Park West/W 79 St", "direction": "NE", "lat": 40.78115, "lon": -73.97224, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97224, 40.78115 ] } }, -{ "type": "Feature", "properties": { "id": 404135, "name": "Frederick Douglass Blvd/W 158 St", "direction": "SW", "lat": 40.830452, "lon": -73.936356, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.936356, 40.830452 ] } }, -{ "type": "Feature", "properties": { "id": 404136, "name": "Central Park West/W 79 St", "direction": "SW", "lat": 40.78062, "lon": -73.972855, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.972855, 40.78062 ] } }, -{ "type": "Feature", "properties": { "id": 404137, "name": "12 Av/W 23 St", "direction": "S", "lat": 40.74873, "lon": -74.00796, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00796, 40.74873 ] } }, -{ "type": "Feature", "properties": { "id": 404138, "name": "Broadway/W 63 St", "direction": "S", "lat": 40.771637, "lon": -73.98234, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98234, 40.771637 ] } }, -{ "type": "Feature", "properties": { "id": 404140, "name": "Saint Nicholas Av/W 167 St", "direction": "N", "lat": 40.839813, "lon": -73.93974, "routes": "BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.93974, 40.839813 ] } }, -{ "type": "Feature", "properties": { "id": 404144, "name": "Broadway/W 207 St", "direction": "E", "lat": 40.867836, "lon": -73.92057, "routes": "BX12, BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.92057, 40.867836 ] } }, -{ "type": "Feature", "properties": { "id": 404147, "name": "W 133 St/Amsterdam Av", "direction": "NW", "lat": 40.81782, "lon": -73.95357, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95357, 40.81782 ] } }, -{ "type": "Feature", "properties": { "id": 404153, "name": "7 Av/W 41 St", "direction": "SW", "lat": 40.755486, "lon": -73.98738, "routes": "M20, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.98738, 40.755486 ] } }, -{ "type": "Feature", "properties": { "id": 404154, "name": "York Av/E 60 St", "direction": "NE", "lat": 40.75956, "lon": -73.958984, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.958984, 40.75956 ] } }, -{ "type": "Feature", "properties": { "id": 404155, "name": "East Houston St/Mott St", "direction": "W", "lat": 40.724865, "lon": -73.99453, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99453, 40.724865 ] } }, -{ "type": "Feature", "properties": { "id": 404160, "name": "E 42 St/Madison Av", "direction": "SE", "lat": 40.752533, "lon": -73.97889, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.97889, 40.752533 ] } }, -{ "type": "Feature", "properties": { "id": 404161, "name": "10 Av/W 19 St", "direction": "NE", "lat": 40.745426, "lon": -74.005684, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.005684, 40.745426 ] } }, -{ "type": "Feature", "properties": { "id": 404165, "name": "W 207 St/10 Av", "direction": "SE", "lat": 40.864243, "lon": -73.91852, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.91852, 40.864243 ] } }, -{ "type": "Feature", "properties": { "id": 404167, "name": "Allen St/Delancey St", "direction": "NE", "lat": 40.719337, "lon": -73.99012, "routes": "B39" }, "geometry": { "type": "Point", "coordinates": [ -73.99012, 40.719337 ] } }, -{ "type": "Feature", "properties": { "id": 404168, "name": "5 Av/E 96 St", "direction": "SW", "lat": 40.788216, "lon": -73.955635, "routes": "BXM4, M4, BXM7, BXM3, M3, M2, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.955635, 40.788216 ] } }, -{ "type": "Feature", "properties": { "id": 404169, "name": "3 Av/E 55 St", "direction": "NE", "lat": 40.75923, "lon": -73.96822, "routes": "X63, X68, QM35, QM35, QM32, QM31, QM36, QM36, QM44, QM31, QM32, X64, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.96822, 40.75923 ] } }, -{ "type": "Feature", "properties": { "id": 404170, "name": "W 207 St/10 Av", "direction": "NW", "lat": 40.86442, "lon": -73.918724, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.918724, 40.86442 ] } }, -{ "type": "Feature", "properties": { "id": 404171, "name": "Lexington Av/E 59 St", "direction": "SW", "lat": 40.762108, "lon": -73.96834, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.96834, 40.762108 ] } }, -{ "type": "Feature", "properties": { "id": 404176, "name": "Lexington Av/E 41 St", "direction": "SW", "lat": 40.75088, "lon": -73.97657, "routes": "SIM6, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -73.97657, 40.75088 ] } }, -{ "type": "Feature", "properties": { "id": 404179, "name": "5 Av/W 52 St", "direction": "SW", "lat": 40.759518, "lon": -73.97657, "routes": "X38, X27, X28, X37" }, "geometry": { "type": "Point", "coordinates": [ -73.97657, 40.759518 ] } }, -{ "type": "Feature", "properties": { "id": 404181, "name": "5 Av/W 41 St", "direction": "SW", "lat": 40.75247, "lon": -73.981705, "routes": "X38, X37, X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.981705, 40.75247 ] } }, -{ "type": "Feature", "properties": { "id": 404183, "name": "5 Av/W 30 St", "direction": "SW", "lat": 40.74564, "lon": -73.98668, "routes": "X38, X28, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -73.98668, 40.74564 ] } }, -{ "type": "Feature", "properties": { "id": 404184, "name": "Broadway/Waverly Pl", "direction": "SW", "lat": 40.729527, "lon": -73.99335, "routes": "SIM33C, X28, SIM4C, SIM1C, SIM3C, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.99335, 40.729527 ] } }, -{ "type": "Feature", "properties": { "id": 404185, "name": "Broadway/Thomas St", "direction": "SW", "lat": 40.715466, "lon": -74.005264, "routes": "X27, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.005264, 40.715466 ] } }, -{ "type": "Feature", "properties": { "id": 404186, "name": "Broadway/Murray St", "direction": "SW", "lat": 40.71283, "lon": -74.00754, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.00754, 40.71283 ] } }, -{ "type": "Feature", "properties": { "id": 404188, "name": "Broadway/Cedar St", "direction": "SW", "lat": 40.70889, "lon": -74.01086, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.01086, 40.70889 ] } }, -{ "type": "Feature", "properties": { "id": 404189, "name": "Broadway/Rector St", "direction": "SW", "lat": 40.707115, "lon": -74.01231, "routes": "SIM1C, SIM1, SIM33C, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.01231, 40.707115 ] } }, -{ "type": "Feature", "properties": { "id": 404190, "name": "Broadway/Morris St", "direction": "SW", "lat": 40.705215, "lon": -74.01385, "routes": "SIM4, SIM4X, SIM1, M55, SIM1C, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.01385, 40.705215 ] } }, -{ "type": "Feature", "properties": { "id": 404191, "name": "Madison Av/E 95 St", "direction": "NE", "lat": 40.78708, "lon": -73.954124, "routes": "M1, M2, M3, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.954124, 40.78708 ] } }, -{ "type": "Feature", "properties": { "id": 404194, "name": "W 179 St/Wadsworth Av", "direction": "NW", "lat": 40.848515, "lon": -73.935776, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.935776, 40.848515 ] } }, -{ "type": "Feature", "properties": { "id": 404197, "name": "Broadway/E 13 St", "direction": "S", "lat": 40.73385, "lon": -73.99106, "routes": "X27, X28, SIM9, SIM7, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -73.99106, 40.73385 ] } }, -{ "type": "Feature", "properties": { "id": 404199, "name": "Worth St/Broadway", "direction": "SE", "lat": 40.716373, "lon": -74.004845, "routes": "SIM4X" }, "geometry": { "type": "Point", "coordinates": [ -74.004845, 40.716373 ] } }, -{ "type": "Feature", "properties": { "id": 404201, "name": "Broadway/Barclay St", "direction": "SW", "lat": 40.71233, "lon": -74.00796, "routes": "SIM15, SIM15, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.00796, 40.71233 ] } }, -{ "type": "Feature", "properties": { "id": 404202, "name": "Broadway/Rector St", "direction": "SW", "lat": 40.707233, "lon": -74.01221, "routes": "SIM4, SIM4X, SIM4C, BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.01221, 40.707233 ] } }, -{ "type": "Feature", "properties": { "id": 404204, "name": "5 Av/W 46 St", "direction": "SW", "lat": 40.75585, "lon": -73.97925, "routes": "SIM24, SIM25, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -73.97925, 40.75585 ] } }, -{ "type": "Feature", "properties": { "id": 404205, "name": "5 Av/W 40 St", "direction": "SW", "lat": 40.752316, "lon": -73.98186, "routes": "SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -73.98186, 40.752316 ] } }, -{ "type": "Feature", "properties": { "id": 404206, "name": "5 Av/W 32 St", "direction": "SW", "lat": 40.747276, "lon": -73.98553, "routes": "SIM3C, SIM33C, SIM1C, SIM3, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -73.98553, 40.747276 ] } }, -{ "type": "Feature", "properties": { "id": 404208, "name": "Broadway/Worth St", "direction": "SW", "lat": 40.716084, "lon": -74.00473, "routes": "SIM1C, SIM4C, SIM1, BXM18, SIM3C, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.00473, 40.716084 ] } }, -{ "type": "Feature", "properties": { "id": 404211, "name": "5 Av/W 28 St", "direction": "SW", "lat": 40.744396, "lon": -73.987625, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.987625, 40.744396 ] } }, -{ "type": "Feature", "properties": { "id": 404215, "name": "5 Av/W 54 St", "direction": "SW", "lat": 40.760773, "lon": -73.975685, "routes": "SIM25, SIM23, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.975685, 40.760773 ] } }, -{ "type": "Feature", "properties": { "id": 404219, "name": "Broadway/Warren St", "direction": "SW", "lat": 40.713764, "lon": -74.00675, "routes": "SIM2, SIM34, M22" }, "geometry": { "type": "Point", "coordinates": [ -74.00675, 40.713764 ] } }, -{ "type": "Feature", "properties": { "id": 404220, "name": "Broadway/Vesey St", "direction": "SW", "lat": 40.711544, "lon": -74.0086, "routes": "SIM2, SIM32, SIM34, BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.0086, 40.711544 ] } }, -{ "type": "Feature", "properties": { "id": 404221, "name": "Broadway/Liberty St", "direction": "SW", "lat": 40.709415, "lon": -74.01042, "routes": "SIM2, SIM34, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.01042, 40.709415 ] } }, -{ "type": "Feature", "properties": { "id": 404222, "name": "Broadway/Exchange Alley", "direction": "SW", "lat": 40.70659, "lon": -74.01275, "routes": "SIM2, SIM32, SIM34" }, "geometry": { "type": "Point", "coordinates": [ -74.01275, 40.70659 ] } }, -{ "type": "Feature", "properties": { "id": 404224, "name": "Broadway/Chambers St", "direction": "SW", "lat": 40.714046, "lon": -74.00645, "routes": "SIM1, M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00645, 40.714046 ] } }, -{ "type": "Feature", "properties": { "id": 404225, "name": "Broadway/Barclay St", "direction": "SW", "lat": 40.711895, "lon": -74.008316, "routes": "X28, X27, M55" }, "geometry": { "type": "Point", "coordinates": [ -74.008316, 40.711895 ] } }, -{ "type": "Feature", "properties": { "id": 404228, "name": "5 Av/W 40 St", "direction": "SW", "lat": 40.75255, "lon": -73.98168, "routes": "SIM10, SIM3C, SIM3, SIM31, SIM33C, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -73.98168, 40.75255 ] } }, -{ "type": "Feature", "properties": { "id": 404230, "name": "Park Row/Ann St", "direction": "E", "lat": 40.71148, "lon": -74.00748, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.00748, 40.71148 ] } }, -{ "type": "Feature", "properties": { "id": 404231, "name": "Broadway/Exchange Alley", "direction": "SW", "lat": 40.707027, "lon": -74.01238, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.01238, 40.707027 ] } }, -{ "type": "Feature", "properties": { "id": 404232, "name": "Broadway/W 131 St", "direction": "NE", "lat": 40.81732, "lon": -73.956856, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.956856, 40.81732 ] } }, -{ "type": "Feature", "properties": { "id": 404238, "name": "Broadway/Barclay St", "direction": "SW", "lat": 40.712074, "lon": -74.00811, "routes": "SIM3C, SIM4X, SIM4C, SIM1, SIM1C, SIM4" }, "geometry": { "type": "Point", "coordinates": [ -74.00811, 40.712074 ] } }, -{ "type": "Feature", "properties": { "id": 404239, "name": "Lexington Av/E 34 St", "direction": "SW", "lat": 40.74593, "lon": -73.98019, "routes": "SIM11, SIM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98019, 40.74593 ] } }, -{ "type": "Feature", "properties": { "id": 404240, "name": "Broadway/Cortlandt St", "direction": "SW", "lat": 40.71, "lon": -74.00991, "routes": "SIM4, SIM4C, SIM4X" }, "geometry": { "type": "Point", "coordinates": [ -74.00991, 40.71 ] } }, -{ "type": "Feature", "properties": { "id": 404241, "name": "Broadway/Chambers St", "direction": "SW", "lat": 40.714123, "lon": -74.006454, "routes": "BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.006454, 40.714123 ] } }, -{ "type": "Feature", "properties": { "id": 404242, "name": "Worth St/Church St", "direction": "SE", "lat": 40.716915, "lon": -74.0061, "routes": "SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.0061, 40.716915 ] } }, -{ "type": "Feature", "properties": { "id": 404243, "name": "Worth St/Church St", "direction": "SE", "lat": 40.716553, "lon": -74.00526, "routes": "SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.00526, 40.716553 ] } }, -{ "type": "Feature", "properties": { "id": 404244, "name": "7 Av/W 23 St", "direction": "SW", "lat": 40.743813, "lon": -73.99598, "routes": "M7, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.99598, 40.743813 ] } }, -{ "type": "Feature", "properties": { "id": 404245, "name": "Frederick Douglass Blvd/W 119 St", "direction": "SW", "lat": 40.80609, "lon": -73.95426, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95426, 40.80609 ] } }, -{ "type": "Feature", "properties": { "id": 404249, "name": "Broadway/W 207 St", "direction": "W", "lat": 40.86758, "lon": -73.92162, "routes": "BX7, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.92162, 40.86758 ] } }, -{ "type": "Feature", "properties": { "id": 404250, "name": "Broadway/W 207 St", "direction": "", "lat": 40.867683, "lon": -73.9214, "routes": "BX20, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.9214, 40.867683 ] } }, -{ "type": "Feature", "properties": { "id": 404253, "name": "1 Av/E 62 St", "direction": "NE", "lat": 40.76163, "lon": -73.96046, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96046, 40.76163 ] } }, -{ "type": "Feature", "properties": { "id": 404255, "name": "Lexington Av/E 124 St", "direction": "SW", "lat": 40.803886, "lon": -73.93785, "routes": "M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93785, 40.803886 ] } }, -{ "type": "Feature", "properties": { "id": 404258, "name": "Riverside Dr/W 122 St", "direction": "NE", "lat": 40.812935, "lon": -73.9627, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.9627, 40.812935 ] } }, -{ "type": "Feature", "properties": { "id": 404259, "name": "Riverside Dr/W 122 St", "direction": "S", "lat": 40.812237, "lon": -73.963936, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.963936, 40.812237 ] } }, -{ "type": "Feature", "properties": { "id": 404260, "name": "Broadway/W 113 St", "direction": "NE", "lat": 40.80626, "lon": -73.96495, "routes": "M4, M104" }, "geometry": { "type": "Point", "coordinates": [ -73.96495, 40.80626 ] } }, -{ "type": "Feature", "properties": { "id": 404262, "name": "Broadway/W 120 St", "direction": "NE", "lat": 40.81034, "lon": -73.96198, "routes": "M60+, M104, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96198, 40.81034 ] } }, -{ "type": "Feature", "properties": { "id": 404264, "name": "Avenue C/E 23 St", "direction": "S", "lat": 40.735176, "lon": -73.97519, "routes": "M23+, M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97519, 40.735176 ] } }, -{ "type": "Feature", "properties": { "id": 404266, "name": "Sutton Pl/E 58 St", "direction": "SW", "lat": 40.75781, "lon": -73.96043, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.96043, 40.75781 ] } }, -{ "type": "Feature", "properties": { "id": 404270, "name": "Broadway/W 220 St", "direction": "NE", "lat": 40.87245, "lon": -73.91256, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.91256, 40.87245 ] } }, -{ "type": "Feature", "properties": { "id": 404271, "name": "E 14 St/University Pl", "direction": "E", "lat": 40.735176, "lon": -73.99188, "routes": "M14A+, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.99188, 40.735176 ] } }, -{ "type": "Feature", "properties": { "id": 404274, "name": "W 116 St/Malcolm X Blvd", "direction": "NW", "lat": 40.80229, "lon": -73.95003, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.95003, 40.80229 ] } }, -{ "type": "Feature", "properties": { "id": 404278, "name": "Central Park North/Malcolm X Blvd", "direction": "SE", "lat": 40.798283, "lon": -73.95274, "routes": "M4, M3, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.95274, 40.798283 ] } }, -{ "type": "Feature", "properties": { "id": 404279, "name": "10 Av/W 37 St", "direction": "NE", "lat": 40.756714, "lon": -73.997444, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.997444, 40.756714 ] } }, -{ "type": "Feature", "properties": { "id": 404280, "name": "W 34 St/7 Av", "direction": "SE", "lat": 40.75083, "lon": -73.99047, "routes": "SIM24, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -73.99047, 40.75083 ] } }, -{ "type": "Feature", "properties": { "id": 404283, "name": "Adam C Powell Blvd/W 125 St", "direction": "NE", "lat": 40.80916, "lon": -73.947975, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.947975, 40.80916 ] } }, -{ "type": "Feature", "properties": { "id": 404284, "name": "Malcolm X Blvd/W 125 St", "direction": "SW", "lat": 40.80742, "lon": -73.945915, "routes": "M7" }, "geometry": { "type": "Point", "coordinates": [ -73.945915, 40.80742 ] } }, -{ "type": "Feature", "properties": { "id": 404286, "name": "W 14 St/Hudson St", "direction": "SE", "lat": 40.74062, "lon": -74.00481, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -74.00481, 40.74062 ] } }, -{ "type": "Feature", "properties": { "id": 404287, "name": "Essex St/East Broadway", "direction": "W", "lat": 40.714092, "lon": -73.9903, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.9903, 40.714092 ] } }, -{ "type": "Feature", "properties": { "id": 404289, "name": "Riverside Dr/W 74 St", "direction": "NE", "lat": 40.78204, "lon": -73.98487, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98487, 40.78204 ] } }, -{ "type": "Feature", "properties": { "id": 404290, "name": "Riverside Dr/W 82 St", "direction": "N", "lat": 40.787205, "lon": -73.98111, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98111, 40.787205 ] } }, -{ "type": "Feature", "properties": { "id": 404294, "name": "West Houston St/Washington St", "direction": "W", "lat": 40.729, "lon": -74.00939, "routes": "SIM9, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.00939, 40.729 ] } }, -{ "type": "Feature", "properties": { "id": 404295, "name": "Madison Av/E 25 St", "direction": "NE", "lat": 40.742004, "lon": -73.98708, "routes": "X63, X64, X68, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.98708, 40.742004 ] } }, -{ "type": "Feature", "properties": { "id": 404296, "name": "Madison Av/E 29 St", "direction": "NE", "lat": 40.744263, "lon": -73.985466, "routes": "X68, X63, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.985466, 40.744263 ] } }, -{ "type": "Feature", "properties": { "id": 404297, "name": "Madison Av/E 33 St", "direction": "NE", "lat": 40.746967, "lon": -73.98344, "routes": "X63, X64, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.98344, 40.746967 ] } }, -{ "type": "Feature", "properties": { "id": 404298, "name": "Madison Av/E 40 St", "direction": "NE", "lat": 40.75142, "lon": -73.980194, "routes": "X68, X64, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.980194, 40.75142 ] } }, -{ "type": "Feature", "properties": { "id": 404299, "name": "Madison Av/E 48 St", "direction": "NE", "lat": 40.75688, "lon": -73.9762, "routes": "X27, SIM24, BM4, BM1, SIM25, BM2, SIM26, BM3, X38, BM5, X64, X28, X63, SIM23, X68, X37, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -73.9762, 40.75688 ] } }, -{ "type": "Feature", "properties": { "id": 404300, "name": "Madison Av/E 54 St", "direction": "NE", "lat": 40.760616, "lon": -73.97346, "routes": "X68, X64, X63, SIM33C, SIM8, SIM31, SIM22, SIM11, SIM4C, SIM6, SIM8X" }, "geometry": { "type": "Point", "coordinates": [ -73.97346, 40.760616 ] } }, -{ "type": "Feature", "properties": { "id": 404302, "name": "E 59 St/2 Av", "direction": "SE", "lat": 40.76062, "lon": -73.964516, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.964516, 40.76062 ] } }, -{ "type": "Feature", "properties": { "id": 404303, "name": "5 Av/W 78 St", "direction": "SW", "lat": 40.776253, "lon": -73.96441, "routes": "BXM4, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.96441, 40.776253 ] } }, -{ "type": "Feature", "properties": { "id": 404308, "name": "W 86 St/Columbus Av", "direction": "NW", "lat": 40.78671, "lon": -73.97245, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.97245, 40.78671 ] } }, -{ "type": "Feature", "properties": { "id": 404320, "name": "Amsterdam Av/W 89 St", "direction": "NE", "lat": 40.78949, "lon": -73.97357, "routes": "M7, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.97357, 40.78949 ] } }, -{ "type": "Feature", "properties": { "id": 404321, "name": "Lexington Av/E 83 St", "direction": "SW", "lat": 40.777225, "lon": -73.95731, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.95731, 40.777225 ] } }, -{ "type": "Feature", "properties": { "id": 404324, "name": "Wadsworth Av/W 181 St", "direction": "SW", "lat": 40.84974, "lon": -73.935135, "routes": "BX36, BX11, BX3, BX35, BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.935135, 40.84974 ] } }, -{ "type": "Feature", "properties": { "id": 404325, "name": "Frederick Douglass Blvd/Macombs Pl", "direction": "NE", "lat": 40.825817, "lon": -73.93966, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.93966, 40.825817 ] } }, -{ "type": "Feature", "properties": { "id": 404327, "name": "Pearl St / Pearl St", "direction": "SW", "lat": 40.71083, "lon": -74.000824, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -74.000824, 40.71083 ] } }, -{ "type": "Feature", "properties": { "id": 404330, "name": "W 181 St/Wadsworth Av", "direction": "SE", "lat": 40.84984, "lon": -73.93519, "routes": "BX13, BX3, BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.93519, 40.84984 ] } }, -{ "type": "Feature", "properties": { "id": 404333, "name": "Malcolm X Blvd/W 122 St", "direction": "NE", "lat": 40.80607, "lon": -73.94656, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94656, 40.80607 ] } }, -{ "type": "Feature", "properties": { "id": 404334, "name": "Lenox Av/W 125 St", "direction": "NE", "lat": 40.80804, "lon": -73.94512, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94512, 40.80804 ] } }, -{ "type": "Feature", "properties": { "id": 404335, "name": "Malcolm X Blvd/W 142 St", "direction": "NE", "lat": 40.818794, "lon": -73.93726, "routes": "M7, M1, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.93726, 40.818794 ] } }, -{ "type": "Feature", "properties": { "id": 404336, "name": "Malcolm X Blvd/W 127 St", "direction": "SW", "lat": 40.808754, "lon": -73.94494, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94494, 40.808754 ] } }, -{ "type": "Feature", "properties": { "id": 404337, "name": "Malcolm X Blvd/W 129 St", "direction": "SW", "lat": 40.810005, "lon": -73.94403, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94403, 40.810005 ] } }, -{ "type": "Feature", "properties": { "id": 404338, "name": "Malcolm X Blvd/W 137 St", "direction": "SW", "lat": 40.81508, "lon": -73.94033, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94033, 40.81508 ] } }, -{ "type": "Feature", "properties": { "id": 404339, "name": "Malcolm X Blvd/W 139 St", "direction": "SW", "lat": 40.816345, "lon": -73.9394, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.9394, 40.816345 ] } }, -{ "type": "Feature", "properties": { "id": 404341, "name": "Lenox Av/W 116 St", "direction": "NE", "lat": 40.802338, "lon": -73.94928, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94928, 40.802338 ] } }, -{ "type": "Feature", "properties": { "id": 404350, "name": "Main Rdwy/Opp Icahn Stadium", "direction": "NE", "lat": 40.792587, "lon": -73.92349, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92349, 40.792587 ] } }, -{ "type": "Feature", "properties": { "id": 404352, "name": "Main Rdwy/Exit Ramp", "direction": "SW", "lat": 40.79614, "lon": -73.91951, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.91951, 40.79614 ] } }, -{ "type": "Feature", "properties": { "id": 404353, "name": "Main Rdwy/Icahn Stadium", "direction": "SW", "lat": 40.792873, "lon": -73.92339, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92339, 40.792873 ] } }, -{ "type": "Feature", "properties": { "id": 404355, "name": "Main Rdwy/Opp Clarke Thomas", "direction": "S", "lat": 40.78641, "lon": -73.9292, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.9292, 40.78641 ] } }, -{ "type": "Feature", "properties": { "id": 404356, "name": "Sunken Garden Loop/Employment Center", "direction": "SW", "lat": 40.78617, "lon": -73.931816, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.931816, 40.78617 ] } }, -{ "type": "Feature", "properties": { "id": 404360, "name": "Riverside Dr/W 160 St", "direction": "S", "lat": 40.8372, "lon": -73.94718, "routes": "BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.94718, 40.8372 ] } }, -{ "type": "Feature", "properties": { "id": 404361, "name": "Edward M Morgan Pl/W 157 St", "direction": "S", "lat": 40.83457, "lon": -73.945526, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.945526, 40.83457 ] } }, -{ "type": "Feature", "properties": { "id": 404362, "name": "Saint Claire Pl/W 125 St", "direction": "E", "lat": 40.817066, "lon": -73.95978, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.95978, 40.817066 ] } }, -{ "type": "Feature", "properties": { "id": 404681, "name": "E 86 St/2 Av", "direction": "SE", "lat": 40.77759, "lon": -73.951256, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.951256, 40.77759 ] } }, -{ "type": "Feature", "properties": { "id": 404820, "name": "W 34 St/7 Av", "direction": "SE", "lat": 40.751118, "lon": -73.99111, "routes": "M34A+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.99111, 40.751118 ] } }, -{ "type": "Feature", "properties": { "id": 404821, "name": "Riverside Dr/Tiemann Pl", "direction": "N", "lat": 40.81607, "lon": -73.96117, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96117, 40.81607 ] } }, -{ "type": "Feature", "properties": { "id": 404822, "name": "Riverside Dr/Tiemann Pl", "direction": "SW", "lat": 40.816303, "lon": -73.96191, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.96191, 40.816303 ] } }, -{ "type": "Feature", "properties": { "id": 404823, "name": "Centre St/Grand St", "direction": "NE", "lat": 40.720448, "lon": -73.99789, "routes": "M1, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99789, 40.720448 ] } }, -{ "type": "Feature", "properties": { "id": 404824, "name": "Frederick Douglass Blvd/W 147 St", "direction": "SW", "lat": 40.823914, "lon": -73.94126, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.94126, 40.823914 ] } }, -{ "type": "Feature", "properties": { "id": 404825, "name": "Frederick Douglass Blvd/W 148 St", "direction": "NE", "lat": 40.82493, "lon": -73.940254, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.940254, 40.82493 ] } }, -{ "type": "Feature", "properties": { "id": 404826, "name": "West End Av/W 64 St", "direction": "SW", "lat": 40.77449, "lon": -73.98841, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.98841, 40.77449 ] } }, -{ "type": "Feature", "properties": { "id": 404832, "name": "Hudson St/Spring St", "direction": "N", "lat": 40.726025, "lon": -74.00739, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00739, 40.726025 ] } }, -{ "type": "Feature", "properties": { "id": 404833, "name": "E 23 St/Park Av South", "direction": "NW", "lat": 40.74049, "lon": -73.98685, "routes": "SIM11, BM3, SIM10, SIM31, SIM3, SIM6, M23+, BM1, BM2, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.98685, 40.74049 ] } }, -{ "type": "Feature", "properties": { "id": 404834, "name": "W 23 St/11 Av", "direction": "SE", "lat": 40.74863, "lon": -74.00663, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00663, 40.74863 ] } }, -{ "type": "Feature", "properties": { "id": 404835, "name": "Broadway/Isham St", "direction": "W", "lat": 40.8682, "lon": -73.919495, "routes": "BX7, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.919495, 40.8682 ] } }, -{ "type": "Feature", "properties": { "id": 404837, "name": "Adam C Powell Blvd/W 153 St", "direction": "NE", "lat": 40.82653, "lon": -73.935265, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.935265, 40.82653 ] } }, -{ "type": "Feature", "properties": { "id": 404838, "name": "Columbus Av/W 80 St", "direction": "SW", "lat": 40.782803, "lon": -73.974976, "routes": "M7, M79+, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.974976, 40.782803 ] } }, -{ "type": "Feature", "properties": { "id": 404839, "name": "Broadway/Dongan Pl", "direction": "S", "lat": 40.863518, "lon": -73.93004, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.93004, 40.863518 ] } }, -{ "type": "Feature", "properties": { "id": 404843, "name": "Pike St/Madison St", "direction": "N", "lat": 40.71288, "lon": -73.99229, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99229, 40.71288 ] } }, -{ "type": "Feature", "properties": { "id": 404844, "name": "Pike St/Madison St", "direction": "S", "lat": 40.712624, "lon": -73.99262, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99262, 40.712624 ] } }, -{ "type": "Feature", "properties": { "id": 404846, "name": "8 Av/W 49 St", "direction": "NE", "lat": 40.7619, "lon": -73.98624, "routes": "M104, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.98624, 40.7619 ] } }, -{ "type": "Feature", "properties": { "id": 404847, "name": "8 Av/W 31 St", "direction": "NE", "lat": 40.74995, "lon": -73.99495, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.99495, 40.74995 ] } }, -{ "type": "Feature", "properties": { "id": 404849, "name": "W 179 St/Broadway", "direction": "W", "lat": 40.848915, "lon": -73.93689, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.93689, 40.848915 ] } }, -{ "type": "Feature", "properties": { "id": 404850, "name": "Pearl St/Fulton St", "direction": "NE", "lat": 40.70755, "lon": -74.00386, "routes": "M15, SIM5, SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.00386, 40.70755 ] } }, -{ "type": "Feature", "properties": { "id": 404851, "name": "Park Row/Saint James Pl", "direction": "E", "lat": 40.713364, "lon": -73.99873, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99873, 40.713364 ] } }, -{ "type": "Feature", "properties": { "id": 404853, "name": "Amsterdam Av/W 161 St", "direction": "NE", "lat": 40.83524, "lon": -73.9402, "routes": "M100, M101, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.9402, 40.83524 ] } }, -{ "type": "Feature", "properties": { "id": 404854, "name": "Lexington Av/E 77 St", "direction": "SW", "lat": 40.773296, "lon": -73.96016, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.96016, 40.773296 ] } }, -{ "type": "Feature", "properties": { "id": 404855, "name": "Riverside Dr/W 89 St", "direction": "SW", "lat": 40.791725, "lon": -73.97886, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.97886, 40.791725 ] } }, -{ "type": "Feature", "properties": { "id": 404856, "name": "E 110 St/Madison Av", "direction": "NW", "lat": 40.796413, "lon": -73.94804, "routes": "M4, M2, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94804, 40.796413 ] } }, -{ "type": "Feature", "properties": { "id": 404857, "name": "Park Row/Saint James Pl", "direction": "E", "lat": 40.713375, "lon": -73.99868, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.99868, 40.713375 ] } }, -{ "type": "Feature", "properties": { "id": 404858, "name": "E 79 St/Madison Av", "direction": "SE", "lat": 40.776077, "lon": -73.96166, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.96166, 40.776077 ] } }, -{ "type": "Feature", "properties": { "id": 404859, "name": "York Av/E 87 St", "direction": "SW", "lat": 40.776176, "lon": -73.946976, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.946976, 40.776176 ] } }, -{ "type": "Feature", "properties": { "id": 404860, "name": "E 79 St/Lexington Av", "direction": "NW", "lat": 40.775116, "lon": -73.95911, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.95911, 40.775116 ] } }, -{ "type": "Feature", "properties": { "id": 404863, "name": "Harrison St/Hudson St", "direction": "E", "lat": 40.718597, "lon": -74.00917, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.00917, 40.718597 ] } }, -{ "type": "Feature", "properties": { "id": 404864, "name": "Harrison St/West St", "direction": "E", "lat": 40.718895, "lon": -74.012054, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.012054, 40.718895 ] } }, -{ "type": "Feature", "properties": { "id": 404865, "name": "W 70 St/Freedom Pl", "direction": "SE", "lat": 40.77891, "lon": -73.98669, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98669, 40.77891 ] } }, -{ "type": "Feature", "properties": { "id": 404871, "name": "Central Park West/Columbus Circle", "direction": "NE", "lat": 40.768684, "lon": -73.98134, "routes": "M10, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.98134, 40.768684 ] } }, -{ "type": "Feature", "properties": { "id": 404872, "name": "8 Av/W 46 St", "direction": "NE", "lat": 40.759796, "lon": -73.98786, "routes": "M104, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.98786, 40.759796 ] } }, -{ "type": "Feature", "properties": { "id": 404873, "name": "5 Av/W 48 St", "direction": "SW", "lat": 40.757004, "lon": -73.97843, "routes": "SIM8X, SIM3, SIM3C, SIM33C, SIM4C, SIM8, SIM1C" }, "geometry": { "type": "Point", "coordinates": [ -73.97843, 40.757004 ] } }, -{ "type": "Feature", "properties": { "id": 404876, "name": "W 168 St/Audubon Av", "direction": "NW", "lat": 40.84058, "lon": -73.93843, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.93843, 40.84058 ] } }, -{ "type": "Feature", "properties": { "id": 404879, "name": "Madison Av/E 42 St", "direction": "NE", "lat": 40.752666, "lon": -73.97933, "routes": "X27, X28, X37, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.97933, 40.752666 ] } }, -{ "type": "Feature", "properties": { "id": 404881, "name": "9 Av/W 23 St", "direction": "SW", "lat": 40.746265, "lon": -74.00164, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00164, 40.746265 ] } }, -{ "type": "Feature", "properties": { "id": 404883, "name": "Avenue Of The Americas/West Broadway", "direction": "N", "lat": 40.72073, "lon": -74.005196, "routes": "SIM1C, SIM3C, SIM34, SIM4C, SIM33C, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.005196, 40.72073 ] } }, -{ "type": "Feature", "properties": { "id": 404887, "name": "Greenwich St/Battery Pl", "direction": "N", "lat": 40.70496, "lon": -74.01482, "routes": "SIM4, SIM4C, SIM3C, SIM1, SIM1C, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.01482, 40.70496 ] } }, -{ "type": "Feature", "properties": { "id": 404890, "name": "Church St/Park Pl", "direction": "NE", "lat": 40.713425, "lon": -74.00901, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.00901, 40.713425 ] } }, -{ "type": "Feature", "properties": { "id": 404891, "name": "Church St/Chambers St", "direction": "NE", "lat": 40.715046, "lon": -74.00771, "routes": "SIM34, SIM4X, SIM2, SIM4C, SIM1C, SIM32, X28, X27, SIM4, SIM1" }, "geometry": { "type": "Point", "coordinates": [ -74.00771, 40.715046 ] } }, -{ "type": "Feature", "properties": { "id": 404892, "name": "Church St/Thomas St", "direction": "NE", "lat": 40.716423, "lon": -74.00665, "routes": "X28" }, "geometry": { "type": "Point", "coordinates": [ -74.00665, 40.716423 ] } }, -{ "type": "Feature", "properties": { "id": 404895, "name": "6 Av/Spring St", "direction": "N", "lat": 40.725674, "lon": -74.003914, "routes": "M21, M21" }, "geometry": { "type": "Point", "coordinates": [ -74.003914, 40.725674 ] } }, -{ "type": "Feature", "properties": { "id": 404896, "name": "6 Av/ Waverly Pl", "direction": "NE", "lat": 40.733135, "lon": -73.99979, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.99979, 40.733135 ] } }, -{ "type": "Feature", "properties": { "id": 404897, "name": "6 Av/ W 14 St", "direction": "NE", "lat": 40.73761, "lon": -73.9966, "routes": "X28" }, "geometry": { "type": "Point", "coordinates": [ -73.9966, 40.73761 ] } }, -{ "type": "Feature", "properties": { "id": 404900, "name": "Madison Av/E 25 St", "direction": "NE", "lat": 40.742256, "lon": -73.98689, "routes": "X38, X28, X37" }, "geometry": { "type": "Point", "coordinates": [ -73.98689, 40.742256 ] } }, -{ "type": "Feature", "properties": { "id": 404901, "name": "Madison Av/E 29 St", "direction": "NE", "lat": 40.744858, "lon": -73.984955, "routes": "X38, X37, X27, X28" }, "geometry": { "type": "Point", "coordinates": [ -73.984955, 40.744858 ] } }, -{ "type": "Feature", "properties": { "id": 404902, "name": "Madison Av/E 34 St", "direction": "NE", "lat": 40.747643, "lon": -73.982956, "routes": "X28, X37, X38, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.982956, 40.747643 ] } }, -{ "type": "Feature", "properties": { "id": 404903, "name": "Madison Av/E 37 St", "direction": "NE", "lat": 40.7498, "lon": -73.98138, "routes": "X37, X28, X27, X38, SIM23, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.98138, 40.7498 ] } }, -{ "type": "Feature", "properties": { "id": 404905, "name": "Madison Av/E 69 St", "direction": "NE", "lat": 40.769928, "lon": -73.966736, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.966736, 40.769928 ] } }, -{ "type": "Feature", "properties": { "id": 404906, "name": "Madison Av/E 54 St", "direction": "NE", "lat": 40.76026, "lon": -73.97378, "routes": "X38, X28, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -73.97378, 40.76026 ] } }, -{ "type": "Feature", "properties": { "id": 404907, "name": "E 57 St/Madison Av", "direction": "NW", "lat": 40.762463, "lon": -73.97273, "routes": "X38, X28, X27, X37" }, "geometry": { "type": "Point", "coordinates": [ -73.97273, 40.762463 ] } }, -{ "type": "Feature", "properties": { "id": 404909, "name": "2 Av/E 36 St", "direction": "SW", "lat": 40.74618, "lon": -73.97495, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97495, 40.74618 ] } }, -{ "type": "Feature", "properties": { "id": 404911, "name": "W 106 St/Broadway", "direction": "SE", "lat": 40.801155, "lon": -73.967575, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.967575, 40.801155 ] } }, -{ "type": "Feature", "properties": { "id": 404915, "name": "Frederick Douglass Blvd/W 116 St", "direction": "SW", "lat": 40.804153, "lon": -73.95567, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95567, 40.804153 ] } }, -{ "type": "Feature", "properties": { "id": 404916, "name": "Broadway/Prince St", "direction": "SW", "lat": 40.72401, "lon": -73.998085, "routes": "M1, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.998085, 40.72401 ] } }, -{ "type": "Feature", "properties": { "id": 404918, "name": "Broadway/W 167 St", "direction": "SW", "lat": 40.840168, "lon": -73.940636, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.940636, 40.840168 ] } }, -{ "type": "Feature", "properties": { "id": 404919, "name": "8 Av/W 43 St", "direction": "NE", "lat": 40.758003, "lon": -73.98909, "routes": "M104, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.98909, 40.758003 ] } }, -{ "type": "Feature", "properties": { "id": 404920, "name": "Fort Washington Av/W 165 St", "direction": "N", "lat": 40.840557, "lon": -73.942825, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.942825, 40.840557 ] } }, -{ "type": "Feature", "properties": { "id": 404921, "name": "Fort Washington Av/W 168 St", "direction": "N", "lat": 40.842407, "lon": -73.94209, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.94209, 40.842407 ] } }, -{ "type": "Feature", "properties": { "id": 404922, "name": "Madison St/Grand St", "direction": "E", "lat": 40.713505, "lon": -73.980415, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -73.980415, 40.713505 ] } }, -{ "type": "Feature", "properties": { "id": 404923, "name": "Central Park South/6 Av", "direction": "NW", "lat": 40.766315, "lon": -73.97749, "routes": "SIM30, SIM4C, SIM33C, SIM10, SIM4C, SIM33C, SIM30, SIM1C, SIM3C, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -73.97749, 40.766315 ] } }, -{ "type": "Feature", "properties": { "id": 404926, "name": "W 24 St/11 Av", "direction": "W", "lat": 40.749996, "lon": -74.00749, "routes": "M12, M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.00749, 40.749996 ] } }, -{ "type": "Feature", "properties": { "id": 404927, "name": "W 24 St/12 Av", "direction": "E", "lat": 40.74997, "lon": -74.007805, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -74.007805, 40.74997 ] } }, -{ "type": "Feature", "properties": { "id": 404931, "name": "West Houston St/Mercer St", "direction": "NW", "lat": 40.72576, "lon": -73.997444, "routes": "SIM33, SIM9, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -73.997444, 40.72576 ] } }, -{ "type": "Feature", "properties": { "id": 404932, "name": "Broadway/Cortlandt St", "direction": "SW", "lat": 40.7097, "lon": -74.010185, "routes": "BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.010185, 40.7097 ] } }, -{ "type": "Feature", "properties": { "id": 404936, "name": "Park Av South/E 18 St", "direction": "NE", "lat": 40.73679, "lon": -73.988625, "routes": "M3, M1, M2" }, "geometry": { "type": "Point", "coordinates": [ -73.988625, 40.73679 ] } }, -{ "type": "Feature", "properties": { "id": 404940, "name": "West Houston St/Varick St", "direction": "W", "lat": 40.72857, "lon": -74.004616, "routes": "SIM9, SIM33, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.004616, 40.72857 ] } }, -{ "type": "Feature", "properties": { "id": 404942, "name": "E 23 St/Broadway", "direction": "SE", "lat": 40.74103, "lon": -73.988625, "routes": "SIM3, SIM33C, SIM3C, SIM1C, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -73.988625, 40.74103 ] } }, -{ "type": "Feature", "properties": { "id": 404947, "name": "Lexington Av/E 92 St", "direction": "SW", "lat": 40.78294, "lon": -73.95314, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.95314, 40.78294 ] } }, -{ "type": "Feature", "properties": { "id": 404948, "name": "W 49 St/8 Av", "direction": "NW", "lat": 40.761997, "lon": -73.98704, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.98704, 40.761997 ] } }, -{ "type": "Feature", "properties": { "id": 404949, "name": "Amsterdam Av/W 161 St", "direction": "SW", "lat": 40.835537, "lon": -73.94018, "routes": "M100, M101, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94018, 40.835537 ] } }, -{ "type": "Feature", "properties": { "id": 404950, "name": "E 34 St /1 Av", "direction": "SE", "lat": 40.743774, "lon": -73.97373, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.97373, 40.743774 ] } }, -{ "type": "Feature", "properties": { "id": 404951, "name": "Ferry Terminal/Fdr Dr", "direction": "SW", "lat": 40.743484, "lon": -73.97189, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.97189, 40.743484 ] } }, -{ "type": "Feature", "properties": { "id": 404956, "name": "Battery Pl/Washington St", "direction": "W", "lat": 40.704956, "lon": -74.01561, "routes": "SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.01561, 40.704956 ] } }, -{ "type": "Feature", "properties": { "id": 404960, "name": "Battery Pl/Washington St", "direction": "W", "lat": 40.705006, "lon": -74.01576, "routes": "SIM34, SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.01576, 40.705006 ] } }, -{ "type": "Feature", "properties": { "id": 404963, "name": "Adam C Powell Blvd/W 119 St", "direction": "NE", "lat": 40.805344, "lon": -73.950714, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.950714, 40.805344 ] } }, -{ "type": "Feature", "properties": { "id": 404964, "name": "5 Av/W 120 St", "direction": "SW", "lat": 40.802933, "lon": -73.94486, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94486, 40.802933 ] } }, -{ "type": "Feature", "properties": { "id": 404969, "name": "Chambers St/Greenwich St", "direction": "SE", "lat": 40.716076, "lon": -74.01061, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.01061, 40.716076 ] } }, -{ "type": "Feature", "properties": { "id": 404973, "name": "Chambers St/Greenwich St", "direction": "NW", "lat": 40.716553, "lon": -74.01135, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01135, 40.716553 ] } }, -{ "type": "Feature", "properties": { "id": 404976, "name": "Chambers St/West Broadway", "direction": "SE", "lat": 40.715378, "lon": -74.0091, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.0091, 40.715378 ] } }, -{ "type": "Feature", "properties": { "id": 404977, "name": "Chambers St/Church St", "direction": "SE", "lat": 40.714767, "lon": -74.007744, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.007744, 40.714767 ] } }, -{ "type": "Feature", "properties": { "id": 404978, "name": "Malcolm X Blvd/W 119 St", "direction": "SW", "lat": 40.803635, "lon": -73.94868, "routes": "M102, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.94868, 40.803635 ] } }, -{ "type": "Feature", "properties": { "id": 404979, "name": "Battery Pl/3 Pl", "direction": "SW", "lat": 40.70727, "lon": -74.01736, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01736, 40.70727 ] } }, -{ "type": "Feature", "properties": { "id": 404980, "name": "Battery Pl/1 Pl", "direction": "S", "lat": 40.705837, "lon": -74.01809, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01809, 40.705837 ] } }, -{ "type": "Feature", "properties": { "id": 404983, "name": "Battery Pl/West St", "direction": "NW", "lat": 40.704998, "lon": -74.01739, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01739, 40.704998 ] } }, -{ "type": "Feature", "properties": { "id": 404986, "name": "Battery Pl/3 Pl", "direction": "NE", "lat": 40.707615, "lon": -74.01691, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01691, 40.707615 ] } }, -{ "type": "Feature", "properties": { "id": 404987, "name": "Central Park West/W 66 St", "direction": "SW", "lat": 40.77233, "lon": -73.97898, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97898, 40.77233 ] } }, -{ "type": "Feature", "properties": { "id": 404988, "name": "Central Park West/W 64 St", "direction": "SW", "lat": 40.771084, "lon": -73.97984, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.97984, 40.771084 ] } }, -{ "type": "Feature", "properties": { "id": 404990, "name": "Spring St/Greenwich St", "direction": "E", "lat": 40.725906, "lon": -74.00874, "routes": "SIM7, SIM9, M21" }, "geometry": { "type": "Point", "coordinates": [ -74.00874, 40.725906 ] } }, -{ "type": "Feature", "properties": { "id": 404991, "name": "Avenue Of The Americas/W 18 St", "direction": "NE", "lat": 40.73959, "lon": -73.99507, "routes": "M7, M55" }, "geometry": { "type": "Point", "coordinates": [ -73.99507, 40.73959 ] } }, -{ "type": "Feature", "properties": { "id": 404992, "name": "Avenue Of The Americas/W 57 St", "direction": "NE", "lat": 40.7644, "lon": -73.977, "routes": "SIM3C, M7, M5, SIM1C, SIM3, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -73.977, 40.7644 ] } }, -{ "type": "Feature", "properties": { "id": 404993, "name": "Broadway/E 13 St", "direction": "S", "lat": 40.734566, "lon": -73.9909, "routes": "SIM1C, SIM3C, SIM4C, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -73.9909, 40.734566 ] } }, -{ "type": "Feature", "properties": { "id": 404994, "name": "Madison Av/E 66 St", "direction": "NE", "lat": 40.767838, "lon": -73.968185, "routes": "M72, M1, M2, M3, M66, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.968185, 40.767838 ] } }, -{ "type": "Feature", "properties": { "id": 404995, "name": "1 Av/E 28 St", "direction": "NE", "lat": 40.74057, "lon": -73.97582, "routes": "M15, M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.97582, 40.74057 ] } }, -{ "type": "Feature", "properties": { "id": 405003, "name": "E 92 St/York Av", "direction": "SE", "lat": 40.779755, "lon": -73.944534, "routes": "M31, M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.944534, 40.779755 ] } }, -{ "type": "Feature", "properties": { "id": 405005, "name": "Broadway/W 187 St", "direction": "N", "lat": 40.85445, "lon": -73.93349, "routes": "BX7, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.93349, 40.85445 ] } }, -{ "type": "Feature", "properties": { "id": 405006, "name": "East Broadway/Catherine St", "direction": "E", "lat": 40.713375, "lon": -73.99739, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.99739, 40.713375 ] } }, -{ "type": "Feature", "properties": { "id": 405011, "name": "E 57 St/Lexington Av", "direction": "NW", "lat": 40.76081, "lon": -73.9687, "routes": "SIM22, SIM8X, SIM26, SIM8, SIM25, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -73.9687, 40.76081 ] } }, -{ "type": "Feature", "properties": { "id": 405014, "name": "Malcolm X Blvd/W 132 St", "direction": "NE", "lat": 40.8125, "lon": -73.94186, "routes": "M7, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94186, 40.8125 ] } }, -{ "type": "Feature", "properties": { "id": 405015, "name": "Main Rdwy/Opp Parks & Recreation", "direction": "SE", "lat": 40.799484, "lon": -73.92251, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92251, 40.799484 ] } }, -{ "type": "Feature", "properties": { "id": 405016, "name": "Main Rdwy/T B T A", "direction": "SE", "lat": 40.798576, "lon": -73.921364, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.921364, 40.798576 ] } }, -{ "type": "Feature", "properties": { "id": 405017, "name": "West St/Carlisle St", "direction": "N", "lat": 40.709633, "lon": -74.014694, "routes": "SIM33, SIM9, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.014694, 40.709633 ] } }, -{ "type": "Feature", "properties": { "id": 405024, "name": "Church St/Worth St", "direction": "NE", "lat": 40.71668, "lon": -74.006424, "routes": "SIM33C, SIM1C, SIM1, SIM2, SIM4, SIM34, BXM18, SIM4X, SIM32, M55, SIM3C, SIM4C" }, "geometry": { "type": "Point", "coordinates": [ -74.006424, 40.71668 ] } }, -{ "type": "Feature", "properties": { "id": 405026, "name": "9 Av/W 40 St", "direction": "SW", "lat": 40.7569, "lon": -73.9939, "routes": "M11, M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.9939, 40.7569 ] } }, -{ "type": "Feature", "properties": { "id": 405043, "name": "State St/Whitehall St", "direction": "NE", "lat": 40.702408, "lon": -74.012665, "routes": "SIM35, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.012665, 40.702408 ] } }, -{ "type": "Feature", "properties": { "id": 405046, "name": "6 Av/W 53 St", "direction": "NE", "lat": 40.761864, "lon": -73.97889, "routes": "BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.97889, 40.761864 ] } }, -{ "type": "Feature", "properties": { "id": 405049, "name": "5 Av/W 35 St", "direction": "SW", "lat": 40.74892, "lon": -73.9843, "routes": "X28, X27, BXM10, BXM9, X37, X38, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.9843, 40.74892 ] } }, -{ "type": "Feature", "properties": { "id": 405053, "name": "Murray St/North End Av", "direction": "E", "lat": 40.71548, "lon": -74.01537, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.01537, 40.71548 ] } }, -{ "type": "Feature", "properties": { "id": 405054, "name": "Vesey St/North End Av", "direction": "NW", "lat": 40.71463, "lon": -74.01569, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.01569, 40.71463 ] } }, -{ "type": "Feature", "properties": { "id": 405056, "name": "North End Av/Warren St", "direction": "NE", "lat": 40.71707, "lon": -74.014084, "routes": "M20, M22" }, "geometry": { "type": "Point", "coordinates": [ -74.014084, 40.71707 ] } }, -{ "type": "Feature", "properties": { "id": 405057, "name": "Lexington Av/E 119 St", "direction": "SW", "lat": 40.80019, "lon": -73.94052, "routes": "M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.94052, 40.80019 ] } }, -{ "type": "Feature", "properties": { "id": 405060, "name": "Church St/Vesey St", "direction": "NE", "lat": 40.711918, "lon": -74.01014, "routes": "BXM18, QM8, QM8, QM7, QM7, QM25, QM11, QM11, QM25" }, "geometry": { "type": "Point", "coordinates": [ -74.01014, 40.711918 ] } }, -{ "type": "Feature", "properties": { "id": 405061, "name": "3 Av/E 21 St", "direction": "NE", "lat": 40.737434, "lon": -73.98412, "routes": "M103, M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.98412, 40.737434 ] } }, -{ "type": "Feature", "properties": { "id": 405062, "name": "North End Av/Warren St", "direction": "SW", "lat": 40.71725, "lon": -74.014496, "routes": "M22, M20" }, "geometry": { "type": "Point", "coordinates": [ -74.014496, 40.71725 ] } }, -{ "type": "Feature", "properties": { "id": 405063, "name": "Murray St/North End Av", "direction": "NW", "lat": 40.715733, "lon": -74.01504, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01504, 40.715733 ] } }, -{ "type": "Feature", "properties": { "id": 405065, "name": "West St/Chambers St", "direction": "N", "lat": 40.71748, "lon": -74.01255, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01255, 40.71748 ] } }, -{ "type": "Feature", "properties": { "id": 405066, "name": "Lexington Av/E 89 St", "direction": "SW", "lat": 40.78113, "lon": -73.95445, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95445, 40.78113 ] } }, -{ "type": "Feature", "properties": { "id": 405067, "name": "State St/Whitehall St", "direction": "W", "lat": 40.702396, "lon": -74.01347, "routes": "M55, M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01347, 40.702396 ] } }, -{ "type": "Feature", "properties": { "id": 405069, "name": "Amsterdam Av/W 175 St", "direction": "SW", "lat": 40.84381, "lon": -73.934074, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.934074, 40.84381 ] } }, -{ "type": "Feature", "properties": { "id": 405070, "name": "Amsterdam Av/W 165 St", "direction": "SW", "lat": 40.837605, "lon": -73.938644, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.938644, 40.837605 ] } }, -{ "type": "Feature", "properties": { "id": 405071, "name": "W 70 St/West End Av", "direction": "NW", "lat": 40.778706, "lon": -73.98579, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98579, 40.778706 ] } }, -{ "type": "Feature", "properties": { "id": 405073, "name": "Amsterdam Av/W 158 St", "direction": "NE", "lat": 40.833637, "lon": -73.941376, "routes": "M3, M100, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.941376, 40.833637 ] } }, -{ "type": "Feature", "properties": { "id": 405074, "name": "Amsterdam Av/W 152 St", "direction": "NE", "lat": 40.829906, "lon": -73.94411, "routes": "M101, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94411, 40.829906 ] } }, -{ "type": "Feature", "properties": { "id": 405075, "name": "Amsterdam Av/W 164 St", "direction": "NE", "lat": 40.837467, "lon": -73.938576, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.938576, 40.837467 ] } }, -{ "type": "Feature", "properties": { "id": 405076, "name": "Amsterdam Av/W 167 St", "direction": "NE", "lat": 40.839672, "lon": -73.93697, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93697, 40.839672 ] } }, -{ "type": "Feature", "properties": { "id": 405077, "name": "Amsterdam Av/W 176 St", "direction": "NE", "lat": 40.84515, "lon": -73.93296, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.93296, 40.84515 ] } }, -{ "type": "Feature", "properties": { "id": 405078, "name": "Amsterdam Av/W 135 St", "direction": "SW", "lat": 40.818604, "lon": -73.95252, "routes": "M100, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.95252, 40.818604 ] } }, -{ "type": "Feature", "properties": { "id": 405079, "name": "Amsterdam Av/W 125 St", "direction": "SW", "lat": 40.812904, "lon": -73.95686, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95686, 40.812904 ] } }, -{ "type": "Feature", "properties": { "id": 405086, "name": "West End Av/West 70 St", "direction": "NE", "lat": 40.778725, "lon": -73.98514, "routes": "M57, M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98514, 40.778725 ] } }, -{ "type": "Feature", "properties": { "id": 405087, "name": "Manhattan Av/W 111 St", "direction": "NE", "lat": 40.80173, "lon": -73.95914, "routes": "M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.95914, 40.80173 ] } }, -{ "type": "Feature", "properties": { "id": 405092, "name": "Manhattan Av/W 113 St", "direction": "NE", "lat": 40.803345, "lon": -73.95796, "routes": "M3, M7, M116" }, "geometry": { "type": "Point", "coordinates": [ -73.95796, 40.803345 ] } }, -{ "type": "Feature", "properties": { "id": 405093, "name": "Manhattan Av/W 119 St", "direction": "SW", "lat": 40.807076, "lon": -73.95542, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.95542, 40.807076 ] } }, -{ "type": "Feature", "properties": { "id": 405098, "name": "1 Av / 4 St", "direction": "NE", "lat": 40.725464, "lon": -73.986786, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.986786, 40.725464 ] } }, -{ "type": "Feature", "properties": { "id": 405100, "name": "1 Av/E 82 St", "direction": "NE", "lat": 40.774586, "lon": -73.95099, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95099, 40.774586 ] } }, -{ "type": "Feature", "properties": { "id": 405103, "name": "Amsterdam Av/W 149 St", "direction": "NE", "lat": 40.827663, "lon": -73.945755, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.945755, 40.827663 ] } }, -{ "type": "Feature", "properties": { "id": 405111, "name": "Saint Nicholas Av/W 165 St", "direction": "N", "lat": 40.83839, "lon": -73.93981, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.93981, 40.83839 ] } }, -{ "type": "Feature", "properties": { "id": 405112, "name": "Riverside Blvd/W 69 St", "direction": "SW", "lat": 40.77906, "lon": -73.98838, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98838, 40.77906 ] } }, -{ "type": "Feature", "properties": { "id": 405118, "name": "W 42 St/12 Av", "direction": "NW", "lat": 40.76195, "lon": -74.00094, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -74.00094, 40.76195 ] } }, -{ "type": "Feature", "properties": { "id": 405120, "name": "Greenwich St/Horatio St", "direction": "N", "lat": 40.738674, "lon": -74.00642, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00642, 40.738674 ] } }, -{ "type": "Feature", "properties": { "id": 405124, "name": "South End Av/Gateway Plaza", "direction": "S", "lat": 40.71062, "lon": -74.01626, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01626, 40.71062 ] } }, -{ "type": "Feature", "properties": { "id": 405125, "name": "West Thames St/South End Av", "direction": "SE", "lat": 40.708324, "lon": -74.017265, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.017265, 40.708324 ] } }, -{ "type": "Feature", "properties": { "id": 405130, "name": "Bowery/E 1 St", "direction": "N", "lat": 40.725147, "lon": -73.99211, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99211, 40.725147 ] } }, -{ "type": "Feature", "properties": { "id": 405133, "name": "Hudson St/W 13 St", "direction": "S", "lat": 40.740726, "lon": -74.005264, "routes": "L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -74.005264, 40.740726 ] } }, -{ "type": "Feature", "properties": { "id": 405135, "name": "E 116 St/3 Av", "direction": "NW", "lat": 40.798172, "lon": -73.94041, "routes": "M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94041, 40.798172 ] } }, -{ "type": "Feature", "properties": { "id": 405136, "name": "West St/North Moore St", "direction": "N", "lat": 40.720234, "lon": -74.01196, "routes": "SIM7, SIM33, SIM9" }, "geometry": { "type": "Point", "coordinates": [ -74.01196, 40.720234 ] } }, -{ "type": "Feature", "properties": { "id": 405138, "name": "1 Av/E 60 St", "direction": "NE", "lat": 40.75975, "lon": -73.96179, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.96179, 40.75975 ] } }, -{ "type": "Feature", "properties": { "id": 405140, "name": "Main Rdwy/Opp Golf Center Parking", "direction": "SW", "lat": 40.794983, "lon": -73.92169, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92169, 40.794983 ] } }, -{ "type": "Feature", "properties": { "id": 405151, "name": "10 Av/W 16 St", "direction": "NE", "lat": 40.743645, "lon": -74.00704, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00704, 40.743645 ] } }, -{ "type": "Feature", "properties": { "id": 405152, "name": "W 14 St/10 Av", "direction": "W", "lat": 40.74185, "lon": -74.0074, "routes": "M11, M14D+, M12" }, "geometry": { "type": "Point", "coordinates": [ -74.0074, 40.74185 ] } }, -{ "type": "Feature", "properties": { "id": 405154, "name": "Astor Pl/Cooper Sq East", "direction": "E", "lat": 40.729572, "lon": -73.99004, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.99004, 40.729572 ] } }, -{ "type": "Feature", "properties": { "id": 405155, "name": "3 Av/E 9 St", "direction": "NE", "lat": 40.73039, "lon": -73.989235, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.989235, 40.73039 ] } }, -{ "type": "Feature", "properties": { "id": 405157, "name": "11 Av/W 15 St", "direction": "N", "lat": 40.74339, "lon": -74.0084, "routes": "M12, M14D+" }, "geometry": { "type": "Point", "coordinates": [ -74.0084, 40.74339 ] } }, -{ "type": "Feature", "properties": { "id": 405165, "name": "Essex St/Canal St", "direction": "NE", "lat": 40.715446, "lon": -73.98972, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.98972, 40.715446 ] } }, -{ "type": "Feature", "properties": { "id": 405166, "name": "W 34 St/8 Av", "direction": "NW", "lat": 40.752354, "lon": -73.993675, "routes": "SIM24, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -73.993675, 40.752354 ] } }, -{ "type": "Feature", "properties": { "id": 405169, "name": "E 79 St/Lexington Av", "direction": "SE", "lat": 40.77495, "lon": -73.95914, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.95914, 40.77495 ] } }, -{ "type": "Feature", "properties": { "id": 405172, "name": "West Houston St/Greene St", "direction": "SE", "lat": 40.72595, "lon": -73.99833, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99833, 40.72595 ] } }, -{ "type": "Feature", "properties": { "id": 405179, "name": "5 Av/W 44 St", "direction": "SW", "lat": 40.75487, "lon": -73.979965, "routes": "M4, M2, M1, M3, M5, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.979965, 40.75487 ] } }, -{ "type": "Feature", "properties": { "id": 405181, "name": "3 Av/E 116 St", "direction": "NE", "lat": 40.7978, "lon": -73.94004, "routes": "M98, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.94004, 40.7978 ] } }, -{ "type": "Feature", "properties": { "id": 405182, "name": "Frederick Douglass Blvd/W 125 St", "direction": "NE", "lat": 40.81033, "lon": -73.950966, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.950966, 40.81033 ] } }, -{ "type": "Feature", "properties": { "id": 405185, "name": "Amsterdam Av/W 183 St", "direction": "NE", "lat": 40.849808, "lon": -73.9296, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.9296, 40.849808 ] } }, -{ "type": "Feature", "properties": { "id": 405186, "name": "Amsterdam Av/W 185 St", "direction": "SW", "lat": 40.850616, "lon": -73.929184, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.929184, 40.850616 ] } }, -{ "type": "Feature", "properties": { "id": 405193, "name": "E 49 St/2 Av", "direction": "NW", "lat": 40.75449, "lon": -73.96936, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.96936, 40.75449 ] } }, -{ "type": "Feature", "properties": { "id": 405218, "name": "Broadway/Walker St", "direction": "SW", "lat": 40.718582, "lon": -74.00267, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.00267, 40.718582 ] } }, -{ "type": "Feature", "properties": { "id": 405220, "name": "Water St / Pine St", "direction": "SW", "lat": 40.705788, "lon": -74.0067, "routes": "BM4, BM4, BM2, BM3, BM3, BM1, BM1, BM2" }, "geometry": { "type": "Point", "coordinates": [ -74.0067, 40.705788 ] } }, -{ "type": "Feature", "properties": { "id": 405227, "name": "Saint Nicholas Av/W 147 St", "direction": "NE", "lat": 40.825405, "lon": -73.94352, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.94352, 40.825405 ] } }, -{ "type": "Feature", "properties": { "id": 405230, "name": "Broadway/Duane St", "direction": "SW", "lat": 40.71514, "lon": -74.00559, "routes": "SIM4C, SIM34, M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00559, 40.71514 ] } }, -{ "type": "Feature", "properties": { "id": 405231, "name": "E 23 St/Broadway", "direction": "NW", "lat": 40.741352, "lon": -73.98901, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.98901, 40.741352 ] } }, -{ "type": "Feature", "properties": { "id": 405233, "name": "2 Av/E 92 St", "direction": "SW", "lat": 40.78151, "lon": -73.94916, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.94916, 40.78151 ] } }, -{ "type": "Feature", "properties": { "id": 405234, "name": "Broadway/W 120 St", "direction": "SW", "lat": 40.810368, "lon": -73.96256, "routes": "M4, M104, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.96256, 40.810368 ] } }, -{ "type": "Feature", "properties": { "id": 405237, "name": "W 72 St/Broadway", "direction": "SE", "lat": 40.778767, "lon": -73.98216, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98216, 40.778767 ] } }, -{ "type": "Feature", "properties": { "id": 405247, "name": "Frederick Douglass Blvd/114 St", "direction": "SW", "lat": 40.803307, "lon": -73.95632, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.95632, 40.803307 ] } }, -{ "type": "Feature", "properties": { "id": 405248, "name": "Broadway/W 97 St", "direction": "NE", "lat": 40.795174, "lon": -73.9712, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.9712, 40.795174 ] } }, -{ "type": "Feature", "properties": { "id": 405249, "name": "Broadway/W 97 St", "direction": "SW", "lat": 40.794933, "lon": -73.97185, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.97185, 40.794933 ] } }, -{ "type": "Feature", "properties": { "id": 405256, "name": "Trinity Pl/Morris St", "direction": "NE", "lat": 40.70626, "lon": -74.01423, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.01423, 40.70626 ] } }, -{ "type": "Feature", "properties": { "id": 405265, "name": "W 14 St/9 Av", "direction": "W", "lat": 40.74115, "lon": -74.00552, "routes": "M11, M14D+, M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00552, 40.74115 ] } }, -{ "type": "Feature", "properties": { "id": 405266, "name": "Broadway/Walker St", "direction": "SW", "lat": 40.718758, "lon": -74.00254, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00254, 40.718758 ] } }, -{ "type": "Feature", "properties": { "id": 405269, "name": "Bowery/Hester St", "direction": "NE", "lat": 40.717342, "lon": -73.9953, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.9953, 40.717342 ] } }, -{ "type": "Feature", "properties": { "id": 405272, "name": "E 24 St/Lexington Av", "direction": "SE", "lat": 40.73999, "lon": -73.98401, "routes": "M101, M103, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.98401, 40.73999 ] } }, -{ "type": "Feature", "properties": { "id": 405277, "name": "Broadway/Broome St", "direction": "SW", "lat": 40.721703, "lon": -74.000015, "routes": "SIM4C, SIM1, SIM34, SIM3C, SIM1C, X27, X28, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.000015, 40.721703 ] } }, -{ "type": "Feature", "properties": { "id": 405279, "name": "Church St/Warren St", "direction": "NE", "lat": 40.714146, "lon": -74.008415, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.008415, 40.714146 ] } }, -{ "type": "Feature", "properties": { "id": 405283, "name": "Columbus Av/W 66 St", "direction": "SW", "lat": 40.773396, "lon": -73.981804, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.981804, 40.773396 ] } }, -{ "type": "Feature", "properties": { "id": 405284, "name": "Malcolm X Blvd/W 146 St", "direction": "SW", "lat": 40.821083, "lon": -73.9359, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.9359, 40.821083 ] } }, -{ "type": "Feature", "properties": { "id": 405285, "name": "11 Av/W 34 St", "direction": "SW", "lat": 40.75563, "lon": -74.00219, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00219, 40.75563 ] } }, -{ "type": "Feature", "properties": { "id": 405289, "name": "Frederick Douglass Blvd/W 121 St", "direction": "SW", "lat": 40.807526, "lon": -73.953285, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.953285, 40.807526 ] } }, -{ "type": "Feature", "properties": { "id": 405290, "name": "Columbus Av/W 63 St", "direction": "SW", "lat": 40.77184, "lon": -73.98301, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.98301, 40.77184 ] } }, -{ "type": "Feature", "properties": { "id": 405291, "name": "7 Av/W 57 St", "direction": "SW", "lat": 40.765728, "lon": -73.98008, "routes": "M7, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.98008, 40.765728 ] } }, -{ "type": "Feature", "properties": { "id": 405293, "name": "7 Av/W 55 St", "direction": "SW", "lat": 40.763973, "lon": -73.981346, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.981346, 40.763973 ] } }, -{ "type": "Feature", "properties": { "id": 405295, "name": "7 Av/W 52 St", "direction": "SW", "lat": 40.76246, "lon": -73.98239, "routes": "M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98239, 40.76246 ] } }, -{ "type": "Feature", "properties": { "id": 405297, "name": "7 Av/W 44 St", "direction": "SW", "lat": 40.757477, "lon": -73.98592, "routes": "M104, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98592, 40.757477 ] } }, -{ "type": "Feature", "properties": { "id": 405298, "name": "7 Av/W 17 St", "direction": "SW", "lat": 40.740353, "lon": -73.99849, "routes": "M20, M7" }, "geometry": { "type": "Point", "coordinates": [ -73.99849, 40.740353 ] } }, -{ "type": "Feature", "properties": { "id": 405299, "name": "W 58 St/Broadway", "direction": "SE", "lat": 40.767155, "lon": -73.98198, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.98198, 40.767155 ] } }, -{ "type": "Feature", "properties": { "id": 405305, "name": "West St/North Moore St", "direction": "S", "lat": 40.720253, "lon": -74.01231, "routes": "SIM33, SIM9, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.01231, 40.720253 ] } }, -{ "type": "Feature", "properties": { "id": 405307, "name": "2 Av/E 89 St", "direction": "SW", "lat": 40.779655, "lon": -73.95052, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.95052, 40.779655 ] } }, -{ "type": "Feature", "properties": { "id": 405308, "name": "W 66 St/Freedom Pl", "direction": "SE", "lat": 40.7765, "lon": -73.98863, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98863, 40.7765 ] } }, -{ "type": "Feature", "properties": { "id": 405311, "name": "East Houston St/1 Av", "direction": "W", "lat": 40.723164, "lon": -73.988976, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.988976, 40.723164 ] } }, -{ "type": "Feature", "properties": { "id": 405315, "name": "Pleasant Av/E 117 St", "direction": "SW", "lat": 40.795918, "lon": -73.93269, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93269, 40.795918 ] } }, -{ "type": "Feature", "properties": { "id": 405316, "name": "9 Av/W 25 St", "direction": "SW", "lat": 40.747566, "lon": -74.00071, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -74.00071, 40.747566 ] } }, -{ "type": "Feature", "properties": { "id": 405318, "name": "Water St/Pine St", "direction": "NE", "lat": 40.705517, "lon": -74.00681, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -74.00681, 40.705517 ] } }, -{ "type": "Feature", "properties": { "id": 405319, "name": "Madison St/Catherine St", "direction": "E", "lat": 40.71193, "lon": -73.997154, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.997154, 40.71193 ] } }, -{ "type": "Feature", "properties": { "id": 405320, "name": "Allen St/Grand St", "direction": "NE", "lat": 40.71717, "lon": -73.99122, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99122, 40.71717 ] } }, -{ "type": "Feature", "properties": { "id": 405322, "name": "1 Av/E 15 St", "direction": "NE", "lat": 40.73214, "lon": -73.98195, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.98195, 40.73214 ] } }, -{ "type": "Feature", "properties": { "id": 405323, "name": "1 Av/E 25 St", "direction": "NE", "lat": 40.73799, "lon": -73.97761, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.97761, 40.73799 ] } }, -{ "type": "Feature", "properties": { "id": 405336, "name": "2 Av/E 28 St", "direction": "SW", "lat": 40.741116, "lon": -73.97864, "routes": "M34A+, M15, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.97864, 40.741116 ] } }, -{ "type": "Feature", "properties": { "id": 405337, "name": "Water St/Gouverneur Ln", "direction": "SW", "lat": 40.704662, "lon": -74.00829, "routes": "QM7, QM25, QM25, M15, QM11, QM11, QM8, QM8, QM7" }, "geometry": { "type": "Point", "coordinates": [ -74.00829, 40.704662 ] } }, -{ "type": "Feature", "properties": { "id": 405340, "name": "2 Av/E 13 St", "direction": "SW", "lat": 40.73179, "lon": -73.98545, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.98545, 40.73179 ] } }, -{ "type": "Feature", "properties": { "id": 405342, "name": "2 Av/E 32 St", "direction": "SW", "lat": 40.74421, "lon": -73.97635, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.97635, 40.74421 ] } }, -{ "type": "Feature", "properties": { "id": 405347, "name": "2 Av/E 106 St", "direction": "SW", "lat": 40.79086, "lon": -73.94243, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.94243, 40.79086 ] } }, -{ "type": "Feature", "properties": { "id": 405348, "name": "2 Av/E 115 St", "direction": "SW", "lat": 40.795918, "lon": -73.93877, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.93877, 40.795918 ] } }, -{ "type": "Feature", "properties": { "id": 405350, "name": "Columbia St/Houston St", "direction": "NE", "lat": 40.719624, "lon": -73.97873, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.97873, 40.719624 ] } }, -{ "type": "Feature", "properties": { "id": 405352, "name": "Lewis St/Grand St", "direction": "NE", "lat": 40.71404, "lon": -73.97984, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.97984, 40.71404 ] } }, -{ "type": "Feature", "properties": { "id": 405353, "name": "West End Av/W 61 St", "direction": "NE", "lat": 40.77291, "lon": -73.989365, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.989365, 40.77291 ] } }, -{ "type": "Feature", "properties": { "id": 405359, "name": "Pike St/South St", "direction": "N", "lat": 40.710613, "lon": -73.99189, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99189, 40.710613 ] } }, -{ "type": "Feature", "properties": { "id": 405361, "name": "East Houston St/Crosby St", "direction": "W", "lat": 40.72526, "lon": -73.99592, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.99592, 40.72526 ] } }, -{ "type": "Feature", "properties": { "id": 405365, "name": "E 72 St/2 Av", "direction": "E", "lat": 40.76871, "lon": -73.95828, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.95828, 40.76871 ] } }, -{ "type": "Feature", "properties": { "id": 405368, "name": "1 Av/E 23 St", "direction": "NE", "lat": 40.736652, "lon": -73.97863, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -73.97863, 40.736652 ] } }, -{ "type": "Feature", "properties": { "id": 405369, "name": "E 79 St/3 Av", "direction": "SE", "lat": 40.77415, "lon": -73.9571, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.9571, 40.77415 ] } }, -{ "type": "Feature", "properties": { "id": 405372, "name": "Grand St/Fdr Drive", "direction": "W", "lat": 40.713615, "lon": -73.97866, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.97866, 40.713615 ] } }, -{ "type": "Feature", "properties": { "id": 405373, "name": "Allen St/Hester St", "direction": "SW", "lat": 40.71637, "lon": -73.99202, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99202, 40.71637 ] } }, -{ "type": "Feature", "properties": { "id": 405374, "name": "W 41 St/8 Av", "direction": "NW", "lat": 40.75655, "lon": -73.99012, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.99012, 40.75655 ] } }, -{ "type": "Feature", "properties": { "id": 405375, "name": "E 34 St/5 Av", "direction": "NW", "lat": 40.748398, "lon": -73.98435, "routes": "M34A+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.98435, 40.748398 ] } }, -{ "type": "Feature", "properties": { "id": 405376, "name": "Broadway/W 57 St", "direction": "S", "lat": 40.76653, "lon": -73.981964, "routes": "M10" }, "geometry": { "type": "Point", "coordinates": [ -73.981964, 40.76653 ] } }, -{ "type": "Feature", "properties": { "id": 405377, "name": "Broadway/Franklin St", "direction": "SW", "lat": 40.71755, "lon": -74.003525, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.003525, 40.71755 ] } }, -{ "type": "Feature", "properties": { "id": 405380, "name": "Madison Av/E 28 St", "direction": "NE", "lat": 40.74419, "lon": -73.98543, "routes": "BM3, M1, M2, BM1, BM2, M3, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.98543, 40.74419 ] } }, -{ "type": "Feature", "properties": { "id": 405382, "name": "South Ferry/Terminal", "direction": "NW", "lat": 40.702, "lon": -74.01353, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -74.01353, 40.702 ] } }, -{ "type": "Feature", "properties": { "id": 405386, "name": "Murray St/Church St", "direction": "NW", "lat": 40.713898, "lon": -74.00894, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -74.00894, 40.713898 ] } }, -{ "type": "Feature", "properties": { "id": 405389, "name": "York Av/E 62 St", "direction": "SW", "lat": 40.76068, "lon": -73.95831, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95831, 40.76068 ] } }, -{ "type": "Feature", "properties": { "id": 405390, "name": "E 23 St/1 Av", "direction": "SE", "lat": 40.736862, "lon": -73.97871, "routes": "X37, M9, X38" }, "geometry": { "type": "Point", "coordinates": [ -73.97871, 40.736862 ] } }, -{ "type": "Feature", "properties": { "id": 405393, "name": "8 Av/W 56 St", "direction": "NE", "lat": 40.766285, "lon": -73.98307, "routes": "M104, M20" }, "geometry": { "type": "Point", "coordinates": [ -73.98307, 40.766285 ] } }, -{ "type": "Feature", "properties": { "id": 405394, "name": "Broadway/W 105 St", "direction": "N", "lat": 40.80059, "lon": -73.967804, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.967804, 40.80059 ] } }, -{ "type": "Feature", "properties": { "id": 405396, "name": "1 Av/E 27 St", "direction": "NE", "lat": 40.739628, "lon": -73.976494, "routes": "M9, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.976494, 40.739628 ] } }, -{ "type": "Feature", "properties": { "id": 405399, "name": "Water St/Broad St", "direction": "W", "lat": 40.703102, "lon": -74.01131, "routes": "QM8, QM25, QM11, QM7, QM7, QM8, QM11, QM25" }, "geometry": { "type": "Point", "coordinates": [ -74.01131, 40.703102 ] } }, -{ "type": "Feature", "properties": { "id": 405403, "name": "3 Av/E 55 St", "direction": "NE", "lat": 40.758873, "lon": -73.96845, "routes": "QM42, QM34, QM34, QM40, QM40, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.96845, 40.758873 ] } }, -{ "type": "Feature", "properties": { "id": 405414, "name": "E 125 St/2 Av", "direction": "NW", "lat": 40.803013, "lon": -73.93409, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.93409, 40.803013 ] } }, -{ "type": "Feature", "properties": { "id": 405415, "name": "W 125 St/Malcolm X Blvd", "direction": "NW", "lat": 40.808025, "lon": -73.94593, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.94593, 40.808025 ] } }, -{ "type": "Feature", "properties": { "id": 405416, "name": "W 125 St/Saint Nicholas Av", "direction": "SE", "lat": 40.81037, "lon": -73.951805, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.951805, 40.81037 ] } }, -{ "type": "Feature", "properties": { "id": 405417, "name": "W 125 St/Malcolm X Blvd", "direction": "E", "lat": 40.807514, "lon": -73.945076, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.945076, 40.807514 ] } }, -{ "type": "Feature", "properties": { "id": 405419, "name": "E 125 St/Lexington Av", "direction": "W", "lat": 40.804585, "lon": -73.93773, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.93773, 40.804585 ] } }, -{ "type": "Feature", "properties": { "id": 405421, "name": "E 125 St/Lexington Av", "direction": "SE", "lat": 40.80417, "lon": -73.937035, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.937035, 40.80417 ] } }, -{ "type": "Feature", "properties": { "id": 405422, "name": "E 125 St/Madison Av", "direction": "SE", "lat": 40.80553, "lon": -73.94028, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.94028, 40.80553 ] } }, -{ "type": "Feature", "properties": { "id": 405423, "name": "Amsterdam Av/W 120 St", "direction": "NE", "lat": 40.809464, "lon": -73.95905, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.95905, 40.809464 ] } }, -{ "type": "Feature", "properties": { "id": 405424, "name": "Amsterdam Av/La Salle St", "direction": "NE", "lat": 40.81277, "lon": -73.95659, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.95659, 40.81277 ] } }, -{ "type": "Feature", "properties": { "id": 405425, "name": "Amsterdam Av/W 125 St", "direction": "SW", "lat": 40.81292, "lon": -73.95686, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.95686, 40.81292 ] } }, -{ "type": "Feature", "properties": { "id": 405426, "name": "W 125 St/Frederick Douglass Blvd", "direction": "NW", "lat": 40.810402, "lon": -73.95163, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.95163, 40.810402 ] } }, -{ "type": "Feature", "properties": { "id": 405427, "name": "Dyckman St/Broadway", "direction": "SE", "lat": 40.865322, "lon": -73.927185, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.927185, 40.865322 ] } }, -{ "type": "Feature", "properties": { "id": 405428, "name": "Dyckman St/Sherman Av", "direction": "SE", "lat": 40.86338, "lon": -73.92599, "routes": "BXM1, M100" }, "geometry": { "type": "Point", "coordinates": [ -73.92599, 40.86338 ] } }, -{ "type": "Feature", "properties": { "id": 405429, "name": "Dyckman St/Fort George Hill", "direction": "SE", "lat": 40.86129, "lon": -73.92465, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.92465, 40.86129 ] } }, -{ "type": "Feature", "properties": { "id": 405430, "name": "10 Av/Harlem River Dr", "direction": "NE", "lat": 40.859554, "lon": -73.9224, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.9224, 40.859554 ] } }, -{ "type": "Feature", "properties": { "id": 405431, "name": "10 Av/W 202 St", "direction": "NE", "lat": 40.861465, "lon": -73.92103, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.92103, 40.861465 ] } }, -{ "type": "Feature", "properties": { "id": 405432, "name": "10 Av/W 207 St", "direction": "NE", "lat": 40.864243, "lon": -73.919014, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.919014, 40.864243 ] } }, -{ "type": "Feature", "properties": { "id": 405433, "name": "10 Av/Sherman Av", "direction": "NE", "lat": 40.866604, "lon": -73.91724, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.91724, 40.866604 ] } }, -{ "type": "Feature", "properties": { "id": 405434, "name": "10 Av/W 215 St", "direction": "NE", "lat": 40.869286, "lon": -73.91526, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.91526, 40.869286 ] } }, -{ "type": "Feature", "properties": { "id": 405435, "name": "10 Av/W 214 St", "direction": "SW", "lat": 40.86902, "lon": -73.915695, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.915695, 40.86902 ] } }, -{ "type": "Feature", "properties": { "id": 405436, "name": "10 Av/W 211 St", "direction": "SW", "lat": 40.86707, "lon": -73.91705, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.91705, 40.86707 ] } }, -{ "type": "Feature", "properties": { "id": 405437, "name": "10 Av/W 207 St", "direction": "SW", "lat": 40.864758, "lon": -73.918755, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.918755, 40.864758 ] } }, -{ "type": "Feature", "properties": { "id": 405439, "name": "10 Av/W 202 St", "direction": "SW", "lat": 40.861233, "lon": -73.921394, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.921394, 40.861233 ] } }, -{ "type": "Feature", "properties": { "id": 405440, "name": "Dyckman St/10 Av", "direction": "NW", "lat": 40.859306, "lon": -73.92316, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.92316, 40.859306 ] } }, -{ "type": "Feature", "properties": { "id": 405442, "name": "Dyckman St/Sherman Av", "direction": "NW", "lat": 40.863487, "lon": -73.9259, "routes": "M100, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.9259, 40.863487 ] } }, -{ "type": "Feature", "properties": { "id": 405443, "name": "11 Av/W 54 St", "direction": "SW", "lat": 40.76823, "lon": -73.99301, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.99301, 40.76823 ] } }, -{ "type": "Feature", "properties": { "id": 405444, "name": "11 Av/W 50 St", "direction": "SW", "lat": 40.765987, "lon": -73.994644, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.994644, 40.765987 ] } }, -{ "type": "Feature", "properties": { "id": 405445, "name": "11 Av/ W 47 St", "direction": "SW", "lat": 40.764107, "lon": -73.99601, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.99601, 40.764107 ] } }, -{ "type": "Feature", "properties": { "id": 405446, "name": "11 Av/W 44 St", "direction": "SW", "lat": 40.762, "lon": -73.99759, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.99759, 40.762 ] } }, -{ "type": "Feature", "properties": { "id": 405447, "name": "11 Av/W 38 St", "direction": "SW", "lat": 40.75811, "lon": -74.00038, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00038, 40.75811 ] } }, -{ "type": "Feature", "properties": { "id": 405450, "name": "11 Av/W 26 St", "direction": "SW", "lat": 40.750896, "lon": -74.005646, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.005646, 40.750896 ] } }, -{ "type": "Feature", "properties": { "id": 405451, "name": "11 Av/W 23 St", "direction": "SW", "lat": 40.748325, "lon": -74.00757, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00757, 40.748325 ] } }, -{ "type": "Feature", "properties": { "id": 405452, "name": "8 Av/W 12 St", "direction": "NE", "lat": 40.737904, "lon": -74.00436, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00436, 40.737904 ] } }, -{ "type": "Feature", "properties": { "id": 405455, "name": "12 Av/W 27 St", "direction": "N", "lat": 40.752216, "lon": -74.007576, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.007576, 40.752216 ] } }, -{ "type": "Feature", "properties": { "id": 405456, "name": "12 Av/W 30 St", "direction": "NE", "lat": 40.75484, "lon": -74.00623, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00623, 40.75484 ] } }, -{ "type": "Feature", "properties": { "id": 405457, "name": "12 Av/W 33 St", "direction": "NE", "lat": 40.756397, "lon": -74.00513, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00513, 40.756397 ] } }, -{ "type": "Feature", "properties": { "id": 405458, "name": "12 Av/W 40 St", "direction": "NE", "lat": 40.760765, "lon": -74.00192, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00192, 40.760765 ] } }, -{ "type": "Feature", "properties": { "id": 405459, "name": "12 Av/W 52 St", "direction": "NE", "lat": 40.76808, "lon": -73.9956, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.9956, 40.76808 ] } }, -{ "type": "Feature", "properties": { "id": 405460, "name": "12 Av/W 55 St", "direction": "N", "lat": 40.769943, "lon": -73.99425, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.99425, 40.769943 ] } }, -{ "type": "Feature", "properties": { "id": 405468, "name": "West End Av/W 64 St", "direction": "NE", "lat": 40.77484, "lon": -73.98805, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.98805, 40.77484 ] } }, -{ "type": "Feature", "properties": { "id": 405473, "name": "E 125 St/Park Av", "direction": "NW", "lat": 40.8053, "lon": -73.939445, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.939445, 40.8053 ] } }, -{ "type": "Feature", "properties": { "id": 405480, "name": "3 Av/E 57 St", "direction": "NE", "lat": 40.76014, "lon": -73.96752, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.96752, 40.76014 ] } }, -{ "type": "Feature", "properties": { "id": 405486, "name": "5 Av/W 36 St", "direction": "SW", "lat": 40.749577, "lon": -73.98377, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.98377, 40.749577 ] } }, -{ "type": "Feature", "properties": { "id": 405488, "name": "3 Av/E 53 St", "direction": "NE", "lat": 40.75775, "lon": -73.96924, "routes": "M102, M103, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.96924, 40.75775 ] } }, -{ "type": "Feature", "properties": { "id": 405489, "name": "Madison Av/E 67 St", "direction": "NE", "lat": 40.768787, "lon": -73.967514, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.967514, 40.768787 ] } }, -{ "type": "Feature", "properties": { "id": 405490, "name": "Madison Av/E 63 St", "direction": "NE", "lat": 40.766453, "lon": -73.969246, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.969246, 40.766453 ] } }, -{ "type": "Feature", "properties": { "id": 405491, "name": "5 Av/E 69 St", "direction": "SW", "lat": 40.7706, "lon": -73.968475, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.968475, 40.7706 ] } }, -{ "type": "Feature", "properties": { "id": 405506, "name": "W 44 St/6 Av", "direction": "SE", "lat": 40.75593, "lon": -73.98283, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -73.98283, 40.75593 ] } }, -{ "type": "Feature", "properties": { "id": 405523, "name": "Lafayette St/East Houston St", "direction": "NE", "lat": 40.725155, "lon": -73.99519, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.99519, 40.725155 ] } }, -{ "type": "Feature", "properties": { "id": 405527, "name": "4 Av/E 10 St", "direction": "N", "lat": 40.731354, "lon": -73.990295, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.990295, 40.731354 ] } }, -{ "type": "Feature", "properties": { "id": 405529, "name": "W 57 St/5 Av", "direction": "SE", "lat": 40.76328, "lon": -73.97491, "routes": "M31, M57" }, "geometry": { "type": "Point", "coordinates": [ -73.97491, 40.76328 ] } }, -{ "type": "Feature", "properties": { "id": 405531, "name": "11 Av/W 18 St", "direction": "N", "lat": 40.74573, "lon": -74.007996, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.007996, 40.74573 ] } }, -{ "type": "Feature", "properties": { "id": 405541, "name": "Broadway/W 89 St", "direction": "SW", "lat": 40.79009, "lon": -73.975266, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.975266, 40.79009 ] } }, -{ "type": "Feature", "properties": { "id": 405542, "name": "Madison Av/E 114 St", "direction": "NE", "lat": 40.79868, "lon": -73.945694, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.945694, 40.79868 ] } }, -{ "type": "Feature", "properties": { "id": 405543, "name": "Madison Av/E 116 St", "direction": "NE", "lat": 40.800274, "lon": -73.94459, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94459, 40.800274 ] } }, -{ "type": "Feature", "properties": { "id": 405557, "name": "6 Av/ W 13 St", "direction": "NE", "lat": 40.73724, "lon": -73.99687, "routes": "X27" }, "geometry": { "type": "Point", "coordinates": [ -73.99687, 40.73724 ] } }, -{ "type": "Feature", "properties": { "id": 405562, "name": "11 Av/W 58 St", "direction": "NE", "lat": 40.771084, "lon": -73.99074, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.99074, 40.771084 ] } }, -{ "type": "Feature", "properties": { "id": 405564, "name": "11 Av/W 29 St", "direction": "SW", "lat": 40.752583, "lon": -74.004395, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.004395, 40.752583 ] } }, -{ "type": "Feature", "properties": { "id": 405575, "name": "West Houston St/Varick St", "direction": "W", "lat": 40.728622, "lon": -74.00504, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -74.00504, 40.728622 ] } }, -{ "type": "Feature", "properties": { "id": 405576, "name": "Avenue A/E 5 St", "direction": "SW", "lat": 40.724804, "lon": -73.9845, "routes": "M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.9845, 40.724804 ] } }, -{ "type": "Feature", "properties": { "id": 405577, "name": "Avenue A/East Houston St", "direction": "SW", "lat": 40.72236, "lon": -73.98627, "routes": "M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.98627, 40.72236 ] } }, -{ "type": "Feature", "properties": { "id": 405579, "name": "Avenue Of The Americas/W 16 St", "direction": "NE", "lat": 40.738567, "lon": -73.99592, "routes": "M7" }, "geometry": { "type": "Point", "coordinates": [ -73.99592, 40.738567 ] } }, -{ "type": "Feature", "properties": { "id": 405582, "name": "Avenue Of The Americas/W 31 St", "direction": "NE", "lat": 40.748005, "lon": -73.98891, "routes": "M7" }, "geometry": { "type": "Point", "coordinates": [ -73.98891, 40.748005 ] } }, -{ "type": "Feature", "properties": { "id": 405589, "name": "Dyckman St/Nagle Av", "direction": "NW", "lat": 40.86154, "lon": -73.92465, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.92465, 40.86154 ] } }, -{ "type": "Feature", "properties": { "id": 405595, "name": "Madison Av/E 112 St", "direction": "NE", "lat": 40.79756, "lon": -73.94655, "routes": "M1" }, "geometry": { "type": "Point", "coordinates": [ -73.94655, 40.79756 ] } }, -{ "type": "Feature", "properties": { "id": 405635, "name": "6 Av/Grand St", "direction": "N", "lat": 40.72288, "lon": -74.00504, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -74.00504, 40.72288 ] } }, -{ "type": "Feature", "properties": { "id": 414350, "name": "Main Rdwy/Tennis Center 2", "direction": "NE", "lat": 40.795162, "lon": -73.919975, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.919975, 40.795162 ] } }, -{ "type": "Feature", "properties": { "id": 450001, "name": "3 Av/E 38 St", "direction": "NE", "lat": 40.748356, "lon": -73.9761, "routes": "QM36, QM31, QM31, QM36, QM35, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.9761, 40.748356 ] } }, -{ "type": "Feature", "properties": { "id": 450002, "name": "3 Av/E 38 St", "direction": "NE", "lat": 40.74814, "lon": -73.97624, "routes": "QM42, QM34, QM42, QM40, QM40, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.97624, 40.74814 ] } }, -{ "type": "Feature", "properties": { "id": 450004, "name": "3 Av/E 43 St", "direction": "NE", "lat": 40.75156, "lon": -73.97377, "routes": "QM44, QM36, QM31, QM36, QM35, QM31, QM35, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.97377, 40.75156 ] } }, -{ "type": "Feature", "properties": { "id": 450005, "name": "3 Av/E 44 St", "direction": "NE", "lat": 40.751995, "lon": -73.973434, "routes": "QM40, QM40, QM42, QM42, QM34, QM34, QM32, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.973434, 40.751995 ] } }, -{ "type": "Feature", "properties": { "id": 450006, "name": "3 Av/E 50 St", "direction": "NE", "lat": 40.755882, "lon": -73.97055, "routes": "QM40, QM34, QM42, QM34, QM42, QM40" }, "geometry": { "type": "Point", "coordinates": [ -73.97055, 40.755882 ] } }, -{ "type": "Feature", "properties": { "id": 450011, "name": "6 Av/W 36 St", "direction": "NE", "lat": 40.751003, "lon": -73.98679, "routes": "QM4, QM3, QM4, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.98679, 40.751003 ] } }, -{ "type": "Feature", "properties": { "id": 450012, "name": "6 Av/W 37 St", "direction": "NE", "lat": 40.751614, "lon": -73.98633, "routes": "QM5, QM1, QM1, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.98633, 40.751614 ] } }, -{ "type": "Feature", "properties": { "id": 450013, "name": "6 Av/W 37 St", "direction": "NE", "lat": 40.751743, "lon": -73.98619, "routes": "QM12, QM12, QM24, QM10, QM10, QM24" }, "geometry": { "type": "Point", "coordinates": [ -73.98619, 40.751743 ] } }, -{ "type": "Feature", "properties": { "id": 450014, "name": "6 Av/W 41 St", "direction": "NE", "lat": 40.75459, "lon": -73.98419, "routes": "QM2, QM3, QM20, QM4, QM4, QM3, QM2, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.98419, 40.75459 ] } }, -{ "type": "Feature", "properties": { "id": 450015, "name": "6 Av/W 42 St", "direction": "NE", "lat": 40.754837, "lon": -73.98412, "routes": "QM6, QM1, QM1, QM6, QM5, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.98412, 40.754837 ] } }, -{ "type": "Feature", "properties": { "id": 450016, "name": "6 Av/W 43 St", "direction": "NE", "lat": 40.755623, "lon": -73.9834, "routes": "QM24, QM12, QM10, QM24, QM12, QM10" }, "geometry": { "type": "Point", "coordinates": [ -73.9834, 40.755623 ] } }, -{ "type": "Feature", "properties": { "id": 450017, "name": "6 Av/W 44 St", "direction": "NE", "lat": 40.75599, "lon": -73.98313, "routes": "QM18, QM16, QM16, QM17, QM17, QM15, QM15, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.98313, 40.75599 ] } }, -{ "type": "Feature", "properties": { "id": 450018, "name": "6 Av/W 44 St", "direction": "NE", "lat": 40.756264, "lon": -73.982956, "routes": "QM4, QM3, QM20, QM20, QM3, QM2, QM2, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.982956, 40.756264 ] } }, -{ "type": "Feature", "properties": { "id": 450019, "name": "6 Av/W 45 St", "direction": "NE", "lat": 40.756683, "lon": -73.98266, "routes": "QM1, QM5, QM6, QM6, QM1, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.98266, 40.756683 ] } }, -{ "type": "Feature", "properties": { "id": 450020, "name": "6 Av/W 48 St", "direction": "NE", "lat": 40.758793, "lon": -73.98112, "routes": "QM4, QM2, QM2, QM4, QM3, QM20, QM3, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.98112, 40.758793 ] } }, -{ "type": "Feature", "properties": { "id": 450021, "name": "6 Av/W 49 St", "direction": "NE", "lat": 40.75919, "lon": -73.98082, "routes": "QM5, QM6, QM1, QM5, QM1, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98082, 40.75919 ] } }, -{ "type": "Feature", "properties": { "id": 450022, "name": "6 Av/W 51 St", "direction": "NE", "lat": 40.760426, "lon": -73.97987, "routes": "QM24, QM10, QM24, QM12, QM10, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.97987, 40.760426 ] } }, -{ "type": "Feature", "properties": { "id": 450023, "name": "6 Av/W 51 St", "direction": "NE", "lat": 40.760334, "lon": -73.97992, "routes": "QM15, QM16, QM16, QM18, QM18, QM15, QM17, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.97992, 40.760334 ] } }, -{ "type": "Feature", "properties": { "id": 450024, "name": "6 Av/W 55 St", "direction": "NE", "lat": 40.763176, "lon": -73.97792, "routes": "QM20, QM4, QM2, QM4, QM3, QM3, QM20, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.97792, 40.763176 ] } }, -{ "type": "Feature", "properties": { "id": 450030, "name": "E 57 St/ 3 Av", "direction": "SE", "lat": 40.76039, "lon": -73.96802, "routes": "QM17, QM15, QM4, QM17, QM16, QM15, QM21, QM18, QM4, QM21, QM18, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.96802, 40.76039 ] } }, -{ "type": "Feature", "properties": { "id": 450031, "name": "E 57 St/5 Av", "direction": "SE", "lat": 40.762634, "lon": -73.97331, "routes": "QM10, QM10, QM12, QM24, QM12, QM24" }, "geometry": { "type": "Point", "coordinates": [ -73.97331, 40.762634 ] } }, -{ "type": "Feature", "properties": { "id": 450032, "name": "E 57 St/Madison Av", "direction": "SE", "lat": 40.762383, "lon": -73.972755, "routes": "QM17, QM18, QM18, QM16, QM17, QM16, QM15, QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.972755, 40.762383 ] } }, -{ "type": "Feature", "properties": { "id": 450033, "name": "E 57 St/Madison Av", "direction": "SE", "lat": 40.762333, "lon": -73.97263, "routes": "QM4, QM4, QM20, QM3, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.97263, 40.762333 ] } }, -{ "type": "Feature", "properties": { "id": 450034, "name": "E 57 St/ Park Av", "direction": "SE", "lat": 40.761654, "lon": -73.97101, "routes": "QM21, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.97101, 40.761654 ] } }, -{ "type": "Feature", "properties": { "id": 450035, "name": "Madison Av/E 70 St", "direction": "NE", "lat": 40.770393, "lon": -73.96637, "routes": "BXM3, BXM4, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.96637, 40.770393 ] } }, -{ "type": "Feature", "properties": { "id": 450036, "name": "Greenwich St/Battery Pl", "direction": "NE", "lat": 40.70493, "lon": -74.01482, "routes": "BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.01482, 40.70493 ] } }, -{ "type": "Feature", "properties": { "id": 450038, "name": "Madison Av/ E 33 St", "direction": "NE", "lat": 40.74722, "lon": -73.98327, "routes": "QM21, BXM18, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.98327, 40.74722 ] } }, -{ "type": "Feature", "properties": { "id": 450039, "name": "Madison Av/ E 38 St", "direction": "NE", "lat": 40.750397, "lon": -73.980965, "routes": "QM21, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.980965, 40.750397 ] } }, -{ "type": "Feature", "properties": { "id": 450040, "name": "Madison Av/E 41 St", "direction": "NE", "lat": 40.752415, "lon": -73.97947, "routes": "SIM6, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -73.97947, 40.752415 ] } }, -{ "type": "Feature", "properties": { "id": 450041, "name": "Madison Av/ E 49 St", "direction": "NE", "lat": 40.757133, "lon": -73.97597, "routes": "QM21, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.97597, 40.757133 ] } }, -{ "type": "Feature", "properties": { "id": 450042, "name": "Madison Av/E 55 St", "direction": "NE", "lat": 40.76087, "lon": -73.97328, "routes": "SIM23, QM21, QM21, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.97328, 40.76087 ] } }, -{ "type": "Feature", "properties": { "id": 450045, "name": "7 Av/W 41 St", "direction": "SW", "lat": 40.755497, "lon": -73.98733, "routes": "M7, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.98733, 40.755497 ] } }, -{ "type": "Feature", "properties": { "id": 450046, "name": "5 Av/W 51 St", "direction": "SW", "lat": 40.759315, "lon": -73.976746, "routes": "BXM7, BXM8, BXM9, BXM6, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.976746, 40.759315 ] } }, -{ "type": "Feature", "properties": { "id": 450048, "name": "3 Av/E 41 St", "direction": "NE", "lat": 40.74997, "lon": -73.97493, "routes": "BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.97493, 40.74997 ] } }, -{ "type": "Feature", "properties": { "id": 450049, "name": "3 Av/E 49 St", "direction": "NE", "lat": 40.755085, "lon": -73.97123, "routes": "BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.97123, 40.755085 ] } }, -{ "type": "Feature", "properties": { "id": 450050, "name": "3 Av/E 61 St", "direction": "NE", "lat": 40.76267, "lon": -73.965675, "routes": "BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.965675, 40.76267 ] } }, -{ "type": "Feature", "properties": { "id": 450051, "name": "3 Av/E 63 St", "direction": "NE", "lat": 40.764145, "lon": -73.964584, "routes": "M102, M101, M103, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.964584, 40.764145 ] } }, -{ "type": "Feature", "properties": { "id": 450054, "name": "5 Av / W 26 St", "direction": "SW", "lat": 40.743614, "lon": -73.98821, "routes": "BM3, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.98821, 40.743614 ] } }, -{ "type": "Feature", "properties": { "id": 450055, "name": "5 Av/W 34 St", "direction": "SW", "lat": 40.748726, "lon": -73.98448, "routes": "BXM7, BXM6, BXM18, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.98448, 40.748726 ] } }, -{ "type": "Feature", "properties": { "id": 450057, "name": "5 Av / W 39 St", "direction": "SW", "lat": 40.75168, "lon": -73.98227, "routes": "BM5, BM2, BM3, BM1, BM4" }, "geometry": { "type": "Point", "coordinates": [ -73.98227, 40.75168 ] } }, -{ "type": "Feature", "properties": { "id": 450058, "name": "5 Av/W 40 St", "direction": "SW", "lat": 40.752144, "lon": -73.98192, "routes": "BXM3, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.98192, 40.752144 ] } }, -{ "type": "Feature", "properties": { "id": 450059, "name": "5 Av / W 48 St", "direction": "SW", "lat": 40.75742, "lon": -73.97812, "routes": "BM1, BM5, BXM4, BM3, BM4, BM2, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.97812, 40.75742 ] } }, -{ "type": "Feature", "properties": { "id": 450060, "name": "5 Av/W 43 St", "direction": "SW", "lat": 40.754265, "lon": -73.98041, "routes": "BXM8, BXM11, BXM9, SIM24, BXM7, BXM10, SIM23, BXM18, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98041, 40.754265 ] } }, -{ "type": "Feature", "properties": { "id": 450062, "name": "5 Av / W 54 St", "direction": "SW", "lat": 40.76116, "lon": -73.97538, "routes": "BM3, BM4, BM5, BM1, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.97538, 40.76116 ] } }, -{ "type": "Feature", "properties": { "id": 450063, "name": "5 Av/E 55 St", "direction": "SW", "lat": 40.761387, "lon": -73.975235, "routes": "SIM1C, BXM4, SIM3, SIM8, SIM3C, SIM30, SIM33C, SIM8X, SIM4C, BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.975235, 40.761387 ] } }, -{ "type": "Feature", "properties": { "id": 450064, "name": "5 Av/W 58 St", "direction": "SW", "lat": 40.763824, "lon": -73.97348, "routes": "BXM9, BXM7, BXM8, BXM10, BXM6, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.97348, 40.763824 ] } }, -{ "type": "Feature", "properties": { "id": 450066, "name": "6 Av/W 35 St", "direction": "NE", "lat": 40.75034, "lon": -73.98722, "routes": "QM10, QM24, QM10, QM24, QM12, BXM2, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.98722, 40.75034 ] } }, -{ "type": "Feature", "properties": { "id": 450067, "name": "6 Av/W 46 St", "direction": "NE", "lat": 40.757504, "lon": -73.98206, "routes": "BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.98206, 40.757504 ] } }, -{ "type": "Feature", "properties": { "id": 450069, "name": "Main St/546 Main St", "direction": "NE", "lat": 40.76177, "lon": -73.94975, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94975, 40.76177 ] } }, -{ "type": "Feature", "properties": { "id": 450074, "name": "Main St/Roosevelt Island School", "direction": "NE", "lat": 40.764305, "lon": -73.947464, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.947464, 40.764305 ] } }, -{ "type": "Feature", "properties": { "id": 450075, "name": "Church St/Duane St", "direction": "NE", "lat": 40.71623, "lon": -74.006775, "routes": "X27" }, "geometry": { "type": "Point", "coordinates": [ -74.006775, 40.71623 ] } }, -{ "type": "Feature", "properties": { "id": 450078, "name": "E 23 St/Madison Av", "direction": "NW", "lat": 40.740784, "lon": -73.987564, "routes": "QM21, QM21, BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.987564, 40.740784 ] } }, -{ "type": "Feature", "properties": { "id": 450081, "name": "Madison Av/ E 27 St", "direction": "NE", "lat": 40.7433, "lon": -73.98609, "routes": "QM21, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.98609, 40.7433 ] } }, -{ "type": "Feature", "properties": { "id": 450082, "name": "Madison Av/E 23 St", "direction": "NE", "lat": 40.741173, "lon": -73.987686, "routes": "BXM6, BXM10, BXM7, BXM8, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.987686, 40.741173 ] } }, -{ "type": "Feature", "properties": { "id": 450083, "name": "Madison Av/E 24 St", "direction": "NE", "lat": 40.741405, "lon": -73.98752, "routes": "BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.98752, 40.741405 ] } }, -{ "type": "Feature", "properties": { "id": 450084, "name": "Madison Av / E 24 St", "direction": "NE", "lat": 40.741325, "lon": -73.98757, "routes": "BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98757, 40.741325 ] } }, -{ "type": "Feature", "properties": { "id": 450087, "name": "Madison Av/E 31 St", "direction": "NE", "lat": 40.745964, "lon": -73.984146, "routes": "BXM3, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.984146, 40.745964 ] } }, -{ "type": "Feature", "properties": { "id": 450090, "name": "Madison Av/E 35 St", "direction": "NE", "lat": 40.748512, "lon": -73.98235, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.98235, 40.748512 ] } }, -{ "type": "Feature", "properties": { "id": 450091, "name": "Madison Av/E 36 St", "direction": "NE", "lat": 40.74913, "lon": -73.98192, "routes": "BXM9, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98192, 40.74913 ] } }, -{ "type": "Feature", "properties": { "id": 450092, "name": "Madison Av/E 36 St", "direction": "NE", "lat": 40.748898, "lon": -73.982025, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.982025, 40.748898 ] } }, -{ "type": "Feature", "properties": { "id": 450093, "name": "Madison Av/E 37 St", "direction": "NE", "lat": 40.7494, "lon": -73.98165, "routes": "BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.98165, 40.7494 ] } }, -{ "type": "Feature", "properties": { "id": 450094, "name": "Madison Av/E 39 St", "direction": "NE", "lat": 40.750828, "lon": -73.98068, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.98068, 40.750828 ] } }, -{ "type": "Feature", "properties": { "id": 450095, "name": "Madison Av/E 39 St", "direction": "NE", "lat": 40.75102, "lon": -73.98052, "routes": "BXM3, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.98052, 40.75102 ] } }, -{ "type": "Feature", "properties": { "id": 450097, "name": "Madison Av/E 44 St", "direction": "NE", "lat": 40.754032, "lon": -73.9783, "routes": "BXM10, BXM7, QM21, QM21, BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.9783, 40.754032 ] } }, -{ "type": "Feature", "properties": { "id": 450099, "name": "Madison Av/E 46 St", "direction": "NE", "lat": 40.7558, "lon": -73.97695, "routes": "BXM3, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.97695, 40.7558 ] } }, -{ "type": "Feature", "properties": { "id": 450100, "name": "Madison Av/E 47 St", "direction": "NE", "lat": 40.75588, "lon": -73.976944, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.976944, 40.75588 ] } }, -{ "type": "Feature", "properties": { "id": 450102, "name": "Madison Av/E 51 St", "direction": "NE", "lat": 40.75856, "lon": -73.97495, "routes": "BXM9, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.97495, 40.75856 ] } }, -{ "type": "Feature", "properties": { "id": 450104, "name": "Madison Av/E 52 St", "direction": "NE", "lat": 40.75885, "lon": -73.97471, "routes": "BXM8, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.97471, 40.75885 ] } }, -{ "type": "Feature", "properties": { "id": 450105, "name": "Madison Av/E 53 St", "direction": "NE", "lat": 40.75983, "lon": -73.974014, "routes": "BXM3, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.974014, 40.75983 ] } }, -{ "type": "Feature", "properties": { "id": 450106, "name": "Madison Av/E 54 St", "direction": "NE", "lat": 40.760292, "lon": -73.97372, "routes": "BM3, BM4, BM5, BM2, BM1, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.97372, 40.760292 ] } }, -{ "type": "Feature", "properties": { "id": 450107, "name": "Madison Av/E 59 St", "direction": "NE", "lat": 40.763683, "lon": -73.971245, "routes": "BXM6, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.971245, 40.763683 ] } }, -{ "type": "Feature", "properties": { "id": 450108, "name": "Madison Av/E 58 St", "direction": "NE", "lat": 40.763046, "lon": -73.97171, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.97171, 40.763046 ] } }, -{ "type": "Feature", "properties": { "id": 450109, "name": "Madison Av/E 60 St", "direction": "NE", "lat": 40.764004, "lon": -73.97096, "routes": "BXM8, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.97096, 40.764004 ] } }, -{ "type": "Feature", "properties": { "id": 450110, "name": "Madison Av/E 62 St", "direction": "NE", "lat": 40.76575, "lon": -73.96976, "routes": "BXM3, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.96976, 40.76575 ] } }, -{ "type": "Feature", "properties": { "id": 450111, "name": "Madison Av/E 63 St", "direction": "NE", "lat": 40.766014, "lon": -73.96958, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.96958, 40.766014 ] } }, -{ "type": "Feature", "properties": { "id": 450112, "name": "Madison Av/E 84 St", "direction": "NE", "lat": 40.77939, "lon": -73.959785, "routes": "BXM3, BXM2, BXM4, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.959785, 40.77939 ] } }, -{ "type": "Feature", "properties": { "id": 450119, "name": "5 Av/W 59 St", "direction": "SW", "lat": 40.76423, "lon": -73.973145, "routes": "SIM24, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -73.973145, 40.76423 ] } }, -{ "type": "Feature", "properties": { "id": 450122, "name": "5 Av/W 51 St", "direction": "SW", "lat": 40.759735, "lon": -73.97642, "routes": "SIM10, BXM11, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -73.97642, 40.759735 ] } }, -{ "type": "Feature", "properties": { "id": 450123, "name": "5 Av/W 50 St", "direction": "SW", "lat": 40.75888, "lon": -73.97703, "routes": "M2, M5, M3" }, "geometry": { "type": "Point", "coordinates": [ -73.97703, 40.75888 ] } }, -{ "type": "Feature", "properties": { "id": 450124, "name": "5th Ave / W 48th St", "direction": "SW", "lat": 40.75702, "lon": -73.97843, "routes": "SIM30" }, "geometry": { "type": "Point", "coordinates": [ -73.97843, 40.75702 ] } }, -{ "type": "Feature", "properties": { "id": 450135, "name": "5 Av/W 37 St", "direction": "SW", "lat": 40.75045, "lon": -73.983185, "routes": "SIM24, SIM23" }, "geometry": { "type": "Point", "coordinates": [ -73.983185, 40.75045 ] } }, -{ "type": "Feature", "properties": { "id": 450141, "name": "Main St/10 River Rd", "direction": "SW", "lat": 40.765057, "lon": -73.94701, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94701, 40.765057 ] } }, -{ "type": "Feature", "properties": { "id": 450142, "name": "West Rd/Roosevelt Island Station", "direction": "NE", "lat": 40.759132, "lon": -73.95344, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95344, 40.759132 ] } }, -{ "type": "Feature", "properties": { "id": 450143, "name": "W Main St/Roosevelt Island Tram", "direction": "NE", "lat": 40.757595, "lon": -73.95495, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95495, 40.757595 ] } }, -{ "type": "Feature", "properties": { "id": 450144, "name": "Main St/40 River Rd", "direction": "SW", "lat": 40.765923, "lon": -73.946205, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.946205, 40.765923 ] } }, -{ "type": "Feature", "properties": { "id": 450145, "name": "W Loop Rd/N Loop Rd", "direction": "NE", "lat": 40.756496, "lon": -73.95587, "routes": "Q102, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95587, 40.756496 ] } }, -{ "type": "Feature", "properties": { "id": 450146, "name": "Main St/Post Office", "direction": "NE", "lat": 40.76504, "lon": -73.9468, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.9468, 40.76504 ] } }, -{ "type": "Feature", "properties": { "id": 450147, "name": "Main St/Chapel 543 Main St", "direction": "SW", "lat": 40.761765, "lon": -73.95, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95, 40.761765 ] } }, -{ "type": "Feature", "properties": { "id": 450148, "name": "Main St/River Rd", "direction": "NE", "lat": 40.76595, "lon": -73.94603, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94603, 40.76595 ] } }, -{ "type": "Feature", "properties": { "id": 450149, "name": "E Main St/Roosevelt Island Tram", "direction": "SE", "lat": 40.75732, "lon": -73.95369, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95369, 40.75732 ] } }, -{ "type": "Feature", "properties": { "id": 450150, "name": "Main St/East Rd", "direction": "NW", "lat": 40.768818, "lon": -73.942726, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.942726, 40.768818 ] } }, -{ "type": "Feature", "properties": { "id": 450151, "name": "Main St/Roosevelt Island Station", "direction": "SW", "lat": 40.75847, "lon": -73.95274, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95274, 40.75847 ] } }, -{ "type": "Feature", "properties": { "id": 450152, "name": "West Rd/Coler Memorial Hospital", "direction": "N", "lat": 40.770687, "lon": -73.94269, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94269, 40.770687 ] } }, -{ "type": "Feature", "properties": { "id": 450154, "name": "Main St/East Rd", "direction": "SE", "lat": 40.76873, "lon": -73.942986, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.942986, 40.76873 ] } }, -{ "type": "Feature", "properties": { "id": 450157, "name": "5 Av / W 30 St", "direction": "SW", "lat": 40.74603, "lon": -73.98644, "routes": "BM4, BM2, BM1, BM3" }, "geometry": { "type": "Point", "coordinates": [ -73.98644, 40.74603 ] } }, -{ "type": "Feature", "properties": { "id": 450162, "name": "6 Av /Lispenard St", "direction": "N", "lat": 40.721073, "lon": -74.00516, "routes": "X27, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.00516, 40.721073 ] } }, -{ "type": "Feature", "properties": { "id": 450176, "name": "Church St/Park Pl", "direction": "NE", "lat": 40.71319, "lon": -74.009254, "routes": "BM3, BM4" }, "geometry": { "type": "Point", "coordinates": [ -74.009254, 40.71319 ] } }, -{ "type": "Feature", "properties": { "id": 450180, "name": "Madison Av/E 47 St", "direction": "NE", "lat": 40.75629, "lon": -73.97666, "routes": "SIM4C, SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -73.97666, 40.75629 ] } }, -{ "type": "Feature", "properties": { "id": 450202, "name": "State St / Battery Pl", "direction": "N", "lat": 40.70447, "lon": -74.01415, "routes": "BM3, BM3, BM2, BM1, BM4, BM4, BM4, BM3, BM1, BM1, BM2, BM2" }, "geometry": { "type": "Point", "coordinates": [ -74.01415, 40.70447 ] } }, -{ "type": "Feature", "properties": { "id": 450203, "name": "State St/Battery Pl", "direction": "N", "lat": 40.704388, "lon": -74.014175, "routes": "QM8, QM7, QM7, QM11, QM11, QM25, QM25, QM8" }, "geometry": { "type": "Point", "coordinates": [ -74.014175, 40.704388 ] } }, -{ "type": "Feature", "properties": { "id": 450222, "name": "W 18 St / 10 Av", "direction": "SE", "lat": 40.744324, "lon": -74.005936, "routes": "M14D+, M12" }, "geometry": { "type": "Point", "coordinates": [ -74.005936, 40.744324 ] } }, -{ "type": "Feature", "properties": { "id": 450224, "name": "E 57 St/Madison Av", "direction": "SE", "lat": 40.762287, "lon": -73.97252, "routes": "QM5, QM1, QM6, QM1, QM6, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.97252, 40.762287 ] } }, -{ "type": "Feature", "properties": { "id": 450228, "name": "3 Av/E 33 St", "direction": "NE", "lat": 40.745216, "lon": -73.97841, "routes": "BXM1, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.97841, 40.745216 ] } }, -{ "type": "Feature", "properties": { "id": 450330, "name": "Madison Av/E 51 St", "direction": "NE", "lat": 40.75836, "lon": -73.975075, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.975075, 40.75836 ] } }, -{ "type": "Feature", "properties": { "id": 450331, "name": "Water St/John St", "direction": "SW", "lat": 40.70702, "lon": -74.00498, "routes": "QM25, QM25, QM11, QM11" }, "geometry": { "type": "Point", "coordinates": [ -74.00498, 40.70702 ] } }, -{ "type": "Feature", "properties": { "id": 450338, "name": "E 60 St/2 Av", "direction": "W", "lat": 40.761246, "lon": -73.963715, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.963715, 40.761246 ] } }, -{ "type": "Feature", "properties": { "id": 450351, "name": "Madison Av/E 99 St", "direction": "NE", "lat": 40.78929, "lon": -73.952576, "routes": "BXM11, BXM4, BXM3, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.952576, 40.78929 ] } }, -{ "type": "Feature", "properties": { "id": 450352, "name": "5 Av/W 56 St", "direction": "SW", "lat": 40.76246, "lon": -73.97446, "routes": "BXM18" }, "geometry": { "type": "Point", "coordinates": [ -73.97446, 40.76246 ] } }, -{ "type": "Feature", "properties": { "id": 450356, "name": "Church St/Park Pl", "direction": "NE", "lat": 40.71333, "lon": -74.00913, "routes": "BXM18" }, "geometry": { "type": "Point", "coordinates": [ -74.00913, 40.71333 ] } }, -{ "type": "Feature", "properties": { "id": 450375, "name": "W 37 St/5 Av", "direction": "NW", "lat": 40.75045, "lon": -73.98333, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.98333, 40.75045 ] } }, -{ "type": "Feature", "properties": { "id": 450376, "name": "6 Av/W 56 St", "direction": "NE", "lat": 40.76371, "lon": -73.97747, "routes": "QM12, QM24, QM10, QM10, QM24, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.97747, 40.76371 ] } }, -{ "type": "Feature", "properties": { "id": 450377, "name": "6 Av/W 57 St", "direction": "NE", "lat": 40.76412, "lon": -73.97718, "routes": "QM16, QM17, QM18, QM15, QM15, QM18, QM17, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.97718, 40.76412 ] } }, -{ "type": "Feature", "properties": { "id": 450378, "name": "Trinity Pl/Thames St", "direction": "NE", "lat": 40.708267, "lon": -74.01255, "routes": "QM11, QM11, QM25, QM8, QM8, QM7, QM7, BXM18, QM25" }, "geometry": { "type": "Point", "coordinates": [ -74.01255, 40.708267 ] } }, -{ "type": "Feature", "properties": { "id": 450387, "name": "Church St/Park Pl", "direction": "NE", "lat": 40.713055, "lon": -74.00935, "routes": "BM2, BM1" }, "geometry": { "type": "Point", "coordinates": [ -74.00935, 40.713055 ] } }, -{ "type": "Feature", "properties": { "id": 450391, "name": "Water St / Coenties Slip East", "direction": "W", "lat": 40.703346, "lon": -74.01037, "routes": "BM4, BM2, BM3, BM1, BM3, BM4, BM1, BM2" }, "geometry": { "type": "Point", "coordinates": [ -74.01037, 40.703346 ] } }, -{ "type": "Feature", "properties": { "id": 450392, "name": "6 Av/W 35 St", "direction": "NE", "lat": 40.75076, "lon": -73.98697, "routes": "QM20, QM20, QM2, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.98697, 40.75076 ] } }, -{ "type": "Feature", "properties": { "id": 450397, "name": "3 Av/E 78 St", "direction": "NE", "lat": 40.773678, "lon": -73.95762, "routes": "BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.95762, 40.773678 ] } }, -{ "type": "Feature", "properties": { "id": 450402, "name": "Church St/Fulton St", "direction": "NE", "lat": 40.711727, "lon": -74.01026, "routes": "X28, SIM32, SIM34, SIM33C, SIM1, SIM2, SIM1C, SIM4, SIM4C, SIM3C, SIM4X, SIM15, SIM15, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.01026, 40.711727 ] } }, -{ "type": "Feature", "properties": { "id": 450409, "name": "3 Av/E 120 St", "direction": "NE", "lat": 40.800674, "lon": -73.93794, "routes": "BXM9, BXM8, BXM6, BXM7, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.93794, 40.800674 ] } }, -{ "type": "Feature", "properties": { "id": 450413, "name": "Madison Av/71 St", "direction": "NE", "lat": 40.771023, "lon": -73.96592, "routes": "BXM9, BXM7, BXM10, BXM8, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.96592, 40.771023 ] } }, -{ "type": "Feature", "properties": { "id": 450417, "name": "6 Av/W 38 St", "direction": "NE", "lat": 40.75216, "lon": -73.98587, "routes": "QM18, QM18, QM15, QM16, QM17, QM15, QM17, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.98587, 40.75216 ] } }, -{ "type": "Feature", "properties": { "id": 450419, "name": "Battery Pl /West St", "direction": "E", "lat": 40.704643, "lon": -74.01628, "routes": "BM3, BM2, BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -74.01628, 40.704643 ] } }, -{ "type": "Feature", "properties": { "id": 450420, "name": "Church St / Barclay St", "direction": "NE", "lat": 40.71266, "lon": -74.009636, "routes": "BM1, BM4, BM2, BM3" }, "geometry": { "type": "Point", "coordinates": [ -74.009636, 40.71266 ] } }, -{ "type": "Feature", "properties": { "id": 450434, "name": "3 Av/E 86 St", "direction": "NE", "lat": 40.77924, "lon": -73.95358, "routes": "BXM6, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.95358, 40.77924 ] } }, -{ "type": "Feature", "properties": { "id": 450435, "name": "3 Av/E 86 St", "direction": "NE", "lat": 40.779343, "lon": -73.953514, "routes": "BXM1, BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.953514, 40.779343 ] } }, -{ "type": "Feature", "properties": { "id": 450436, "name": "3 Av/E 87 St", "direction": "NE", "lat": 40.779423, "lon": -73.953445, "routes": "BXM8, BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.953445, 40.779423 ] } }, -{ "type": "Feature", "properties": { "id": 450445, "name": "Queensboro Bridge Exit/E 61 St", "direction": "NE", "lat": 40.761326, "lon": -73.96246, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.96246, 40.761326 ] } }, -{ "type": "Feature", "properties": { "id": 450446, "name": "5 Av/W 85 St", "direction": "SW", "lat": 40.78078, "lon": -73.96108, "routes": "BXM7, BXM8, BXM9, BXM10, BXM11, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.96108, 40.78078 ] } }, -{ "type": "Feature", "properties": { "id": 450451, "name": "2 Av/E 121 St", "direction": "SW", "lat": 40.80038, "lon": -73.935455, "routes": "BXM9, BXM8, BXM7, BXM10, BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.935455, 40.80038 ] } }, -{ "type": "Feature", "properties": { "id": 450453, "name": "6 Av/W 37 St", "direction": "NE", "lat": 40.751377, "lon": -73.98653, "routes": "QM6, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.98653, 40.751377 ] } }, -{ "type": "Feature", "properties": { "id": 450457, "name": "Madison Av/E 29 St", "direction": "NE", "lat": 40.7444, "lon": -73.98531, "routes": "BXM3, BXM4, BXM11, BXM18" }, "geometry": { "type": "Point", "coordinates": [ -73.98531, 40.7444 ] } }, -{ "type": "Feature", "properties": { "id": 450465, "name": "S Loop Rd/W Loop Rd", "direction": "NW", "lat": 40.753414, "lon": -73.95836, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95836, 40.753414 ] } }, -{ "type": "Feature", "properties": { "id": 450492, "name": "3 Av/E 121 St", "direction": "NE", "lat": 40.801025, "lon": -73.93768, "routes": "M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.93768, 40.801025 ] } }, -{ "type": "Feature", "properties": { "id": 450543, "name": "Madison Av/E 80 St", "direction": "NE", "lat": 40.77709, "lon": -73.96148, "routes": "BXM2, BXM3, BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.96148, 40.77709 ] } }, -{ "type": "Feature", "properties": { "id": 450552, "name": "E 34 St/Park Av", "direction": "NW", "lat": 40.74753, "lon": -73.982056, "routes": "BM5, QM2, QM5, QM4, QM20, QM3, QM10, QM12, QM12, QM6, QM1, QM24, QM24, QM10" }, "geometry": { "type": "Point", "coordinates": [ -73.982056, 40.74753 ] } }, -{ "type": "Feature", "properties": { "id": 450553, "name": "E 34 St/Park Av", "direction": "NW", "lat": 40.747646, "lon": -73.98234, "routes": "QM15, QM16, QM17, QM18, QM17, QM16, QM15, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.98234, 40.747646 ] } }, -{ "type": "Feature", "properties": { "id": 500002, "name": "165 St/Hillside Av", "direction": "NW", "lat": 40.709145, "lon": -73.79716, "routes": "Q1, Q3, Q36, Q2, Q77, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79716, 40.709145 ] } }, -{ "type": "Feature", "properties": { "id": 500003, "name": "Hillside Av/169 St", "direction": "E", "lat": 40.710594, "lon": -73.79309, "routes": "Q3, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.79309, 40.710594 ] } }, -{ "type": "Feature", "properties": { "id": 500004, "name": "Hillside Av/171 St", "direction": "E", "lat": 40.71144, "lon": -73.790886, "routes": "Q43, Q3, Q2, Q1, Q36, Q17, Q77, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.790886, 40.71144 ] } }, -{ "type": "Feature", "properties": { "id": 500007, "name": "Hillside Av/180 St", "direction": "E", "lat": 40.71305, "lon": -73.78191, "routes": "X68, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.78191, 40.71305 ] } }, -{ "type": "Feature", "properties": { "id": 500008, "name": "Hillside Av/182 Pl", "direction": "E", "lat": 40.713573, "lon": -73.77985, "routes": "Q36, Q76, Q1, Q2, Q77, Q3, Q43, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77985, 40.713573 ] } }, -{ "type": "Feature", "properties": { "id": 500009, "name": "Hillside Av/184 St", "direction": "E", "lat": 40.714085, "lon": -73.77752, "routes": "Q36, Q77, Q76, Q2, Q43, Q3, Q17, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.77752, 40.714085 ] } }, -{ "type": "Feature", "properties": { "id": 500010, "name": "Hillside Av/187 St", "direction": "E", "lat": 40.71448, "lon": -73.7759, "routes": "Q1, Q76, Q2, Q43, Q3, Q17, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.7759, 40.71448 ] } }, -{ "type": "Feature", "properties": { "id": 500011, "name": "Hillside Av/189 St", "direction": "E", "lat": 40.71531, "lon": -73.77283, "routes": "Q43, Q1, Q76, Q36, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.77283, 40.71531 ] } }, -{ "type": "Feature", "properties": { "id": 500012, "name": "Hillside Av/191 St", "direction": "E", "lat": 40.71603, "lon": -73.77071, "routes": "Q43, Q77, Q76, Q36, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.77071, 40.71603 ] } }, -{ "type": "Feature", "properties": { "id": 500013, "name": "Hillside Av/193 St", "direction": "E", "lat": 40.716736, "lon": -73.76868, "routes": "Q36, Q77, Q1, Q43, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.76868, 40.716736 ] } }, -{ "type": "Feature", "properties": { "id": 500014, "name": "Hillside Av/195 Pl", "direction": "NE", "lat": 40.71736, "lon": -73.76701, "routes": "Q1, Q77, Q43, Q36, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.76701, 40.71736 ] } }, -{ "type": "Feature", "properties": { "id": 500017, "name": "Hillside Av/202 St", "direction": "NE", "lat": 40.719902, "lon": -73.76205, "routes": "Q77, Q36, Q76, Q1, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.76205, 40.719902 ] } }, -{ "type": "Feature", "properties": { "id": 500018, "name": "Hillside Av/205 St", "direction": "NE", "lat": 40.720924, "lon": -73.75954, "routes": "Q77, X68, Q43, Q36, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.75954, 40.720924 ] } }, -{ "type": "Feature", "properties": { "id": 500019, "name": "Hillside Av/207 St", "direction": "NE", "lat": 40.721725, "lon": -73.7583, "routes": "Q43, Q1, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7583, 40.721725 ] } }, -{ "type": "Feature", "properties": { "id": 500022, "name": "Hillside Av/212 St", "direction": "NE", "lat": 40.724846, "lon": -73.7537, "routes": "Q1, Q43, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7537, 40.724846 ] } }, -{ "type": "Feature", "properties": { "id": 500023, "name": "Hillside Av/214 St", "direction": "NE", "lat": 40.726135, "lon": -73.75131, "routes": "Q43, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.75131, 40.726135 ] } }, -{ "type": "Feature", "properties": { "id": 500024, "name": "Hillside Av/215 Pl", "direction": "NE", "lat": 40.727253, "lon": -73.74896, "routes": "Q1, Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.74896, 40.727253 ] } }, -{ "type": "Feature", "properties": { "id": 500025, "name": "Hillside Av/218 St", "direction": "NE", "lat": 40.72834, "lon": -73.7469, "routes": "Q43, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.7469, 40.72834 ] } }, -{ "type": "Feature", "properties": { "id": 500026, "name": "Hillside Av/Springfield Blvd", "direction": "NE", "lat": 40.729614, "lon": -73.744606, "routes": "Q43, Q1, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.744606, 40.729614 ] } }, -{ "type": "Feature", "properties": { "id": 500027, "name": "Springfield Blvd/89 Av", "direction": "SE", "lat": 40.729076, "lon": -73.74403, "routes": "Q1, Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.74403, 40.729076 ] } }, -{ "type": "Feature", "properties": { "id": 500028, "name": "Springfield Blvd/90 Av", "direction": "SE", "lat": 40.726543, "lon": -73.74134, "routes": "Q1, Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74134, 40.726543 ] } }, -{ "type": "Feature", "properties": { "id": 500029, "name": "Springfield Blvd/91 Av", "direction": "SE", "lat": 40.725407, "lon": -73.740135, "routes": "Q1, Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.740135, 40.725407 ] } }, -{ "type": "Feature", "properties": { "id": 500030, "name": "Springfield Blvd/92 Av", "direction": "SE", "lat": 40.724293, "lon": -73.73895, "routes": "Q88, Q1, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73895, 40.724293 ] } }, -{ "type": "Feature", "properties": { "id": 500031, "name": "Springfield Blvd/93 Av", "direction": "SE", "lat": 40.722126, "lon": -73.73687, "routes": "Q88, Q1, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73687, 40.722126 ] } }, -{ "type": "Feature", "properties": { "id": 500032, "name": "Springfield Blvd/94 Av", "direction": "SE", "lat": 40.720905, "lon": -73.73629, "routes": "Q27, Q1, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.73629, 40.720905 ] } }, -{ "type": "Feature", "properties": { "id": 500033, "name": "Springfield Blvd/94 Dr", "direction": "S", "lat": 40.719524, "lon": -73.73567, "routes": "Q27, Q88, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73567, 40.719524 ] } }, -{ "type": "Feature", "properties": { "id": 500034, "name": "Springfield Blvd/Jamaica Av", "direction": "S", "lat": 40.718643, "lon": -73.735374, "routes": "Q27, Q88, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.735374, 40.718643 ] } }, -{ "type": "Feature", "properties": { "id": 500035, "name": "Amboy Ln/Springfield Blvd", "direction": "E", "lat": 40.717834, "lon": -73.73563, "routes": "Q1, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.73563, 40.717834 ] } }, -{ "type": "Feature", "properties": { "id": 500036, "name": "Braddock Av/89 Av", "direction": "E", "lat": 40.729877, "lon": -73.74272, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.74272, 40.729877 ] } }, -{ "type": "Feature", "properties": { "id": 500037, "name": "Braddock Av/221 Pl", "direction": "E", "lat": 40.729286, "lon": -73.74007, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.74007, 40.729286 ] } }, -{ "type": "Feature", "properties": { "id": 500038, "name": "Braddock Av/90 Av", "direction": "E", "lat": 40.728634, "lon": -73.737274, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.737274, 40.728634 ] } }, -{ "type": "Feature", "properties": { "id": 500039, "name": "Braddock Av/Winchester Blvd", "direction": "E", "lat": 40.72826, "lon": -73.7356, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.7356, 40.72826 ] } }, -{ "type": "Feature", "properties": { "id": 500040, "name": "Braddock Av/222 St", "direction": "E", "lat": 40.72815, "lon": -73.73512, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73512, 40.72815 ] } }, -{ "type": "Feature", "properties": { "id": 500041, "name": "Braddock Av/224 St", "direction": "E", "lat": 40.727795, "lon": -73.73351, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73351, 40.727795 ] } }, -{ "type": "Feature", "properties": { "id": 500042, "name": "Braddock Av/92 Av", "direction": "E", "lat": 40.727425, "lon": -73.73185, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73185, 40.727425 ] } }, -{ "type": "Feature", "properties": { "id": 500043, "name": "Braddock Av/92 Rd", "direction": "E", "lat": 40.726963, "lon": -73.73048, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73048, 40.726963 ] } }, -{ "type": "Feature", "properties": { "id": 500044, "name": "Braddock Av/240 St", "direction": "E", "lat": 40.726437, "lon": -73.72863, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.72863, 40.726437 ] } }, -{ "type": "Feature", "properties": { "id": 500045, "name": "Braddock Av/242 St", "direction": "E", "lat": 40.72596, "lon": -73.726036, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.726036, 40.72596 ] } }, -{ "type": "Feature", "properties": { "id": 500048, "name": "Springfield Blvd/Jamaica Av", "direction": "N", "lat": 40.718987, "lon": -73.73528, "routes": "Q27, Q1, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.73528, 40.718987 ] } }, -{ "type": "Feature", "properties": { "id": 500049, "name": "Springfield Blvd/94 Dr", "direction": "NW", "lat": 40.72018, "lon": -73.73574, "routes": "Q88, Q27, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73574, 40.72018 ] } }, -{ "type": "Feature", "properties": { "id": 500050, "name": "Springfield Blvd/94 Av", "direction": "NW", "lat": 40.721428, "lon": -73.73631, "routes": "Q27, Q1, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.73631, 40.721428 ] } }, -{ "type": "Feature", "properties": { "id": 500051, "name": "Springfield Blvd/93 Av", "direction": "NW", "lat": 40.72277, "lon": -73.73706, "routes": "Q88, Q27, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73706, 40.72277 ] } }, -{ "type": "Feature", "properties": { "id": 500052, "name": "Springfield Blvd/92 Av", "direction": "NW", "lat": 40.724895, "lon": -73.73932, "routes": "Q1, Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73932, 40.724895 ] } }, -{ "type": "Feature", "properties": { "id": 500053, "name": "Springfield Blvd/91 Av", "direction": "NW", "lat": 40.72598, "lon": -73.74052, "routes": "Q88, Q1, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74052, 40.72598 ] } }, -{ "type": "Feature", "properties": { "id": 500054, "name": "Springfield Blvd/90 Av", "direction": "NW", "lat": 40.727097, "lon": -73.74167, "routes": "Q88, Q27, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.74167, 40.727097 ] } }, -{ "type": "Feature", "properties": { "id": 500055, "name": "Springfield Blvd/89 Av", "direction": "NW", "lat": 40.729317, "lon": -73.74404, "routes": "Q27, Q88, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.74404, 40.729317 ] } }, -{ "type": "Feature", "properties": { "id": 500056, "name": "Braddock Av/Cross Island Pkwy", "direction": "NW", "lat": 40.72545, "lon": -73.72421, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.72421, 40.72545 ] } }, -{ "type": "Feature", "properties": { "id": 500057, "name": "Braddock Av/242 St", "direction": "W", "lat": 40.726387, "lon": -73.72675, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.72675, 40.726387 ] } }, -{ "type": "Feature", "properties": { "id": 500058, "name": "Braddock Av /240 St", "direction": "W", "lat": 40.72665, "lon": -73.7286, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.7286, 40.72665 ] } }, -{ "type": "Feature", "properties": { "id": 500059, "name": "Braddock Av/238 St", "direction": "W", "lat": 40.727016, "lon": -73.72988, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.72988, 40.727016 ] } }, -{ "type": "Feature", "properties": { "id": 500061, "name": "Braddock Av/Lyman St", "direction": "W", "lat": 40.72791, "lon": -73.73307, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73307, 40.72791 ] } }, -{ "type": "Feature", "properties": { "id": 500062, "name": "Braddock Av/Ransom St", "direction": "W", "lat": 40.72853, "lon": -73.735794, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.735794, 40.72853 ] } }, -{ "type": "Feature", "properties": { "id": 500063, "name": "Braddock Av/Winchester Blvd", "direction": "W", "lat": 40.728935, "lon": -73.73761, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73761, 40.728935 ] } }, -{ "type": "Feature", "properties": { "id": 500064, "name": "Braddock Av/Billings St", "direction": "W", "lat": 40.72923, "lon": -73.73891, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.73891, 40.72923 ] } }, -{ "type": "Feature", "properties": { "id": 500065, "name": "Braddock Av/221 Pl", "direction": "W", "lat": 40.73, "lon": -73.7422, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.7422, 40.73 ] } }, -{ "type": "Feature", "properties": { "id": 500066, "name": "Hillside Av/Springfield Blvd", "direction": "SW", "lat": 40.729614, "lon": -73.74533, "routes": "X68, Q1, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.74533, 40.729614 ] } }, -{ "type": "Feature", "properties": { "id": 500069, "name": "Hillside Av/215 Pl", "direction": "SW", "lat": 40.727074, "lon": -73.74959, "routes": "X68, Q43, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.74959, 40.727074 ] } }, -{ "type": "Feature", "properties": { "id": 500070, "name": "Hillside Av/214 St", "direction": "SW", "lat": 40.725876, "lon": -73.75214, "routes": "Q43, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.75214, 40.725876 ] } }, -{ "type": "Feature", "properties": { "id": 500071, "name": "Hillside Av/212 St", "direction": "SW", "lat": 40.72453, "lon": -73.7545, "routes": "Q43, Q1, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7545, 40.72453 ] } }, -{ "type": "Feature", "properties": { "id": 500072, "name": "Hillside Av/211 St", "direction": "SW", "lat": 40.72344, "lon": -73.756134, "routes": "Q36, Q43, X68, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.756134, 40.72344 ] } }, -{ "type": "Feature", "properties": { "id": 500073, "name": "Hillside Av/209 St", "direction": "SW", "lat": 40.7224, "lon": -73.757614, "routes": "Q1, Q36, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.757614, 40.7224 ] } }, -{ "type": "Feature", "properties": { "id": 500074, "name": "Hillside Av/Francis Lewis Blvd", "direction": "W", "lat": 40.72073, "lon": -73.76026, "routes": "Q36, Q1, X68, Q43, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.76026, 40.72073 ] } }, -{ "type": "Feature", "properties": { "id": 500078, "name": "Hillside Av/193 St", "direction": "W", "lat": 40.716564, "lon": -73.76961, "routes": "Q36, Q1, Q76, Q43, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.76961, 40.716564 ] } }, -{ "type": "Feature", "properties": { "id": 500079, "name": "Hillside Av/191 St", "direction": "W", "lat": 40.71588, "lon": -73.7715, "routes": "Q76, Q36, Q1, Q77, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.7715, 40.71588 ] } }, -{ "type": "Feature", "properties": { "id": 500080, "name": "Hillside Av/188 St", "direction": "W", "lat": 40.715218, "lon": -73.773445, "routes": "Q36, Q76, Q43, Q1, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.773445, 40.715218 ] } }, -{ "type": "Feature", "properties": { "id": 500081, "name": "Hillside Av/187 St", "direction": "W", "lat": 40.714767, "lon": -73.77527, "routes": "Q76, Q36, Q17, Q3, X68, Q2, Q1, Q43, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.77527, 40.714767 ] } }, -{ "type": "Feature", "properties": { "id": 500082, "name": "Hillside Av/Dalny Rd", "direction": "W", "lat": 40.71405, "lon": -73.778435, "routes": "Q1, Q76, Q43, Q77, Q17, Q2, Q3, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.778435, 40.71405 ] } }, -{ "type": "Feature", "properties": { "id": 500087, "name": "Hillside Av/Homelawn St", "direction": "W", "lat": 40.71081, "lon": -73.79291, "routes": "Q36, Q77, Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79291, 40.71081 ] } }, -{ "type": "Feature", "properties": { "id": 500095, "name": "Hillside Av/179 St", "direction": "E", "lat": 40.71253, "lon": -73.78408, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.78408, 40.71253 ] } }, -{ "type": "Feature", "properties": { "id": 500099, "name": "187 Pl/90 Av", "direction": "SE", "lat": 40.712532, "lon": -73.77292, "routes": "Q3, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.77292, 40.712532 ] } }, -{ "type": "Feature", "properties": { "id": 500100, "name": "187 Pl/Jamaica Av", "direction": "S", "lat": 40.71044, "lon": -73.77184, "routes": "Q3, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.77184, 40.71044 ] } }, -{ "type": "Feature", "properties": { "id": 500101, "name": "Hollis Av/190 St", "direction": "E", "lat": 40.709793, "lon": -73.769104, "routes": "Q2, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.769104, 40.709793 ] } }, -{ "type": "Feature", "properties": { "id": 500102, "name": "Hollis Av/191 St", "direction": "E", "lat": 40.70936, "lon": -73.76733, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.76733, 40.70936 ] } }, -{ "type": "Feature", "properties": { "id": 500103, "name": "Hollis Av/102 Av", "direction": "SE", "lat": 40.708504, "lon": -73.765945, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.765945, 40.708504 ] } }, -{ "type": "Feature", "properties": { "id": 500104, "name": "Hollis Av/104 Av", "direction": "SE", "lat": 40.70734, "lon": -73.76473, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.76473, 40.70734 ] } }, -{ "type": "Feature", "properties": { "id": 500105, "name": "Hollis Av/109 Av", "direction": "E", "lat": 40.706604, "lon": -73.7622, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.7622, 40.706604 ] } }, -{ "type": "Feature", "properties": { "id": 500109, "name": "Hollis Av /204 St", "direction": "E", "lat": 40.706802, "lon": -73.75332, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.75332, 40.706802 ] } }, -{ "type": "Feature", "properties": { "id": 500110, "name": "Hollis Av/Francis Lewis Blvd", "direction": "E", "lat": 40.707355, "lon": -73.75075, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.75075, 40.707355 ] } }, -{ "type": "Feature", "properties": { "id": 500111, "name": "Hollis Av/208 St", "direction": "NE", "lat": 40.707783, "lon": -73.74959, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74959, 40.707783 ] } }, -{ "type": "Feature", "properties": { "id": 500112, "name": "Hollis Av/209 Pl", "direction": "E", "lat": 40.708385, "lon": -73.74811, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74811, 40.708385 ] } }, -{ "type": "Feature", "properties": { "id": 500113, "name": "Hollis Av/212 St", "direction": "E", "lat": 40.709396, "lon": -73.74592, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74592, 40.709396 ] } }, -{ "type": "Feature", "properties": { "id": 500114, "name": "Hollis Av/214 St", "direction": "E", "lat": 40.70978, "lon": -73.74405, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74405, 40.70978 ] } }, -{ "type": "Feature", "properties": { "id": 500115, "name": "Hollis Av/216 St", "direction": "E", "lat": 40.71018, "lon": -73.74223, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74223, 40.71018 ] } }, -{ "type": "Feature", "properties": { "id": 500116, "name": "Hollis Av/217 Pl", "direction": "E", "lat": 40.711033, "lon": -73.73946, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.73946, 40.711033 ] } }, -{ "type": "Feature", "properties": { "id": 500118, "name": "Hollis Av/Springfield Blvd", "direction": "E", "lat": 40.71189, "lon": -73.73666, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.73666, 40.71189 ] } }, -{ "type": "Feature", "properties": { "id": 500119, "name": "Springfield Blvd/Hempstead Av", "direction": "NE", "lat": 40.71316, "lon": -73.73576, "routes": "Q83, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73576, 40.71316 ] } }, -{ "type": "Feature", "properties": { "id": 500120, "name": "Hempstead Av/220 St", "direction": "E", "lat": 40.712673, "lon": -73.733696, "routes": "Q110, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.733696, 40.712673 ] } }, -{ "type": "Feature", "properties": { "id": 500121, "name": "Hempstead Av/223 St", "direction": "E", "lat": 40.71211, "lon": -73.73139, "routes": "Q2, Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.73139, 40.71211 ] } }, -{ "type": "Feature", "properties": { "id": 500122, "name": "Hempstead Av /225 St", "direction": "E", "lat": 40.711422, "lon": -73.729164, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.729164, 40.711422 ] } }, -{ "type": "Feature", "properties": { "id": 500123, "name": "Hempstead Av/225 St", "direction": "W", "lat": 40.711655, "lon": -73.72933, "routes": "Q110, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.72933, 40.711655 ] } }, -{ "type": "Feature", "properties": { "id": 500124, "name": "Hempstead Av/224 St", "direction": "W", "lat": 40.71193, "lon": -73.730385, "routes": "Q2, Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.730385, 40.71193 ] } }, -{ "type": "Feature", "properties": { "id": 500125, "name": "Hempstead Av/221 St", "direction": "W", "lat": 40.712704, "lon": -73.73327, "routes": "Q110, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.73327, 40.712704 ] } }, -{ "type": "Feature", "properties": { "id": 500126, "name": "Springfield Blvd/Hempstead Av", "direction": "SW", "lat": 40.71296, "lon": -73.73607, "routes": "Q83, Q2, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73607, 40.71296 ] } }, -{ "type": "Feature", "properties": { "id": 500127, "name": "Springfield Blvd/Hollis Av", "direction": "SW", "lat": 40.712055, "lon": -73.73656, "routes": "Q83, Q2, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73656, 40.712055 ] } }, -{ "type": "Feature", "properties": { "id": 500128, "name": "Hollis Av/217 Ln", "direction": "W", "lat": 40.71118, "lon": -73.7393, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.7393, 40.71118 ] } }, -{ "type": "Feature", "properties": { "id": 500130, "name": "Hollis Av/215 St", "direction": "W", "lat": 40.71006, "lon": -73.743225, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.743225, 40.71006 ] } }, -{ "type": "Feature", "properties": { "id": 500131, "name": "Hollis Av/212 Pl", "direction": "W", "lat": 40.709675, "lon": -73.745094, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.745094, 40.709675 ] } }, -{ "type": "Feature", "properties": { "id": 500132, "name": "Hollis Av/211 St", "direction": "SW", "lat": 40.70897, "lon": -73.74722, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74722, 40.70897 ] } }, -{ "type": "Feature", "properties": { "id": 500133, "name": "Hollis Av/207 St", "direction": "SW", "lat": 40.70764, "lon": -73.750206, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.750206, 40.70764 ] } }, -{ "type": "Feature", "properties": { "id": 500134, "name": "Hollis Av/Francis Lewis Blvd", "direction": "W", "lat": 40.707268, "lon": -73.75172, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.75172, 40.707268 ] } }, -{ "type": "Feature", "properties": { "id": 500135, "name": "Hollis Av/205 St", "direction": "W", "lat": 40.706894, "lon": -73.75345, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.75345, 40.706894 ] } }, -{ "type": "Feature", "properties": { "id": 500136, "name": "Hollis Av/203 St", "direction": "W", "lat": 40.706493, "lon": -73.755264, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.755264, 40.706493 ] } }, -{ "type": "Feature", "properties": { "id": 500137, "name": "Hollis Av/201 St", "direction": "W", "lat": 40.706238, "lon": -73.757034, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.757034, 40.706238 ] } }, -{ "type": "Feature", "properties": { "id": 500138, "name": "Hollis Av/199 St", "direction": "W", "lat": 40.70641, "lon": -73.75913, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.75913, 40.70641 ] } }, -{ "type": "Feature", "properties": { "id": 500139, "name": "Hollis Av/197 St", "direction": "W", "lat": 40.706573, "lon": -73.76065, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.76065, 40.706573 ] } }, -{ "type": "Feature", "properties": { "id": 500140, "name": "Hollis Av/195 St", "direction": "W", "lat": 40.706818, "lon": -73.76272, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.76272, 40.706818 ] } }, -{ "type": "Feature", "properties": { "id": 500141, "name": "Hollis Av/104 Av", "direction": "NW", "lat": 40.70729, "lon": -73.76449, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.76449, 40.70729 ] } }, -{ "type": "Feature", "properties": { "id": 500142, "name": "Hollis Av/100 Av", "direction": "NW", "lat": 40.708847, "lon": -73.76616, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.76616, 40.708847 ] } }, -{ "type": "Feature", "properties": { "id": 500143, "name": "Hollis Av/99 Av", "direction": "W", "lat": 40.709587, "lon": -73.76767, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.76767, 40.709587 ] } }, -{ "type": "Feature", "properties": { "id": 500145, "name": "188 St/Jamaica Av", "direction": "NW", "lat": 40.71074, "lon": -73.77048, "routes": "Q3, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.77048, 40.71074 ] } }, -{ "type": "Feature", "properties": { "id": 500146, "name": "188 St/90 Av", "direction": "NW", "lat": 40.712704, "lon": -73.77189, "routes": "Q2, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.77189, 40.712704 ] } }, -{ "type": "Feature", "properties": { "id": 500147, "name": "188 St/89 Av", "direction": "NW", "lat": 40.713833, "lon": -73.772644, "routes": "Q2, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.772644, 40.713833 ] } }, -{ "type": "Feature", "properties": { "id": 500157, "name": "Farmers Blvd/Rockaway Blvd", "direction": "E", "lat": 40.65984, "lon": -73.77325, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.77325, 40.65984 ] } }, -{ "type": "Feature", "properties": { "id": 500158, "name": "Farmers Blvd/147 Av", "direction": "NE", "lat": 40.66154, "lon": -73.77057, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.77057, 40.66154 ] } }, -{ "type": "Feature", "properties": { "id": 500159, "name": "Farmers Blvd/176 St", "direction": "NE", "lat": 40.66237, "lon": -73.769806, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.769806, 40.66237 ] } }, -{ "type": "Feature", "properties": { "id": 500161, "name": "Farmers Blvd/145 Rd", "direction": "NE", "lat": 40.665916, "lon": -73.76739, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76739, 40.665916 ] } }, -{ "type": "Feature", "properties": { "id": 500163, "name": "Farmers Blvd/144 Av", "direction": "NE", "lat": 40.668396, "lon": -73.766205, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.766205, 40.668396 ] } }, -{ "type": "Feature", "properties": { "id": 500164, "name": "Farmers Blvd/142 Av", "direction": "NE", "lat": 40.670555, "lon": -73.765, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.765, 40.670555 ] } }, -{ "type": "Feature", "properties": { "id": 500165, "name": "Farmers Blvd/140 Av", "direction": "NE", "lat": 40.67118, "lon": -73.76464, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76464, 40.67118 ] } }, -{ "type": "Feature", "properties": { "id": 500166, "name": "Farmers Blvd/182 St", "direction": "N", "lat": 40.673157, "lon": -73.763855, "routes": "Q3, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.763855, 40.673157 ] } }, -{ "type": "Feature", "properties": { "id": 500167, "name": "Farmers Blvd/Westgate St", "direction": "N", "lat": 40.67468, "lon": -73.763626, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.763626, 40.67468 ] } }, -{ "type": "Feature", "properties": { "id": 500168, "name": "Farmers Blvd/134 Av", "direction": "N", "lat": 40.676186, "lon": -73.76344, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76344, 40.676186 ] } }, -{ "type": "Feature", "properties": { "id": 500169, "name": "Farmers Blvd/Bennett Ct", "direction": "NE", "lat": 40.678497, "lon": -73.76207, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76207, 40.678497 ] } }, -{ "type": "Feature", "properties": { "id": 500170, "name": "Farmers Blvd/Merrick Blvd", "direction": "N", "lat": 40.68028, "lon": -73.76132, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76132, 40.68028 ] } }, -{ "type": "Feature", "properties": { "id": 500171, "name": "Farmers Blvd/122 Av", "direction": "N", "lat": 40.683712, "lon": -73.76037, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76037, 40.683712 ] } }, -{ "type": "Feature", "properties": { "id": 500182, "name": "Farmers Blvd/112 Av", "direction": "NW", "lat": 40.700813, "lon": -73.76425, "routes": "Q3, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76425, 40.700813 ] } }, -{ "type": "Feature", "properties": { "id": 500183, "name": "Farmers Blvd/111 Av", "direction": "NW", "lat": 40.701992, "lon": -73.76563, "routes": "Q3, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76563, 40.701992 ] } }, -{ "type": "Feature", "properties": { "id": 500184, "name": "Farmers Blvd/109 Av", "direction": "N", "lat": 40.703712, "lon": -73.76663, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76663, 40.703712 ] } }, -{ "type": "Feature", "properties": { "id": 500187, "name": "Farmers Blvd/Hollis Av", "direction": "N", "lat": 40.709362, "lon": -73.76811, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76811, 40.709362 ] } }, -{ "type": "Feature", "properties": { "id": 500197, "name": "Hillside Av/Edgerton Blvd", "direction": "W", "lat": 40.712223, "lon": -73.7858, "routes": "Q43, Q77, Q76, Q1, Q2, Q3, Q36, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.7858, 40.712223 ] } }, -{ "type": "Feature", "properties": { "id": 500209, "name": "Hillside Av/178 St", "direction": "E", "lat": 40.712395, "lon": -73.78455, "routes": "Q76, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.78455, 40.712395 ] } }, -{ "type": "Feature", "properties": { "id": 500216, "name": "Farmers Blvd/Henderson Av", "direction": "S", "lat": 40.708473, "lon": -73.768, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.768, 40.708473 ] } }, -{ "type": "Feature", "properties": { "id": 500220, "name": "Farmers Blvd/Jordan Av", "direction": "SE", "lat": 40.701694, "lon": -73.765495, "routes": "Q3, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.765495, 40.701694 ] } }, -{ "type": "Feature", "properties": { "id": 500221, "name": "Farmers Blvd/Keeseville Av", "direction": "SE", "lat": 40.700516, "lon": -73.76414, "routes": "Q3, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76414, 40.700516 ] } }, -{ "type": "Feature", "properties": { "id": 500222, "name": "Farmers Blvd/113 Av", "direction": "SE", "lat": 40.699234, "lon": -73.76302, "routes": "Q3, X64, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76302, 40.699234 ] } }, -{ "type": "Feature", "properties": { "id": 500230, "name": "Liberty Av/Remington St", "direction": "E", "lat": 40.692207, "lon": -73.8095, "routes": "X64" }, "geometry": { "type": "Point", "coordinates": [ -73.8095, 40.692207 ] } }, -{ "type": "Feature", "properties": { "id": 500231, "name": "Farmers Blvd/121 Av", "direction": "S", "lat": 40.685154, "lon": -73.76084, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76084, 40.685154 ] } }, -{ "type": "Feature", "properties": { "id": 500235, "name": "Farmers Blvd/132 Av", "direction": "SW", "lat": 40.67803, "lon": -73.76263, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76263, 40.67803 ] } }, -{ "type": "Feature", "properties": { "id": 500236, "name": "Farmers Blvd/133 Rd", "direction": "S", "lat": 40.676426, "lon": -73.763504, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.763504, 40.676426 ] } }, -{ "type": "Feature", "properties": { "id": 500237, "name": "Farmers Blvd/Westgate St", "direction": "S", "lat": 40.67442, "lon": -73.763794, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.763794, 40.67442 ] } }, -{ "type": "Feature", "properties": { "id": 500238, "name": "Farmers Blvd/138 Av", "direction": "S", "lat": 40.672913, "lon": -73.76413, "routes": "Q3, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76413, 40.672913 ] } }, -{ "type": "Feature", "properties": { "id": 500239, "name": "Farmers Blvd/140 Av", "direction": "SW", "lat": 40.671154, "lon": -73.76484, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76484, 40.671154 ] } }, -{ "type": "Feature", "properties": { "id": 500241, "name": "Farmers Blvd/143 Rd", "direction": "SW", "lat": 40.668873, "lon": -73.76617, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76617, 40.668873 ] } }, -{ "type": "Feature", "properties": { "id": 500242, "name": "Farmers Blvd/144 Rd", "direction": "SW", "lat": 40.667576, "lon": -73.7668, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.7668, 40.667576 ] } }, -{ "type": "Feature", "properties": { "id": 500243, "name": "Farmers Blvd/145 Rd", "direction": "SW", "lat": 40.664993, "lon": -73.76809, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76809, 40.664993 ] } }, -{ "type": "Feature", "properties": { "id": 500244, "name": "Farmers Blvd/177 Pl", "direction": "SW", "lat": 40.663574, "lon": -73.76896, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76896, 40.663574 ] } }, -{ "type": "Feature", "properties": { "id": 500245, "name": "Farmers Blvd/177 St", "direction": "SW", "lat": 40.662624, "lon": -73.76983, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76983, 40.662624 ] } }, -{ "type": "Feature", "properties": { "id": 500246, "name": "Farmers Blvd/175 St", "direction": "SW", "lat": 40.661087, "lon": -73.77103, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.77103, 40.661087 ] } }, -{ "type": "Feature", "properties": { "id": 500247, "name": "Farmers Blvd/Rockaway Blvd", "direction": "W", "lat": 40.659805, "lon": -73.773674, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.773674, 40.659805 ] } }, -{ "type": "Feature", "properties": { "id": 500249, "name": "Hillside Av/Parsons Blvd", "direction": "E", "lat": 40.707596, "lon": -73.802925, "routes": "Q43, Q113, Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.802925, 40.707596 ] } }, -{ "type": "Feature", "properties": { "id": 500251, "name": "Hillside Av/163 St", "direction": "E", "lat": 40.708576, "lon": -73.799385, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.799385, 40.708576 ] } }, -{ "type": "Feature", "properties": { "id": 500252, "name": "Hillside Av/165 St", "direction": "E", "lat": 40.70915, "lon": -73.79744, "routes": "Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.79744, 40.70915 ] } }, -{ "type": "Feature", "properties": { "id": 500256, "name": "Liberty Av/168 Pl", "direction": "NE", "lat": 40.702675, "lon": -73.790146, "routes": "X64, Q42, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.790146, 40.702675 ] } }, -{ "type": "Feature", "properties": { "id": 500257, "name": "Liberty Av/170 St", "direction": "E", "lat": 40.703354, "lon": -73.788445, "routes": "Q83, Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.788445, 40.703354 ] } }, -{ "type": "Feature", "properties": { "id": 500258, "name": "Liberty Av/173 St", "direction": "E", "lat": 40.704456, "lon": -73.78504, "routes": "Q42, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.78504, 40.704456 ] } }, -{ "type": "Feature", "properties": { "id": 500259, "name": "Liberty Av/177 St", "direction": "E", "lat": 40.70534, "lon": -73.78266, "routes": "Q42, Q83, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.78266, 40.70534 ] } }, -{ "type": "Feature", "properties": { "id": 500264, "name": "Liberty Av/Camden Av", "direction": "E", "lat": 40.70424, "lon": -73.77055, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.77055, 40.70424 ] } }, -{ "type": "Feature", "properties": { "id": 500265, "name": "Liberty Av/Elmira Av", "direction": "E", "lat": 40.70371, "lon": -73.76852, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76852, 40.70371 ] } }, -{ "type": "Feature", "properties": { "id": 500266, "name": "Liberty Av/Hilburn Av", "direction": "SE", "lat": 40.7032, "lon": -73.76716, "routes": "Q83, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.76716, 40.7032 ] } }, -{ "type": "Feature", "properties": { "id": 500271, "name": "Murdock Av/194 St", "direction": "E", "lat": 40.698555, "lon": -73.76006, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76006, 40.698555 ] } }, -{ "type": "Feature", "properties": { "id": 500272, "name": "Murdock Av/196 St", "direction": "E", "lat": 40.699135, "lon": -73.75783, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.75783, 40.699135 ] } }, -{ "type": "Feature", "properties": { "id": 500273, "name": "Murdock Av/198 St", "direction": "E", "lat": 40.699574, "lon": -73.75606, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.75606, 40.699574 ] } }, -{ "type": "Feature", "properties": { "id": 500280, "name": "Murdock Av/212 St", "direction": "E", "lat": 40.70271, "lon": -73.74397, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74397, 40.70271 ] } }, -{ "type": "Feature", "properties": { "id": 500281, "name": "Murdock Av/Springfield Blvd", "direction": "E", "lat": 40.703423, "lon": -73.7409, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.7409, 40.703423 ] } }, -{ "type": "Feature", "properties": { "id": 500282, "name": "Colfax St/212 St", "direction": "E", "lat": 40.70231, "lon": -73.74305, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74305, 40.70231 ] } }, -{ "type": "Feature", "properties": { "id": 500283, "name": "Colfax St/Springfield Blvd", "direction": "E", "lat": 40.70179, "lon": -73.74135, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74135, 40.70179 ] } }, -{ "type": "Feature", "properties": { "id": 500284, "name": "114 Av/219 St", "direction": "E", "lat": 40.70184, "lon": -73.73833, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73833, 40.70184 ] } }, -{ "type": "Feature", "properties": { "id": 500285, "name": "114 Av/221 St", "direction": "E", "lat": 40.701782, "lon": -73.73638, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73638, 40.701782 ] } }, -{ "type": "Feature", "properties": { "id": 500286, "name": "114 Av/223 St", "direction": "E", "lat": 40.70172, "lon": -73.73446, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73446, 40.70172 ] } }, -{ "type": "Feature", "properties": { "id": 500287, "name": "114 Av/225 St", "direction": "E", "lat": 40.70166, "lon": -73.73249, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73249, 40.70166 ] } }, -{ "type": "Feature", "properties": { "id": 500288, "name": "114 Av/227 St", "direction": "E", "lat": 40.701565, "lon": -73.73058, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73058, 40.701565 ] } }, -{ "type": "Feature", "properties": { "id": 500289, "name": "227 St/113 Dr", "direction": "N", "lat": 40.702263, "lon": -73.73034, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73034, 40.702263 ] } }, -{ "type": "Feature", "properties": { "id": 500290, "name": "Springfield Blvd/112 Rd", "direction": "N", "lat": 40.705185, "lon": -73.73972, "routes": "Q83, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73972, 40.705185 ] } }, -{ "type": "Feature", "properties": { "id": 500291, "name": "Springfield Blvd/111 Rd", "direction": "N", "lat": 40.706207, "lon": -73.73933, "routes": "Q27, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73933, 40.706207 ] } }, -{ "type": "Feature", "properties": { "id": 500293, "name": "Springfield Blvd/107 Av", "direction": "NE", "lat": 40.710426, "lon": -73.73727, "routes": "Q83, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73727, 40.710426 ] } }, -{ "type": "Feature", "properties": { "id": 500294, "name": "Springfield Blvd/104 Av", "direction": "NE", "lat": 40.712383, "lon": -73.73614, "routes": "Q83, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73614, 40.712383 ] } }, -{ "type": "Feature", "properties": { "id": 500296, "name": "Springfield Blvd/100 Av", "direction": "N", "lat": 40.715252, "lon": -73.73549, "routes": "Q27, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73549, 40.715252 ] } }, -{ "type": "Feature", "properties": { "id": 500297, "name": "Springfield Blvd/98 Av", "direction": "N", "lat": 40.716656, "lon": -73.735374, "routes": "Q27, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.735374, 40.716656 ] } }, -{ "type": "Feature", "properties": { "id": 500298, "name": "Amboy Ln/Jamaica Av", "direction": "SE", "lat": 40.717922, "lon": -73.73638, "routes": "Q88, Q83, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73638, 40.717922 ] } }, -{ "type": "Feature", "properties": { "id": 500300, "name": "113 Dr/225 St", "direction": "W", "lat": 40.702477, "lon": -73.73223, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73223, 40.702477 ] } }, -{ "type": "Feature", "properties": { "id": 500301, "name": "113 Dr/223 St", "direction": "W", "lat": 40.702522, "lon": -73.734184, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.734184, 40.702522 ] } }, -{ "type": "Feature", "properties": { "id": 500302, "name": "113 Dr/221 St", "direction": "W", "lat": 40.702576, "lon": -73.736145, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.736145, 40.702576 ] } }, -{ "type": "Feature", "properties": { "id": 500303, "name": "113 Dr/219 St", "direction": "W", "lat": 40.70263, "lon": -73.738075, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.738075, 40.70263 ] } }, -{ "type": "Feature", "properties": { "id": 500304, "name": "Springfield Blvd/Amboy Ln", "direction": "S", "lat": 40.71776, "lon": -73.73548, "routes": "Q83, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73548, 40.71776 ] } }, -{ "type": "Feature", "properties": { "id": 500305, "name": "Springfield Blvd/99 Av", "direction": "S", "lat": 40.71535, "lon": -73.73564, "routes": "Q27, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73564, 40.71535 ] } }, -{ "type": "Feature", "properties": { "id": 500309, "name": "Springfield Blvd/107 Av", "direction": "SW", "lat": 40.710285, "lon": -73.73756, "routes": "Q83, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73756, 40.710285 ] } }, -{ "type": "Feature", "properties": { "id": 500310, "name": "Springfield Blvd/109 Av", "direction": "SW", "lat": 40.70909, "lon": -73.73818, "routes": "Q27, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73818, 40.70909 ] } }, -{ "type": "Feature", "properties": { "id": 500312, "name": "Springfield Blvd/111 Rd", "direction": "S", "lat": 40.70569, "lon": -73.73975, "routes": "Q27, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73975, 40.70569 ] } }, -{ "type": "Feature", "properties": { "id": 500313, "name": "Springfield Blvd/112 Rd", "direction": "S", "lat": 40.70441, "lon": -73.740295, "routes": "Q27, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.740295, 40.70441 ] } }, -{ "type": "Feature", "properties": { "id": 500315, "name": "Murdock Av/Springfield Blvd", "direction": "W", "lat": 40.703533, "lon": -73.74096, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74096, 40.703533 ] } }, -{ "type": "Feature", "properties": { "id": 500317, "name": "Murdock Av/210 St", "direction": "W", "lat": 40.702477, "lon": -73.74545, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74545, 40.702477 ] } }, -{ "type": "Feature", "properties": { "id": 500318, "name": "Murdock Av/208 St", "direction": "W", "lat": 40.70201, "lon": -73.74722, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74722, 40.70201 ] } }, -{ "type": "Feature", "properties": { "id": 500320, "name": "Murdock Av/204 St", "direction": "W", "lat": 40.700874, "lon": -73.751526, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.751526, 40.700874 ] } }, -{ "type": "Feature", "properties": { "id": 500321, "name": "Murdock Av/202 St", "direction": "W", "lat": 40.7004, "lon": -73.75331, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.75331, 40.7004 ] } }, -{ "type": "Feature", "properties": { "id": 500322, "name": "Murdock Av/200 St", "direction": "W", "lat": 40.699936, "lon": -73.7551, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.7551, 40.699936 ] } }, -{ "type": "Feature", "properties": { "id": 500323, "name": "Murdock Av/198 St", "direction": "W", "lat": 40.699474, "lon": -73.756874, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.756874, 40.699474 ] } }, -{ "type": "Feature", "properties": { "id": 500331, "name": "Liberty Av/187 St", "direction": "W", "lat": 40.704227, "lon": -73.76992, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76992, 40.704227 ] } }, -{ "type": "Feature", "properties": { "id": 500332, "name": "Liberty Av/184 St", "direction": "W", "lat": 40.704933, "lon": -73.77317, "routes": "X64, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.77317, 40.704933 ] } }, -{ "type": "Feature", "properties": { "id": 500334, "name": "Liberty Av/182 St", "direction": "W", "lat": 40.705677, "lon": -73.77813, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.77813, 40.705677 ] } }, -{ "type": "Feature", "properties": { "id": 500335, "name": "Liberty Av/180 St", "direction": "W", "lat": 40.70544, "lon": -73.780304, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.780304, 40.70544 ] } }, -{ "type": "Feature", "properties": { "id": 500336, "name": "Liberty Av/177 St", "direction": "W", "lat": 40.70537, "lon": -73.78302, "routes": "Q83, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.78302, 40.70537 ] } }, -{ "type": "Feature", "properties": { "id": 500337, "name": "Liberty Av/172 St", "direction": "W", "lat": 40.704254, "lon": -73.78598, "routes": "Q83, Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78598, 40.704254 ] } }, -{ "type": "Feature", "properties": { "id": 500340, "name": "168 St/Douglas Av", "direction": "NW", "lat": 40.70396, "lon": -73.79098, "routes": "Q85, Q5, Q84, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.79098, 40.70396 ] } }, -{ "type": "Feature", "properties": { "id": 500361, "name": "Hillside Av/Parsons Blvd", "direction": "W", "lat": 40.707645, "lon": -73.80323, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.80323, 40.707645 ] } }, -{ "type": "Feature", "properties": { "id": 500367, "name": "Merrick Blvd/107 Av", "direction": "SE", "lat": 40.699707, "lon": -73.78856, "routes": "Q84, Q5, Q85, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.78856, 40.699707 ] } }, -{ "type": "Feature", "properties": { "id": 500368, "name": "Merrick Blvd/108 Av", "direction": "SE", "lat": 40.698414, "lon": -73.78714, "routes": "Q85, Q84, Q4, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.78714, 40.698414 ] } }, -{ "type": "Feature", "properties": { "id": 500369, "name": "Merrick Blvd/169 Pl", "direction": "E", "lat": 40.69784, "lon": -73.78595, "routes": "Q84, Q5, Q4, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.78595, 40.69784 ] } }, -{ "type": "Feature", "properties": { "id": 500370, "name": "Merrick Blvd/109 Av", "direction": "SE", "lat": 40.696743, "lon": -73.78393, "routes": "Q4, Q85, Q84, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.78393, 40.696743 ] } }, -{ "type": "Feature", "properties": { "id": 500371, "name": "Merrick Blvd/110 Av", "direction": "SE", "lat": 40.69568, "lon": -73.78265, "routes": "Q4, Q84, Q5, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.78265, 40.69568 ] } }, -{ "type": "Feature", "properties": { "id": 500372, "name": "Merrick Blvd/111 Av", "direction": "SE", "lat": 40.694134, "lon": -73.78136, "routes": "Q4, Q84, Q5, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.78136, 40.694134 ] } }, -{ "type": "Feature", "properties": { "id": 500374, "name": "Linden Blvd/172 St", "direction": "E", "lat": 40.691807, "lon": -73.778275, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.778275, 40.691807 ] } }, -{ "type": "Feature", "properties": { "id": 500375, "name": "Linden Blvd/174 St", "direction": "E", "lat": 40.69236, "lon": -73.775955, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.775955, 40.69236 ] } }, -{ "type": "Feature", "properties": { "id": 500376, "name": "Linden Blvd/175 Pl", "direction": "E", "lat": 40.692787, "lon": -73.774185, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.774185, 40.692787 ] } }, -{ "type": "Feature", "properties": { "id": 500377, "name": "Linden Blvd/177 St", "direction": "E", "lat": 40.69299, "lon": -73.77232, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.77232, 40.69299 ] } }, -{ "type": "Feature", "properties": { "id": 500378, "name": "Linden Blvd/178 St", "direction": "E", "lat": 40.692657, "lon": -73.77005, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.77005, 40.692657 ] } }, -{ "type": "Feature", "properties": { "id": 500380, "name": "Linden Blvd/Newburg St", "direction": "E", "lat": 40.692043, "lon": -73.76559, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.76559, 40.692043 ] } }, -{ "type": "Feature", "properties": { "id": 500382, "name": "Linden Blvd/Farmers Blvd", "direction": "E", "lat": 40.69169, "lon": -73.76193, "routes": "X64, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.76193, 40.69169 ] } }, -{ "type": "Feature", "properties": { "id": 500384, "name": "Linden Blvd/192 St", "direction": "E", "lat": 40.692482, "lon": -73.759094, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.759094, 40.692482 ] } }, -{ "type": "Feature", "properties": { "id": 500385, "name": "Linden Blvd/195 St", "direction": "E", "lat": 40.693207, "lon": -73.75648, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.75648, 40.693207 ] } }, -{ "type": "Feature", "properties": { "id": 500386, "name": "Linden Blvd/197 St", "direction": "E", "lat": 40.693653, "lon": -73.75485, "routes": "X64, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.75485, 40.693653 ] } }, -{ "type": "Feature", "properties": { "id": 500387, "name": "Linden Blvd/199 St", "direction": "E", "lat": 40.69411, "lon": -73.75318, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.75318, 40.69411 ] } }, -{ "type": "Feature", "properties": { "id": 500388, "name": "Linden Blvd/201 St", "direction": "E", "lat": 40.69457, "lon": -73.751526, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.751526, 40.69457 ] } }, -{ "type": "Feature", "properties": { "id": 500389, "name": "Linden Blvd/202 St", "direction": "E", "lat": 40.69498, "lon": -73.75012, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.75012, 40.69498 ] } }, -{ "type": "Feature", "properties": { "id": 500390, "name": "Linden Blvd/204 St", "direction": "E", "lat": 40.695503, "lon": -73.74818, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.74818, 40.695503 ] } }, -{ "type": "Feature", "properties": { "id": 500391, "name": "Linden Blvd/Francis Lewis Blvd", "direction": "E", "lat": 40.696148, "lon": -73.74596, "routes": "Q4, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.74596, 40.696148 ] } }, -{ "type": "Feature", "properties": { "id": 500392, "name": "Linden Blvd/Springfield Blvd", "direction": "E", "lat": 40.696026, "lon": -73.743195, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.743195, 40.696026 ] } }, -{ "type": "Feature", "properties": { "id": 500393, "name": "Linden Blvd/219 St", "direction": "E", "lat": 40.695263, "lon": -73.74079, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.74079, 40.695263 ] } }, -{ "type": "Feature", "properties": { "id": 500394, "name": "Linden Blvd/222 St", "direction": "E", "lat": 40.694458, "lon": -73.73817, "routes": "X64, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.73817, 40.694458 ] } }, -{ "type": "Feature", "properties": { "id": 500395, "name": "Linden Blvd/225 St", "direction": "E", "lat": 40.69361, "lon": -73.73552, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.73552, 40.69361 ] } }, -{ "type": "Feature", "properties": { "id": 500396, "name": "Linden Blvd/228 St", "direction": "E", "lat": 40.69277, "lon": -73.73282, "routes": "Q4, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.73282, 40.69277 ] } }, -{ "type": "Feature", "properties": { "id": 500397, "name": "Linden Blvd/230 St", "direction": "SE", "lat": 40.692135, "lon": -73.731155, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.731155, 40.692135 ] } }, -{ "type": "Feature", "properties": { "id": 500398, "name": "Linden Blvd/232 St", "direction": "SE", "lat": 40.69125, "lon": -73.72957, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.72957, 40.69125 ] } }, -{ "type": "Feature", "properties": { "id": 500401, "name": "Linden Blvd/231 St", "direction": "NW", "lat": 40.69221, "lon": -73.730995, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.730995, 40.69221 ] } }, -{ "type": "Feature", "properties": { "id": 500403, "name": "Linden Blvd/228 St", "direction": "W", "lat": 40.69313, "lon": -73.73352, "routes": "Q4, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.73352, 40.69313 ] } }, -{ "type": "Feature", "properties": { "id": 500404, "name": "Linden Blvd/225 St", "direction": "W", "lat": 40.693954, "lon": -73.73613, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.73613, 40.693954 ] } }, -{ "type": "Feature", "properties": { "id": 500406, "name": "Linden Blvd/222 St", "direction": "W", "lat": 40.69489, "lon": -73.73913, "routes": "Q4, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.73913, 40.69489 ] } }, -{ "type": "Feature", "properties": { "id": 500407, "name": "Linden Blvd/219 St", "direction": "W", "lat": 40.695526, "lon": -73.74117, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.74117, 40.695526 ] } }, -{ "type": "Feature", "properties": { "id": 500408, "name": "Linden Blvd/217 St", "direction": "W", "lat": 40.69613, "lon": -73.743065, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.743065, 40.69613 ] } }, -{ "type": "Feature", "properties": { "id": 500410, "name": "Linden Blvd/Francis Lewis Blvd", "direction": "W", "lat": 40.696068, "lon": -73.74653, "routes": "X64, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.74653, 40.696068 ] } }, -{ "type": "Feature", "properties": { "id": 500411, "name": "Linden Blvd/204 St", "direction": "W", "lat": 40.695564, "lon": -73.74842, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.74842, 40.695564 ] } }, -{ "type": "Feature", "properties": { "id": 500412, "name": "Linden Blvd/201 St", "direction": "W", "lat": 40.694687, "lon": -73.75149, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.75149, 40.694687 ] } }, -{ "type": "Feature", "properties": { "id": 500413, "name": "Linden Blvd/199 St", "direction": "W", "lat": 40.69429, "lon": -73.75297, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.75297, 40.69429 ] } }, -{ "type": "Feature", "properties": { "id": 500414, "name": "Linden Blvd/197 St", "direction": "W", "lat": 40.69374, "lon": -73.75498, "routes": "Q4, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.75498, 40.69374 ] } }, -{ "type": "Feature", "properties": { "id": 500415, "name": "Linden Blvd/195 St", "direction": "W", "lat": 40.693256, "lon": -73.75681, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.75681, 40.693256 ] } }, -{ "type": "Feature", "properties": { "id": 500416, "name": "Linden Blvd/193 St", "direction": "W", "lat": 40.692657, "lon": -73.758965, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.758965, 40.692657 ] } }, -{ "type": "Feature", "properties": { "id": 500417, "name": "Linden Blvd/191 St", "direction": "W", "lat": 40.69219, "lon": -73.760666, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.760666, 40.69219 ] } }, -{ "type": "Feature", "properties": { "id": 500418, "name": "Linden Blvd/Farmers Blvd", "direction": "W", "lat": 40.691765, "lon": -73.762856, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.762856, 40.691765 ] } }, -{ "type": "Feature", "properties": { "id": 500419, "name": "Linden Blvd/Newburg St", "direction": "W", "lat": 40.69219, "lon": -73.76576, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.76576, 40.69219 ] } }, -{ "type": "Feature", "properties": { "id": 500420, "name": "Linden Blvd/179 St", "direction": "W", "lat": 40.692593, "lon": -73.768585, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.768585, 40.692593 ] } }, -{ "type": "Feature", "properties": { "id": 500421, "name": "Linden Blvd/178 St", "direction": "W", "lat": 40.692978, "lon": -73.77132, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.77132, 40.692978 ] } }, -{ "type": "Feature", "properties": { "id": 500422, "name": "Linden Blvd/176 St", "direction": "W", "lat": 40.693035, "lon": -73.773735, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.773735, 40.693035 ] } }, -{ "type": "Feature", "properties": { "id": 500424, "name": "Linden Blvd/Murdock Av", "direction": "W", "lat": 40.69222, "lon": -73.77715, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.77715, 40.69222 ] } }, -{ "type": "Feature", "properties": { "id": 500428, "name": "Merrick Blvd/110 Av", "direction": "NW", "lat": 40.696316, "lon": -73.78294, "routes": "Q5, Q4, Q85, Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.78294, 40.696316 ] } }, -{ "type": "Feature", "properties": { "id": 500429, "name": "Merrick Blvd/109 Av", "direction": "NW", "lat": 40.697052, "lon": -73.78396, "routes": "Q85, Q4, Q5, Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.78396, 40.697052 ] } }, -{ "type": "Feature", "properties": { "id": 500430, "name": "Merrick Blvd/108 Av", "direction": "NW", "lat": 40.69836, "lon": -73.78661, "routes": "Q5, Q4, Q84, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.78661, 40.69836 ] } }, -{ "type": "Feature", "properties": { "id": 500431, "name": "Merrick Blvd/107 Av", "direction": "NW", "lat": 40.699654, "lon": -73.78815, "routes": "Q84, Q5, Q85, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.78815, 40.699654 ] } }, -{ "type": "Feature", "properties": { "id": 500433, "name": "Merrick Blvd/Liberty Av", "direction": "N", "lat": 40.702435, "lon": -73.79054, "routes": "Q5, Q84, Q85, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.79054, 40.702435 ] } }, -{ "type": "Feature", "properties": { "id": 500451, "name": "Merrick Blvd/Linden Blvd", "direction": "SE", "lat": 40.691467, "lon": -73.77925, "routes": "Q84, Q5, X63, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77925, 40.691467 ] } }, -{ "type": "Feature", "properties": { "id": 500452, "name": "Merrick Blvd/115 Av", "direction": "SE", "lat": 40.689537, "lon": -73.77778, "routes": "Q85, Q84, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.77778, 40.689537 ] } }, -{ "type": "Feature", "properties": { "id": 500453, "name": "Merrick Blvd/116 Av", "direction": "SE", "lat": 40.688046, "lon": -73.77647, "routes": "Q5, Q85, Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.77647, 40.688046 ] } }, -{ "type": "Feature", "properties": { "id": 500454, "name": "Merrick Blvd/Foch Blvd", "direction": "SE", "lat": 40.686726, "lon": -73.77467, "routes": "Q5, Q84, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77467, 40.686726 ] } }, -{ "type": "Feature", "properties": { "id": 500456, "name": "120 Av/Irwin Pl", "direction": "E", "lat": 40.68444, "lon": -73.7689, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.7689, 40.68444 ] } }, -{ "type": "Feature", "properties": { "id": 500457, "name": "120 Av/Sunbury Rd", "direction": "E", "lat": 40.684914, "lon": -73.76702, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.76702, 40.684914 ] } }, -{ "type": "Feature", "properties": { "id": 500458, "name": "120 Av/178 Pl", "direction": "E", "lat": 40.68535, "lon": -73.76534, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.76534, 40.68535 ] } }, -{ "type": "Feature", "properties": { "id": 500459, "name": "120 Av/180 St", "direction": "E", "lat": 40.68578, "lon": -73.763535, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.763535, 40.68578 ] } }, -{ "type": "Feature", "properties": { "id": 500460, "name": "120 Av/Farmers Blvd", "direction": "E", "lat": 40.68634, "lon": -73.7613, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.7613, 40.68634 ] } }, -{ "type": "Feature", "properties": { "id": 500461, "name": "120 Av/Lucas St", "direction": "E", "lat": 40.68739, "lon": -73.75841, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.75841, 40.68739 ] } }, -{ "type": "Feature", "properties": { "id": 500462, "name": "120 Av/192 St", "direction": "E", "lat": 40.687923, "lon": -73.756966, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.756966, 40.687923 ] } }, -{ "type": "Feature", "properties": { "id": 500463, "name": "120 Av/194 St", "direction": "E", "lat": 40.688522, "lon": -73.755325, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.755325, 40.688522 ] } }, -{ "type": "Feature", "properties": { "id": 500464, "name": "120 Av/196 St", "direction": "E", "lat": 40.689114, "lon": -73.753716, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.753716, 40.689114 ] } }, -{ "type": "Feature", "properties": { "id": 500465, "name": "120 Av/198 St", "direction": "E", "lat": 40.6897, "lon": -73.75209, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.75209, 40.6897 ] } }, -{ "type": "Feature", "properties": { "id": 500466, "name": "120 Av/200 St", "direction": "E", "lat": 40.690468, "lon": -73.75001, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.75001, 40.690468 ] } }, -{ "type": "Feature", "properties": { "id": 500467, "name": "120 Av/Nashville Blvd", "direction": "E", "lat": 40.691326, "lon": -73.74755, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.74755, 40.691326 ] } }, -{ "type": "Feature", "properties": { "id": 500468, "name": "120 Av/Springfield Blvd", "direction": "E", "lat": 40.69108, "lon": -73.745834, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.745834, 40.69108 ] } }, -{ "type": "Feature", "properties": { "id": 500469, "name": "120 Av/218 St", "direction": "E", "lat": 40.690544, "lon": -73.744095, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.744095, 40.690544 ] } }, -{ "type": "Feature", "properties": { "id": 500470, "name": "120 Av/Francis Lewis Blvd", "direction": "E", "lat": 40.689934, "lon": -73.74208, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.74208, 40.689934 ] } }, -{ "type": "Feature", "properties": { "id": 500471, "name": "120 Av/222 St", "direction": "E", "lat": 40.689484, "lon": -73.740585, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.740585, 40.689484 ] } }, -{ "type": "Feature", "properties": { "id": 500472, "name": "120 Av/224 St", "direction": "E", "lat": 40.68895, "lon": -73.73881, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73881, 40.68895 ] } }, -{ "type": "Feature", "properties": { "id": 500473, "name": "120 Av/226 St", "direction": "E", "lat": 40.688427, "lon": -73.7371, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.7371, 40.688427 ] } }, -{ "type": "Feature", "properties": { "id": 500475, "name": "120 Av/230 St", "direction": "E", "lat": 40.687378, "lon": -73.73359, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73359, 40.687378 ] } }, -{ "type": "Feature", "properties": { "id": 500476, "name": "120 Av/232 St", "direction": "E", "lat": 40.686844, "lon": -73.73184, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73184, 40.686844 ] } }, -{ "type": "Feature", "properties": { "id": 500477, "name": "120 Av/234 St", "direction": "E", "lat": 40.68631, "lon": -73.73009, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73009, 40.68631 ] } }, -{ "type": "Feature", "properties": { "id": 500478, "name": "120 Av/237 St", "direction": "E", "lat": 40.685547, "lon": -73.727554, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.727554, 40.685547 ] } }, -{ "type": "Feature", "properties": { "id": 500479, "name": "238 St/121 Av", "direction": "SW", "lat": 40.683464, "lon": -73.72808, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.72808, 40.683464 ] } }, -{ "type": "Feature", "properties": { "id": 500480, "name": "238 St/128 Av", "direction": "S", "lat": 40.681656, "lon": -73.7289, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.7289, 40.681656 ] } }, -{ "type": "Feature", "properties": { "id": 500483, "name": "237 St/128 Av", "direction": "NE", "lat": 40.6824, "lon": -73.72943, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.72943, 40.6824 ] } }, -{ "type": "Feature", "properties": { "id": 500484, "name": "237 St/121 Av", "direction": "NE", "lat": 40.684372, "lon": -73.7285, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.7285, 40.684372 ] } }, -{ "type": "Feature", "properties": { "id": 500485, "name": "120 Av/237 St", "direction": "W", "lat": 40.685886, "lon": -73.72817, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.72817, 40.685886 ] } }, -{ "type": "Feature", "properties": { "id": 500486, "name": "120 Av/234 St", "direction": "W", "lat": 40.6867, "lon": -73.73082, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73082, 40.6867 ] } }, -{ "type": "Feature", "properties": { "id": 500487, "name": "120 Av/231 St", "direction": "W", "lat": 40.687492, "lon": -73.73348, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73348, 40.687492 ] } }, -{ "type": "Feature", "properties": { "id": 500488, "name": "120 Av/229 St", "direction": "W", "lat": 40.688007, "lon": -73.73515, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73515, 40.688007 ] } }, -{ "type": "Feature", "properties": { "id": 500489, "name": "120 Av/227 St", "direction": "W", "lat": 40.688374, "lon": -73.73646, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73646, 40.688374 ] } }, -{ "type": "Feature", "properties": { "id": 500490, "name": "120 Av/224 St", "direction": "W", "lat": 40.689323, "lon": -73.73952, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73952, 40.689323 ] } }, -{ "type": "Feature", "properties": { "id": 500491, "name": "120 Av/222 St", "direction": "W", "lat": 40.689865, "lon": -73.741295, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.741295, 40.689865 ] } }, -{ "type": "Feature", "properties": { "id": 500492, "name": "120 Av/Francis Lewis Blvd", "direction": "W", "lat": 40.69052, "lon": -73.74349, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.74349, 40.69052 ] } }, -{ "type": "Feature", "properties": { "id": 500493, "name": "120 Av/217 St", "direction": "W", "lat": 40.69115, "lon": -73.74562, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.74562, 40.69115 ] } }, -{ "type": "Feature", "properties": { "id": 500494, "name": "120 Av/Springfield Blvd", "direction": "W", "lat": 40.691437, "lon": -73.74666, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.74666, 40.691437 ] } }, -{ "type": "Feature", "properties": { "id": 500495, "name": "120 Av/202 St", "direction": "W", "lat": 40.69113, "lon": -73.74854, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.74854, 40.69113 ] } }, -{ "type": "Feature", "properties": { "id": 500496, "name": "120 Av/200 St", "direction": "W", "lat": 40.690372, "lon": -73.75054, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.75054, 40.690372 ] } }, -{ "type": "Feature", "properties": { "id": 500497, "name": "120 Av/199 St", "direction": "W", "lat": 40.68994, "lon": -73.75172, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.75172, 40.68994 ] } }, -{ "type": "Feature", "properties": { "id": 500498, "name": "120 Av/197 St", "direction": "W", "lat": 40.689476, "lon": -73.753, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.753, 40.689476 ] } }, -{ "type": "Feature", "properties": { "id": 500499, "name": "120 Av/195 St", "direction": "W", "lat": 40.68875, "lon": -73.755, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.755, 40.68875 ] } }, -{ "type": "Feature", "properties": { "id": 500500, "name": "120 Av/193 St", "direction": "W", "lat": 40.68812, "lon": -73.75672, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.75672, 40.68812 ] } }, -{ "type": "Feature", "properties": { "id": 500501, "name": "120 Av/190 St", "direction": "W", "lat": 40.6872, "lon": -73.75924, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.75924, 40.6872 ] } }, -{ "type": "Feature", "properties": { "id": 500502, "name": "120 Av/Farmers Blvd", "direction": "W", "lat": 40.686543, "lon": -73.76104, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.76104, 40.686543 ] } }, -{ "type": "Feature", "properties": { "id": 500503, "name": "120 Av/180 St", "direction": "W", "lat": 40.685936, "lon": -73.76341, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.76341, 40.685936 ] } }, -{ "type": "Feature", "properties": { "id": 500504, "name": "120 Av/178 St", "direction": "W", "lat": 40.685295, "lon": -73.76596, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.76596, 40.685295 ] } }, -{ "type": "Feature", "properties": { "id": 500505, "name": "120 Av/177 St", "direction": "W", "lat": 40.684826, "lon": -73.76776, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.76776, 40.684826 ] } }, -{ "type": "Feature", "properties": { "id": 500507, "name": "Merrick Blvd/Baisley Blvd", "direction": "NW", "lat": 40.684113, "lon": -73.77014, "routes": "X63, Q85, Q5, Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.77014, 40.684113 ] } }, -{ "type": "Feature", "properties": { "id": 500508, "name": "Merrick Blvd/Victoria Rd", "direction": "NW", "lat": 40.68555, "lon": -73.77259, "routes": "Q84, Q85, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.77259, 40.68555 ] } }, -{ "type": "Feature", "properties": { "id": 500509, "name": "Merrick Blvd/Foch Blvd", "direction": "NW", "lat": 40.687317, "lon": -73.775085, "routes": "Q84, Q5, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.775085, 40.687317 ] } }, -{ "type": "Feature", "properties": { "id": 500510, "name": "Merrick Blvd/116 Av", "direction": "NW", "lat": 40.688637, "lon": -73.77672, "routes": "Q85, Q5, Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.77672, 40.688637 ] } }, -{ "type": "Feature", "properties": { "id": 500511, "name": "Merrick Blvd/115 Av", "direction": "NW", "lat": 40.69032, "lon": -73.77803, "routes": "Q5, Q85, Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.77803, 40.69032 ] } }, -{ "type": "Feature", "properties": { "id": 500512, "name": "Merrick Blvd/Linden Blvd", "direction": "NW", "lat": 40.691578, "lon": -73.778984, "routes": "Q5, Q84, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.778984, 40.691578 ] } }, -{ "type": "Feature", "properties": { "id": 500541, "name": "Merrick Blvd/119 Av", "direction": "SE", "lat": 40.685787, "lon": -73.77334, "routes": "Q85, Q84, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.77334, 40.685787 ] } }, -{ "type": "Feature", "properties": { "id": 500543, "name": "Merrick Blvd/Baisley Blvd", "direction": "SE", "lat": 40.68376, "lon": -73.77001, "routes": "Q85, X63, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.77001, 40.68376 ] } }, -{ "type": "Feature", "properties": { "id": 500544, "name": "Merrick Blvd/125 Av", "direction": "SE", "lat": 40.682156, "lon": -73.76694, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.76694, 40.682156 ] } }, -{ "type": "Feature", "properties": { "id": 500545, "name": "Merrick Blvd/127 Av", "direction": "SE", "lat": 40.68129, "lon": -73.765144, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.765144, 40.68129 ] } }, -{ "type": "Feature", "properties": { "id": 500547, "name": "Merrick Blvd/130 Rd", "direction": "SE", "lat": 40.67984, "lon": -73.762085, "routes": "Q5, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.762085, 40.67984 ] } }, -{ "type": "Feature", "properties": { "id": 500548, "name": "Merrick Blvd/Belknap St", "direction": "E", "lat": 40.67883, "lon": -73.75937, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.75937, 40.67883 ] } }, -{ "type": "Feature", "properties": { "id": 500549, "name": "Merrick Blvd/Montauk St", "direction": "E", "lat": 40.67945, "lon": -73.757126, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.757126, 40.67945 ] } }, -{ "type": "Feature", "properties": { "id": 500550, "name": "Merrick Blvd/Pineville Ln", "direction": "E", "lat": 40.680058, "lon": -73.755585, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.755585, 40.680058 ] } }, -{ "type": "Feature", "properties": { "id": 500551, "name": "Merrick Blvd/Springfield Blvd", "direction": "E", "lat": 40.680035, "lon": -73.753685, "routes": "Q5, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.753685, 40.680035 ] } }, -{ "type": "Feature", "properties": { "id": 500552, "name": "Merrick Blvd/218 St", "direction": "E", "lat": 40.679504, "lon": -73.75116, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.75116, 40.679504 ] } }, -{ "type": "Feature", "properties": { "id": 500553, "name": "Merrick Blvd/220 St", "direction": "E", "lat": 40.678802, "lon": -73.74896, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.74896, 40.678802 ] } }, -{ "type": "Feature", "properties": { "id": 500554, "name": "Merrick Blvd/222 St", "direction": "E", "lat": 40.678112, "lon": -73.746666, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.746666, 40.678112 ] } }, -{ "type": "Feature", "properties": { "id": 500555, "name": "Merrick Blvd/224 St", "direction": "E", "lat": 40.677654, "lon": -73.74527, "routes": "Q5, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.74527, 40.677654 ] } }, -{ "type": "Feature", "properties": { "id": 500556, "name": "Merrick Blvd/226 St", "direction": "E", "lat": 40.677067, "lon": -73.743614, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.743614, 40.677067 ] } }, -{ "type": "Feature", "properties": { "id": 500557, "name": "Merrick Blvd/228 St", "direction": "E", "lat": 40.676456, "lon": -73.74183, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.74183, 40.676456 ] } }, -{ "type": "Feature", "properties": { "id": 500559, "name": "Merrick Blvd/231 St", "direction": "E", "lat": 40.675278, "lon": -73.73831, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73831, 40.675278 ] } }, -{ "type": "Feature", "properties": { "id": 500560, "name": "Merrick Blvd/233 St", "direction": "E", "lat": 40.67486, "lon": -73.73708, "routes": "Q5, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.73708, 40.67486 ] } }, -{ "type": "Feature", "properties": { "id": 500561, "name": "Merrick Blvd/Laurelton Pkwy", "direction": "SE", "lat": 40.673946, "lon": -73.735245, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.735245, 40.673946 ] } }, -{ "type": "Feature", "properties": { "id": 500562, "name": "Merrick Blvd/241 St", "direction": "E", "lat": 40.67359, "lon": -73.732414, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.732414, 40.67359 ] } }, -{ "type": "Feature", "properties": { "id": 500563, "name": "Merrick Blvd/243 St", "direction": "E", "lat": 40.673836, "lon": -73.73089, "routes": "X63, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73089, 40.673836 ] } }, -{ "type": "Feature", "properties": { "id": 500564, "name": "Merrick Blvd/Hook Creek Blvd", "direction": "E", "lat": 40.67405, "lon": -73.72769, "routes": "X63, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72769, 40.67405 ] } }, -{ "type": "Feature", "properties": { "id": 500565, "name": "Hook Creek Blvd/133 Dr", "direction": "S", "lat": 40.672066, "lon": -73.72805, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72805, 40.672066 ] } }, -{ "type": "Feature", "properties": { "id": 500566, "name": "Hook Creek Blvd/135 Av", "direction": "S", "lat": 40.669945, "lon": -73.72873, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72873, 40.669945 ] } }, -{ "type": "Feature", "properties": { "id": 500567, "name": "Hook Creek Blvd/136 Av", "direction": "S", "lat": 40.668545, "lon": -73.72923, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72923, 40.668545 ] } }, -{ "type": "Feature", "properties": { "id": 500568, "name": "Hook Creek Blvd/Sunrise Hwy", "direction": "S", "lat": 40.66563, "lon": -73.72995, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72995, 40.66563 ] } }, -{ "type": "Feature", "properties": { "id": 500571, "name": "Francis Lewis Blvd/Brookville Blvd", "direction": "NW", "lat": 40.667538, "lon": -73.73722, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73722, 40.667538 ] } }, -{ "type": "Feature", "properties": { "id": 500572, "name": "Brookville Blvd/137 Av", "direction": "NE", "lat": 40.669518, "lon": -73.73619, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73619, 40.669518 ] } }, -{ "type": "Feature", "properties": { "id": 500573, "name": "Brookville Blvd/136 Av", "direction": "NE", "lat": 40.670826, "lon": -73.735435, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.735435, 40.670826 ] } }, -{ "type": "Feature", "properties": { "id": 500575, "name": "Brookville Blvd/Merrick Blvd", "direction": "NE", "lat": 40.67345, "lon": -73.73356, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73356, 40.67345 ] } }, -{ "type": "Feature", "properties": { "id": 500576, "name": "Merrick Blvd/Laurelton Pkwy", "direction": "NW", "lat": 40.674232, "lon": -73.73533, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73533, 40.674232 ] } }, -{ "type": "Feature", "properties": { "id": 500578, "name": "Merrick Blvd/231 St", "direction": "W", "lat": 40.675724, "lon": -73.73896, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73896, 40.675724 ] } }, -{ "type": "Feature", "properties": { "id": 500579, "name": "Merrick Blvd/230 St", "direction": "W", "lat": 40.676342, "lon": -73.740814, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.740814, 40.676342 ] } }, -{ "type": "Feature", "properties": { "id": 500580, "name": "Merrick Blvd/228 St", "direction": "W", "lat": 40.676914, "lon": -73.74253, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.74253, 40.676914 ] } }, -{ "type": "Feature", "properties": { "id": 500581, "name": "Merrick Blvd/226 St", "direction": "W", "lat": 40.677513, "lon": -73.74425, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.74425, 40.677513 ] } }, -{ "type": "Feature", "properties": { "id": 500582, "name": "Merrick Blvd/224 St", "direction": "W", "lat": 40.678093, "lon": -73.74593, "routes": "Q5, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.74593, 40.678093 ] } }, -{ "type": "Feature", "properties": { "id": 500583, "name": "Merrick Blvd/222 St", "direction": "W", "lat": 40.67863, "lon": -73.74767, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.74767, 40.67863 ] } }, -{ "type": "Feature", "properties": { "id": 500584, "name": "Merrick Blvd/220 St", "direction": "W", "lat": 40.679165, "lon": -73.74942, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.74942, 40.679165 ] } }, -{ "type": "Feature", "properties": { "id": 500585, "name": "Merrick Blvd/218 St", "direction": "W", "lat": 40.679684, "lon": -73.75103, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.75103, 40.679684 ] } }, -{ "type": "Feature", "properties": { "id": 500586, "name": "Merrick Blvd/Springfield Blvd", "direction": "W", "lat": 40.680183, "lon": -73.75272, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.75272, 40.680183 ] } }, -{ "type": "Feature", "properties": { "id": 500587, "name": "Merrick Blvd/Ridgedale Av", "direction": "W", "lat": 40.680298, "lon": -73.75387, "routes": "X63, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.75387, 40.680298 ] } }, -{ "type": "Feature", "properties": { "id": 500588, "name": "Merrick Blvd/Pineville Ln", "direction": "W", "lat": 40.6802, "lon": -73.755844, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.755844, 40.6802 ] } }, -{ "type": "Feature", "properties": { "id": 500589, "name": "Merrick Blvd/Montauk St", "direction": "W", "lat": 40.67962, "lon": -73.75733, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.75733, 40.67962 ] } }, -{ "type": "Feature", "properties": { "id": 500590, "name": "Merrick Blvd/Belknap St", "direction": "W", "lat": 40.67916, "lon": -73.76025, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.76025, 40.67916 ] } }, -{ "type": "Feature", "properties": { "id": 500591, "name": "Merrick Blvd/Farmers Blvd", "direction": "NW", "lat": 40.680084, "lon": -73.76209, "routes": "X63, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.76209, 40.680084 ] } }, -{ "type": "Feature", "properties": { "id": 500593, "name": "Merrick Blvd/Selover Rd", "direction": "NW", "lat": 40.681625, "lon": -73.76537, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.76537, 40.681625 ] } }, -{ "type": "Feature", "properties": { "id": 500594, "name": "Merrick Blvd/Ursina Rd", "direction": "NW", "lat": 40.6826, "lon": -73.767365, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.767365, 40.6826 ] } }, -{ "type": "Feature", "properties": { "id": 500607, "name": "Merrick Blvd/105 Av", "direction": "NW", "lat": 40.70078, "lon": -73.78934, "routes": "Q5, Q4, Q84, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.78934, 40.70078 ] } }, -{ "type": "Feature", "properties": { "id": 500633, "name": "Baisley Blvd/Merrill St", "direction": "SW", "lat": 40.683002, "lon": -73.7704, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.7704, 40.683002 ] } }, -{ "type": "Feature", "properties": { "id": 500634, "name": "Baisley Blvd/172 St", "direction": "SW", "lat": 40.6818, "lon": -73.77205, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77205, 40.6818 ] } }, -{ "type": "Feature", "properties": { "id": 500636, "name": "Bedell St/Baisley Blvd", "direction": "SE", "lat": 40.680237, "lon": -73.77444, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77444, 40.680237 ] } }, -{ "type": "Feature", "properties": { "id": 500637, "name": "Bedell St/127 Av", "direction": "SE", "lat": 40.679436, "lon": -73.77317, "routes": "QM21, Q85, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.77317, 40.679436 ] } }, -{ "type": "Feature", "properties": { "id": 500638, "name": "Bedell St/130 Av", "direction": "SE", "lat": 40.677963, "lon": -73.770805, "routes": "QM21, QM21, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.770805, 40.677963 ] } }, -{ "type": "Feature", "properties": { "id": 500639, "name": "Bedell St/133 Av", "direction": "SE", "lat": 40.676273, "lon": -73.76808, "routes": "QM21, QM21, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76808, 40.676273 ] } }, -{ "type": "Feature", "properties": { "id": 500640, "name": "Bedell St/134 Rd", "direction": "SE", "lat": 40.674877, "lon": -73.76583, "routes": "QM21, QM21, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76583, 40.674877 ] } }, -{ "type": "Feature", "properties": { "id": 500649, "name": "140 Av/180 St", "direction": "E", "lat": 40.671577, "lon": -73.763916, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.763916, 40.671577 ] } }, -{ "type": "Feature", "properties": { "id": 500651, "name": "140 Av/183 St", "direction": "E", "lat": 40.672157, "lon": -73.76078, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76078, 40.672157 ] } }, -{ "type": "Feature", "properties": { "id": 500652, "name": "140 Av/Thurston St", "direction": "E", "lat": 40.672485, "lon": -73.759125, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.759125, 40.672485 ] } }, -{ "type": "Feature", "properties": { "id": 500657, "name": "South Conduit Av/223 St", "direction": "E", "lat": 40.66542, "lon": -73.754364, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.754364, 40.66542 ] } }, -{ "type": "Feature", "properties": { "id": 500658, "name": "South Conduit Av/225 St", "direction": "E", "lat": 40.665424, "lon": -73.7519, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.7519, 40.665424 ] } }, -{ "type": "Feature", "properties": { "id": 500660, "name": "South Conduit Av/231 St", "direction": "E", "lat": 40.665306, "lon": -73.74451, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.74451, 40.665306 ] } }, -{ "type": "Feature", "properties": { "id": 500661, "name": "South Conduit Av/Brookville Blvd", "direction": "E", "lat": 40.665184, "lon": -73.739845, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.739845, 40.665184 ] } }, -{ "type": "Feature", "properties": { "id": 500663, "name": "243 St/South Conduit Av", "direction": "SW", "lat": 40.66508, "lon": -73.73589, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73589, 40.66508 ] } }, -{ "type": "Feature", "properties": { "id": 500664, "name": "243 St/Memphis Av", "direction": "SW", "lat": 40.663857, "lon": -73.736725, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.736725, 40.663857 ] } }, -{ "type": "Feature", "properties": { "id": 500665, "name": "243 St/142 Av", "direction": "SW", "lat": 40.662567, "lon": -73.73773, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73773, 40.662567 ] } }, -{ "type": "Feature", "properties": { "id": 500666, "name": "243 St/Weller Av", "direction": "SW", "lat": 40.661324, "lon": -73.73867, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73867, 40.661324 ] } }, -{ "type": "Feature", "properties": { "id": 500667, "name": "243 St/145 Av", "direction": "SW", "lat": 40.659485, "lon": -73.74008, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.74008, 40.659485 ] } }, -{ "type": "Feature", "properties": { "id": 500668, "name": "243 St/Huxley St", "direction": "", "lat": 40.657585, "lon": -73.7415, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.7415, 40.657585 ] } }, -{ "type": "Feature", "properties": { "id": 500670, "name": "Bedell St/134 Rd", "direction": "NW", "lat": 40.67523, "lon": -73.7661, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.7661, 40.67523 ] } }, -{ "type": "Feature", "properties": { "id": 500671, "name": "Bedell St/133 Av", "direction": "NW", "lat": 40.67649, "lon": -73.76813, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76813, 40.67649 ] } }, -{ "type": "Feature", "properties": { "id": 500672, "name": "Bedell St/130 Av", "direction": "NW", "lat": 40.67822, "lon": -73.77091, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77091, 40.67822 ] } }, -{ "type": "Feature", "properties": { "id": 500673, "name": "Bedell St/127 Av", "direction": "NW", "lat": 40.67969, "lon": -73.77328, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77328, 40.67969 ] } }, -{ "type": "Feature", "properties": { "id": 500674, "name": "Bedell St/Baisley Blvd", "direction": "NW", "lat": 40.68042, "lon": -73.77445, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77445, 40.68042 ] } }, -{ "type": "Feature", "properties": { "id": 500675, "name": "Baisley Blvd/172 St", "direction": "NE", "lat": 40.681778, "lon": -73.77184, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.77184, 40.681778 ] } }, -{ "type": "Feature", "properties": { "id": 500676, "name": "Baisley Blvd/Merrill St", "direction": "NE", "lat": 40.68315, "lon": -73.76998, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76998, 40.68315 ] } }, -{ "type": "Feature", "properties": { "id": 500677, "name": "243 St/147 Av", "direction": "NE", "lat": 40.657738, "lon": -73.74121, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.74121, 40.657738 ] } }, -{ "type": "Feature", "properties": { "id": 500678, "name": "243 St/144 Av", "direction": "NE", "lat": 40.66057, "lon": -73.73907, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73907, 40.66057 ] } }, -{ "type": "Feature", "properties": { "id": 500679, "name": "243 St/Weller Av", "direction": "NE", "lat": 40.661457, "lon": -73.73841, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73841, 40.661457 ] } }, -{ "type": "Feature", "properties": { "id": 500680, "name": "243 St/142 Av", "direction": "NE", "lat": 40.66273, "lon": -73.73744, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73744, 40.66273 ] } }, -{ "type": "Feature", "properties": { "id": 500681, "name": "243 St/Memphis Av", "direction": "NE", "lat": 40.663864, "lon": -73.73662, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73662, 40.663864 ] } }, -{ "type": "Feature", "properties": { "id": 500683, "name": "Sunrise Hwy/Brookville Blvd", "direction": "W", "lat": 40.665676, "lon": -73.73883, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73883, 40.665676 ] } }, -{ "type": "Feature", "properties": { "id": 500684, "name": "North Conduit Av/230 Pl", "direction": "W", "lat": 40.6665, "lon": -73.74513, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.74513, 40.6665 ] } }, -{ "type": "Feature", "properties": { "id": 500685, "name": "North Conduit Av/225 St", "direction": "W", "lat": 40.666454, "lon": -73.75212, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.75212, 40.666454 ] } }, -{ "type": "Feature", "properties": { "id": 500686, "name": "North Conduit Av/222 St", "direction": "W", "lat": 40.66647, "lon": -73.755066, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.755066, 40.66647 ] } }, -{ "type": "Feature", "properties": { "id": 500687, "name": "Springfield Blvd/144 Av", "direction": "NE", "lat": 40.66713, "lon": -73.75712, "routes": "Q85, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75712, 40.66713 ] } }, -{ "type": "Feature", "properties": { "id": 500688, "name": "Springfield Blvd/143 Av", "direction": "N", "lat": 40.66832, "lon": -73.75666, "routes": "Q77, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.75666, 40.66832 ] } }, -{ "type": "Feature", "properties": { "id": 500689, "name": "Springfield Blvd/141 Rd", "direction": "N", "lat": 40.67082, "lon": -73.75636, "routes": "Q77, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.75636, 40.67082 ] } }, -{ "type": "Feature", "properties": { "id": 500690, "name": "Springfield Blvd/141 Av", "direction": "N", "lat": 40.671936, "lon": -73.75634, "routes": "Q77, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.75634, 40.671936 ] } }, -{ "type": "Feature", "properties": { "id": 500691, "name": "140 Av/Southgate St", "direction": "W", "lat": 40.67259, "lon": -73.75903, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.75903, 40.67259 ] } }, -{ "type": "Feature", "properties": { "id": 500694, "name": "140 Av/Farmers Blvd", "direction": "W", "lat": 40.671646, "lon": -73.76413, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76413, 40.671646 ] } }, -{ "type": "Feature", "properties": { "id": 500750, "name": "Hillside Av/168 St", "direction": "NE", "lat": 40.71007, "lon": -73.79435, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.79435, 40.71007 ] } }, -{ "type": "Feature", "properties": { "id": 500851, "name": "Roosevelt Av/Bowne St", "direction": "E", "lat": 40.760883, "lon": -73.82458, "routes": "Q15, Q15A, Q26, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.82458, 40.760883 ] } }, -{ "type": "Feature", "properties": { "id": 500852, "name": "Bowne St/41 Av", "direction": "SE", "lat": 40.75954, "lon": -73.82387, "routes": "Q12, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.82387, 40.75954 ] } }, -{ "type": "Feature", "properties": { "id": 500853, "name": "Sanford Av/Bowne St", "direction": "E", "lat": 40.75846, "lon": -73.822044, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.822044, 40.75846 ] } }, -{ "type": "Feature", "properties": { "id": 500854, "name": "Sanford Av/Parsons Blvd", "direction": "E", "lat": 40.758774, "lon": -73.8208, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.8208, 40.758774 ] } }, -{ "type": "Feature", "properties": { "id": 500855, "name": "Sanford Av/147 St", "direction": "E", "lat": 40.759815, "lon": -73.81687, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.81687, 40.759815 ] } }, -{ "type": "Feature", "properties": { "id": 500856, "name": "Sanford Av/149 St", "direction": "E", "lat": 40.760418, "lon": -73.81465, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.81465, 40.760418 ] } }, -{ "type": "Feature", "properties": { "id": 500858, "name": "Sanford Av/156 St", "direction": "E", "lat": 40.76116, "lon": -73.80911, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.80911, 40.76116 ] } }, -{ "type": "Feature", "properties": { "id": 500859, "name": "Sanford Av/158 St", "direction": "E", "lat": 40.760815, "lon": -73.8073, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.8073, 40.760815 ] } }, -{ "type": "Feature", "properties": { "id": 500861, "name": "Sanford Av/162 St", "direction": "E", "lat": 40.760136, "lon": -73.80359, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.80359, 40.760136 ] } }, -{ "type": "Feature", "properties": { "id": 500862, "name": "Sanford Av/165 St", "direction": "E", "lat": 40.75966, "lon": -73.800606, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.800606, 40.75966 ] } }, -{ "type": "Feature", "properties": { "id": 500863, "name": "Northern Blvd/168 St", "direction": "E", "lat": 40.758854, "lon": -73.79812, "routes": "Q13, Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.79812, 40.758854 ] } }, -{ "type": "Feature", "properties": { "id": 500864, "name": "Northern Blvd/171 St", "direction": "E", "lat": 40.758053, "lon": -73.795906, "routes": "Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.795906, 40.758053 ] } }, -{ "type": "Feature", "properties": { "id": 500865, "name": "Northern Blvd/Auburndale Ln", "direction": "E", "lat": 40.757656, "lon": -73.794525, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.794525, 40.757656 ] } }, -{ "type": "Feature", "properties": { "id": 500866, "name": "Northern Blvd/Utopia Pkwy", "direction": "E", "lat": 40.757694, "lon": -73.79253, "routes": "Q13, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.79253, 40.757694 ] } }, -{ "type": "Feature", "properties": { "id": 500867, "name": "Northern Blvd/190 St", "direction": "E", "lat": 40.757683, "lon": -73.791595, "routes": "QM3, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.791595, 40.757683 ] } }, -{ "type": "Feature", "properties": { "id": 500868, "name": "Northern Blvd/192 St", "direction": "E", "lat": 40.757774, "lon": -73.789, "routes": "Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.789, 40.757774 ] } }, -{ "type": "Feature", "properties": { "id": 500869, "name": "Northern Blvd/194 St", "direction": "E", "lat": 40.757835, "lon": -73.78714, "routes": "QM3, Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.78714, 40.757835 ] } }, -{ "type": "Feature", "properties": { "id": 500870, "name": "Northern Blvd/196 St", "direction": "E", "lat": 40.75782, "lon": -73.785255, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.785255, 40.75782 ] } }, -{ "type": "Feature", "properties": { "id": 500871, "name": "Northern Blvd/Francis Lewis Blvd", "direction": "E", "lat": 40.75767, "lon": -73.78365, "routes": "Q13, Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.78365, 40.75767 ] } }, -{ "type": "Feature", "properties": { "id": 500872, "name": "Northern Blvd/202 St", "direction": "E", "lat": 40.75749, "lon": -73.78116, "routes": "Q13, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.78116, 40.75749 ] } }, -{ "type": "Feature", "properties": { "id": 500873, "name": "Northern Blvd/204 St", "direction": "E", "lat": 40.757725, "lon": -73.77889, "routes": "Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77889, 40.757725 ] } }, -{ "type": "Feature", "properties": { "id": 500874, "name": "Northern Blvd/Clearview Expwy", "direction": "E", "lat": 40.75837, "lon": -73.77658, "routes": "Q13, QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.77658, 40.75837 ] } }, -{ "type": "Feature", "properties": { "id": 500875, "name": "Northern Blvd/Corporal Kennedy St", "direction": "E", "lat": 40.759228, "lon": -73.77334, "routes": "Q13, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.77334, 40.759228 ] } }, -{ "type": "Feature", "properties": { "id": 500876, "name": "Northern Blvd/211 St", "direction": "E", "lat": 40.759727, "lon": -73.771416, "routes": "Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.771416, 40.759727 ] } }, -{ "type": "Feature", "properties": { "id": 500877, "name": "Northern Blvd/Bell Blvd", "direction": "E", "lat": 40.76035, "lon": -73.768234, "routes": "Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.768234, 40.76035 ] } }, -{ "type": "Feature", "properties": { "id": 500878, "name": "Northern Blvd/215 St", "direction": "E", "lat": 40.7605, "lon": -73.7671, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.7671, 40.7605 ] } }, -{ "type": "Feature", "properties": { "id": 500879, "name": "Northern Blvd/217 St", "direction": "E", "lat": 40.760952, "lon": -73.76437, "routes": "Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.76437, 40.760952 ] } }, -{ "type": "Feature", "properties": { "id": 500880, "name": "Northern Blvd/Springfield Blvd", "direction": "E", "lat": 40.76127, "lon": -73.762436, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.762436, 40.76127 ] } }, -{ "type": "Feature", "properties": { "id": 500881, "name": "Northern Blvd/220 Pl", "direction": "E", "lat": 40.761585, "lon": -73.760445, "routes": "QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.760445, 40.761585 ] } }, -{ "type": "Feature", "properties": { "id": 500882, "name": "Northern Blvd/223 St", "direction": "E", "lat": 40.761868, "lon": -73.758606, "routes": "QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.758606, 40.761868 ] } }, -{ "type": "Feature", "properties": { "id": 500883, "name": "Northern Blvd/Alley Pond Enviromental Center", "direction": "E", "lat": 40.763123, "lon": -73.75276, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.75276, 40.763123 ] } }, -{ "type": "Feature", "properties": { "id": 500885, "name": "Northern Blvd/Alameda Av", "direction": "E", "lat": 40.765007, "lon": -73.745255, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.745255, 40.765007 ] } }, -{ "type": "Feature", "properties": { "id": 500887, "name": "Northern Blvd/244 St", "direction": "E", "lat": 40.765488, "lon": -73.74172, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.74172, 40.765488 ] } }, -{ "type": "Feature", "properties": { "id": 500889, "name": "Northern Blvd/Marathon Pkwy", "direction": "NE", "lat": 40.76816, "lon": -73.73764, "routes": "Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.73764, 40.76816 ] } }, -{ "type": "Feature", "properties": { "id": 500890, "name": "Northern Blvd/Browvale Ln", "direction": "NE", "lat": 40.769897, "lon": -73.73597, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.73597, 40.769897 ] } }, -{ "type": "Feature", "properties": { "id": 500891, "name": "Little Neck Pkwy/Northern Blvd", "direction": "E", "lat": 40.770466, "lon": -73.735085, "routes": "Q36, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.735085, 40.770466 ] } }, -{ "type": "Feature", "properties": { "id": 500892, "name": "Pembroke Av/Glenwood St", "direction": "NE", "lat": 40.771717, "lon": -73.73325, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.73325, 40.771717 ] } }, -{ "type": "Feature", "properties": { "id": 500893, "name": "Northern Blvd/Morgan St", "direction": "SW", "lat": 40.771706, "lon": -73.734695, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.734695, 40.771706 ] } }, -{ "type": "Feature", "properties": { "id": 500895, "name": "Northern Blvd/Little Neck Pkwy", "direction": "SW", "lat": 40.770447, "lon": -73.735794, "routes": "QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.735794, 40.770447 ] } }, -{ "type": "Feature", "properties": { "id": 500896, "name": "Northern Blvd/Marathon Pkwy", "direction": "SW", "lat": 40.76823, "lon": -73.737915, "routes": "Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.737915, 40.76823 ] } }, -{ "type": "Feature", "properties": { "id": 500899, "name": "Northern Blvd/Douglaston Pkwy", "direction": "W", "lat": 40.765457, "lon": -73.7442, "routes": "QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.7442, 40.765457 ] } }, -{ "type": "Feature", "properties": { "id": 500900, "name": "Northern Blvd/Alameda Av", "direction": "W", "lat": 40.76486, "lon": -73.74608, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.74608, 40.76486 ] } }, -{ "type": "Feature", "properties": { "id": 500901, "name": "Northern Blvd/232 St", "direction": "W", "lat": 40.764606, "lon": -73.74687, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.74687, 40.764606 ] } }, -{ "type": "Feature", "properties": { "id": 500902, "name": "Northern Blvd/223 St", "direction": "W", "lat": 40.761993, "lon": -73.7589, "routes": "QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.7589, 40.761993 ] } }, -{ "type": "Feature", "properties": { "id": 500903, "name": "Northern Blvd/221 St", "direction": "W", "lat": 40.761692, "lon": -73.76076, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.76076, 40.761692 ] } }, -{ "type": "Feature", "properties": { "id": 500904, "name": "Northern Blvd/219 St", "direction": "W", "lat": 40.761272, "lon": -73.76338, "routes": "QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.76338, 40.761272 ] } }, -{ "type": "Feature", "properties": { "id": 500905, "name": "Northern Blvd/217 St", "direction": "W", "lat": 40.76098, "lon": -73.76522, "routes": "Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.76522, 40.76098 ] } }, -{ "type": "Feature", "properties": { "id": 500906, "name": "Northern Blvd/215 Pl", "direction": "W", "lat": 40.760647, "lon": -73.76701, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.76701, 40.760647 ] } }, -{ "type": "Feature", "properties": { "id": 500907, "name": "Northern Blvd/Bell Blvd", "direction": "W", "lat": 40.760353, "lon": -73.76924, "routes": "QM3, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.76924, 40.760353 ] } }, -{ "type": "Feature", "properties": { "id": 500908, "name": "Northern Blvd/212 St", "direction": "W", "lat": 40.75986, "lon": -73.77157, "routes": "Q13, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.77157, 40.75986 ] } }, -{ "type": "Feature", "properties": { "id": 500909, "name": "Northern Blvd/Corporal Kennedy St", "direction": "W", "lat": 40.759125, "lon": -73.77423, "routes": "Q13, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.77423, 40.759125 ] } }, -{ "type": "Feature", "properties": { "id": 500910, "name": "Northern Blvd/Clearview Expwy", "direction": "W", "lat": 40.758446, "lon": -73.77687, "routes": "QM3, Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77687, 40.758446 ] } }, -{ "type": "Feature", "properties": { "id": 500911, "name": "Northern Blvd/204 St", "direction": "W", "lat": 40.75771, "lon": -73.77974, "routes": "Q13, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.77974, 40.75771 ] } }, -{ "type": "Feature", "properties": { "id": 500912, "name": "Northern Blvd/202 St", "direction": "W", "lat": 40.757656, "lon": -73.78155, "routes": "Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.78155, 40.757656 ] } }, -{ "type": "Feature", "properties": { "id": 500913, "name": "Northern Blvd/Francis Lewis Blvd", "direction": "W", "lat": 40.757793, "lon": -73.783356, "routes": "Q13, Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.783356, 40.757793 ] } }, -{ "type": "Feature", "properties": { "id": 500914, "name": "Northern Blvd/196 St", "direction": "W", "lat": 40.758038, "lon": -73.78608, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.78608, 40.758038 ] } }, -{ "type": "Feature", "properties": { "id": 500915, "name": "Northern Blvd/194 St", "direction": "W", "lat": 40.757942, "lon": -73.78801, "routes": "QM3, Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.78801, 40.757942 ] } }, -{ "type": "Feature", "properties": { "id": 500916, "name": "Northern Blvd/192 St", "direction": "W", "lat": 40.757904, "lon": -73.789856, "routes": "Q13, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.789856, 40.757904 ] } }, -{ "type": "Feature", "properties": { "id": 500917, "name": "Northern Blvd/189 St", "direction": "W", "lat": 40.757828, "lon": -73.792564, "routes": "Q13, Q12, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.792564, 40.757828 ] } }, -{ "type": "Feature", "properties": { "id": 500918, "name": "Northern Blvd/172 St", "direction": "W", "lat": 40.757828, "lon": -73.79442, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.79442, 40.757828 ] } }, -{ "type": "Feature", "properties": { "id": 500919, "name": "Northern Blvd/171 St", "direction": "W", "lat": 40.758297, "lon": -73.79617, "routes": "Q12, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.79617, 40.758297 ] } }, -{ "type": "Feature", "properties": { "id": 500920, "name": "Northern Blvd/169 St", "direction": "W", "lat": 40.758987, "lon": -73.797966, "routes": "Q12, QM3, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.797966, 40.758987 ] } }, -{ "type": "Feature", "properties": { "id": 500921, "name": "Northern Blvd/167 St", "direction": "W", "lat": 40.75964, "lon": -73.79976, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.79976, 40.75964 ] } }, -{ "type": "Feature", "properties": { "id": 500922, "name": "Sanford Av/165 St", "direction": "W", "lat": 40.760048, "lon": -73.80214, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.80214, 40.760048 ] } }, -{ "type": "Feature", "properties": { "id": 500923, "name": "Sanford Av/162 St", "direction": "W", "lat": 40.76041, "lon": -73.8044, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.8044, 40.76041 ] } }, -{ "type": "Feature", "properties": { "id": 500925, "name": "Sanford Av/158 St", "direction": "W", "lat": 40.761093, "lon": -73.80804, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.80804, 40.761093 ] } }, -{ "type": "Feature", "properties": { "id": 500926, "name": "Sanford Av/156 St", "direction": "W", "lat": 40.7614, "lon": -73.8099, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.8099, 40.7614 ] } }, -{ "type": "Feature", "properties": { "id": 500929, "name": "Sanford Av/149 St", "direction": "W", "lat": 40.76032, "lon": -73.81553, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.81553, 40.76032 ] } }, -{ "type": "Feature", "properties": { "id": 500930, "name": "Sanford Av/147 St", "direction": "W", "lat": 40.759724, "lon": -73.81773, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.81773, 40.759724 ] } }, -{ "type": "Feature", "properties": { "id": 500931, "name": "Sanford Av/Parsons Blvd", "direction": "W", "lat": 40.758785, "lon": -73.821205, "routes": "Q12, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.821205, 40.758785 ] } }, -{ "type": "Feature", "properties": { "id": 500932, "name": "Sanford Av/Bowne St", "direction": "W", "lat": 40.75823, "lon": -73.8234, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.8234, 40.75823 ] } }, -{ "type": "Feature", "properties": { "id": 500939, "name": "Little Neck Pkwy/87 Av", "direction": "N", "lat": 40.731274, "lon": -73.71087, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71087, 40.731274 ] } }, -{ "type": "Feature", "properties": { "id": 500940, "name": "Little Neck Pkwy/86 Av", "direction": "NW", "lat": 40.732803, "lon": -73.71146, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71146, 40.732803 ] } }, -{ "type": "Feature", "properties": { "id": 500941, "name": "Little Neck Pkwy/85 Av", "direction": "N", "lat": 40.73453, "lon": -73.7125, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7125, 40.73453 ] } }, -{ "type": "Feature", "properties": { "id": 500942, "name": "Little Neck Pkwy/Hillside Av", "direction": "NW", "lat": 40.73654, "lon": -73.71367, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71367, 40.73654 ] } }, -{ "type": "Feature", "properties": { "id": 500943, "name": "Little Neck Pkwy/83 Av", "direction": "NW", "lat": 40.738224, "lon": -73.71472, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71472, 40.738224 ] } }, -{ "type": "Feature", "properties": { "id": 500945, "name": "Little Neck Pkwy/81 Av", "direction": "NW", "lat": 40.741985, "lon": -73.71658, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71658, 40.741985 ] } }, -{ "type": "Feature", "properties": { "id": 500946, "name": "Little Neck Pkwy/80 Av", "direction": "NW", "lat": 40.74381, "lon": -73.71739, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71739, 40.74381 ] } }, -{ "type": "Feature", "properties": { "id": 500947, "name": "Little Neck Pkwy/75 Av", "direction": "NW", "lat": 40.745712, "lon": -73.718254, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.718254, 40.745712 ] } }, -{ "type": "Feature", "properties": { "id": 500948, "name": "Little Neck Pkwy/74 Av", "direction": "N", "lat": 40.747276, "lon": -73.7189, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7189, 40.747276 ] } }, -{ "type": "Feature", "properties": { "id": 500949, "name": "Little Neck Pkwy/73 Rd", "direction": "NW", "lat": 40.749733, "lon": -73.71994, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71994, 40.749733 ] } }, -{ "type": "Feature", "properties": { "id": 500950, "name": "Little Neck Pkwy/260 St", "direction": "N", "lat": 40.7518, "lon": -73.72088, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72088, 40.7518 ] } }, -{ "type": "Feature", "properties": { "id": 500951, "name": "Little Neck Pkwy/Grand Central Pkwy", "direction": "NW", "lat": 40.754425, "lon": -73.72303, "routes": "QM8, QM5, QM35, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72303, 40.754425 ] } }, -{ "type": "Feature", "properties": { "id": 500952, "name": "Little Neck Pkwy/255 St", "direction": "N", "lat": 40.75667, "lon": -73.72263, "routes": "QM35, QM8, Q36, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.72263, 40.75667 ] } }, -{ "type": "Feature", "properties": { "id": 500953, "name": "Little Neck Pkwy/61 Av", "direction": "N", "lat": 40.7593, "lon": -73.7225, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7225, 40.7593 ] } }, -{ "type": "Feature", "properties": { "id": 500954, "name": "Little Neck Pkwy/58 Av", "direction": "N", "lat": 40.761784, "lon": -73.72306, "routes": "QM5, QM8, QM35, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72306, 40.761784 ] } }, -{ "type": "Feature", "properties": { "id": 500955, "name": "Little Neck Pkwy/Horace Harding Expwy", "direction": "N", "lat": 40.764893, "lon": -73.724304, "routes": "Q36, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.724304, 40.764893 ] } }, -{ "type": "Feature", "properties": { "id": 500956, "name": "Little Neck Pkwy/Leeds Rd", "direction": "NW", "lat": 40.767193, "lon": -73.72768, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72768, 40.767193 ] } }, -{ "type": "Feature", "properties": { "id": 500957, "name": "Little Neck Pkwy/Bates Rd", "direction": "NW", "lat": 40.768444, "lon": -73.72968, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72968, 40.768444 ] } }, -{ "type": "Feature", "properties": { "id": 500958, "name": "Little Neck Pkwy/Annandale Ln", "direction": "W", "lat": 40.76914, "lon": -73.73157, "routes": "QM3, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73157, 40.76914 ] } }, -{ "type": "Feature", "properties": { "id": 500959, "name": "Little Neck Pkwy/West End Dr", "direction": "W", "lat": 40.770336, "lon": -73.73393, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73393, 40.770336 ] } }, -{ "type": "Feature", "properties": { "id": 500960, "name": "Little Neck Pkwy/Northern Blvd", "direction": "W", "lat": 40.77072, "lon": -73.73594, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73594, 40.77072 ] } }, -{ "type": "Feature", "properties": { "id": 500961, "name": "Little Neck Pkwy/43 Av", "direction": "W", "lat": 40.770813, "lon": -73.73776, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73776, 40.770813 ] } }, -{ "type": "Feature", "properties": { "id": 500962, "name": "41 Av/Little Neck Pkwy", "direction": "SW", "lat": 40.772587, "lon": -73.74113, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74113, 40.772587 ] } }, -{ "type": "Feature", "properties": { "id": 500963, "name": "40 Av/Little Neck Pkwy", "direction": "NE", "lat": 40.77313, "lon": -73.74142, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74142, 40.77313 ] } }, -{ "type": "Feature", "properties": { "id": 500965, "name": "Little Neck Pkwy/Marathon Pkwy", "direction": "E", "lat": 40.770683, "lon": -73.73838, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73838, 40.770683 ] } }, -{ "type": "Feature", "properties": { "id": 500967, "name": "Little Neck Pkwy/West End Dr", "direction": "SE", "lat": 40.7698, "lon": -73.73288, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73288, 40.7698 ] } }, -{ "type": "Feature", "properties": { "id": 500968, "name": "Little Neck Pkwy/Annandale Ln", "direction": "E", "lat": 40.768913, "lon": -73.73126, "routes": "QM3, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73126, 40.768913 ] } }, -{ "type": "Feature", "properties": { "id": 500969, "name": "Little Neck Pkwy/Brattle Av", "direction": "SE", "lat": 40.767704, "lon": -73.7291, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7291, 40.767704 ] } }, -{ "type": "Feature", "properties": { "id": 500970, "name": "Little Neck Pkwy/Leeds Rd", "direction": "E", "lat": 40.766853, "lon": -73.72717, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72717, 40.766853 ] } }, -{ "type": "Feature", "properties": { "id": 500971, "name": "Little Neck Pkwy/Nassau Blvd", "direction": "S", "lat": 40.76491, "lon": -73.72451, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72451, 40.76491 ] } }, -{ "type": "Feature", "properties": { "id": 500973, "name": "Little Neck Pkwy/58 Av", "direction": "S", "lat": 40.761555, "lon": -73.723206, "routes": "QM8, Q36, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.723206, 40.761555 ] } }, -{ "type": "Feature", "properties": { "id": 500974, "name": "Little Neck Pkwy/60 Av", "direction": "S", "lat": 40.759747, "lon": -73.72277, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72277, 40.759747 ] } }, -{ "type": "Feature", "properties": { "id": 500975, "name": "Little Neck Pkwy/61 Av", "direction": "S", "lat": 40.75816, "lon": -73.72257, "routes": "Q36, QM8, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.72257, 40.75816 ] } }, -{ "type": "Feature", "properties": { "id": 500976, "name": "Little Neck Pkwy/Cullman Av", "direction": "SW", "lat": 40.755535, "lon": -73.723236, "routes": "Q36, QM5, QM8, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.723236, 40.755535 ] } }, -{ "type": "Feature", "properties": { "id": 500977, "name": "Little Neck Pkwy/Grand Central Pkwy", "direction": "SE", "lat": 40.75316, "lon": -73.72239, "routes": "QM5, Q36, QM8, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.72239, 40.75316 ] } }, -{ "type": "Feature", "properties": { "id": 500978, "name": "Little Neck Pkwy/252 St", "direction": "S", "lat": 40.752132, "lon": -73.72126, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72126, 40.752132 ] } }, -{ "type": "Feature", "properties": { "id": 500979, "name": "Little Neck Pkwy/73 Rd", "direction": "SE", "lat": 40.749523, "lon": -73.720116, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.720116, 40.749523 ] } }, -{ "type": "Feature", "properties": { "id": 500980, "name": "Little Neck Pkwy/74 Av", "direction": "S", "lat": 40.74699, "lon": -73.71909, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71909, 40.74699 ] } }, -{ "type": "Feature", "properties": { "id": 500981, "name": "Little Neck Pkwy/Shiloh Av", "direction": "SE", "lat": 40.74571, "lon": -73.71853, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71853, 40.74571 ] } }, -{ "type": "Feature", "properties": { "id": 500982, "name": "Little Neck Pkwy/Union Tpke", "direction": "SE", "lat": 40.744106, "lon": -73.71781, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71781, 40.744106 ] } }, -{ "type": "Feature", "properties": { "id": 500983, "name": "Little Neck Pkwy/81 Av", "direction": "SE", "lat": 40.741318, "lon": -73.71656, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71656, 40.741318 ] } }, -{ "type": "Feature", "properties": { "id": 500984, "name": "Little Neck Pkwy/82 Av", "direction": "SE", "lat": 40.739952, "lon": -73.71596, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71596, 40.739952 ] } }, -{ "type": "Feature", "properties": { "id": 500985, "name": "Little Neck Pkwy/83 Av", "direction": "SE", "lat": 40.737392, "lon": -73.714775, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.714775, 40.737392 ] } }, -{ "type": "Feature", "properties": { "id": 500986, "name": "Little Neck Pkwy/Hillside Av", "direction": "SE", "lat": 40.736294, "lon": -73.71407, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71407, 40.736294 ] } }, -{ "type": "Feature", "properties": { "id": 500987, "name": "Little Neck Pkwy/85 Av", "direction": "SE", "lat": 40.73387, "lon": -73.71245, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71245, 40.73387 ] } }, -{ "type": "Feature", "properties": { "id": 500988, "name": "Little Neck Pkwy/86 Av", "direction": "S", "lat": 40.732166, "lon": -73.71149, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71149, 40.732166 ] } }, -{ "type": "Feature", "properties": { "id": 500989, "name": "Little Neck Pkwy/87 Av", "direction": "S", "lat": 40.73062, "lon": -73.71093, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71093, 40.73062 ] } }, -{ "type": "Feature", "properties": { "id": 500994, "name": "Main St/Northern Blvd", "direction": "NW", "lat": 40.76269, "lon": -73.83172, "routes": "Q20B, Q66, Q20A, Q50, Q34, Q65, Q19, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83172, 40.76269 ] } }, -{ "type": "Feature", "properties": { "id": 500996, "name": "Northern Blvd/Bowne St", "direction": "E", "lat": 40.764328, "lon": -73.825874, "routes": "Q13, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.825874, 40.764328 ] } }, -{ "type": "Feature", "properties": { "id": 500997, "name": "Northern Blvd/Parsons Blvd", "direction": "E", "lat": 40.764606, "lon": -73.822975, "routes": "Q13, QM3, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.822975, 40.764606 ] } }, -{ "type": "Feature", "properties": { "id": 500999, "name": "Northern Blvd/149 St", "direction": "E", "lat": 40.76524, "lon": -73.81682, "routes": "Q13, Q28, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.81682, 40.76524 ] } }, -{ "type": "Feature", "properties": { "id": 501000, "name": "Northern Blvd/150 St", "direction": "E", "lat": 40.765167, "lon": -73.81529, "routes": "Q13, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.81529, 40.765167 ] } }, -{ "type": "Feature", "properties": { "id": 501001, "name": "Northern Blvd/Murray St", "direction": "E", "lat": 40.764862, "lon": -73.8125, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.8125, 40.764862 ] } }, -{ "type": "Feature", "properties": { "id": 501004, "name": "Northern Blvd/157 St", "direction": "E", "lat": 40.76356, "lon": -73.80786, "routes": "Q13, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.80786, 40.76356 ] } }, -{ "type": "Feature", "properties": { "id": 501005, "name": "Northern Blvd/159 St", "direction": "E", "lat": 40.762955, "lon": -73.80606, "routes": "Q28, Q13, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.80606, 40.762955 ] } }, -{ "type": "Feature", "properties": { "id": 501007, "name": "Northern Blvd/163 St", "direction": "SE", "lat": 40.76109, "lon": -73.80259, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.80259, 40.76109 ] } }, -{ "type": "Feature", "properties": { "id": 501008, "name": "Northern Blvd/166 St", "direction": "E", "lat": 40.75948, "lon": -73.799934, "routes": "QM3, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.799934, 40.75948 ] } }, -{ "type": "Feature", "properties": { "id": 501023, "name": "Bell Blvd/Northern Blvd", "direction": "NW", "lat": 40.760567, "lon": -73.76944, "routes": "Q13, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.76944, 40.760567 ] } }, -{ "type": "Feature", "properties": { "id": 501024, "name": "Bell Blvd/42 Av", "direction": "NW", "lat": 40.762985, "lon": -73.77055, "routes": "Q13, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77055, 40.762985 ] } }, -{ "type": "Feature", "properties": { "id": 501025, "name": "Bell Blvd/40 Av", "direction": "NW", "lat": 40.764565, "lon": -73.771385, "routes": "Q13, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.771385, 40.764565 ] } }, -{ "type": "Feature", "properties": { "id": 501026, "name": "Bell Blvd/38 Av", "direction": "NW", "lat": 40.76647, "lon": -73.772415, "routes": "Q31, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.772415, 40.76647 ] } }, -{ "type": "Feature", "properties": { "id": 501027, "name": "Bell Blvd/36 Av", "direction": "NW", "lat": 40.767944, "lon": -73.773155, "routes": "Q31, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.773155, 40.767944 ] } }, -{ "type": "Feature", "properties": { "id": 501030, "name": "Bell Blvd/33 Av", "direction": "N", "lat": 40.77242, "lon": -73.77447, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77447, 40.77242 ] } }, -{ "type": "Feature", "properties": { "id": 501031, "name": "Bell Blvd/32 Av", "direction": "N", "lat": 40.773567, "lon": -73.77471, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77471, 40.773567 ] } }, -{ "type": "Feature", "properties": { "id": 501032, "name": "Bell Blvd/29 Av", "direction": "N", "lat": 40.775654, "lon": -73.77516, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77516, 40.775654 ] } }, -{ "type": "Feature", "properties": { "id": 501033, "name": "Bell Blvd/28 Av", "direction": "N", "lat": 40.777367, "lon": -73.775536, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.775536, 40.777367 ] } }, -{ "type": "Feature", "properties": { "id": 501035, "name": "Bell Blvd/24 Av", "direction": "NE", "lat": 40.779217, "lon": -73.77548, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77548, 40.779217 ] } }, -{ "type": "Feature", "properties": { "id": 501037, "name": "Bell Blvd/23 Av", "direction": "NW", "lat": 40.782776, "lon": -73.776634, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.776634, 40.782776 ] } }, -{ "type": "Feature", "properties": { "id": 501038, "name": "Bell Blvd/18 Av", "direction": "NW", "lat": 40.78389, "lon": -73.77743, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77743, 40.78389 ] } }, -{ "type": "Feature", "properties": { "id": 501039, "name": "Bell Blvd/16 Av", "direction": "NW", "lat": 40.785744, "lon": -73.77878, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77878, 40.785744 ] } }, -{ "type": "Feature", "properties": { "id": 501040, "name": "Bell Blvd/14 Av", "direction": "NW", "lat": 40.788116, "lon": -73.78081, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.78081, 40.788116 ] } }, -{ "type": "Feature", "properties": { "id": 501041, "name": "Bell Blvd/212 St", "direction": "NW", "lat": 40.788715, "lon": -73.782074, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.782074, 40.788715 ] } }, -{ "type": "Feature", "properties": { "id": 501044, "name": "Bell Blvd/212 St", "direction": "SE", "lat": 40.788082, "lon": -73.78109, "routes": "QM32, Q13, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.78109, 40.788082 ] } }, -{ "type": "Feature", "properties": { "id": 501045, "name": "Bell Blvd/14 Av", "direction": "SE", "lat": 40.787594, "lon": -73.78046, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.78046, 40.787594 ] } }, -{ "type": "Feature", "properties": { "id": 501046, "name": "Bell Blvd/16 Av", "direction": "SE", "lat": 40.785156, "lon": -73.7786, "routes": "QM2, Q13, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.7786, 40.785156 ] } }, -{ "type": "Feature", "properties": { "id": 501047, "name": "Bell Blvd/18 Av", "direction": "SE", "lat": 40.783485, "lon": -73.777466, "routes": "QM2, QM32, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.777466, 40.783485 ] } }, -{ "type": "Feature", "properties": { "id": 501048, "name": "Bell Blvd/23 Av", "direction": "SE", "lat": 40.7821, "lon": -73.776405, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.776405, 40.7821 ] } }, -{ "type": "Feature", "properties": { "id": 501049, "name": "Bell Blvd/24 Av", "direction": "S", "lat": 40.779846, "lon": -73.775505, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.775505, 40.779846 ] } }, -{ "type": "Feature", "properties": { "id": 501050, "name": "Bell Blvd/28 Av", "direction": "S", "lat": 40.7771, "lon": -73.775635, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.775635, 40.7771 ] } }, -{ "type": "Feature", "properties": { "id": 501051, "name": "Bell Blvd/29 Av", "direction": "S", "lat": 40.77498, "lon": -73.775185, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.775185, 40.77498 ] } }, -{ "type": "Feature", "properties": { "id": 501052, "name": "Bell Blvd/32 Av", "direction": "S", "lat": 40.773743, "lon": -73.77491, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77491, 40.773743 ] } }, -{ "type": "Feature", "properties": { "id": 501053, "name": "Bell Blvd/33 Av", "direction": "S", "lat": 40.771763, "lon": -73.77449, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77449, 40.771763 ] } }, -{ "type": "Feature", "properties": { "id": 501054, "name": "Bell Blvd/33 Rd", "direction": "S", "lat": 40.770702, "lon": -73.77426, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77426, 40.770702 ] } }, -{ "type": "Feature", "properties": { "id": 501055, "name": "Bell Blvd/35 Av", "direction": "SE", "lat": 40.76862, "lon": -73.77369, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77369, 40.76862 ] } }, -{ "type": "Feature", "properties": { "id": 501056, "name": "Bell Blvd/38 Av", "direction": "SE", "lat": 40.766636, "lon": -73.77264, "routes": "Q13, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77264, 40.766636 ] } }, -{ "type": "Feature", "properties": { "id": 501057, "name": "Bell Blvd/39 Av", "direction": "SE", "lat": 40.764973, "lon": -73.771835, "routes": "Q31, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.771835, 40.764973 ] } }, -{ "type": "Feature", "properties": { "id": 501058, "name": "Bell Blvd/41 Av", "direction": "SE", "lat": 40.763283, "lon": -73.77092, "routes": "Q13, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77092, 40.763283 ] } }, -{ "type": "Feature", "properties": { "id": 501059, "name": "Bell Blvd/43 Av", "direction": "SE", "lat": 40.76151, "lon": -73.77007, "routes": "Q13, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77007, 40.76151 ] } }, -{ "type": "Feature", "properties": { "id": 501060, "name": "Bell Blvd/Northern Blvd", "direction": "SE", "lat": 40.7604, "lon": -73.76952, "routes": "Q31, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.76952, 40.7604 ] } }, -{ "type": "Feature", "properties": { "id": 501075, "name": "Northern Blvd/165 St", "direction": "NW", "lat": 40.76053, "lon": -73.80147, "routes": "QM3, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.80147, 40.76053 ] } }, -{ "type": "Feature", "properties": { "id": 501076, "name": "Northern Blvd/Station Rd", "direction": "NW", "lat": 40.76146, "lon": -73.80271, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.80271, 40.76146 ] } }, -{ "type": "Feature", "properties": { "id": 501077, "name": "Northern Blvd/161 St", "direction": "W", "lat": 40.76283, "lon": -73.805016, "routes": "Q28, Q13, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.805016, 40.76283 ] } }, -{ "type": "Feature", "properties": { "id": 501078, "name": "Northern Blvd/159 St", "direction": "W", "lat": 40.763443, "lon": -73.80684, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.80684, 40.763443 ] } }, -{ "type": "Feature", "properties": { "id": 501079, "name": "Northern Blvd/157 St", "direction": "W", "lat": 40.764027, "lon": -73.80862, "routes": "Q13, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.80862, 40.764027 ] } }, -{ "type": "Feature", "properties": { "id": 501080, "name": "Northern Blvd/154 St", "direction": "W", "lat": 40.764877, "lon": -73.81144, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.81144, 40.764877 ] } }, -{ "type": "Feature", "properties": { "id": 501081, "name": "Northern Blvd/Murray St", "direction": "W", "lat": 40.76523, "lon": -73.81338, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.81338, 40.76523 ] } }, -{ "type": "Feature", "properties": { "id": 501082, "name": "Northern Blvd/150 St", "direction": "W", "lat": 40.76535, "lon": -73.815, "routes": "Q13, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.815, 40.76535 ] } }, -{ "type": "Feature", "properties": { "id": 501083, "name": "Northern Blvd/149 St", "direction": "W", "lat": 40.765423, "lon": -73.81786, "routes": "Q13, Q28, QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.81786, 40.765423 ] } }, -{ "type": "Feature", "properties": { "id": 501084, "name": "Northern Blvd/146 St", "direction": "W", "lat": 40.76501, "lon": -73.82091, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.82091, 40.76501 ] } }, -{ "type": "Feature", "properties": { "id": 501085, "name": "Northern Blvd/Parsons Blvd", "direction": "W", "lat": 40.76467, "lon": -73.82416, "routes": "QM3, Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.82416, 40.76467 ] } }, -{ "type": "Feature", "properties": { "id": 501086, "name": "Northern Blvd/Bowne St", "direction": "W", "lat": 40.764427, "lon": -73.8258, "routes": "Q13, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.8258, 40.764427 ] } }, -{ "type": "Feature", "properties": { "id": 501087, "name": "Union St/Northern Blvd", "direction": "SE", "lat": 40.763706, "lon": -73.82823, "routes": "Q28, Q16, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.82823, 40.763706 ] } }, -{ "type": "Feature", "properties": { "id": 501093, "name": "Union St/35 Av", "direction": "N", "lat": 40.765247, "lon": -73.8278, "routes": "Q20A, Q16, Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.8278, 40.765247 ] } }, -{ "type": "Feature", "properties": { "id": 501094, "name": "Union St/33 Av", "direction": "NE", "lat": 40.767864, "lon": -73.82681, "routes": "Q16, Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82681, 40.767864 ] } }, -{ "type": "Feature", "properties": { "id": 501095, "name": "Union St/Bayside Av", "direction": "N", "lat": 40.770004, "lon": -73.82651, "routes": "Q44+, Q20B, Q16, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82651, 40.770004 ] } }, -{ "type": "Feature", "properties": { "id": 501096, "name": "Union St/28 Av", "direction": "N", "lat": 40.773033, "lon": -73.82642, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82642, 40.773033 ] } }, -{ "type": "Feature", "properties": { "id": 501097, "name": "Union St/26 Av", "direction": "N", "lat": 40.774853, "lon": -73.82609, "routes": "QM20, Q44+, QM2, Q20A, Q20B, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.82609, 40.774853 ] } }, -{ "type": "Feature", "properties": { "id": 501098, "name": "Union St/Parsons Blvd", "direction": "NE", "lat": 40.77654, "lon": -73.82472, "routes": "Q34, Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82472, 40.77654 ] } }, -{ "type": "Feature", "properties": { "id": 501100, "name": "Willets Point Blvd/146 St", "direction": "E", "lat": 40.77681, "lon": -73.82178, "routes": "Q34, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.82178, 40.77681 ] } }, -{ "type": "Feature", "properties": { "id": 501101, "name": "Willets Point Blvd/147 St", "direction": "E", "lat": 40.77658, "lon": -73.81946, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81946, 40.77658 ] } }, -{ "type": "Feature", "properties": { "id": 501110, "name": "150 St/Cross Island Pkwy Service Rd North", "direction": "N", "lat": 40.787586, "lon": -73.81327, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81327, 40.787586 ] } }, -{ "type": "Feature", "properties": { "id": 501111, "name": "150 St/14 Av", "direction": "N", "lat": 40.789146, "lon": -73.81386, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81386, 40.789146 ] } }, -{ "type": "Feature", "properties": { "id": 501112, "name": "150 St/12 Av", "direction": "N", "lat": 40.790657, "lon": -73.81446, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81446, 40.790657 ] } }, -{ "type": "Feature", "properties": { "id": 501113, "name": "150 St/10 Av", "direction": "N", "lat": 40.79273, "lon": -73.81529, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81529, 40.79273 ] } }, -{ "type": "Feature", "properties": { "id": 501114, "name": "150 St/8 Av", "direction": "N", "lat": 40.794228, "lon": -73.81589, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81589, 40.794228 ] } }, -{ "type": "Feature", "properties": { "id": 501115, "name": "7 Av/150 St", "direction": "E", "lat": 40.794815, "lon": -73.81575, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81575, 40.794815 ] } }, -{ "type": "Feature", "properties": { "id": 501118, "name": "150 St/7 Av", "direction": "S", "lat": 40.79446, "lon": -73.81612, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81612, 40.79446 ] } }, -{ "type": "Feature", "properties": { "id": 501119, "name": "150 St/9 Av", "direction": "S", "lat": 40.792805, "lon": -73.81546, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81546, 40.792805 ] } }, -{ "type": "Feature", "properties": { "id": 501120, "name": "150 St/11 Av", "direction": "S", "lat": 40.79117, "lon": -73.814804, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.814804, 40.79117 ] } }, -{ "type": "Feature", "properties": { "id": 501122, "name": "150 St/14 Av", "direction": "S", "lat": 40.788494, "lon": -73.81374, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81374, 40.788494 ] } }, -{ "type": "Feature", "properties": { "id": 501132, "name": "Willets Point Blvd/147 St", "direction": "W", "lat": 40.77677, "lon": -73.81985, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81985, 40.77677 ] } }, -{ "type": "Feature", "properties": { "id": 501133, "name": "Willets Point Blvd/146 St", "direction": "W", "lat": 40.77696, "lon": -73.82156, "routes": "Q34, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.82156, 40.77696 ] } }, -{ "type": "Feature", "properties": { "id": 501134, "name": "Willets Point Blvd/Parsons Blvd", "direction": "W", "lat": 40.77683, "lon": -73.82422, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.82422, 40.77683 ] } }, -{ "type": "Feature", "properties": { "id": 501135, "name": "Union St/25 Rd", "direction": "S", "lat": 40.775517, "lon": -73.826065, "routes": "Q20A, Q34, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.826065, 40.775517 ] } }, -{ "type": "Feature", "properties": { "id": 501136, "name": "Union St/26 Av", "direction": "S", "lat": 40.77412, "lon": -73.82645, "routes": "Q44+, Q34, Q20B, Q20A, QM20, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.82645, 40.77412 ] } }, -{ "type": "Feature", "properties": { "id": 501137, "name": "Union St/28 Av", "direction": "S", "lat": 40.772697, "lon": -73.82663, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82663, 40.772697 ] } }, -{ "type": "Feature", "properties": { "id": 501138, "name": "Union St/31 Rd", "direction": "S", "lat": 40.770252, "lon": -73.826645, "routes": "Q44+, Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.826645, 40.770252 ] } }, -{ "type": "Feature", "properties": { "id": 501139, "name": "Union St/33 Av", "direction": "SW", "lat": 40.76762, "lon": -73.8271, "routes": "Q20B, Q20A, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.8271, 40.76762 ] } }, -{ "type": "Feature", "properties": { "id": 501140, "name": "Union St/35 Av", "direction": "S", "lat": 40.765423, "lon": -73.82794, "routes": "Q16, Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82794, 40.765423 ] } }, -{ "type": "Feature", "properties": { "id": 501141, "name": "Union St/Northern Blvd", "direction": "S", "lat": 40.764202, "lon": -73.82817, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82817, 40.764202 ] } }, -{ "type": "Feature", "properties": { "id": 501148, "name": "41 Av/Parsons Blvd", "direction": "E", "lat": 40.76058, "lon": -73.82113, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.82113, 40.76058 ] } }, -{ "type": "Feature", "properties": { "id": 501149, "name": "41 Av/147 St", "direction": "E", "lat": 40.761517, "lon": -73.817665, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.817665, 40.761517 ] } }, -{ "type": "Feature", "properties": { "id": 501150, "name": "41 Av/149 St", "direction": "E", "lat": 40.762123, "lon": -73.815445, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.815445, 40.762123 ] } }, -{ "type": "Feature", "properties": { "id": 501152, "name": "150 St/Roosevelt Av", "direction": "NW", "lat": 40.763992, "lon": -73.81451, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81451, 40.763992 ] } }, -{ "type": "Feature", "properties": { "id": 501153, "name": "150 St/Northern Blvd", "direction": "N", "lat": 40.765633, "lon": -73.81512, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81512, 40.765633 ] } }, -{ "type": "Feature", "properties": { "id": 501154, "name": "150 St/34 Av", "direction": "N", "lat": 40.767822, "lon": -73.81537, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81537, 40.767822 ] } }, -{ "type": "Feature", "properties": { "id": 501155, "name": "150 St/33 Av", "direction": "N", "lat": 40.76925, "lon": -73.81553, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81553, 40.76925 ] } }, -{ "type": "Feature", "properties": { "id": 501156, "name": "150 St/Bayside Av", "direction": "N", "lat": 40.77141, "lon": -73.81578, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81578, 40.77141 ] } }, -{ "type": "Feature", "properties": { "id": 501157, "name": "150 St/29 Av", "direction": "N", "lat": 40.77253, "lon": -73.81551, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81551, 40.77253 ] } }, -{ "type": "Feature", "properties": { "id": 501158, "name": "150 St/27 Av", "direction": "N", "lat": 40.773926, "lon": -73.81517, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81517, 40.773926 ] } }, -{ "type": "Feature", "properties": { "id": 501159, "name": "150 St/25 Dr", "direction": "N", "lat": 40.775337, "lon": -73.81494, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81494, 40.775337 ] } }, -{ "type": "Feature", "properties": { "id": 501160, "name": "150 St/24 Rd", "direction": "N", "lat": 40.776756, "lon": -73.81475, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81475, 40.776756 ] } }, -{ "type": "Feature", "properties": { "id": 501161, "name": "150 St/23 Av", "direction": "N", "lat": 40.77821, "lon": -73.81455, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81455, 40.77821 ] } }, -{ "type": "Feature", "properties": { "id": 501162, "name": "150 St/21 Av", "direction": "N", "lat": 40.780155, "lon": -73.814285, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.814285, 40.780155 ] } }, -{ "type": "Feature", "properties": { "id": 501163, "name": "150 St/20 Av", "direction": "N", "lat": 40.781578, "lon": -73.81409, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81409, 40.781578 ] } }, -{ "type": "Feature", "properties": { "id": 501164, "name": "150 St/18 Av", "direction": "N", "lat": 40.783, "lon": -73.813896, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.813896, 40.783 ] } }, -{ "type": "Feature", "properties": { "id": 501165, "name": "150 St/17 Av", "direction": "N", "lat": 40.78442, "lon": -73.8137, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.8137, 40.78442 ] } }, -{ "type": "Feature", "properties": { "id": 501166, "name": "150 St/15 Dr", "direction": "N", "lat": 40.785496, "lon": -73.81359, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81359, 40.785496 ] } }, -{ "type": "Feature", "properties": { "id": 501172, "name": "Cross Island Pkwy/Clintonville St", "direction": "E", "lat": 40.786304, "lon": -73.80954, "routes": "QM32, QM2, Q76, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80954, 40.786304 ] } }, -{ "type": "Feature", "properties": { "id": 501174, "name": "154 St/Cryders Ln", "direction": "W", "lat": 40.786922, "lon": -73.80783, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80783, 40.786922 ] } }, -{ "type": "Feature", "properties": { "id": 501175, "name": "154 St/14 Av", "direction": "N", "lat": 40.789757, "lon": -73.807495, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.807495, 40.789757 ] } }, -{ "type": "Feature", "properties": { "id": 501176, "name": "154 St/12 Rd", "direction": "N", "lat": 40.791157, "lon": -73.807304, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.807304, 40.791157 ] } }, -{ "type": "Feature", "properties": { "id": 501177, "name": "154 St/11 Av", "direction": "N", "lat": 40.792183, "lon": -73.80716, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80716, 40.792183 ] } }, -{ "type": "Feature", "properties": { "id": 501184, "name": "166 St/Powells Cove Blvd", "direction": "N", "lat": 40.79384, "lon": -73.797424, "routes": "QM2, Q15A, QM32, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.797424, 40.79384 ] } }, -{ "type": "Feature", "properties": { "id": 501189, "name": "Powells Cove Blvd/162 St", "direction": "W", "lat": 40.79418, "lon": -73.79949, "routes": "QM2, Q15, QM32, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.79949, 40.79418 ] } }, -{ "type": "Feature", "properties": { "id": 501190, "name": "Powells Cove Blvd/160 St", "direction": "W", "lat": 40.79433, "lon": -73.80131, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80131, 40.79433 ] } }, -{ "type": "Feature", "properties": { "id": 501195, "name": "154 St/12 Rd", "direction": "S", "lat": 40.790565, "lon": -73.80755, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80755, 40.790565 ] } }, -{ "type": "Feature", "properties": { "id": 501196, "name": "154 St/14 Av", "direction": "S", "lat": 40.78913, "lon": -73.80773, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80773, 40.78913 ] } }, -{ "type": "Feature", "properties": { "id": 501197, "name": "154 St/Cross Island Pkwy", "direction": "S", "lat": 40.7871, "lon": -73.808044, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.808044, 40.7871 ] } }, -{ "type": "Feature", "properties": { "id": 501198, "name": "Cross Island Pkwy/Clintonville St", "direction": "W", "lat": 40.787167, "lon": -73.810165, "routes": "Q76, QM2, Q15, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.810165, 40.787167 ] } }, -{ "type": "Feature", "properties": { "id": 501199, "name": "Cross Island Pkwy/150 Pl", "direction": "W", "lat": 40.787357, "lon": -73.81173, "routes": "Q15, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.81173, 40.787357 ] } }, -{ "type": "Feature", "properties": { "id": 501201, "name": "150 St/16 Rd", "direction": "S", "lat": 40.784542, "lon": -73.81383, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81383, 40.784542 ] } }, -{ "type": "Feature", "properties": { "id": 501202, "name": "150 St/17 Rd", "direction": "S", "lat": 40.78311, "lon": -73.814026, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.814026, 40.78311 ] } }, -{ "type": "Feature", "properties": { "id": 501203, "name": "150 St/19 Av", "direction": "S", "lat": 40.7817, "lon": -73.814224, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.814224, 40.7817 ] } }, -{ "type": "Feature", "properties": { "id": 501204, "name": "150 St/20 Rd", "direction": "S", "lat": 40.780273, "lon": -73.814415, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.814415, 40.780273 ] } }, -{ "type": "Feature", "properties": { "id": 501205, "name": "150 St/22 Av", "direction": "S", "lat": 40.778584, "lon": -73.81465, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81465, 40.778584 ] } }, -{ "type": "Feature", "properties": { "id": 501210, "name": "150 St/Bayside Av", "direction": "S", "lat": 40.771175, "lon": -73.815926, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.815926, 40.771175 ] } }, -{ "type": "Feature", "properties": { "id": 501211, "name": "150 St/33 Av", "direction": "S", "lat": 40.76865, "lon": -73.815636, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.815636, 40.76865 ] } }, -{ "type": "Feature", "properties": { "id": 501212, "name": "150 St/34 Av", "direction": "S", "lat": 40.767227, "lon": -73.815475, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.815475, 40.767227 ] } }, -{ "type": "Feature", "properties": { "id": 501213, "name": "150 St/35 Av", "direction": "S", "lat": 40.766083, "lon": -73.815346, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.815346, 40.766083 ] } }, -{ "type": "Feature", "properties": { "id": 501214, "name": "150 St/Northern Blvd", "direction": "SE", "lat": 40.764923, "lon": -73.815094, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.815094, 40.764923 ] } }, -{ "type": "Feature", "properties": { "id": 501217, "name": "41 Av/149 St", "direction": "W", "lat": 40.762012, "lon": -73.81632, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81632, 40.762012 ] } }, -{ "type": "Feature", "properties": { "id": 501218, "name": "41 Av/147 St", "direction": "W", "lat": 40.76142, "lon": -73.818504, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.818504, 40.76142 ] } }, -{ "type": "Feature", "properties": { "id": 501219, "name": "41 Av/Parsons Blvd", "direction": "W", "lat": 40.76048, "lon": -73.82201, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.82201, 40.76048 ] } }, -{ "type": "Feature", "properties": { "id": 501232, "name": "Bayside Av/Parsons Blvd", "direction": "E", "lat": 40.770424, "lon": -73.824234, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.824234, 40.770424 ] } }, -{ "type": "Feature", "properties": { "id": 501233, "name": "Bayside Av/146 St", "direction": "E", "lat": 40.770824, "lon": -73.82145, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.82145, 40.770824 ] } }, -{ "type": "Feature", "properties": { "id": 501234, "name": "Bayside Av/148 St", "direction": "E", "lat": 40.77133, "lon": -73.817924, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.817924, 40.77133 ] } }, -{ "type": "Feature", "properties": { "id": 501235, "name": "Bayside Av/150 St", "direction": "E", "lat": 40.77146, "lon": -73.81545, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.81545, 40.77146 ] } }, -{ "type": "Feature", "properties": { "id": 501236, "name": "Bayside Av/Murray Ln", "direction": "E", "lat": 40.771503, "lon": -73.81367, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.81367, 40.771503 ] } }, -{ "type": "Feature", "properties": { "id": 501237, "name": "Bayside Av/152 St", "direction": "E", "lat": 40.771523, "lon": -73.81161, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.81161, 40.771523 ] } }, -{ "type": "Feature", "properties": { "id": 501238, "name": "Bayside Av/154 St", "direction": "E", "lat": 40.771526, "lon": -73.80963, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80963, 40.771526 ] } }, -{ "type": "Feature", "properties": { "id": 501239, "name": "29 Av/156 St", "direction": "E", "lat": 40.771416, "lon": -73.80825, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80825, 40.771416 ] } }, -{ "type": "Feature", "properties": { "id": 501240, "name": "29 Av/158 St", "direction": "E", "lat": 40.771152, "lon": -73.80641, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80641, 40.771152 ] } }, -{ "type": "Feature", "properties": { "id": 501241, "name": "29 Av/160 St", "direction": "E", "lat": 40.771053, "lon": -73.80404, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80404, 40.771053 ] } }, -{ "type": "Feature", "properties": { "id": 501242, "name": "29 Av/162 St", "direction": "E", "lat": 40.77111, "lon": -73.80215, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80215, 40.77111 ] } }, -{ "type": "Feature", "properties": { "id": 501243, "name": "29 Av/164 St", "direction": "E", "lat": 40.771004, "lon": -73.80076, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80076, 40.771004 ] } }, -{ "type": "Feature", "properties": { "id": 501246, "name": "29 Av/170 St", "direction": "E", "lat": 40.770565, "lon": -73.79516, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79516, 40.770565 ] } }, -{ "type": "Feature", "properties": { "id": 501247, "name": "29 Av/Francis Lewis Blvd", "direction": "E", "lat": 40.77043, "lon": -73.793396, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.793396, 40.77043 ] } }, -{ "type": "Feature", "properties": { "id": 501248, "name": "Francis Lewis Blvd/28 Av", "direction": "NW", "lat": 40.771805, "lon": -73.794235, "routes": "Q76, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.794235, 40.771805 ] } }, -{ "type": "Feature", "properties": { "id": 501249, "name": "Francis Lewis Blvd/27 Av", "direction": "NW", "lat": 40.772663, "lon": -73.79501, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79501, 40.772663 ] } }, -{ "type": "Feature", "properties": { "id": 501250, "name": "Utopia Pkwy/26 Av", "direction": "N", "lat": 40.774296, "lon": -73.79268, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.79268, 40.774296 ] } }, -{ "type": "Feature", "properties": { "id": 501251, "name": "Utopia Pkwy/24 Av", "direction": "N", "lat": 40.775723, "lon": -73.79296, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79296, 40.775723 ] } }, -{ "type": "Feature", "properties": { "id": 501252, "name": "Utopia Pkwy/22 Av", "direction": "N", "lat": 40.777336, "lon": -73.79328, "routes": "QM20, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79328, 40.777336 ] } }, -{ "type": "Feature", "properties": { "id": 501253, "name": "Utopia Pkwy/21 Av", "direction": "N", "lat": 40.77905, "lon": -73.79361, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.79361, 40.77905 ] } }, -{ "type": "Feature", "properties": { "id": 501254, "name": "Utopia Pkwy/19 Av", "direction": "N", "lat": 40.78078, "lon": -73.79395, "routes": "QM20, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79395, 40.78078 ] } }, -{ "type": "Feature", "properties": { "id": 501255, "name": "Utopia Pkwy/17 Av", "direction": "N", "lat": 40.78257, "lon": -73.794304, "routes": "QM20, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.794304, 40.78257 ] } }, -{ "type": "Feature", "properties": { "id": 501256, "name": "Utopia Pkwy/16 Av", "direction": "N", "lat": 40.783955, "lon": -73.79458, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.79458, 40.783955 ] } }, -{ "type": "Feature", "properties": { "id": 501257, "name": "Francis Lewis Blvd/169 St", "direction": "NW", "lat": 40.77343, "lon": -73.79614, "routes": "Q76, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79614, 40.77343 ] } }, -{ "type": "Feature", "properties": { "id": 501258, "name": "Francis Lewis Blvd/25 Av", "direction": "NW", "lat": 40.77469, "lon": -73.79792, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79792, 40.77469 ] } }, -{ "type": "Feature", "properties": { "id": 501259, "name": "Francis Lewis Blvd/24 Av", "direction": "NW", "lat": 40.776215, "lon": -73.79929, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79929, 40.776215 ] } }, -{ "type": "Feature", "properties": { "id": 501260, "name": "Francis Lewis Blvd/163 St", "direction": "NW", "lat": 40.778023, "lon": -73.80083, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.80083, 40.778023 ] } }, -{ "type": "Feature", "properties": { "id": 501261, "name": "Francis Lewis Blvd/Willets Point Blvd", "direction": "NW", "lat": 40.78012, "lon": -73.80225, "routes": "Q76, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80225, 40.78012 ] } }, -{ "type": "Feature", "properties": { "id": 501262, "name": "Willets Point Blvd/19 Av", "direction": "NE", "lat": 40.78127, "lon": -73.80119, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.80119, 40.78127 ] } }, -{ "type": "Feature", "properties": { "id": 501263, "name": "Willets Point Blvd/163-54 Willets Point Blvd", "direction": "NE", "lat": 40.78229, "lon": -73.800064, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.800064, 40.78229 ] } }, -{ "type": "Feature", "properties": { "id": 501264, "name": "Willets Point Blvd/17 Av", "direction": "NE", "lat": 40.783234, "lon": -73.798904, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.798904, 40.783234 ] } }, -{ "type": "Feature", "properties": { "id": 501265, "name": "Willets Point Blvd/15 Dr", "direction": "NE", "lat": 40.784832, "lon": -73.79673, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.79673, 40.784832 ] } }, -{ "type": "Feature", "properties": { "id": 501266, "name": "Willets Point Blvd/Utopia Pkwy", "direction": "E", "lat": 40.785763, "lon": -73.795204, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.795204, 40.785763 ] } }, -{ "type": "Feature", "properties": { "id": 501267, "name": "Cross Island Pkwy/201 St", "direction": "NE", "lat": 40.786327, "lon": -73.79335, "routes": "QM32, Q16, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.79335, 40.786327 ] } }, -{ "type": "Feature", "properties": { "id": 501268, "name": "Cross Island Pkwy/Golf Course", "direction": "NE", "lat": 40.787266, "lon": -73.79151, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79151, 40.787266 ] } }, -{ "type": "Feature", "properties": { "id": 501269, "name": "Cross Island Pkwy/Estates Ln", "direction": "E", "lat": 40.788754, "lon": -73.78781, "routes": "QM2, Q16, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.78781, 40.788754 ] } }, -{ "type": "Feature", "properties": { "id": 501270, "name": "Cross Island Pkwy/208 Pl", "direction": "E", "lat": 40.788742, "lon": -73.78457, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.78457, 40.788742 ] } }, -{ "type": "Feature", "properties": { "id": 501273, "name": "Utopia Pkwy/16 Av", "direction": "S", "lat": 40.783733, "lon": -73.79481, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.79481, 40.783733 ] } }, -{ "type": "Feature", "properties": { "id": 501275, "name": "Utopia Pkwy/19 Av", "direction": "S", "lat": 40.780106, "lon": -73.7941, "routes": "QM20, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.7941, 40.780106 ] } }, -{ "type": "Feature", "properties": { "id": 501276, "name": "Utopia Pkwy/21 Rd", "direction": "S", "lat": 40.777515, "lon": -73.79358, "routes": "QM20, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79358, 40.777515 ] } }, -{ "type": "Feature", "properties": { "id": 501278, "name": "Utopia Pkwy/24 Av", "direction": "S", "lat": 40.77518, "lon": -73.79312, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79312, 40.77518 ] } }, -{ "type": "Feature", "properties": { "id": 501279, "name": "Utopia Pkwy/25 Av", "direction": "S", "lat": 40.77412, "lon": -73.79291, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.79291, 40.77412 ] } }, -{ "type": "Feature", "properties": { "id": 501281, "name": "Cross Island Pkwy/208 Pl", "direction": "W", "lat": 40.788853, "lon": -73.78506, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.78506, 40.788853 ] } }, -{ "type": "Feature", "properties": { "id": 501282, "name": "Cross Island Pkwy/Baybridge Condo", "direction": "W", "lat": 40.788876, "lon": -73.78778, "routes": "QM32, QM2, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.78778, 40.788876 ] } }, -{ "type": "Feature", "properties": { "id": 501283, "name": "Cross Island Pkwy/Golf Course", "direction": "SW", "lat": 40.787262, "lon": -73.79185, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79185, 40.787262 ] } }, -{ "type": "Feature", "properties": { "id": 501284, "name": "Cross Island Pkwy/Utopia Pkwy", "direction": "W", "lat": 40.78618, "lon": -73.79419, "routes": "QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.79419, 40.78618 ] } }, -{ "type": "Feature", "properties": { "id": 501285, "name": "Willets Point Blvd/16 Av", "direction": "SW", "lat": 40.784348, "lon": -73.797585, "routes": "QM20, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.797585, 40.784348 ] } }, -{ "type": "Feature", "properties": { "id": 501286, "name": "Willets Point Blvd/17 Av", "direction": "SW", "lat": 40.78274, "lon": -73.79979, "routes": "QM20, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79979, 40.78274 ] } }, -{ "type": "Feature", "properties": { "id": 501287, "name": "Willets Point Blvd/160-57 Willets Point Blvd", "direction": "SW", "lat": 40.782013, "lon": -73.80063, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80063, 40.782013 ] } }, -{ "type": "Feature", "properties": { "id": 501288, "name": "Francis Lewis Blvd/Willets Point Blvd", "direction": "SE", "lat": 40.779736, "lon": -73.80246, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.80246, 40.779736 ] } }, -{ "type": "Feature", "properties": { "id": 501289, "name": "Francis Lewis Blvd/21 Av", "direction": "SE", "lat": 40.778587, "lon": -73.801704, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.801704, 40.778587 ] } }, -{ "type": "Feature", "properties": { "id": 501290, "name": "Francis Lewis Blvd/163 St", "direction": "SE", "lat": 40.777054, "lon": -73.80043, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.80043, 40.777054 ] } }, -{ "type": "Feature", "properties": { "id": 501291, "name": "Francis Lewis Blvd/24 Av", "direction": "SE", "lat": 40.775703, "lon": -73.79917, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79917, 40.775703 ] } }, -{ "type": "Feature", "properties": { "id": 501292, "name": "Francis Lewis Blvd/25 Av", "direction": "SE", "lat": 40.774166, "lon": -73.797806, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.797806, 40.774166 ] } }, -{ "type": "Feature", "properties": { "id": 501293, "name": "Francis Lewis Blvd/168 St", "direction": "SE", "lat": 40.77319, "lon": -73.796196, "routes": "Q76, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.796196, 40.77319 ] } }, -{ "type": "Feature", "properties": { "id": 501294, "name": "Francis Lewis Blvd/169 St", "direction": "SE", "lat": 40.772587, "lon": -73.795296, "routes": "Q16, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.795296, 40.772587 ] } }, -{ "type": "Feature", "properties": { "id": 501295, "name": "Francis Lewis Blvd/170 St", "direction": "SE", "lat": 40.77172, "lon": -73.79452, "routes": "Q76, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79452, 40.77172 ] } }, -{ "type": "Feature", "properties": { "id": 501296, "name": "29 Av/171 St", "direction": "W", "lat": 40.77058, "lon": -73.79398, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79398, 40.77058 ] } }, -{ "type": "Feature", "properties": { "id": 501297, "name": "29 Av/169 St", "direction": "W", "lat": 40.770733, "lon": -73.79586, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79586, 40.770733 ] } }, -{ "type": "Feature", "properties": { "id": 501298, "name": "29 Av/167 St", "direction": "W", "lat": 40.770916, "lon": -73.79823, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79823, 40.770916 ] } }, -{ "type": "Feature", "properties": { "id": 501299, "name": "29 Av/165 St", "direction": "W", "lat": 40.77106, "lon": -73.800095, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.800095, 40.77106 ] } }, -{ "type": "Feature", "properties": { "id": 501301, "name": "29 Av/161 St", "direction": "W", "lat": 40.771187, "lon": -73.80384, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80384, 40.771187 ] } }, -{ "type": "Feature", "properties": { "id": 501302, "name": "29 Av/159 St", "direction": "W", "lat": 40.77119, "lon": -73.80575, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80575, 40.77119 ] } }, -{ "type": "Feature", "properties": { "id": 501303, "name": "29 Av/157 St", "direction": "W", "lat": 40.77143, "lon": -73.807594, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.807594, 40.77143 ] } }, -{ "type": "Feature", "properties": { "id": 501304, "name": "Bayside Av/154 St", "direction": "W", "lat": 40.771656, "lon": -73.81052, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.81052, 40.771656 ] } }, -{ "type": "Feature", "properties": { "id": 501305, "name": "Bayside Av/Murray St", "direction": "W", "lat": 40.77163, "lon": -73.813095, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.813095, 40.77163 ] } }, -{ "type": "Feature", "properties": { "id": 501306, "name": "Bayside Av/150 St", "direction": "W", "lat": 40.771564, "lon": -73.8157, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.8157, 40.771564 ] } }, -{ "type": "Feature", "properties": { "id": 501307, "name": "Bayside Av/149 St", "direction": "W", "lat": 40.771523, "lon": -73.817444, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.817444, 40.771523 ] } }, -{ "type": "Feature", "properties": { "id": 501308, "name": "Bayside Av/148 St", "direction": "W", "lat": 40.77129, "lon": -73.81912, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.81912, 40.77129 ] } }, -{ "type": "Feature", "properties": { "id": 501309, "name": "Bayside Av/146 St", "direction": "W", "lat": 40.77081, "lon": -73.82231, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.82231, 40.77081 ] } }, -{ "type": "Feature", "properties": { "id": 501310, "name": "Bayside Av/Parsons Blvd", "direction": "W", "lat": 40.770386, "lon": -73.82513, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.82513, 40.770386 ] } }, -{ "type": "Feature", "properties": { "id": 501311, "name": "Bayside Av/Union St", "direction": "W", "lat": 40.7702, "lon": -73.82641, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.82641, 40.7702 ] } }, -{ "type": "Feature", "properties": { "id": 501318, "name": "165 St/Terminal", "direction": "W", "lat": 40.707947, "lon": -73.795654, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.795654, 40.707947 ] } }, -{ "type": "Feature", "properties": { "id": 501320, "name": "Hillside Av/168 Pl", "direction": "E", "lat": 40.710434, "lon": -73.79349, "routes": "Q76, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.79349, 40.710434 ] } }, -{ "type": "Feature", "properties": { "id": 501324, "name": "Hillside Av/178 St", "direction": "E", "lat": 40.712276, "lon": -73.784935, "routes": "Q77, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.784935, 40.712276 ] } }, -{ "type": "Feature", "properties": { "id": 501328, "name": "188 St/87 Dr", "direction": "NW", "lat": 40.71571, "lon": -73.773796, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.773796, 40.71571 ] } }, -{ "type": "Feature", "properties": { "id": 501329, "name": "188 St/Henley Rd", "direction": "NW", "lat": 40.71778, "lon": -73.774796, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.774796, 40.71778 ] } }, -{ "type": "Feature", "properties": { "id": 501330, "name": "188 St/Soho Dr", "direction": "NW", "lat": 40.71944, "lon": -73.7756, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.7756, 40.71944 ] } }, -{ "type": "Feature", "properties": { "id": 501331, "name": "188 St/Mclaughlin Av", "direction": "NW", "lat": 40.72129, "lon": -73.77649, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77649, 40.72129 ] } }, -{ "type": "Feature", "properties": { "id": 501332, "name": "188 St/Avon Rd", "direction": "NW", "lat": 40.723587, "lon": -73.77812, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77812, 40.723587 ] } }, -{ "type": "Feature", "properties": { "id": 501333, "name": "188 St/Aberdeen Rd", "direction": "NW", "lat": 40.726147, "lon": -73.77963, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77963, 40.726147 ] } }, -{ "type": "Feature", "properties": { "id": 501334, "name": "188 St/81 Av", "direction": "NW", "lat": 40.727757, "lon": -73.78039, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.78039, 40.727757 ] } }, -{ "type": "Feature", "properties": { "id": 501335, "name": "188 St/Union Tpke", "direction": "NW", "lat": 40.729084, "lon": -73.781006, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.781006, 40.729084 ] } }, -{ "type": "Feature", "properties": { "id": 501336, "name": "188 St/75 Av", "direction": "SE", "lat": 40.731552, "lon": -73.78217, "routes": "QM1, QM7, Q17, QM35, QM5, QM8, QM31" }, "geometry": { "type": "Point", "coordinates": [ -73.78217, 40.731552 ] } }, -{ "type": "Feature", "properties": { "id": 501337, "name": "188 St/73 Av", "direction": "NW", "lat": 40.73303, "lon": -73.782875, "routes": "QM5, QM7, Q17, QM31, QM35, QM8, QM1" }, "geometry": { "type": "Point", "coordinates": [ -73.782875, 40.73303 ] } }, -{ "type": "Feature", "properties": { "id": 501338, "name": "188 St/69 Av", "direction": "NW", "lat": 40.735607, "lon": -73.78392, "routes": "QM31, Q88, QM5, Q17, QM1, QM7, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.78392, 40.735607 ] } }, -{ "type": "Feature", "properties": { "id": 501339, "name": "188 St/64 Av", "direction": "N", "lat": 40.73902, "lon": -73.78546, "routes": "QM1, QM31, QM7, Q17, Q88, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.78546, 40.73902 ] } }, -{ "type": "Feature", "properties": { "id": 501340, "name": "188 St/Horace Harding Expwy", "direction": "NW", "lat": 40.740543, "lon": -73.78642, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.78642, 40.740543 ] } }, -{ "type": "Feature", "properties": { "id": 501341, "name": "Horace Harding Expwy/188 St", "direction": "W", "lat": 40.74103, "lon": -73.787315, "routes": "Q30, Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.787315, 40.74103 ] } }, -{ "type": "Feature", "properties": { "id": 501342, "name": "Horace Harding Expwy/185 St", "direction": "W", "lat": 40.74045, "lon": -73.78944, "routes": "Q30, Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.78944, 40.74045 ] } }, -{ "type": "Feature", "properties": { "id": 501343, "name": "Horace Harding Expwy/183 St", "direction": "W", "lat": 40.739834, "lon": -73.791695, "routes": "Q17, Q88, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.791695, 40.739834 ] } }, -{ "type": "Feature", "properties": { "id": 501345, "name": "Horace Harding Expwy/Fresh Meadow Ln", "direction": "W", "lat": 40.738567, "lon": -73.79683, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.79683, 40.738567 ] } }, -{ "type": "Feature", "properties": { "id": 501346, "name": "Horace Harding Expwy/170 St", "direction": "W", "lat": 40.73854, "lon": -73.7995, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.7995, 40.73854 ] } }, -{ "type": "Feature", "properties": { "id": 501347, "name": "Horace Harding Expwy/168 St", "direction": "W", "lat": 40.738605, "lon": -73.80129, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.80129, 40.738605 ] } }, -{ "type": "Feature", "properties": { "id": 501348, "name": "Horace Harding Expwy/164 St", "direction": "W", "lat": 40.738728, "lon": -73.80447, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.80447, 40.738728 ] } }, -{ "type": "Feature", "properties": { "id": 501349, "name": "Horace Harding Expwy/162 St", "direction": "W", "lat": 40.738876, "lon": -73.80698, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.80698, 40.738876 ] } }, -{ "type": "Feature", "properties": { "id": 501350, "name": "Horace Harding Expwy/160 St", "direction": "W", "lat": 40.738857, "lon": -73.808815, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.808815, 40.738857 ] } }, -{ "type": "Feature", "properties": { "id": 501351, "name": "Horace Harding Expwy/Parsons Blvd", "direction": "W", "lat": 40.738937, "lon": -73.8108, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.8108, 40.738937 ] } }, -{ "type": "Feature", "properties": { "id": 501352, "name": "Horace Harding Expwy/156 St", "direction": "W", "lat": 40.73901, "lon": -73.812675, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.812675, 40.73901 ] } }, -{ "type": "Feature", "properties": { "id": 501353, "name": "Kissena Blvd/Horace Harding Expwy", "direction": "N", "lat": 40.7395, "lon": -73.81501, "routes": "Q34, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.81501, 40.7395 ] } }, -{ "type": "Feature", "properties": { "id": 501355, "name": "Kissena Blvd/58 Av", "direction": "N", "lat": 40.7425, "lon": -73.814354, "routes": "Q17, Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.814354, 40.7425 ] } }, -{ "type": "Feature", "properties": { "id": 501356, "name": "Kissena Blvd/Rose Av", "direction": "NW", "lat": 40.74642, "lon": -73.81436, "routes": "Q17, Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81436, 40.74642 ] } }, -{ "type": "Feature", "properties": { "id": 501357, "name": "Kissena Blvd/Poplar Av", "direction": "NW", "lat": 40.747517, "lon": -73.81557, "routes": "Q34, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.81557, 40.747517 ] } }, -{ "type": "Feature", "properties": { "id": 501358, "name": "Kissena Blvd/Negundo Av", "direction": "NW", "lat": 40.748543, "lon": -73.81675, "routes": "Q34, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.81675, 40.748543 ] } }, -{ "type": "Feature", "properties": { "id": 501360, "name": "Kissena Blvd/Holly Av", "direction": "NW", "lat": 40.750893, "lon": -73.819305, "routes": "Q25, Q17, Q34, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.819305, 40.750893 ] } }, -{ "type": "Feature", "properties": { "id": 501361, "name": "Kissena Blvd/45 Av", "direction": "NW", "lat": 40.75251, "lon": -73.82107, "routes": "Q17, Q25, Q34, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.82107, 40.75251 ] } }, -{ "type": "Feature", "properties": { "id": 501362, "name": "Kissena Blvd/Cherry Av", "direction": "NW", "lat": 40.754147, "lon": -73.82303, "routes": "Q34, Q17, Q27, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.82303, 40.754147 ] } }, -{ "type": "Feature", "properties": { "id": 501363, "name": "Kissena Blvd/Ash Av", "direction": "NW", "lat": 40.755104, "lon": -73.82417, "routes": "Q17, Q34, Q27, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.82417, 40.755104 ] } }, -{ "type": "Feature", "properties": { "id": 501364, "name": "Kissena Blvd/Maple Av", "direction": "NW", "lat": 40.756325, "lon": -73.82566, "routes": "Q34, Q27, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.82566, 40.756325 ] } }, -{ "type": "Feature", "properties": { "id": 501365, "name": "Kissena Blvd/Sanford Av", "direction": "NW", "lat": 40.75745, "lon": -73.82757, "routes": "Q25, Q65, Q27, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.82757, 40.75745 ] } }, -{ "type": "Feature", "properties": { "id": 501367, "name": "Main St/Roosevelt Av", "direction": "SE", "lat": 40.75926, "lon": -73.83011, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.83011, 40.75926 ] } }, -{ "type": "Feature", "properties": { "id": 501369, "name": "Kissena Blvd/Main St", "direction": "SE", "lat": 40.75792, "lon": -73.82863, "routes": "Q17, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.82863, 40.75792 ] } }, -{ "type": "Feature", "properties": { "id": 501370, "name": "Kissena Blvd/Sanford Av", "direction": "SE", "lat": 40.75691, "lon": -73.82685, "routes": "Q27, Q17, Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.82685, 40.75691 ] } }, -{ "type": "Feature", "properties": { "id": 501371, "name": "Kissena Blvd/Franklin Av", "direction": "SE", "lat": 40.755157, "lon": -73.824455, "routes": "Q34, Q27, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.824455, 40.755157 ] } }, -{ "type": "Feature", "properties": { "id": 501372, "name": "Kissena Blvd/Beech Av", "direction": "SE", "lat": 40.754387, "lon": -73.82354, "routes": "Q17, Q25, Q34, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.82354, 40.754387 ] } }, -{ "type": "Feature", "properties": { "id": 501373, "name": "Kissena Blvd/Elder Av", "direction": "SE", "lat": 40.752857, "lon": -73.821724, "routes": "Q25, Q17, Q27, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.821724, 40.752857 ] } }, -{ "type": "Feature", "properties": { "id": 501374, "name": "Kissena Blvd/45 Av", "direction": "SE", "lat": 40.75194, "lon": -73.82066, "routes": "Q27, Q25, Q17, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.82066, 40.75194 ] } }, -{ "type": "Feature", "properties": { "id": 501377, "name": "Kissena Blvd/Mulberry Av", "direction": "SE", "lat": 40.74848, "lon": -73.81691, "routes": "Q34, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.81691, 40.74848 ] } }, -{ "type": "Feature", "properties": { "id": 501378, "name": "Kissena Blvd/Oak Av", "direction": "SE", "lat": 40.74748, "lon": -73.815796, "routes": "Q34, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.815796, 40.74748 ] } }, -{ "type": "Feature", "properties": { "id": 501379, "name": "Kissena Blvd/Rose Av", "direction": "SE", "lat": 40.74616, "lon": -73.814316, "routes": "Q34, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.814316, 40.74616 ] } }, -{ "type": "Feature", "properties": { "id": 501380, "name": "Kissena Blvd/Booth Memorial Av", "direction": "S", "lat": 40.742706, "lon": -73.81449, "routes": "Q17, Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81449, 40.742706 ] } }, -{ "type": "Feature", "properties": { "id": 501382, "name": "Kissena Blvd/60 Av", "direction": "SW", "lat": 40.73965, "lon": -73.81522, "routes": "Q17, Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81522, 40.73965 ] } }, -{ "type": "Feature", "properties": { "id": 501383, "name": "Horace Harding Expwy/Kissena Blvd", "direction": "E", "lat": 40.73852, "lon": -73.81452, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.81452, 40.73852 ] } }, -{ "type": "Feature", "properties": { "id": 501384, "name": "Horace Harding Expwy/156 St", "direction": "E", "lat": 40.73833, "lon": -73.8119, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.8119, 40.73833 ] } }, -{ "type": "Feature", "properties": { "id": 501385, "name": "Horace Harding Expwy/Parsons Blvd", "direction": "E", "lat": 40.73826, "lon": -73.80997, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.80997, 40.73826 ] } }, -{ "type": "Feature", "properties": { "id": 501386, "name": "Horace Harding Expwy/160 St", "direction": "E", "lat": 40.73819, "lon": -73.80807, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.80807, 40.73819 ] } }, -{ "type": "Feature", "properties": { "id": 501387, "name": "Horace Harding Expwy/162 St", "direction": "E", "lat": 40.738117, "lon": -73.806206, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.806206, 40.738117 ] } }, -{ "type": "Feature", "properties": { "id": 501388, "name": "Horace Harding Expwy/164 St", "direction": "E", "lat": 40.738037, "lon": -73.80414, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.80414, 40.738037 ] } }, -{ "type": "Feature", "properties": { "id": 501389, "name": "Horace Harding Expwy/166 St", "direction": "E", "lat": 40.738, "lon": -73.80233, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.80233, 40.738 ] } }, -{ "type": "Feature", "properties": { "id": 501390, "name": "Horace Harding Expwy/168 St", "direction": "E", "lat": 40.737934, "lon": -73.80053, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.80053, 40.737934 ] } }, -{ "type": "Feature", "properties": { "id": 501391, "name": "Horace Harding Expwy/170 St", "direction": "E", "lat": 40.737865, "lon": -73.79872, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.79872, 40.737865 ] } }, -{ "type": "Feature", "properties": { "id": 501392, "name": "Horace Harding Expwy/172 St", "direction": "E", "lat": 40.737797, "lon": -73.79692, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.79692, 40.737797 ] } }, -{ "type": "Feature", "properties": { "id": 501393, "name": "Horace Harding Expwy/64 Av", "direction": "E", "lat": 40.73817, "lon": -73.79528, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.79528, 40.73817 ] } }, -{ "type": "Feature", "properties": { "id": 501394, "name": "Horace Harding Expwy/Utopia Pkwy", "direction": "E", "lat": 40.739006, "lon": -73.79223, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.79223, 40.739006 ] } }, -{ "type": "Feature", "properties": { "id": 501395, "name": "Horace Harding Expwy/183 St", "direction": "E", "lat": 40.73945, "lon": -73.79062, "routes": "Q88, Q30, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.79062, 40.73945 ] } }, -{ "type": "Feature", "properties": { "id": 501396, "name": "Horace Harding Expwy/186 St", "direction": "E", "lat": 40.740177, "lon": -73.78797, "routes": "Q17, Q88, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.78797, 40.740177 ] } }, -{ "type": "Feature", "properties": { "id": 501397, "name": "188 St/Horace Harding Expwy", "direction": "SE", "lat": 40.740273, "lon": -73.78655, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.78655, 40.740273 ] } }, -{ "type": "Feature", "properties": { "id": 501398, "name": "188 St/64 Av", "direction": "SE", "lat": 40.738735, "lon": -73.78596, "routes": "Q88, QM7, QM5, QM8, QM31, Q17, QM1, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.78596, 40.738735 ] } }, -{ "type": "Feature", "properties": { "id": 501399, "name": "188 St/186 Ln", "direction": "SE", "lat": 40.73622, "lon": -73.78465, "routes": "QM35, Q88, Q17, QM1, QM7, QM5, QM31" }, "geometry": { "type": "Point", "coordinates": [ -73.78465, 40.73622 ] } }, -{ "type": "Feature", "properties": { "id": 501400, "name": "188 St/186 Ln #2", "direction": "SE", "lat": 40.73409, "lon": -73.78356, "routes": "Q88, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.78356, 40.73409 ] } }, -{ "type": "Feature", "properties": { "id": 501401, "name": "188 St/73 Av", "direction": "SE", "lat": 40.732777, "lon": -73.78297, "routes": "QM8, QM35, QM5, QM31, QM1, QM7, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.78297, 40.732777 ] } }, -{ "type": "Feature", "properties": { "id": 501402, "name": "188 St/75 Av", "direction": "NW", "lat": 40.730934, "lon": -73.78209, "routes": "Q17, QM8, QM35, QM31, QM7, QM1, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.78209, 40.730934 ] } }, -{ "type": "Feature", "properties": { "id": 501403, "name": "188 St/Union Tpke", "direction": "SE", "lat": 40.729336, "lon": -73.781334, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.781334, 40.729336 ] } }, -{ "type": "Feature", "properties": { "id": 501404, "name": "188 St/80 Rd", "direction": "SE", "lat": 40.72808, "lon": -73.78075, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.78075, 40.72808 ] } }, -{ "type": "Feature", "properties": { "id": 501405, "name": "188 St/Perth Rd", "direction": "SE", "lat": 40.72609, "lon": -73.7798, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.7798, 40.72609 ] } }, -{ "type": "Feature", "properties": { "id": 501406, "name": "188 St/Midland Pkwy", "direction": "SE", "lat": 40.72463, "lon": -73.77898, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77898, 40.72463 ] } }, -{ "type": "Feature", "properties": { "id": 501407, "name": "188 St/Avon Rd", "direction": "SE", "lat": 40.722992, "lon": -73.77791, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77791, 40.722992 ] } }, -{ "type": "Feature", "properties": { "id": 501408, "name": "188 St/Grand Central Pkwy", "direction": "SE", "lat": 40.721252, "lon": -73.77664, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77664, 40.721252 ] } }, -{ "type": "Feature", "properties": { "id": 501409, "name": "188 St/Henley Rd", "direction": "SE", "lat": 40.718395, "lon": -73.775246, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.775246, 40.718395 ] } }, -{ "type": "Feature", "properties": { "id": 501410, "name": "188 St/Wexford Terr", "direction": "SE", "lat": 40.715515, "lon": -73.77387, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.77387, 40.715515 ] } }, -{ "type": "Feature", "properties": { "id": 501414, "name": "Hillside Av/Midland Pkwy", "direction": "W", "lat": 40.71262, "lon": -73.78392, "routes": "Q3, Q77, Q17, X68, Q76, Q36, Q2, Q43, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.78392, 40.71262 ] } }, -{ "type": "Feature", "properties": { "id": 501419, "name": "Hillside Av/169 St", "direction": "SW", "lat": 40.71071, "lon": -73.793144, "routes": "Q17, Q76, Q1, Q2, Q3, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.793144, 40.71071 ] } }, -{ "type": "Feature", "properties": { "id": 501422, "name": "170 St/Jamaica Av", "direction": "NW", "lat": 40.70755, "lon": -73.78988, "routes": "Q54, Q31, Q56, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.78988, 40.70755 ] } }, -{ "type": "Feature", "properties": { "id": 501424, "name": "Homelawn St/Highland Av", "direction": "NW", "lat": 40.712856, "lon": -73.79324, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79324, 40.712856 ] } }, -{ "type": "Feature", "properties": { "id": 501426, "name": "Homelawn St/Aspen Pl", "direction": "NE", "lat": 40.715946, "lon": -73.792435, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.792435, 40.715946 ] } }, -{ "type": "Feature", "properties": { "id": 501427, "name": "Homelawn St/Croydon Rd", "direction": "N", "lat": 40.717712, "lon": -73.792076, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792076, 40.717712 ] } }, -{ "type": "Feature", "properties": { "id": 501428, "name": "Homelawn St/Charlecote Ridge", "direction": "NE", "lat": 40.71856, "lon": -73.7913, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.7913, 40.71856 ] } }, -{ "type": "Feature", "properties": { "id": 501430, "name": "Utopia Pkwy/Kildare Rd", "direction": "N", "lat": 40.72169, "lon": -73.79017, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79017, 40.72169 ] } }, -{ "type": "Feature", "properties": { "id": 501431, "name": "Utopia Pkwy/80 Dr", "direction": "NW", "lat": 40.724506, "lon": -73.79095, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79095, 40.724506 ] } }, -{ "type": "Feature", "properties": { "id": 501433, "name": "Utopia Pkwy/76 Av", "direction": "NW", "lat": 40.727123, "lon": -73.79215, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79215, 40.727123 ] } }, -{ "type": "Feature", "properties": { "id": 501434, "name": "Utopia Pkwy/75 Av", "direction": "NW", "lat": 40.728783, "lon": -73.79285, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79285, 40.728783 ] } }, -{ "type": "Feature", "properties": { "id": 501435, "name": "Utopia Pkwy/73 Av", "direction": "NW", "lat": 40.730396, "lon": -73.79353, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79353, 40.730396 ] } }, -{ "type": "Feature", "properties": { "id": 501436, "name": "Utopia Pkwy/Jewel Av", "direction": "N", "lat": 40.73156, "lon": -73.79367, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79367, 40.73156 ] } }, -{ "type": "Feature", "properties": { "id": 501437, "name": "Utopia Pkwy/69 Av", "direction": "N", "lat": 40.73309, "lon": -73.79319, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79319, 40.73309 ] } }, -{ "type": "Feature", "properties": { "id": 501438, "name": "Utopia Pkwy/67 Av", "direction": "N", "lat": 40.735188, "lon": -73.79305, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79305, 40.735188 ] } }, -{ "type": "Feature", "properties": { "id": 501439, "name": "Utopia Pkwy/65 Av", "direction": "N", "lat": 40.736683, "lon": -73.792946, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792946, 40.736683 ] } }, -{ "type": "Feature", "properties": { "id": 501441, "name": "Utopia Pkwy/Horace Harding Expwy", "direction": "N", "lat": 40.7388, "lon": -73.79281, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79281, 40.7388 ] } }, -{ "type": "Feature", "properties": { "id": 501444, "name": "Horace Harding Expwy/188 St", "direction": "E", "lat": 40.74069, "lon": -73.7861, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.7861, 40.74069 ] } }, -{ "type": "Feature", "properties": { "id": 501445, "name": "Horace Harding Expwy/190 St", "direction": "E", "lat": 40.74118, "lon": -73.78432, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.78432, 40.74118 ] } }, -{ "type": "Feature", "properties": { "id": 501447, "name": "Horace Harding Expwy/194 St", "direction": "E", "lat": 40.741905, "lon": -73.78167, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.78167, 40.741905 ] } }, -{ "type": "Feature", "properties": { "id": 501448, "name": "Horace Harding Expwy/Peck Av", "direction": "E", "lat": 40.74228, "lon": -73.78013, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.78013, 40.74228 ] } }, -{ "type": "Feature", "properties": { "id": 501449, "name": "Horace Harding Expwy/Francis Lewis Blvd", "direction": "E", "lat": 40.74292, "lon": -73.775795, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.775795, 40.74292 ] } }, -{ "type": "Feature", "properties": { "id": 501450, "name": "Horace Harding Expwy/Oceania St", "direction": "E", "lat": 40.745594, "lon": -73.76718, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.76718, 40.745594 ] } }, -{ "type": "Feature", "properties": { "id": 501451, "name": "Horace Harding Expwy/211 St", "direction": "E", "lat": 40.74608, "lon": -73.76541, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.76541, 40.74608 ] } }, -{ "type": "Feature", "properties": { "id": 501452, "name": "Horace Harding Expwy/214 St", "direction": "E", "lat": 40.746807, "lon": -73.76276, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.76276, 40.746807 ] } }, -{ "type": "Feature", "properties": { "id": 501453, "name": "Horace Harding Expwy/Bell Blvd", "direction": "E", "lat": 40.747356, "lon": -73.76087, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.76087, 40.747356 ] } }, -{ "type": "Feature", "properties": { "id": 501454, "name": "Horace Harding Expwy/218 St", "direction": "NE", "lat": 40.748016, "lon": -73.75923, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75923, 40.748016 ] } }, -{ "type": "Feature", "properties": { "id": 501455, "name": "Horace Harding Expwy/Springfield Blvd", "direction": "E", "lat": 40.74916, "lon": -73.75611, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75611, 40.74916 ] } }, -{ "type": "Feature", "properties": { "id": 501456, "name": "Horace Harding Expwy/224 St", "direction": "E", "lat": 40.74985, "lon": -73.75336, "routes": "Q30, QM35, QM8, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.75336, 40.74985 ] } }, -{ "type": "Feature", "properties": { "id": 501457, "name": "Horace Harding Expwy/Cloverdale Blvd", "direction": "E", "lat": 40.750343, "lon": -73.750694, "routes": "QM5, QM35, QM8, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.750694, 40.750343 ] } }, -{ "type": "Feature", "properties": { "id": 501460, "name": "Douglaston Pkwy/65 Av", "direction": "NW", "lat": 40.752968, "lon": -73.741455, "routes": "QM8, QM5, Q30, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.741455, 40.752968 ] } }, -{ "type": "Feature", "properties": { "id": 501462, "name": "Horace Harding Expwy/Douglaston Pkwy", "direction": "NE", "lat": 40.75691, "lon": -73.73877, "routes": "Q30, QM35, QM8, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.73877, 40.75691 ] } }, -{ "type": "Feature", "properties": { "id": 501463, "name": "Horace Harding Expwy/244 St", "direction": "NE", "lat": 40.757996, "lon": -73.73698, "routes": "QM8, Q30, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.73698, 40.757996 ] } }, -{ "type": "Feature", "properties": { "id": 501464, "name": "Horace Harding Expwy/246 Cres", "direction": "NE", "lat": 40.758804, "lon": -73.73566, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.73566, 40.758804 ] } }, -{ "type": "Feature", "properties": { "id": 501465, "name": "Horace Harding Expwy/246 Pl", "direction": "E", "lat": 40.759483, "lon": -73.734184, "routes": "QM35, QM8, Q30, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.734184, 40.759483 ] } }, -{ "type": "Feature", "properties": { "id": 501466, "name": "Horace Harding Expwy/Marathon Pkwy", "direction": "NE", "lat": 40.76047, "lon": -73.7313, "routes": "Q30, QM5, QM35, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.7313, 40.76047 ] } }, -{ "type": "Feature", "properties": { "id": 501467, "name": "Horace Harding Expwy/251 St", "direction": "NE", "lat": 40.76175, "lon": -73.72928, "routes": "QM35, QM8, Q30, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.72928, 40.76175 ] } }, -{ "type": "Feature", "properties": { "id": 501468, "name": "Horace Harding Expwy/254 St", "direction": "E", "lat": 40.76326, "lon": -73.72627, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.72627, 40.76326 ] } }, -{ "type": "Feature", "properties": { "id": 501470, "name": "Nassau Blvd/Little Neck Pkwy", "direction": "SW", "lat": 40.764294, "lon": -73.725914, "routes": "QM3, Q30, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.725914, 40.764294 ] } }, -{ "type": "Feature", "properties": { "id": 501471, "name": "Nassau Blvd/Little Neck Pkwy", "direction": "W", "lat": 40.7642, "lon": -73.72604, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.72604, 40.7642 ] } }, -{ "type": "Feature", "properties": { "id": 501472, "name": "Horace Harding Expwy/254 St", "direction": "SW", "lat": 40.763718, "lon": -73.72725, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.72725, 40.763718 ] } }, -{ "type": "Feature", "properties": { "id": 501473, "name": "Horace Harding Expwy/252 St", "direction": "SW", "lat": 40.76283, "lon": -73.72889, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.72889, 40.76283 ] } }, -{ "type": "Feature", "properties": { "id": 501474, "name": "Horace Harding Expwy/251 Pl", "direction": "SW", "lat": 40.76195, "lon": -73.73028, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.73028, 40.76195 ] } }, -{ "type": "Feature", "properties": { "id": 501475, "name": "Horace Harding Expwy/Marathon Pkwy", "direction": "SW", "lat": 40.760746, "lon": -73.73257, "routes": "QM8, Q30, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.73257, 40.760746 ] } }, -{ "type": "Feature", "properties": { "id": 501476, "name": "Horace Harding Expwy/248 St", "direction": "SW", "lat": 40.75964, "lon": -73.735306, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.735306, 40.75964 ] } }, -{ "type": "Feature", "properties": { "id": 501478, "name": "Douglaston Pkwy/61 Av", "direction": "SW", "lat": 40.755898, "lon": -73.73939, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.73939, 40.755898 ] } }, -{ "type": "Feature", "properties": { "id": 501479, "name": "Douglaston Pkwy/65 Av", "direction": "SE", "lat": 40.75276, "lon": -73.741585, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.741585, 40.75276 ] } }, -{ "type": "Feature", "properties": { "id": 501480, "name": "West Alley Rd/233 St", "direction": "W", "lat": 40.75165, "lon": -73.74556, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.74556, 40.75165 ] } }, -{ "type": "Feature", "properties": { "id": 501481, "name": "Horace Harding Expwy/East Hampton Blvd", "direction": "SW", "lat": 40.752148, "lon": -73.74754, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.74754, 40.752148 ] } }, -{ "type": "Feature", "properties": { "id": 501482, "name": "Horace Harding Expwy/229 St", "direction": "W", "lat": 40.751217, "lon": -73.74969, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.74969, 40.751217 ] } }, -{ "type": "Feature", "properties": { "id": 501483, "name": "Horace Harding Expwy/Cloverdale Blvd", "direction": "W", "lat": 40.75085, "lon": -73.75159, "routes": "QM35, QM8, QM5, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75159, 40.75085 ] } }, -{ "type": "Feature", "properties": { "id": 501484, "name": "Horace Harding Expwy/Springfield Blvd", "direction": "W", "lat": 40.74948, "lon": -73.757454, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.757454, 40.74948 ] } }, -{ "type": "Feature", "properties": { "id": 501486, "name": "Horace Harding Expwy/Bell Blvd", "direction": "W", "lat": 40.74768, "lon": -73.76205, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.76205, 40.74768 ] } }, -{ "type": "Feature", "properties": { "id": 501487, "name": "Horace Harding Expwy/213 St", "direction": "W", "lat": 40.746964, "lon": -73.76468, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.76468, 40.746964 ] } }, -{ "type": "Feature", "properties": { "id": 501488, "name": "Horace Harding Expwy/211 St", "direction": "W", "lat": 40.74648, "lon": -73.766426, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.766426, 40.74648 ] } }, -{ "type": "Feature", "properties": { "id": 501489, "name": "Horace Harding Expwy/Oceania St", "direction": "W", "lat": 40.745964, "lon": -73.76831, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.76831, 40.745964 ] } }, -{ "type": "Feature", "properties": { "id": 501490, "name": "Horace Harding Expwy/207 St", "direction": "W", "lat": 40.745483, "lon": -73.770065, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.770065, 40.745483 ] } }, -{ "type": "Feature", "properties": { "id": 501492, "name": "Horace Harding Expwy/202 St", "direction": "W", "lat": 40.744255, "lon": -73.774536, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.774536, 40.744255 ] } }, -{ "type": "Feature", "properties": { "id": 501493, "name": "Horace Harding Expwy/Francis Lewis Blvd", "direction": "W", "lat": 40.7437, "lon": -73.776566, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.776566, 40.7437 ] } }, -{ "type": "Feature", "properties": { "id": 501496, "name": "Horace Harding Expwy/Peck Av", "direction": "W", "lat": 40.742325, "lon": -73.78264, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.78264, 40.742325 ] } }, -{ "type": "Feature", "properties": { "id": 501501, "name": "Utopia Pkwy/Horace Harding Expwy", "direction": "S", "lat": 40.738506, "lon": -73.79303, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79303, 40.738506 ] } }, -{ "type": "Feature", "properties": { "id": 501502, "name": "Utopia Pkwy/65 Av", "direction": "S", "lat": 40.736027, "lon": -73.7932, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.7932, 40.736027 ] } }, -{ "type": "Feature", "properties": { "id": 501503, "name": "Utopia Pkwy/67 Av", "direction": "S", "lat": 40.73415, "lon": -73.793304, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.793304, 40.73415 ] } }, -{ "type": "Feature", "properties": { "id": 501504, "name": "Utopia Pkwy/69 Av", "direction": "S", "lat": 40.73278, "lon": -73.7934, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.7934, 40.73278 ] } }, -{ "type": "Feature", "properties": { "id": 501505, "name": "Utopia Pkwy/Jewel Av", "direction": "S", "lat": 40.730938, "lon": -73.79391, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79391, 40.730938 ] } }, -{ "type": "Feature", "properties": { "id": 501506, "name": "Utopia Pkwy/73 Av", "direction": "S", "lat": 40.729706, "lon": -73.79346, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79346, 40.729706 ] } }, -{ "type": "Feature", "properties": { "id": 501507, "name": "Utopia Pkwy/75 Av", "direction": "SE", "lat": 40.72812, "lon": -73.792786, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792786, 40.72812 ] } }, -{ "type": "Feature", "properties": { "id": 501508, "name": "Utopia Pkwy/76 Av", "direction": "SE", "lat": 40.72682, "lon": -73.79223, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79223, 40.72682 ] } }, -{ "type": "Feature", "properties": { "id": 501509, "name": "Utopia Pkwy/Union Tpke", "direction": "S", "lat": 40.725925, "lon": -73.791855, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.791855, 40.725925 ] } }, -{ "type": "Feature", "properties": { "id": 501510, "name": "Utopia Pkwy/80 Rd", "direction": "SE", "lat": 40.724995, "lon": -73.79147, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79147, 40.724995 ] } }, -{ "type": "Feature", "properties": { "id": 501511, "name": "Utopia Pkwy/Saint Johns University", "direction": "S", "lat": 40.72307, "lon": -73.790436, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.790436, 40.72307 ] } }, -{ "type": "Feature", "properties": { "id": 501512, "name": "Utopia Pkwy/82 Av", "direction": "S", "lat": 40.721077, "lon": -73.790375, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.790375, 40.721077 ] } }, -{ "type": "Feature", "properties": { "id": 501514, "name": "Homelawn St/173 St", "direction": "SW", "lat": 40.71846, "lon": -73.79166, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79166, 40.71846 ] } }, -{ "type": "Feature", "properties": { "id": 501516, "name": "Homelawn St/84 Rd", "direction": "SW", "lat": 40.715942, "lon": -73.792656, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792656, 40.715942 ] } }, -{ "type": "Feature", "properties": { "id": 501517, "name": "Homelawn St/Gothic Dr", "direction": "S", "lat": 40.714058, "lon": -73.79368, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79368, 40.714058 ] } }, -{ "type": "Feature", "properties": { "id": 501518, "name": "Homelawn St/Highland Av", "direction": "SE", "lat": 40.712666, "lon": -73.79332, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79332, 40.712666 ] } }, -{ "type": "Feature", "properties": { "id": 501520, "name": "169 St/89 Av", "direction": "SE", "lat": 40.70928, "lon": -73.792274, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.792274, 40.70928 ] } }, -{ "type": "Feature", "properties": { "id": 501530, "name": "Parsons Blvd/Cherry Av", "direction": "SE", "lat": 40.756847, "lon": -73.817635, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.817635, 40.756847 ] } }, -{ "type": "Feature", "properties": { "id": 501531, "name": "Parsons Blvd/Elm Av", "direction": "SE", "lat": 40.755978, "lon": -73.81629, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.81629, 40.755978 ] } }, -{ "type": "Feature", "properties": { "id": 501532, "name": "Parsons Blvd/Hawthorne Av", "direction": "SE", "lat": 40.754738, "lon": -73.81438, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.81438, 40.754738 ] } }, -{ "type": "Feature", "properties": { "id": 501533, "name": "46 Av/Parsons Blvd", "direction": "E", "lat": 40.754147, "lon": -73.81295, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.81295, 40.754147 ] } }, -{ "type": "Feature", "properties": { "id": 501534, "name": "46 Av/156 St", "direction": "E", "lat": 40.754124, "lon": -73.81011, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.81011, 40.754124 ] } }, -{ "type": "Feature", "properties": { "id": 501535, "name": "46 Av/158 St", "direction": "E", "lat": 40.754013, "lon": -73.80874, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.80874, 40.754013 ] } }, -{ "type": "Feature", "properties": { "id": 501536, "name": "46 Av/160 St", "direction": "E", "lat": 40.753857, "lon": -73.806854, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.806854, 40.753857 ] } }, -{ "type": "Feature", "properties": { "id": 501537, "name": "46 Av/162 St", "direction": "E", "lat": 40.753716, "lon": -73.80502, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.80502, 40.753716 ] } }, -{ "type": "Feature", "properties": { "id": 501538, "name": "46 Av/164 St", "direction": "E", "lat": 40.75363, "lon": -73.80309, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.80309, 40.75363 ] } }, -{ "type": "Feature", "properties": { "id": 501539, "name": "46 Av/166 St", "direction": "E", "lat": 40.753677, "lon": -73.801216, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.801216, 40.753677 ] } }, -{ "type": "Feature", "properties": { "id": 501540, "name": "46 Av/168 St", "direction": "E", "lat": 40.753777, "lon": -73.799324, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.799324, 40.753777 ] } }, -{ "type": "Feature", "properties": { "id": 501541, "name": "46 Av/170 St", "direction": "E", "lat": 40.753822, "lon": -73.79739, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.79739, 40.753822 ] } }, -{ "type": "Feature", "properties": { "id": 501542, "name": "46 Av/Auburndale Ln", "direction": "E", "lat": 40.75344, "lon": -73.7942, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.7942, 40.75344 ] } }, -{ "type": "Feature", "properties": { "id": 501543, "name": "Hollis Court Blvd/Utopia Pkwy", "direction": "E", "lat": 40.752853, "lon": -73.79188, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.79188, 40.752853 ] } }, -{ "type": "Feature", "properties": { "id": 501544, "name": "Hollis Court Blvd/190 St", "direction": "E", "lat": 40.752304, "lon": -73.78996, "routes": "Q27, Q31, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.78996, 40.752304 ] } }, -{ "type": "Feature", "properties": { "id": 501545, "name": "Hollis Court Blvd/47 Av", "direction": "SE", "lat": 40.751537, "lon": -73.78846, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.78846, 40.751537 ] } }, -{ "type": "Feature", "properties": { "id": 501548, "name": "Hollis Court Blvd/195 St", "direction": "SE", "lat": 40.74863, "lon": -73.784096, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.784096, 40.74863 ] } }, -{ "type": "Feature", "properties": { "id": 501549, "name": "Hollis Court Blvd/53 Av", "direction": "SE", "lat": 40.747704, "lon": -73.78263, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.78263, 40.747704 ] } }, -{ "type": "Feature", "properties": { "id": 501550, "name": "Hollis Court Blvd/56 Av", "direction": "SE", "lat": 40.74646, "lon": -73.78044, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.78044, 40.74646 ] } }, -{ "type": "Feature", "properties": { "id": 501551, "name": "Hollis Court Blvd/199 St", "direction": "SE", "lat": 40.745495, "lon": -73.77869, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.77869, 40.745495 ] } }, -{ "type": "Feature", "properties": { "id": 501554, "name": "Hollis Court Blvd/56 Av", "direction": "NW", "lat": 40.746655, "lon": -73.780495, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.780495, 40.746655 ] } }, -{ "type": "Feature", "properties": { "id": 501555, "name": "Hollis Court Blvd/Weeks Ln", "direction": "NW", "lat": 40.74801, "lon": -73.78281, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.78281, 40.74801 ] } }, -{ "type": "Feature", "properties": { "id": 501556, "name": "Hollis Court Blvd/50 Av", "direction": "NW", "lat": 40.74883, "lon": -73.78407, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.78407, 40.74883 ] } }, -{ "type": "Feature", "properties": { "id": 501557, "name": "Hollis Court Blvd/194 St", "direction": "NW", "lat": 40.750362, "lon": -73.786446, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.786446, 40.750362 ] } }, -{ "type": "Feature", "properties": { "id": 501560, "name": "Hollis Court Blvd/190 St", "direction": "W", "lat": 40.752415, "lon": -73.78994, "routes": "Q27, Q26, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78994, 40.752415 ] } }, -{ "type": "Feature", "properties": { "id": 501561, "name": "46 Av/Utopia Pkwy", "direction": "W", "lat": 40.75327, "lon": -73.79286, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.79286, 40.75327 ] } }, -{ "type": "Feature", "properties": { "id": 501562, "name": "46 Av/Auburndale Ln", "direction": "W", "lat": 40.753624, "lon": -73.794464, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.794464, 40.753624 ] } }, -{ "type": "Feature", "properties": { "id": 501563, "name": "46 Av/171 St", "direction": "W", "lat": 40.753857, "lon": -73.79677, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.79677, 40.753857 ] } }, -{ "type": "Feature", "properties": { "id": 501564, "name": "46 Av/169 St", "direction": "W", "lat": 40.753918, "lon": -73.798645, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.798645, 40.753918 ] } }, -{ "type": "Feature", "properties": { "id": 501565, "name": "46 Av/167 St", "direction": "W", "lat": 40.75381, "lon": -73.80055, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.80055, 40.75381 ] } }, -{ "type": "Feature", "properties": { "id": 501566, "name": "46 Av/164 St", "direction": "W", "lat": 40.75376, "lon": -73.80287, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.80287, 40.75376 ] } }, -{ "type": "Feature", "properties": { "id": 501568, "name": "46 Av/160 St", "direction": "W", "lat": 40.753956, "lon": -73.80661, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.80661, 40.753956 ] } }, -{ "type": "Feature", "properties": { "id": 501569, "name": "46 Av/158 St", "direction": "W", "lat": 40.754143, "lon": -73.809006, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.809006, 40.754143 ] } }, -{ "type": "Feature", "properties": { "id": 501570, "name": "46 Av/156 St", "direction": "W", "lat": 40.754265, "lon": -73.81088, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.81088, 40.754265 ] } }, -{ "type": "Feature", "properties": { "id": 501571, "name": "46 Av/149 St", "direction": "W", "lat": 40.754257, "lon": -73.8121, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.8121, 40.754257 ] } }, -{ "type": "Feature", "properties": { "id": 501573, "name": "Parsons Blvd/45 Av", "direction": "NW", "lat": 40.75537, "lon": -73.81513, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.81513, 40.75537 ] } }, -{ "type": "Feature", "properties": { "id": 501574, "name": "Parsons Blvd/Cherry Av", "direction": "NW", "lat": 40.756973, "lon": -73.81761, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.81761, 40.756973 ] } }, -{ "type": "Feature", "properties": { "id": 501575, "name": "Parsons Blvd/Beech Av", "direction": "NW", "lat": 40.75775, "lon": -73.818825, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.818825, 40.75775 ] } }, -{ "type": "Feature", "properties": { "id": 501590, "name": "Holly Av/Kissena Blvd", "direction": "NE", "lat": 40.750797, "lon": -73.81875, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.81875, 40.750797 ] } }, -{ "type": "Feature", "properties": { "id": 501591, "name": "Holly Av/Robinson St", "direction": "NE", "lat": 40.751953, "lon": -73.81696, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.81696, 40.751953 ] } }, -{ "type": "Feature", "properties": { "id": 501592, "name": "Holly Av/Smart St", "direction": "NE", "lat": 40.75284, "lon": -73.81561, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.81561, 40.75284 ] } }, -{ "type": "Feature", "properties": { "id": 501593, "name": "Holly Av/Parsons Blvd", "direction": "NE", "lat": 40.754147, "lon": -73.81359, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.81359, 40.754147 ] } }, -{ "type": "Feature", "properties": { "id": 501605, "name": "47 Av/193 St", "direction": "E", "lat": 40.751778, "lon": -73.78798, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78798, 40.751778 ] } }, -{ "type": "Feature", "properties": { "id": 501606, "name": "47 Av/195 St", "direction": "E", "lat": 40.752483, "lon": -73.78603, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78603, 40.752483 ] } }, -{ "type": "Feature", "properties": { "id": 501608, "name": "47 Av/Francis Lewis Blvd", "direction": "E", "lat": 40.753353, "lon": -73.77999, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.77999, 40.753353 ] } }, -{ "type": "Feature", "properties": { "id": 501610, "name": "Rocky Hill Rd/202 St", "direction": "E", "lat": 40.753353, "lon": -73.77855, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.77855, 40.753353 ] } }, -{ "type": "Feature", "properties": { "id": 501611, "name": "Rocky Hill Rd/203 St", "direction": "E", "lat": 40.753216, "lon": -73.777145, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.777145, 40.753216 ] } }, -{ "type": "Feature", "properties": { "id": 501612, "name": "48 Av/206 St", "direction": "NE", "lat": 40.75368, "lon": -73.77411, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.77411, 40.75368 ] } }, -{ "type": "Feature", "properties": { "id": 501613, "name": "48 Av/208 St", "direction": "E", "lat": 40.75433, "lon": -73.772385, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.772385, 40.75433 ] } }, -{ "type": "Feature", "properties": { "id": 501617, "name": "48 Av/215 St", "direction": "E", "lat": 40.755733, "lon": -73.76571, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76571, 40.755733 ] } }, -{ "type": "Feature", "properties": { "id": 501618, "name": "216 St/50 Av", "direction": "S", "lat": 40.754276, "lon": -73.76414, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76414, 40.754276 ] } }, -{ "type": "Feature", "properties": { "id": 501619, "name": "216 St/Luke Pl", "direction": "S", "lat": 40.7524, "lon": -73.76385, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76385, 40.7524 ] } }, -{ "type": "Feature", "properties": { "id": 501620, "name": "Luke Pl/218 St", "direction": "E", "lat": 40.751793, "lon": -73.76177, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76177, 40.751793 ] } }, -{ "type": "Feature", "properties": { "id": 501621, "name": "56 Av/220 St", "direction": "E", "lat": 40.75216, "lon": -73.75976, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75976, 40.75216 ] } }, -{ "type": "Feature", "properties": { "id": 501622, "name": "Springfield Blvd/58 Av", "direction": "NW", "lat": 40.751053, "lon": -73.75799, "routes": "Q30, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75799, 40.751053 ] } }, -{ "type": "Feature", "properties": { "id": 501623, "name": "Springfield Blvd/Horace Harding Expwy", "direction": "", "lat": 40.749634, "lon": -73.757126, "routes": "Q27, QM8, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.757126, 40.749634 ] } }, -{ "type": "Feature", "properties": { "id": 501624, "name": "Springfield Blvd/Horace Harding Expwy South", "direction": "SE", "lat": 40.74875, "lon": -73.75662, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75662, 40.74875 ] } }, -{ "type": "Feature", "properties": { "id": 501625, "name": "Springfield Blvd/64 Av", "direction": "SE", "lat": 40.74741, "lon": -73.75595, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75595, 40.74741 ] } }, -{ "type": "Feature", "properties": { "id": 501626, "name": "Springfield Blvd/67 Av", "direction": "SE", "lat": 40.745262, "lon": -73.75489, "routes": "Q27, QM8, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.75489, 40.745262 ] } }, -{ "type": "Feature", "properties": { "id": 501627, "name": "Springfield Blvd/73 Av", "direction": "SE", "lat": 40.742496, "lon": -73.75362, "routes": "QM5, Q27, QM35, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.75362, 40.742496 ] } }, -{ "type": "Feature", "properties": { "id": 501628, "name": "Springfield Blvd/75 Av", "direction": "SE", "lat": 40.740215, "lon": -73.751564, "routes": "Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.751564, 40.740215 ] } }, -{ "type": "Feature", "properties": { "id": 501629, "name": "Springfield Blvd/76 Av", "direction": "SE", "lat": 40.739353, "lon": -73.749725, "routes": "Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.749725, 40.739353 ] } }, -{ "type": "Feature", "properties": { "id": 501630, "name": "Springfield Blvd/77 Av", "direction": "SE", "lat": 40.738186, "lon": -73.74868, "routes": "Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.74868, 40.738186 ] } }, -{ "type": "Feature", "properties": { "id": 501631, "name": "Springfield Blvd/Kingsbury Av", "direction": "SE", "lat": 40.73719, "lon": -73.74777, "routes": "Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.74777, 40.73719 ] } }, -{ "type": "Feature", "properties": { "id": 501632, "name": "Springfield Blvd/Union Tpke", "direction": "S", "lat": 40.735405, "lon": -73.74648, "routes": "Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74648, 40.735405 ] } }, -{ "type": "Feature", "properties": { "id": 501633, "name": "Springfield Blvd/223 St", "direction": "SW", "lat": 40.733562, "lon": -73.74649, "routes": "Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.74649, 40.733562 ] } }, -{ "type": "Feature", "properties": { "id": 501634, "name": "Springfield Blvd/Sawyer Av", "direction": "SE", "lat": 40.73092, "lon": -73.7461, "routes": "Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.7461, 40.73092 ] } }, -{ "type": "Feature", "properties": { "id": 501635, "name": "Springfield Blvd/Hillside Av", "direction": "SE", "lat": 40.729965, "lon": -73.74498, "routes": "Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74498, 40.729965 ] } }, -{ "type": "Feature", "properties": { "id": 501654, "name": "Springfield Blvd/Hillside Av", "direction": "NW", "lat": 40.730267, "lon": -73.74508, "routes": "Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74508, 40.730267 ] } }, -{ "type": "Feature", "properties": { "id": 501655, "name": "Springfield Blvd/Sawyer Av", "direction": "NW", "lat": 40.731174, "lon": -73.74616, "routes": "Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74616, 40.731174 ] } }, -{ "type": "Feature", "properties": { "id": 501656, "name": "Springfield Blvd/Grand Central Pkwy", "direction": "N", "lat": 40.73432, "lon": -73.74591, "routes": "Q88, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74591, 40.73432 ] } }, -{ "type": "Feature", "properties": { "id": 501657, "name": "Springfield Blvd/Union Tpke", "direction": "NW", "lat": 40.73621, "lon": -73.746796, "routes": "Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.746796, 40.73621 ] } }, -{ "type": "Feature", "properties": { "id": 501658, "name": "Springfield Blvd/Kingsbury Av", "direction": "NW", "lat": 40.73776, "lon": -73.748, "routes": "Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.748, 40.73776 ] } }, -{ "type": "Feature", "properties": { "id": 501659, "name": "Springfield Blvd/76 Av", "direction": "W", "lat": 40.73993, "lon": -73.75018, "routes": "Q27, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.75018, 40.73993 ] } }, -{ "type": "Feature", "properties": { "id": 501660, "name": "Springfield Blvd/73 Av", "direction": "NW", "lat": 40.742264, "lon": -73.7533, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.7533, 40.742264 ] } }, -{ "type": "Feature", "properties": { "id": 501661, "name": "Springfield Blvd/69 Av", "direction": "NW", "lat": 40.74341, "lon": -73.75383, "routes": "QM8, Q27, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.75383, 40.74341 ] } }, -{ "type": "Feature", "properties": { "id": 501662, "name": "Springfield Blvd/67 Av", "direction": "NW", "lat": 40.745174, "lon": -73.75464, "routes": "QM5, QM8, QM35, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75464, 40.745174 ] } }, -{ "type": "Feature", "properties": { "id": 501663, "name": "Springfield Blvd/64 Av", "direction": "NW", "lat": 40.74766, "lon": -73.75587, "routes": "QM35, QM5, Q27, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.75587, 40.74766 ] } }, -{ "type": "Feature", "properties": { "id": 501664, "name": "Springfield Blvd/Horace Harding Expwy South", "direction": "NW", "lat": 40.749004, "lon": -73.75655, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75655, 40.749004 ] } }, -{ "type": "Feature", "properties": { "id": 501665, "name": "Springfield Blvd/Horace Harding Expwy North", "direction": "NW", "lat": 40.749866, "lon": -73.75708, "routes": "QM8, Q27, QM35, QM5, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75708, 40.749866 ] } }, -{ "type": "Feature", "properties": { "id": 501666, "name": "Springfield Blvd/58 Av", "direction": "SE", "lat": 40.750423, "lon": -73.75762, "routes": "Q27, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75762, 40.750423 ] } }, -{ "type": "Feature", "properties": { "id": 501667, "name": "Springfield Blvd/56 Av", "direction": "NW", "lat": 40.75234, "lon": -73.75914, "routes": "Q27, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75914, 40.75234 ] } }, -{ "type": "Feature", "properties": { "id": 501668, "name": "Luke Pl/217 St", "direction": "W", "lat": 40.751953, "lon": -73.76263, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76263, 40.751953 ] } }, -{ "type": "Feature", "properties": { "id": 501669, "name": "216 St/51 Av", "direction": "N", "lat": 40.75357, "lon": -73.76387, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76387, 40.75357 ] } }, -{ "type": "Feature", "properties": { "id": 501670, "name": "216 St/49 Av", "direction": "N", "lat": 40.755177, "lon": -73.76414, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76414, 40.755177 ] } }, -{ "type": "Feature", "properties": { "id": 501671, "name": "48 Av/216 St", "direction": "W", "lat": 40.755985, "lon": -73.76472, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76472, 40.755985 ] } }, -{ "type": "Feature", "properties": { "id": 501672, "name": "48 Av/215 St", "direction": "W", "lat": 40.755817, "lon": -73.76606, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76606, 40.755817 ] } }, -{ "type": "Feature", "properties": { "id": 501673, "name": "48 Av/Bell Blvd", "direction": "W", "lat": 40.755623, "lon": -73.7677, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.7677, 40.755623 ] } }, -{ "type": "Feature", "properties": { "id": 501674, "name": "48 Av/212 St", "direction": "W", "lat": 40.75522, "lon": -73.76949, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76949, 40.75522 ] } }, -{ "type": "Feature", "properties": { "id": 501675, "name": "48 Av/Oceania St", "direction": "W", "lat": 40.75449, "lon": -73.77229, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77229, 40.75449 ] } }, -{ "type": "Feature", "properties": { "id": 501679, "name": "Rocky Hill Rd/202 St", "direction": "W", "lat": 40.753548, "lon": -73.77942, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.77942, 40.753548 ] } }, -{ "type": "Feature", "properties": { "id": 501680, "name": "47 Av/Francis Lewis Blvd", "direction": "W", "lat": 40.75331, "lon": -73.78099, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.78099, 40.75331 ] } }, -{ "type": "Feature", "properties": { "id": 501681, "name": "47 Av/197 St", "direction": "W", "lat": 40.75291, "lon": -73.7834, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.7834, 40.75291 ] } }, -{ "type": "Feature", "properties": { "id": 501682, "name": "47 Av/196 St", "direction": "W", "lat": 40.75267, "lon": -73.78526, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78526, 40.75267 ] } }, -{ "type": "Feature", "properties": { "id": 501684, "name": "47 Av/193 St", "direction": "W", "lat": 40.751938, "lon": -73.78776, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.78776, 40.751938 ] } }, -{ "type": "Feature", "properties": { "id": 501698, "name": "Holly Av/Burling St", "direction": "SW", "lat": 40.75298, "lon": -73.81559, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.81559, 40.75298 ] } }, -{ "type": "Feature", "properties": { "id": 501699, "name": "Holly Av/Bowne St", "direction": "SW", "lat": 40.752075, "lon": -73.81697, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.81697, 40.752075 ] } }, -{ "type": "Feature", "properties": { "id": 501719, "name": "Northern Blvd/Roosevelt Av", "direction": "E", "lat": 40.764145, "lon": -73.80951, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.80951, 40.764145 ] } }, -{ "type": "Feature", "properties": { "id": 501722, "name": "Crocheron Av/162 St", "direction": "E", "lat": 40.762466, "lon": -73.80351, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.80351, 40.762466 ] } }, -{ "type": "Feature", "properties": { "id": 501723, "name": "Crocheron Av/164 St", "direction": "E", "lat": 40.76272, "lon": -73.80141, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.80141, 40.76272 ] } }, -{ "type": "Feature", "properties": { "id": 501724, "name": "Crocheron Av/166 St", "direction": "E", "lat": 40.762836, "lon": -73.79948, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.79948, 40.762836 ] } }, -{ "type": "Feature", "properties": { "id": 501725, "name": "Crocheron Av/168 St", "direction": "E", "lat": 40.762695, "lon": -73.7976, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.7976, 40.762695 ] } }, -{ "type": "Feature", "properties": { "id": 501726, "name": "Crocheron Av/171 St", "direction": "E", "lat": 40.762867, "lon": -73.79475, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.79475, 40.762867 ] } }, -{ "type": "Feature", "properties": { "id": 501727, "name": "Crocheron Av/Utopia Pkwy", "direction": "E", "lat": 40.763134, "lon": -73.792816, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.792816, 40.763134 ] } }, -{ "type": "Feature", "properties": { "id": 501728, "name": "Crocheron Av/192 St", "direction": "E", "lat": 40.763664, "lon": -73.78983, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78983, 40.763664 ] } }, -{ "type": "Feature", "properties": { "id": 501730, "name": "Francis Lewis Blvd/35 Av", "direction": "NW", "lat": 40.764664, "lon": -73.78832, "routes": "Q76, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78832, 40.764664 ] } }, -{ "type": "Feature", "properties": { "id": 501731, "name": "Francis Lewis Blvd/34 Av", "direction": "NW", "lat": 40.76646, "lon": -73.789696, "routes": "Q28, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.789696, 40.76646 ] } }, -{ "type": "Feature", "properties": { "id": 501732, "name": "Francis Lewis Blvd/33 Av", "direction": "NW", "lat": 40.767696, "lon": -73.79065, "routes": "Q76, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.79065, 40.767696 ] } }, -{ "type": "Feature", "properties": { "id": 501733, "name": "Francis Lewis Blvd/32 Rd", "direction": "NW", "lat": 40.768616, "lon": -73.79145, "routes": "Q28, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79145, 40.768616 ] } }, -{ "type": "Feature", "properties": { "id": 501735, "name": "32 Av/202 St", "direction": "E", "lat": 40.770283, "lon": -73.78716, "routes": "Q31, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78716, 40.770283 ] } }, -{ "type": "Feature", "properties": { "id": 501736, "name": "32 Av/205 St", "direction": "E", "lat": 40.77106, "lon": -73.78453, "routes": "Q28, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78453, 40.77106 ] } }, -{ "type": "Feature", "properties": { "id": 501737, "name": "32 Av/208 St", "direction": "E", "lat": 40.771828, "lon": -73.78195, "routes": "Q28, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78195, 40.771828 ] } }, -{ "type": "Feature", "properties": { "id": 501739, "name": "Corporal Kennedy St/28 Rd", "direction": "NW", "lat": 40.774803, "lon": -73.781525, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.781525, 40.774803 ] } }, -{ "type": "Feature", "properties": { "id": 501741, "name": "Corporal Kennedy St/23 Av", "direction": "NW", "lat": 40.77905, "lon": -73.78305, "routes": "QM20, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78305, 40.77905 ] } }, -{ "type": "Feature", "properties": { "id": 501742, "name": "18 Av/211 St", "direction": "E", "lat": 40.781803, "lon": -73.78356, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78356, 40.781803 ] } }, -{ "type": "Feature", "properties": { "id": 501743, "name": "211 St/18 Av", "direction": "S", "lat": 40.78173, "lon": -73.78179, "routes": "QM20, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78179, 40.78173 ] } }, -{ "type": "Feature", "properties": { "id": 501744, "name": "211 St/23 Av", "direction": "SE", "lat": 40.779938, "lon": -73.78072, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78072, 40.779938 ] } }, -{ "type": "Feature", "properties": { "id": 501750, "name": "Corporal Kennedy St/28 Av", "direction": "SE", "lat": 40.774788, "lon": -73.781746, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.781746, 40.774788 ] } }, -{ "type": "Feature", "properties": { "id": 501751, "name": "Corporal Kennedy St/32 Av", "direction": "NW", "lat": 40.772213, "lon": -73.78042, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78042, 40.772213 ] } }, -{ "type": "Feature", "properties": { "id": 501754, "name": "32 Av/204 St", "direction": "W", "lat": 40.770836, "lon": -73.7857, "routes": "Q31, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.7857, 40.770836 ] } }, -{ "type": "Feature", "properties": { "id": 501755, "name": "32 Av/201 St", "direction": "W", "lat": 40.7699, "lon": -73.78883, "routes": "Q28, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78883, 40.7699 ] } }, -{ "type": "Feature", "properties": { "id": 501756, "name": "32 Av/Jordan St", "direction": "W", "lat": 40.76945, "lon": -73.79031, "routes": "Q31, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.79031, 40.76945 ] } }, -{ "type": "Feature", "properties": { "id": 501757, "name": "Francis Lewis Blvd/32 Av", "direction": "SE", "lat": 40.76864, "lon": -73.791824, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.791824, 40.76864 ] } }, -{ "type": "Feature", "properties": { "id": 501758, "name": "Francis Lewis Blvd/33 Av", "direction": "SE", "lat": 40.767025, "lon": -73.790436, "routes": "Q28, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.790436, 40.767025 ] } }, -{ "type": "Feature", "properties": { "id": 501759, "name": "Francis Lewis Blvd/192 St", "direction": "SE", "lat": 40.765823, "lon": -73.78958, "routes": "Q76, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78958, 40.765823 ] } }, -{ "type": "Feature", "properties": { "id": 501760, "name": "Francis Lewis Blvd/35 Av", "direction": "S", "lat": 40.76441, "lon": -73.788635, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.788635, 40.76441 ] } }, -{ "type": "Feature", "properties": { "id": 501761, "name": "Crocheron Av/192 St", "direction": "W", "lat": 40.763626, "lon": -73.79066, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.79066, 40.763626 ] } }, -{ "type": "Feature", "properties": { "id": 501762, "name": "Crocheron Av/Utopia Pkwy", "direction": "W", "lat": 40.763134, "lon": -73.7937, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.7937, 40.763134 ] } }, -{ "type": "Feature", "properties": { "id": 501763, "name": "Crocheron Av/171 St", "direction": "W", "lat": 40.762882, "lon": -73.79553, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.79553, 40.762882 ] } }, -{ "type": "Feature", "properties": { "id": 501764, "name": "Crocheron Av/169 St", "direction": "W", "lat": 40.76283, "lon": -73.79693, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.79693, 40.76283 ] } }, -{ "type": "Feature", "properties": { "id": 501765, "name": "Crocheron Av/168 St", "direction": "W", "lat": 40.76286, "lon": -73.798386, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.798386, 40.76286 ] } }, -{ "type": "Feature", "properties": { "id": 501766, "name": "Crocheron Av/166 St", "direction": "W", "lat": 40.763012, "lon": -73.800255, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.800255, 40.763012 ] } }, -{ "type": "Feature", "properties": { "id": 501767, "name": "Crocheron Av/164 St", "direction": "W", "lat": 40.76268, "lon": -73.802155, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.802155, 40.76268 ] } }, -{ "type": "Feature", "properties": { "id": 501804, "name": "Utopia Pkwy/58 Av", "direction": "N", "lat": 40.741627, "lon": -73.79259, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79259, 40.741627 ] } }, -{ "type": "Feature", "properties": { "id": 501805, "name": "Utopia Pkwy/56 Av", "direction": "N", "lat": 40.743366, "lon": -73.79251, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79251, 40.743366 ] } }, -{ "type": "Feature", "properties": { "id": 501806, "name": "Utopia Pkwy/50 Av", "direction": "N", "lat": 40.744995, "lon": -73.7924, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.7924, 40.744995 ] } }, -{ "type": "Feature", "properties": { "id": 501807, "name": "Utopia Pkwy/Underhill Av", "direction": "N", "lat": 40.746643, "lon": -73.79231, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79231, 40.746643 ] } }, -{ "type": "Feature", "properties": { "id": 501808, "name": "Utopia Pkwy/48 Av", "direction": "N", "lat": 40.748833, "lon": -73.79215, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79215, 40.748833 ] } }, -{ "type": "Feature", "properties": { "id": 501809, "name": "Utopia Pkwy/47 Av", "direction": "N", "lat": 40.750793, "lon": -73.79202, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79202, 40.750793 ] } }, -{ "type": "Feature", "properties": { "id": 501811, "name": "Utopia Pkwy/Hollis Court Blvd", "direction": "N", "lat": 40.752876, "lon": -73.79221, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79221, 40.752876 ] } }, -{ "type": "Feature", "properties": { "id": 501825, "name": "Bell Blvd/46 Av", "direction": "NW", "lat": 40.758587, "lon": -73.76832, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.76832, 40.758587 ] } }, -{ "type": "Feature", "properties": { "id": 501832, "name": "35 Av/211 St", "direction": "W", "lat": 40.76857, "lon": -73.77612, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77612, 40.76857 ] } }, -{ "type": "Feature", "properties": { "id": 501847, "name": "Corporal Kennedy St/33 Av", "direction": "SE", "lat": 40.77068, "lon": -73.77984, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77984, 40.77068 ] } }, -{ "type": "Feature", "properties": { "id": 501848, "name": "Corporal Kennedy St/35 Av", "direction": "SE", "lat": 40.76803, "lon": -73.77848, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77848, 40.76803 ] } }, -{ "type": "Feature", "properties": { "id": 501850, "name": "35 Av/212 St", "direction": "E", "lat": 40.76852, "lon": -73.77573, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77573, 40.76852 ] } }, -{ "type": "Feature", "properties": { "id": 501857, "name": "Bell Blvd/46 Av", "direction": "SE", "lat": 40.75793, "lon": -73.768234, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.768234, 40.75793 ] } }, -{ "type": "Feature", "properties": { "id": 501871, "name": "Utopia Pkwy/46 Av", "direction": "S", "lat": 40.7527, "lon": -73.79238, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79238, 40.7527 ] } }, -{ "type": "Feature", "properties": { "id": 501872, "name": "Utopia Pkwy/47 Av", "direction": "S", "lat": 40.750187, "lon": -73.792274, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792274, 40.750187 ] } }, -{ "type": "Feature", "properties": { "id": 501873, "name": "Utopia Pkwy/Fairchild Av", "direction": "S", "lat": 40.748722, "lon": -73.79237, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79237, 40.748722 ] } }, -{ "type": "Feature", "properties": { "id": 501874, "name": "Utopia Pkwy/Pidgeon Meadow Rd", "direction": "S", "lat": 40.747307, "lon": -73.792465, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792465, 40.747307 ] } }, -{ "type": "Feature", "properties": { "id": 501875, "name": "Utopia Pkwy/Peck Av", "direction": "S", "lat": 40.74539, "lon": -73.79259, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79259, 40.74539 ] } }, -{ "type": "Feature", "properties": { "id": 501876, "name": "Utopia Pkwy/50 Av", "direction": "S", "lat": 40.74416, "lon": -73.79267, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79267, 40.74416 ] } }, -{ "type": "Feature", "properties": { "id": 501877, "name": "Utopia Pkwy/56 Av", "direction": "S", "lat": 40.742447, "lon": -73.79277, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79277, 40.742447 ] } }, -{ "type": "Feature", "properties": { "id": 501878, "name": "Utopia Pkwy/Booth Memorial Av", "direction": "S", "lat": 40.7408, "lon": -73.792885, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792885, 40.7408 ] } }, -{ "type": "Feature", "properties": { "id": 501903, "name": "Hillside Av/169 St", "direction": "E", "lat": 40.710777, "lon": -73.792625, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.792625, 40.710777 ] } }, -{ "type": "Feature", "properties": { "id": 501908, "name": "Hillside Av/180 St", "direction": "E", "lat": 40.71307, "lon": -73.78188, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.78188, 40.71307 ] } }, -{ "type": "Feature", "properties": { "id": 501924, "name": "212 Pl/89 Av", "direction": "SE", "lat": 40.723732, "lon": -73.75166, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.75166, 40.723732 ] } }, -{ "type": "Feature", "properties": { "id": 501925, "name": "212 Pl/90 Av", "direction": "SE", "lat": 40.721752, "lon": -73.749344, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.749344, 40.721752 ] } }, -{ "type": "Feature", "properties": { "id": 501926, "name": "212 Pl/91 Av", "direction": "SE", "lat": 40.720722, "lon": -73.748276, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.748276, 40.720722 ] } }, -{ "type": "Feature", "properties": { "id": 501927, "name": "212 Pl/93 Av", "direction": "SE", "lat": 40.71902, "lon": -73.74736, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74736, 40.71902 ] } }, -{ "type": "Feature", "properties": { "id": 501928, "name": "212 Pl/94 Av", "direction": "SE", "lat": 40.71723, "lon": -73.74638, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74638, 40.71723 ] } }, -{ "type": "Feature", "properties": { "id": 501929, "name": "212 Pl/Jamaica Av", "direction": "SE", "lat": 40.716072, "lon": -73.74577, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74577, 40.716072 ] } }, -{ "type": "Feature", "properties": { "id": 501930, "name": "Jamaica Av/213 St", "direction": "E", "lat": 40.71606, "lon": -73.74488, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74488, 40.71606 ] } }, -{ "type": "Feature", "properties": { "id": 501931, "name": "Jamaica Av/214 Pl", "direction": "E", "lat": 40.716507, "lon": -73.74303, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74303, 40.716507 ] } }, -{ "type": "Feature", "properties": { "id": 501932, "name": "Jamaica Av/215 St", "direction": "E", "lat": 40.717014, "lon": -73.74081, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74081, 40.717014 ] } }, -{ "type": "Feature", "properties": { "id": 501933, "name": "Jamaica Av/216 St", "direction": "E", "lat": 40.717537, "lon": -73.73842, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73842, 40.717537 ] } }, -{ "type": "Feature", "properties": { "id": 501936, "name": "Jamaica Av/220 St", "direction": "NE", "lat": 40.71899, "lon": -73.73414, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73414, 40.71899 ] } }, -{ "type": "Feature", "properties": { "id": 501937, "name": "Jamaica Av/222 St", "direction": "NE", "lat": 40.720554, "lon": -73.73197, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73197, 40.720554 ] } }, -{ "type": "Feature", "properties": { "id": 501938, "name": "Jamaica Av/224 St", "direction": "NE", "lat": 40.721725, "lon": -73.730804, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.730804, 40.721725 ] } }, -{ "type": "Feature", "properties": { "id": 501939, "name": "Jamaica Av/240 St", "direction": "E", "lat": 40.723343, "lon": -73.727295, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.727295, 40.723343 ] } }, -{ "type": "Feature", "properties": { "id": 501940, "name": "Jericho Tpke/Massachusetts Blvd", "direction": "E", "lat": 40.725403, "lon": -73.720474, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.720474, 40.725403 ] } }, -{ "type": "Feature", "properties": { "id": 501941, "name": "Jericho Tpke/Commonwealth Blvd", "direction": "E", "lat": 40.72594, "lon": -73.71843, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71843, 40.72594 ] } }, -{ "type": "Feature", "properties": { "id": 501942, "name": "Jericho Tpke/Pennsylvania Blvd", "direction": "E", "lat": 40.72651, "lon": -73.7155, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7155, 40.72651 ] } }, -{ "type": "Feature", "properties": { "id": 501945, "name": "256 St/Jericho Tpke", "direction": "S", "lat": 40.727818, "lon": -73.70871, "routes": "Q36, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.70871, 40.727818 ] } }, -{ "type": "Feature", "properties": { "id": 501946, "name": "256 St/Jericho Tpke", "direction": "S", "lat": 40.727776, "lon": -73.70869, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.70869, 40.727776 ] } }, -{ "type": "Feature", "properties": { "id": 501947, "name": "Jericho Tpke/Little Neck Pkwy", "direction": "W", "lat": 40.727215, "lon": -73.71098, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71098, 40.727215 ] } }, -{ "type": "Feature", "properties": { "id": 501948, "name": "Jericho Tpke/250 St", "direction": "W", "lat": 40.726677, "lon": -73.71535, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71535, 40.726677 ] } }, -{ "type": "Feature", "properties": { "id": 501949, "name": "Jericho Tpke/Commonwealth Blvd", "direction": "W", "lat": 40.725986, "lon": -73.71872, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71872, 40.725986 ] } }, -{ "type": "Feature", "properties": { "id": 501950, "name": "Jericho Tpke/91 Av", "direction": "W", "lat": 40.72542, "lon": -73.72081, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72081, 40.72542 ] } }, -{ "type": "Feature", "properties": { "id": 501951, "name": "Jericho Tpke/246 St", "direction": "W", "lat": 40.72498, "lon": -73.72245, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72245, 40.72498 ] } }, -{ "type": "Feature", "properties": { "id": 501952, "name": "Jericho Tpke/Braddock Av", "direction": "W", "lat": 40.724632, "lon": -73.72399, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72399, 40.724632 ] } }, -{ "type": "Feature", "properties": { "id": 501953, "name": "Jamaica Av/242 St", "direction": "SW", "lat": 40.724007, "lon": -73.72606, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72606, 40.724007 ] } }, -{ "type": "Feature", "properties": { "id": 501954, "name": "Jamaica Av/239 St", "direction": "W", "lat": 40.723057, "lon": -73.72845, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72845, 40.723057 ] } }, -{ "type": "Feature", "properties": { "id": 501955, "name": "Jamaica Av/224 St", "direction": "SW", "lat": 40.72144, "lon": -73.7313, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7313, 40.72144 ] } }, -{ "type": "Feature", "properties": { "id": 501956, "name": "Jamaica Av/222 St", "direction": "SW", "lat": 40.720005, "lon": -73.73277, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73277, 40.720005 ] } }, -{ "type": "Feature", "properties": { "id": 501957, "name": "Jamaica Av/Springfield Blvd", "direction": "SW", "lat": 40.7187, "lon": -73.73502, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73502, 40.7187 ] } }, -{ "type": "Feature", "properties": { "id": 501958, "name": "Jamaica Av/218 St", "direction": "W", "lat": 40.71789, "lon": -73.73743, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73743, 40.71789 ] } }, -{ "type": "Feature", "properties": { "id": 501959, "name": "Jamaica Av/216 St", "direction": "W", "lat": 40.71749, "lon": -73.73932, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73932, 40.71749 ] } }, -{ "type": "Feature", "properties": { "id": 501960, "name": "Jamaica Av/215 St", "direction": "W", "lat": 40.717064, "lon": -73.74117, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74117, 40.717064 ] } }, -{ "type": "Feature", "properties": { "id": 501961, "name": "Jamaica Av/214 Pl", "direction": "W", "lat": 40.716557, "lon": -73.74336, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74336, 40.716557 ] } }, -{ "type": "Feature", "properties": { "id": 501962, "name": "Jamaica Av/212 Pl", "direction": "W", "lat": 40.716187, "lon": -73.744934, "routes": "Q36, Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.744934, 40.716187 ] } }, -{ "type": "Feature", "properties": { "id": 501963, "name": "212 St/94 Av", "direction": "NW", "lat": 40.71755, "lon": -73.74741, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74741, 40.71755 ] } }, -{ "type": "Feature", "properties": { "id": 501964, "name": "212 St/93 Av", "direction": "NW", "lat": 40.71896, "lon": -73.74818, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74818, 40.71896 ] } }, -{ "type": "Feature", "properties": { "id": 501965, "name": "212 St/91 Av", "direction": "NW", "lat": 40.720535, "lon": -73.74903, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.74903, 40.720535 ] } }, -{ "type": "Feature", "properties": { "id": 501966, "name": "212 St/90 Av", "direction": "NW", "lat": 40.72184, "lon": -73.75048, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.75048, 40.72184 ] } }, -{ "type": "Feature", "properties": { "id": 501967, "name": "212 St/89 Av", "direction": "NW", "lat": 40.723484, "lon": -73.75251, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.75251, 40.723484 ] } }, -{ "type": "Feature", "properties": { "id": 501994, "name": "177 St/104 Av", "direction": "SE", "lat": 40.703922, "lon": -73.78163, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78163, 40.703922 ] } }, -{ "type": "Feature", "properties": { "id": 501995, "name": "177 St/106 Av", "direction": "SE", "lat": 40.702957, "lon": -73.78099, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78099, 40.702957 ] } }, -{ "type": "Feature", "properties": { "id": 501996, "name": "Polhemas Av/Watson Pl", "direction": "SW", "lat": 40.702087, "lon": -73.78207, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78207, 40.702087 ] } }, -{ "type": "Feature", "properties": { "id": 501997, "name": "Fern Pl/Rex Rd", "direction": "E", "lat": 40.7009, "lon": -73.781075, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.781075, 40.7009 ] } }, -{ "type": "Feature", "properties": { "id": 501998, "name": "174 St/108 Av", "direction": "SE", "lat": 40.699787, "lon": -73.78185, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78185, 40.699787 ] } }, -{ "type": "Feature", "properties": { "id": 501999, "name": "174 St/109 Av", "direction": "SE", "lat": 40.698513, "lon": -73.780914, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.780914, 40.698513 ] } }, -{ "type": "Feature", "properties": { "id": 502000, "name": "174 St/110 Av", "direction": "SE", "lat": 40.696915, "lon": -73.779755, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.779755, 40.696915 ] } }, -{ "type": "Feature", "properties": { "id": 502001, "name": "174 St/111 Av", "direction": "SE", "lat": 40.695705, "lon": -73.77887, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.77887, 40.695705 ] } }, -{ "type": "Feature", "properties": { "id": 502002, "name": "111 Av/175 St", "direction": "E", "lat": 40.69606, "lon": -73.777534, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.777534, 40.69606 ] } }, -{ "type": "Feature", "properties": { "id": 502003, "name": "111 Av/177 St", "direction": "NE", "lat": 40.696537, "lon": -73.776344, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.776344, 40.696537 ] } }, -{ "type": "Feature", "properties": { "id": 502004, "name": "Sayres Av/178 St", "direction": "NE", "lat": 40.69741, "lon": -73.77549, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.77549, 40.69741 ] } }, -{ "type": "Feature", "properties": { "id": 502005, "name": "Sayres Av/179 St", "direction": "NE", "lat": 40.69861, "lon": -73.77462, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.77462, 40.69861 ] } }, -{ "type": "Feature", "properties": { "id": 502006, "name": "Sayres Av/180 St", "direction": "SW", "lat": 40.69961, "lon": -73.773994, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.773994, 40.69961 ] } }, -{ "type": "Feature", "properties": { "id": 502007, "name": "Sayres Av/179 Pl", "direction": "SW", "lat": 40.6991, "lon": -73.7745, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.7745, 40.6991 ] } }, -{ "type": "Feature", "properties": { "id": 502009, "name": "Sayres Av/178 St", "direction": "SW", "lat": 40.697117, "lon": -73.775925, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.775925, 40.697117 ] } }, -{ "type": "Feature", "properties": { "id": 502010, "name": "111 Av/177 St", "direction": "W", "lat": 40.696545, "lon": -73.77667, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.77667, 40.696545 ] } }, -{ "type": "Feature", "properties": { "id": 502011, "name": "111 Av/175 St", "direction": "SW", "lat": 40.695858, "lon": -73.77835, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.77835, 40.695858 ] } }, -{ "type": "Feature", "properties": { "id": 502012, "name": "174 St/110 Av", "direction": "NW", "lat": 40.69751, "lon": -73.780045, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.780045, 40.69751 ] } }, -{ "type": "Feature", "properties": { "id": 502013, "name": "174 St/109 Av", "direction": "NW", "lat": 40.699078, "lon": -73.78119, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78119, 40.699078 ] } }, -{ "type": "Feature", "properties": { "id": 502014, "name": "174 St/108 Av", "direction": "NW", "lat": 40.70001, "lon": -73.781876, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.781876, 40.70001 ] } }, -{ "type": "Feature", "properties": { "id": 502015, "name": "Rex Rd/Fern Pl", "direction": "NE", "lat": 40.700813, "lon": -73.78094, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78094, 40.700813 ] } }, -{ "type": "Feature", "properties": { "id": 502016, "name": "Fern Pl/Polhemas Av", "direction": "W", "lat": 40.70139, "lon": -73.78226, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78226, 40.70139 ] } }, -{ "type": "Feature", "properties": { "id": 502017, "name": "106 Av/177 St", "direction": "NE", "lat": 40.70282, "lon": -73.78097, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78097, 40.70282 ] } }, -{ "type": "Feature", "properties": { "id": 502019, "name": "177 St/Liberty Av", "direction": "NW", "lat": 40.70531, "lon": -73.7824, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.7824, 40.70531 ] } }, -{ "type": "Feature", "properties": { "id": 502030, "name": "Sutphin Blvd/Jamaica Av", "direction": "NW", "lat": 40.70199, "lon": -73.8079, "routes": "Q20B, Q20A, Q43, Q40, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.8079, 40.70199 ] } }, -{ "type": "Feature", "properties": { "id": 502031, "name": "Sutphin Blvd/89 Av", "direction": "NW", "lat": 40.703735, "lon": -73.80866, "routes": "Q20A, Q40, Q20B, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.80866, 40.703735 ] } }, -{ "type": "Feature", "properties": { "id": 502032, "name": "Sutphin Blvd/Hillside Av", "direction": "NW", "lat": 40.705677, "lon": -73.8096, "routes": "Q43, Q20A, Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.8096, 40.705677 ] } }, -{ "type": "Feature", "properties": { "id": 502033, "name": "Hillside Av/150 St", "direction": "E", "lat": 40.706497, "lon": -73.80667, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.80667, 40.706497 ] } }, -{ "type": "Feature", "properties": { "id": 502044, "name": "Hillside Av/180 St", "direction": "E", "lat": 40.712822, "lon": -73.782745, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.782745, 40.712822 ] } }, -{ "type": "Feature", "properties": { "id": 502045, "name": "Hillside Av/181 St", "direction": "E", "lat": 40.71303, "lon": -73.781906, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.781906, 40.71303 ] } }, -{ "type": "Feature", "properties": { "id": 502065, "name": "Hillside Av/88 Av", "direction": "NE", "lat": 40.73172, "lon": -73.74111, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.74111, 40.73172 ] } }, -{ "type": "Feature", "properties": { "id": 502067, "name": "Hillside Av/231 St", "direction": "NE", "lat": 40.732822, "lon": -73.73907, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.73907, 40.732822 ] } }, -{ "type": "Feature", "properties": { "id": 502069, "name": "Hillside Av/Winchester Blvd", "direction": "E", "lat": 40.733418, "lon": -73.73572, "routes": "X68, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.73572, 40.733418 ] } }, -{ "type": "Feature", "properties": { "id": 502070, "name": "Hillside Av/Range St", "direction": "E", "lat": 40.732925, "lon": -73.73274, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.73274, 40.732925 ] } }, -{ "type": "Feature", "properties": { "id": 502071, "name": "Hillside Av/Creedmoor Hospital", "direction": "E", "lat": 40.732605, "lon": -73.73111, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.73111, 40.732605 ] } }, -{ "type": "Feature", "properties": { "id": 502072, "name": "Hillside Av/239 St", "direction": "E", "lat": 40.73358, "lon": -73.72552, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.72552, 40.73358 ] } }, -{ "type": "Feature", "properties": { "id": 502073, "name": "Hillside Av/241 St", "direction": "E", "lat": 40.733727, "lon": -73.724815, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.724815, 40.733727 ] } }, -{ "type": "Feature", "properties": { "id": 502074, "name": "Hillside Av/Cross Island Pkwy", "direction": "E", "lat": 40.734013, "lon": -73.72337, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.72337, 40.734013 ] } }, -{ "type": "Feature", "properties": { "id": 502075, "name": "Hillside Av/Commonwealth Blvd", "direction": "E", "lat": 40.734436, "lon": -73.7213, "routes": "Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.7213, 40.734436 ] } }, -{ "type": "Feature", "properties": { "id": 502078, "name": "Hillside Av/251 St", "direction": "E", "lat": 40.73555, "lon": -73.71612, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.71612, 40.73555 ] } }, -{ "type": "Feature", "properties": { "id": 502079, "name": "Hillside Av/Little Neck Pkwy", "direction": "E", "lat": 40.73601, "lon": -73.71396, "routes": "Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.71396, 40.73601 ] } }, -{ "type": "Feature", "properties": { "id": 502080, "name": "Hillside Av/256 St", "direction": "E", "lat": 40.73654, "lon": -73.71151, "routes": "X68, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.71151, 40.73654 ] } }, -{ "type": "Feature", "properties": { "id": 502081, "name": "Hillside Av/259 St", "direction": "E", "lat": 40.73712, "lon": -73.70879, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.70879, 40.73712 ] } }, -{ "type": "Feature", "properties": { "id": 502082, "name": "Hillside Av/261 St", "direction": "E", "lat": 40.737514, "lon": -73.70698, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.70698, 40.737514 ] } }, -{ "type": "Feature", "properties": { "id": 502083, "name": "Hillside Av/264 St", "direction": "E", "lat": 40.73811, "lon": -73.7042, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.7042, 40.73811 ] } }, -{ "type": "Feature", "properties": { "id": 502084, "name": "Hillside Av/267 St", "direction": "E", "lat": 40.7387, "lon": -73.70146, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.70146, 40.7387 ] } }, -{ "type": "Feature", "properties": { "id": 502085, "name": "Hillside Av/268 St", "direction": "W", "lat": 40.73877, "lon": -73.701866, "routes": "Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.701866, 40.73877 ] } }, -{ "type": "Feature", "properties": { "id": 502086, "name": "Hillside Av/266 St", "direction": "W", "lat": 40.73853, "lon": -73.70324, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.70324, 40.73853 ] } }, -{ "type": "Feature", "properties": { "id": 502087, "name": "Hillside Av/264 St", "direction": "W", "lat": 40.73813, "lon": -73.70509, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.70509, 40.73813 ] } }, -{ "type": "Feature", "properties": { "id": 502088, "name": "Hillside Av/261 St", "direction": "W", "lat": 40.73754, "lon": -73.70784, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.70784, 40.73754 ] } }, -{ "type": "Feature", "properties": { "id": 502091, "name": "Hillside Av/Little Neck Pkwy", "direction": "W", "lat": 40.736134, "lon": -73.71437, "routes": "X68, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.71437, 40.736134 ] } }, -{ "type": "Feature", "properties": { "id": 502092, "name": "Hillside Av/251 St", "direction": "W", "lat": 40.73566, "lon": -73.716415, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.716415, 40.73566 ] } }, -{ "type": "Feature", "properties": { "id": 502095, "name": "Hillside Av/Commonwealth Blvd", "direction": "W", "lat": 40.734543, "lon": -73.72166, "routes": "X68, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.72166, 40.734543 ] } }, -{ "type": "Feature", "properties": { "id": 502096, "name": "Hillside Av/243 St", "direction": "W", "lat": 40.734013, "lon": -73.72407, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.72407, 40.734013 ] } }, -{ "type": "Feature", "properties": { "id": 502098, "name": "Hillside Av/Creedmoor Hospital", "direction": "W", "lat": 40.732723, "lon": -73.73048, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.73048, 40.732723 ] } }, -{ "type": "Feature", "properties": { "id": 502099, "name": "Hillside Av/Range St", "direction": "W", "lat": 40.733128, "lon": -73.73303, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.73303, 40.733128 ] } }, -{ "type": "Feature", "properties": { "id": 502100, "name": "Hillside Av/Winchester Blvd", "direction": "W", "lat": 40.733517, "lon": -73.73508, "routes": "Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.73508, 40.733517 ] } }, -{ "type": "Feature", "properties": { "id": 502102, "name": "Hillside Av/231 St", "direction": "W", "lat": 40.732944, "lon": -73.739395, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.739395, 40.732944 ] } }, -{ "type": "Feature", "properties": { "id": 502103, "name": "Hillside Av/229 St", "direction": "SW", "lat": 40.73224, "lon": -73.74103, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.74103, 40.73224 ] } }, -{ "type": "Feature", "properties": { "id": 502104, "name": "Hillside Av/Manor Rd", "direction": "SW", "lat": 40.73093, "lon": -73.74323, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.74323, 40.73093 ] } }, -{ "type": "Feature", "properties": { "id": 502115, "name": "Hillside Av/202 St", "direction": "SW", "lat": 40.719906, "lon": -73.762314, "routes": "Q77, Q43, Q1, Q36, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.762314, 40.719906 ] } }, -{ "type": "Feature", "properties": { "id": 502131, "name": "Hillside Av/166 St", "direction": "W", "lat": 40.709625, "lon": -73.79627, "routes": "Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.79627, 40.709625 ] } }, -{ "type": "Feature", "properties": { "id": 502132, "name": "Hillside Av/164 St", "direction": "W", "lat": 40.708878, "lon": -73.79887, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.79887, 40.708878 ] } }, -{ "type": "Feature", "properties": { "id": 502136, "name": "Hillside Av/150 St", "direction": "W", "lat": 40.706566, "lon": -73.807, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.807, 40.706566 ] } }, -{ "type": "Feature", "properties": { "id": 502137, "name": "Sutphin Blvd/Hillside Av", "direction": "SE", "lat": 40.705383, "lon": -73.80959, "routes": "Q44+, Q43, Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.80959, 40.705383 ] } }, -{ "type": "Feature", "properties": { "id": 502138, "name": "Sutphin Blvd/90 Av", "direction": "SE", "lat": 40.7031, "lon": -73.80854, "routes": "Q43, Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.80854, 40.7031 ] } }, -{ "type": "Feature", "properties": { "id": 502139, "name": "Sutphin Blvd/Jamaica Av", "direction": "S", "lat": 40.701843, "lon": -73.80803, "routes": "Q20B, Q40, Q44+, Q43, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.80803, 40.701843 ] } }, -{ "type": "Feature", "properties": { "id": 502145, "name": "Jamaica Av/150 St", "direction": "W", "lat": 40.70223, "lon": -73.80433, "routes": "Q56, Q54, Q09, Q31, Q06, Q24, Q41, Q30, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.80433, 40.70223 ] } }, -{ "type": "Feature", "properties": { "id": 502158, "name": "Main St/78 Rd", "direction": "NW", "lat": 40.719692, "lon": -73.81802, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81802, 40.719692 ] } }, -{ "type": "Feature", "properties": { "id": 502159, "name": "Main St/77 Rd", "direction": "NW", "lat": 40.721016, "lon": -73.8187, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.8187, 40.721016 ] } }, -{ "type": "Feature", "properties": { "id": 502163, "name": "Main St/73 Av", "direction": "NW", "lat": 40.72501, "lon": -73.82075, "routes": "Q20A, Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82075, 40.72501 ] } }, -{ "type": "Feature", "properties": { "id": 502164, "name": "Main St/72 Av", "direction": "NW", "lat": 40.72702, "lon": -73.821785, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.821785, 40.72702 ] } }, -{ "type": "Feature", "properties": { "id": 502165, "name": "Main St/71 Av", "direction": "NW", "lat": 40.72834, "lon": -73.822464, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.822464, 40.72834 ] } }, -{ "type": "Feature", "properties": { "id": 502166, "name": "Main St/Jewel Av", "direction": "NW", "lat": 40.72994, "lon": -73.82328, "routes": "Q44+, Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82328, 40.72994 ] } }, -{ "type": "Feature", "properties": { "id": 502168, "name": "Main St/68 Dr", "direction": "NW", "lat": 40.732304, "lon": -73.8245, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.8245, 40.732304 ] } }, -{ "type": "Feature", "properties": { "id": 502169, "name": "Main St/Melbourne Av", "direction": "N", "lat": 40.733963, "lon": -73.82519, "routes": "Q20A, Q20B, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.82519, 40.733963 ] } }, -{ "type": "Feature", "properties": { "id": 502171, "name": "Main St /65-21 Main St", "direction": "N", "lat": 40.73728, "lon": -73.824905, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.824905, 40.73728 ] } }, -{ "type": "Feature", "properties": { "id": 502172, "name": "Main St/146 St", "direction": "N", "lat": 40.74012, "lon": -73.82489, "routes": "Q20B, Q20A, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.82489, 40.74012 ] } }, -{ "type": "Feature", "properties": { "id": 502173, "name": "Main St/61 Rd", "direction": "N", "lat": 40.74128, "lon": -73.825096, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.825096, 40.74128 ] } }, -{ "type": "Feature", "properties": { "id": 502174, "name": "Main St/60 Av", "direction": "N", "lat": 40.74304, "lon": -73.82547, "routes": "Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82547, 40.74304 ] } }, -{ "type": "Feature", "properties": { "id": 502175, "name": "Main St/58 Rd", "direction": "N", "lat": 40.744846, "lon": -73.82579, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82579, 40.744846 ] } }, -{ "type": "Feature", "properties": { "id": 502179, "name": "Main St/Elder Av", "direction": "NW", "lat": 40.751385, "lon": -73.8259, "routes": "Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.8259, 40.751385 ] } }, -{ "type": "Feature", "properties": { "id": 502180, "name": "Main St/Cherry Av", "direction": "NW", "lat": 40.752796, "lon": -73.82696, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82696, 40.752796 ] } }, -{ "type": "Feature", "properties": { "id": 502181, "name": "Main St/Franklin Av", "direction": "N", "lat": 40.7546, "lon": -73.82792, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82792, 40.7546 ] } }, -{ "type": "Feature", "properties": { "id": 502182, "name": "Main St/Maple Av", "direction": "N", "lat": 40.75572, "lon": -73.82835, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82835, 40.75572 ] } }, -{ "type": "Feature", "properties": { "id": 502183, "name": "Main St/Sanford Av", "direction": "N", "lat": 40.757004, "lon": -73.82886, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82886, 40.757004 ] } }, -{ "type": "Feature", "properties": { "id": 502184, "name": "Main St/Kissena Blvd", "direction": "NW", "lat": 40.75812, "lon": -73.829346, "routes": "Q20A, Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.829346, 40.75812 ] } }, -{ "type": "Feature", "properties": { "id": 502185, "name": "Main St/39 Av", "direction": "NW", "lat": 40.760277, "lon": -73.83041, "routes": "Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.83041, 40.760277 ] } }, -{ "type": "Feature", "properties": { "id": 502241, "name": "Parsons Blvd/17 Rd", "direction": "S", "lat": 40.784172, "lon": -73.821396, "routes": "Q20B, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.821396, 40.784172 ] } }, -{ "type": "Feature", "properties": { "id": 502246, "name": "Parsons Blvd/Willets Point Blvd", "direction": "S", "lat": 40.777252, "lon": -73.82432, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82432, 40.777252 ] } }, -{ "type": "Feature", "properties": { "id": 502254, "name": "Main St/Northern Blvd", "direction": "SE", "lat": 40.762447, "lon": -73.831795, "routes": "Q20A, Q65, Q20B, Q50, Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.831795, 40.762447 ] } }, -{ "type": "Feature", "properties": { "id": 502256, "name": "Main St/39 Av", "direction": "SE", "lat": 40.75993, "lon": -73.83044, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.83044, 40.75993 ] } }, -{ "type": "Feature", "properties": { "id": 502257, "name": "Main St/41 Av", "direction": "SE", "lat": 40.757824, "lon": -73.82942, "routes": "Q44+, Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82942, 40.757824 ] } }, -{ "type": "Feature", "properties": { "id": 502258, "name": "Main St/Sanford Av", "direction": "S", "lat": 40.75631, "lon": -73.82877, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82877, 40.75631 ] } }, -{ "type": "Feature", "properties": { "id": 502259, "name": "Main St/Maple Av", "direction": "S", "lat": 40.755047, "lon": -73.82827, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82827, 40.755047 ] } }, -{ "type": "Feature", "properties": { "id": 502260, "name": "Main St/Blossom Av", "direction": "SE", "lat": 40.75295, "lon": -73.8273, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.8273, 40.75295 ] } }, -{ "type": "Feature", "properties": { "id": 502261, "name": "Main St/Elder Av", "direction": "SE", "lat": 40.751026, "lon": -73.82589, "routes": "Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82589, 40.751026 ] } }, -{ "type": "Feature", "properties": { "id": 502263, "name": "Main St/56 Av", "direction": "S", "lat": 40.74801, "lon": -73.82614, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82614, 40.74801 ] } }, -{ "type": "Feature", "properties": { "id": 502264, "name": "Main St/Booth Memorial Av", "direction": "S", "lat": 40.746166, "lon": -73.826225, "routes": "Q20B, Q20A, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.826225, 40.746166 ] } }, -{ "type": "Feature", "properties": { "id": 502265, "name": "Main St/58 Av", "direction": "S", "lat": 40.745007, "lon": -73.82599, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82599, 40.745007 ] } }, -{ "type": "Feature", "properties": { "id": 502267, "name": "Main St/62 Av", "direction": "S", "lat": 40.741142, "lon": -73.825226, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.825226, 40.741142 ] } }, -{ "type": "Feature", "properties": { "id": 502268, "name": "Main St/63 Av", "direction": "S", "lat": 40.739334, "lon": -73.82497, "routes": "Q44+, Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82497, 40.739334 ] } }, -{ "type": "Feature", "properties": { "id": 502271, "name": "Main St/Melbourne Av", "direction": "S", "lat": 40.734074, "lon": -73.82544, "routes": "Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82544, 40.734074 ] } }, -{ "type": "Feature", "properties": { "id": 502272, "name": "Main St/68 Av", "direction": "SE", "lat": 40.732998, "lon": -73.82514, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82514, 40.732998 ] } }, -{ "type": "Feature", "properties": { "id": 502273, "name": "Main St/68 Dr", "direction": "SE", "lat": 40.73169, "lon": -73.82447, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82447, 40.73169 ] } }, -{ "type": "Feature", "properties": { "id": 502274, "name": "Main St/Jewel Av", "direction": "SE", "lat": 40.730083, "lon": -73.82365, "routes": "Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82365, 40.730083 ] } }, -{ "type": "Feature", "properties": { "id": 502275, "name": "Main St/70 Rd", "direction": "SE", "lat": 40.728703, "lon": -73.82294, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82294, 40.728703 ] } }, -{ "type": "Feature", "properties": { "id": 502276, "name": "Main St/72 Av", "direction": "SE", "lat": 40.726368, "lon": -73.82173, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82173, 40.726368 ] } }, -{ "type": "Feature", "properties": { "id": 502277, "name": "Main St/73 Av", "direction": "SE", "lat": 40.724083, "lon": -73.82056, "routes": "Q20B, Q20A, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.82056, 40.724083 ] } }, -{ "type": "Feature", "properties": { "id": 502278, "name": "Main St/76 Av", "direction": "SE", "lat": 40.722332, "lon": -73.81966, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81966, 40.722332 ] } }, -{ "type": "Feature", "properties": { "id": 502279, "name": "Main St/77 Rd", "direction": "SE", "lat": 40.720345, "lon": -73.81864, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81864, 40.720345 ] } }, -{ "type": "Feature", "properties": { "id": 502280, "name": "Main St/78 Rd", "direction": "SE", "lat": 40.719032, "lon": -73.81797, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81797, 40.719032 ] } }, -{ "type": "Feature", "properties": { "id": 502281, "name": "Main St/Union Tpke", "direction": "SE", "lat": 40.71777, "lon": -73.81732, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.81732, 40.71777 ] } }, -{ "type": "Feature", "properties": { "id": 502287, "name": "Main St/Union Tpke", "direction": "SE", "lat": 40.717796, "lon": -73.81736, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.81736, 40.717796 ] } }, -{ "type": "Feature", "properties": { "id": 502300, "name": "Union Tpke/135 St", "direction": "E", "lat": 40.715927, "lon": -73.82374, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.82374, 40.715927 ] } }, -{ "type": "Feature", "properties": { "id": 502301, "name": "Union Tpke/141 St", "direction": "E", "lat": 40.71705, "lon": -73.819374, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.819374, 40.71705 ] } }, -{ "type": "Feature", "properties": { "id": 502302, "name": "Union Tpke/Main St", "direction": "E", "lat": 40.717728, "lon": -73.816536, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.816536, 40.717728 ] } }, -{ "type": "Feature", "properties": { "id": 502303, "name": "Union Tpke/147 St", "direction": "E", "lat": 40.7181, "lon": -73.8152, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.8152, 40.7181 ] } }, -{ "type": "Feature", "properties": { "id": 502304, "name": "Union Tpke/150 St", "direction": "E", "lat": 40.71907, "lon": -73.81169, "routes": "QM5, QM6, QM35, QM7, QM1, Q46, QM31, QM36, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.81169, 40.71907 ] } }, -{ "type": "Feature", "properties": { "id": 502305, "name": "Union Tpke/Parsons Blvd", "direction": "E", "lat": 40.719772, "lon": -73.80916, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.80916, 40.719772 ] } }, -{ "type": "Feature", "properties": { "id": 502306, "name": "Union Tpke/160 St", "direction": "E", "lat": 40.720543, "lon": -73.80684, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.80684, 40.720543 ] } }, -{ "type": "Feature", "properties": { "id": 502307, "name": "Union Tpke/164 St", "direction": "E", "lat": 40.721275, "lon": -73.80473, "routes": "QM5, QM8, QM31, QM36, QM6, Q46, QM35, QM1, QM7" }, "geometry": { "type": "Point", "coordinates": [ -73.80473, 40.721275 ] } }, -{ "type": "Feature", "properties": { "id": 502308, "name": "Union Tpke/165 St", "direction": "E", "lat": 40.722076, "lon": -73.80241, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.80241, 40.722076 ] } }, -{ "type": "Feature", "properties": { "id": 502309, "name": "Union Tpke/168 St", "direction": "E", "lat": 40.722965, "lon": -73.79979, "routes": "QM31, QM1, QM7, QM8, QM5, QM35, QM6, Q46, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.79979, 40.722965 ] } }, -{ "type": "Feature", "properties": { "id": 502310, "name": "Union Tpke/170 St", "direction": "E", "lat": 40.72356, "lon": -73.79806, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.79806, 40.72356 ] } }, -{ "type": "Feature", "properties": { "id": 502311, "name": "Union Tpke/173 St", "direction": "E", "lat": 40.72446, "lon": -73.795425, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.795425, 40.72446 ] } }, -{ "type": "Feature", "properties": { "id": 502312, "name": "Union Tpke/175 St", "direction": "E", "lat": 40.72501, "lon": -73.79381, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.79381, 40.72501 ] } }, -{ "type": "Feature", "properties": { "id": 502313, "name": "Union Tpke/Utopia Pkwy", "direction": "E", "lat": 40.725838, "lon": -73.791145, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.791145, 40.725838 ] } }, -{ "type": "Feature", "properties": { "id": 502314, "name": "Union Tpke/Surrey Pl", "direction": "E", "lat": 40.72663, "lon": -73.78869, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.78869, 40.72663 ] } }, -{ "type": "Feature", "properties": { "id": 502315, "name": "Union Tpke/Kent St", "direction": "E", "lat": 40.727592, "lon": -73.78577, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.78577, 40.727592 ] } }, -{ "type": "Feature", "properties": { "id": 502316, "name": "Union Tpke/Chevy Chase St", "direction": "E", "lat": 40.728436, "lon": -73.78318, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.78318, 40.728436 ] } }, -{ "type": "Feature", "properties": { "id": 502317, "name": "Union Tpke/188 St", "direction": "E", "lat": 40.72922, "lon": -73.780716, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.780716, 40.72922 ] } }, -{ "type": "Feature", "properties": { "id": 502318, "name": "Union Tpke/190 St", "direction": "E", "lat": 40.729706, "lon": -73.778946, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.778946, 40.729706 ] } }, -{ "type": "Feature", "properties": { "id": 502319, "name": "Union Tpke/193 St", "direction": "E", "lat": 40.730206, "lon": -73.777145, "routes": "QM6, Q46, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.777145, 40.730206 ] } }, -{ "type": "Feature", "properties": { "id": 502320, "name": "Union Tpke/196 St", "direction": "E", "lat": 40.730858, "lon": -73.77466, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.77466, 40.730858 ] } }, -{ "type": "Feature", "properties": { "id": 502321, "name": "Union Tpke/198 St", "direction": "E", "lat": 40.731274, "lon": -73.772354, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.772354, 40.731274 ] } }, -{ "type": "Feature", "properties": { "id": 502322, "name": "Union Tpke/Francis Lewis Blvd", "direction": "E", "lat": 40.731777, "lon": -73.76949, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.76949, 40.731777 ] } }, -{ "type": "Feature", "properties": { "id": 502323, "name": "Union Tpke/Hollis Hills Terr", "direction": "E", "lat": 40.732872, "lon": -73.76302, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.76302, 40.732872 ] } }, -{ "type": "Feature", "properties": { "id": 502325, "name": "Union Tpke/211 St", "direction": "E", "lat": 40.73348, "lon": -73.759445, "routes": "QM36, QM6, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.759445, 40.73348 ] } }, -{ "type": "Feature", "properties": { "id": 502327, "name": "Union Tpke/Bell Blvd", "direction": "E", "lat": 40.734272, "lon": -73.754745, "routes": "QM6, QM36, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.754745, 40.734272 ] } }, -{ "type": "Feature", "properties": { "id": 502328, "name": "Union Tpke/Stewart Rd", "direction": "E", "lat": 40.73474, "lon": -73.751976, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.751976, 40.73474 ] } }, -{ "type": "Feature", "properties": { "id": 502331, "name": "Union Tpke/Springfield Blvd", "direction": "E", "lat": 40.73564, "lon": -73.74664, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.74664, 40.73564 ] } }, -{ "type": "Feature", "properties": { "id": 502332, "name": "Union Tpke/226 St", "direction": "E", "lat": 40.736122, "lon": -73.74448, "routes": "Q46, QM36, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.74448, 40.736122 ] } }, -{ "type": "Feature", "properties": { "id": 502333, "name": "Union Tpke/Grand Central Pkwy", "direction": "E", "lat": 40.7366, "lon": -73.74222, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.74222, 40.7366 ] } }, -{ "type": "Feature", "properties": { "id": 502334, "name": "Union Tpke/232 St", "direction": "E", "lat": 40.73713, "lon": -73.73978, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.73978, 40.73713 ] } }, -{ "type": "Feature", "properties": { "id": 502335, "name": "Union Tpke/234 St", "direction": "E", "lat": 40.737663, "lon": -73.73731, "routes": "QM36, Q46, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.73731, 40.737663 ] } }, -{ "type": "Feature", "properties": { "id": 502336, "name": "Union Tpke/236 St", "direction": "E", "lat": 40.73807, "lon": -73.73548, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.73548, 40.73807 ] } }, -{ "type": "Feature", "properties": { "id": 502337, "name": "Union Tpke/Winchester Blvd", "direction": "NE", "lat": 40.73896, "lon": -73.73342, "routes": "Q46, QM6, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.73342, 40.73896 ] } }, -{ "type": "Feature", "properties": { "id": 502338, "name": "Union Tpke/Cross Island Pkwy", "direction": "E", "lat": 40.74068, "lon": -73.72674, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.72674, 40.74068 ] } }, -{ "type": "Feature", "properties": { "id": 502339, "name": "Union Tpke/Commonwealth Blvd", "direction": "E", "lat": 40.741413, "lon": -73.72446, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.72446, 40.741413 ] } }, -{ "type": "Feature", "properties": { "id": 502344, "name": "Union Tpke/258 St", "direction": "NE", "lat": 40.746258, "lon": -73.71317, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71317, 40.746258 ] } }, -{ "type": "Feature", "properties": { "id": 502345, "name": "260 St/Union Tpke", "direction": "NW", "lat": 40.74733, "lon": -73.71212, "routes": "Q46, QM5, QM8, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.71212, 40.74733 ] } }, -{ "type": "Feature", "properties": { "id": 502346, "name": "260 St/75 Av", "direction": "NW", "lat": 40.74808, "lon": -73.71324, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71324, 40.74808 ] } }, -{ "type": "Feature", "properties": { "id": 502347, "name": "260 St/74 Av", "direction": "NW", "lat": 40.750134, "lon": -73.715355, "routes": "QM8, Q46, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.715355, 40.750134 ] } }, -{ "type": "Feature", "properties": { "id": 502348, "name": "260 St/73 Av", "direction": "NW", "lat": 40.750824, "lon": -73.71752, "routes": "Q46, QM8, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.71752, 40.750824 ] } }, -{ "type": "Feature", "properties": { "id": 502350, "name": "Union Tpke/260 St", "direction": "NE", "lat": 40.747116, "lon": -73.71155, "routes": "QM36, QM6, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71155, 40.747116 ] } }, -{ "type": "Feature", "properties": { "id": 502351, "name": "Union Tpke/263 St", "direction": "NE", "lat": 40.748447, "lon": -73.709045, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.709045, 40.748447 ] } }, -{ "type": "Feature", "properties": { "id": 502352, "name": "Union Tpke/265 St", "direction": "NE", "lat": 40.749294, "lon": -73.70745, "routes": "QM36, Q46, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.70745, 40.749294 ] } }, -{ "type": "Feature", "properties": { "id": 502354, "name": "Union Tpke/268 St", "direction": "NE", "lat": 40.750603, "lon": -73.70497, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.70497, 40.750603 ] } }, -{ "type": "Feature", "properties": { "id": 502355, "name": "Union Tpke/271 St", "direction": "NE", "lat": 40.7519, "lon": -73.702515, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.702515, 40.7519 ] } }, -{ "type": "Feature", "properties": { "id": 502361, "name": "260 St/Little Neck Pkwy", "direction": "E", "lat": 40.752037, "lon": -73.720215, "routes": "Q46, QM8, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.720215, 40.752037 ] } }, -{ "type": "Feature", "properties": { "id": 502363, "name": "260 St/73 Av", "direction": "SE", "lat": 40.750626, "lon": -73.71747, "routes": "Q46, QM35, QM5, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.71747, 40.750626 ] } }, -{ "type": "Feature", "properties": { "id": 502364, "name": "260 St/74 Av", "direction": "SE", "lat": 40.749126, "lon": -73.7162, "routes": "QM35, QM5, Q46, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.7162, 40.749126 ] } }, -{ "type": "Feature", "properties": { "id": 502365, "name": "260 St/75 Av", "direction": "SE", "lat": 40.748203, "lon": -73.713684, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.713684, 40.748203 ] } }, -{ "type": "Feature", "properties": { "id": 502367, "name": "Union Tpke/270 St", "direction": "SW", "lat": 40.751213, "lon": -73.704285, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.704285, 40.751213 ] } }, -{ "type": "Feature", "properties": { "id": 502368, "name": "Union Tpke/267 St", "direction": "SW", "lat": 40.7499, "lon": -73.70676, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.70676, 40.7499 ] } }, -{ "type": "Feature", "properties": { "id": 502369, "name": "Union Tpke/265 St", "direction": "SW", "lat": 40.749046, "lon": -73.70835, "routes": "Q46, QM36, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.70835, 40.749046 ] } }, -{ "type": "Feature", "properties": { "id": 502370, "name": "Union Tpke/263 St", "direction": "SW", "lat": 40.748173, "lon": -73.710014, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.710014, 40.748173 ] } }, -{ "type": "Feature", "properties": { "id": 502371, "name": "Union Tpke/260 St", "direction": "SW", "lat": 40.74684, "lon": -73.71256, "routes": "QM36, QM5, QM8, QM6, Q46, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.71256, 40.74684 ] } }, -{ "type": "Feature", "properties": { "id": 502372, "name": "Union Tpke/258 St", "direction": "SW", "lat": 40.746326, "lon": -73.71356, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71356, 40.746326 ] } }, -{ "type": "Feature", "properties": { "id": 502373, "name": "Union Tpke/255 St", "direction": "SW", "lat": 40.745266, "lon": -73.71557, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71557, 40.745266 ] } }, -{ "type": "Feature", "properties": { "id": 502374, "name": "Union Tpke/Little Neck Pkwy", "direction": "SW", "lat": 40.744213, "lon": -73.71751, "routes": "QM36, QM6, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71751, 40.744213 ] } }, -{ "type": "Feature", "properties": { "id": 502375, "name": "Union Tpke/251 St", "direction": "W", "lat": 40.743183, "lon": -73.71974, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71974, 40.743183 ] } }, -{ "type": "Feature", "properties": { "id": 502378, "name": "Union Tpke/Commonwealth Blvd", "direction": "W", "lat": 40.741524, "lon": -73.7248, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.7248, 40.741524 ] } }, -{ "type": "Feature", "properties": { "id": 502379, "name": "Union Tpke/Cross Island Pkwy", "direction": "W", "lat": 40.740887, "lon": -73.726776, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.726776, 40.740887 ] } }, -{ "type": "Feature", "properties": { "id": 502380, "name": "Union Tpke/Winchester Blvd", "direction": "SW", "lat": 40.739147, "lon": -73.73354, "routes": "QM6, Q46, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.73354, 40.739147 ] } }, -{ "type": "Feature", "properties": { "id": 502381, "name": "Union Tpke/235 St", "direction": "W", "lat": 40.737988, "lon": -73.73677, "routes": "QM36, QM6, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.73677, 40.737988 ] } }, -{ "type": "Feature", "properties": { "id": 502382, "name": "Union Tpke/Grand Central Pkwy", "direction": "W", "lat": 40.737305, "lon": -73.73997, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.73997, 40.737305 ] } }, -{ "type": "Feature", "properties": { "id": 502383, "name": "Union Tpke/Cloverdale Blvd", "direction": "W", "lat": 40.736668, "lon": -73.74291, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.74291, 40.736668 ] } }, -{ "type": "Feature", "properties": { "id": 502384, "name": "Union Tpke/226 St", "direction": "W", "lat": 40.73623, "lon": -73.744934, "routes": "QM36, QM6, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.744934, 40.73623 ] } }, -{ "type": "Feature", "properties": { "id": 502385, "name": "Union Tpke/Springfield Blvd", "direction": "W", "lat": 40.7359, "lon": -73.74647, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.74647, 40.7359 ] } }, -{ "type": "Feature", "properties": { "id": 502387, "name": "Union Tpke/220 Pl", "direction": "W", "lat": 40.73513, "lon": -73.7509, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.7509, 40.73513 ] } }, -{ "type": "Feature", "properties": { "id": 502389, "name": "Union Tpke/Bell Blvd", "direction": "W", "lat": 40.734318, "lon": -73.75571, "routes": "QM36, Q46, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.75571, 40.734318 ] } }, -{ "type": "Feature", "properties": { "id": 502391, "name": "Union Tpke/211 St", "direction": "W", "lat": 40.733536, "lon": -73.7603, "routes": "Q46, QM36, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.7603, 40.733536 ] } }, -{ "type": "Feature", "properties": { "id": 502393, "name": "Union Tpke/Hollis Hills Terr", "direction": "W", "lat": 40.732975, "lon": -73.763626, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.763626, 40.732975 ] } }, -{ "type": "Feature", "properties": { "id": 502394, "name": "Union Tpke/Francis Lewis Blvd", "direction": "W", "lat": 40.731773, "lon": -73.770706, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.770706, 40.731773 ] } }, -{ "type": "Feature", "properties": { "id": 502395, "name": "Union Tpke/197 St", "direction": "W", "lat": 40.73127, "lon": -73.77352, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.77352, 40.73127 ] } }, -{ "type": "Feature", "properties": { "id": 502396, "name": "Union Tpke/196 St", "direction": "W", "lat": 40.73091, "lon": -73.775345, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.775345, 40.73091 ] } }, -{ "type": "Feature", "properties": { "id": 502397, "name": "Union Tpke/193 St", "direction": "W", "lat": 40.730175, "lon": -73.77802, "routes": "QM6, Q46, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.77802, 40.730175 ] } }, -{ "type": "Feature", "properties": { "id": 502398, "name": "Union Tpke/190 St", "direction": "W", "lat": 40.72969, "lon": -73.779785, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.779785, 40.72969 ] } }, -{ "type": "Feature", "properties": { "id": 502399, "name": "Union Tpke/188 St", "direction": "W", "lat": 40.729176, "lon": -73.78161, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.78161, 40.729176 ] } }, -{ "type": "Feature", "properties": { "id": 502400, "name": "Union Tpke/185 St", "direction": "W", "lat": 40.728264, "lon": -73.784386, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.784386, 40.728264 ] } }, -{ "type": "Feature", "properties": { "id": 502401, "name": "Union Tpke/183 St", "direction": "W", "lat": 40.727703, "lon": -73.786095, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.786095, 40.727703 ] } }, -{ "type": "Feature", "properties": { "id": 502402, "name": "Union Tpke/179 St", "direction": "W", "lat": 40.726585, "lon": -73.7895, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.7895, 40.726585 ] } }, -{ "type": "Feature", "properties": { "id": 502403, "name": "Union Tpke/Utopia Pkwy", "direction": "W", "lat": 40.72576, "lon": -73.79225, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.79225, 40.72576 ] } }, -{ "type": "Feature", "properties": { "id": 502404, "name": "Union Tpke/174 St", "direction": "W", "lat": 40.724648, "lon": -73.79551, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.79551, 40.724648 ] } }, -{ "type": "Feature", "properties": { "id": 502405, "name": "Union Tpke/171 St", "direction": "W", "lat": 40.723797, "lon": -73.798004, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.798004, 40.723797 ] } }, -{ "type": "Feature", "properties": { "id": 502406, "name": "Union Tpke/168 St", "direction": "W", "lat": 40.722904, "lon": -73.80061, "routes": "QM1, QM36, QM7, QM31, QM8, QM35, QM6, Q46, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.80061, 40.722904 ] } }, -{ "type": "Feature", "properties": { "id": 502407, "name": "Union Tpke/166 St", "direction": "W", "lat": 40.722305, "lon": -73.802376, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.802376, 40.722305 ] } }, -{ "type": "Feature", "properties": { "id": 502408, "name": "Union Tpke/164 St", "direction": "W", "lat": 40.72164, "lon": -73.80432, "routes": "QM35, QM7, QM1, Q46, QM6, QM36, QM5, QM8, QM31" }, "geometry": { "type": "Point", "coordinates": [ -73.80432, 40.72164 ] } }, -{ "type": "Feature", "properties": { "id": 502409, "name": "Union Tpke/160 St", "direction": "W", "lat": 40.720646, "lon": -73.80718, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.80718, 40.720646 ] } }, -{ "type": "Feature", "properties": { "id": 502410, "name": "Union Tpke/Parsons Blvd", "direction": "W", "lat": 40.72005, "lon": -73.80894, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.80894, 40.72005 ] } }, -{ "type": "Feature", "properties": { "id": 502412, "name": "Union Tpke/150 St", "direction": "W", "lat": 40.718987, "lon": -73.81276, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.81276, 40.718987 ] } }, -{ "type": "Feature", "properties": { "id": 502413, "name": "Union Tpke/147 St", "direction": "W", "lat": 40.718353, "lon": -73.81507, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.81507, 40.718353 ] } }, -{ "type": "Feature", "properties": { "id": 502414, "name": "Union Tpke/Main St", "direction": "W", "lat": 40.717663, "lon": -73.81778, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.81778, 40.717663 ] } }, -{ "type": "Feature", "properties": { "id": 502433, "name": "14 Av/146 St", "direction": "W", "lat": 40.78721, "lon": -73.82098, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.82098, 40.78721 ] } }, -{ "type": "Feature", "properties": { "id": 502434, "name": "Parsons Blvd/14 Av", "direction": "SE", "lat": 40.786503, "lon": -73.8223, "routes": "Q44+, Q20B, QM2, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.8223, 40.786503 ] } }, -{ "type": "Feature", "properties": { "id": 502454, "name": "14 Av/136 St", "direction": "W", "lat": 40.786167, "lon": -73.83315, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.83315, 40.786167 ] } }, -{ "type": "Feature", "properties": { "id": 502459, "name": "14 Av/124 St", "direction": "W", "lat": 40.785374, "lon": -73.843796, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.843796, 40.785374 ] } }, -{ "type": "Feature", "properties": { "id": 502460, "name": "14 Av/123 St", "direction": "W", "lat": 40.785446, "lon": -73.84562, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.84562, 40.785446 ] } }, -{ "type": "Feature", "properties": { "id": 502462, "name": "15 Av/College Point Blvd", "direction": "E", "lat": 40.78421, "lon": -73.84536, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.84536, 40.78421 ] } }, -{ "type": "Feature", "properties": { "id": 502464, "name": "15 Av/127 St", "direction": "E", "lat": 40.785065, "lon": -73.84136, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.84136, 40.785065 ] } }, -{ "type": "Feature", "properties": { "id": 502465, "name": "14 Av/130 St", "direction": "E", "lat": 40.785748, "lon": -73.83859, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.83859, 40.785748 ] } }, -{ "type": "Feature", "properties": { "id": 502466, "name": "14 Av/132 St", "direction": "E", "lat": 40.78621, "lon": -73.83577, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.83577, 40.78621 ] } }, -{ "type": "Feature", "properties": { "id": 502467, "name": "14 Av/135 St", "direction": "E", "lat": 40.786106, "lon": -73.83376, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.83376, 40.786106 ] } }, -{ "type": "Feature", "properties": { "id": 502471, "name": "14 Av/143 St", "direction": "E", "lat": 40.786587, "lon": -73.82641, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82641, 40.786587 ] } }, -{ "type": "Feature", "properties": { "id": 502490, "name": "Queens Blvd/Union Tpke", "direction": "SE", "lat": 40.71442, "lon": -73.83175, "routes": "QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.83175, 40.71442 ] } }, -{ "type": "Feature", "properties": { "id": 502509, "name": "Horace Harding Expwy/146 St", "direction": "E", "lat": 40.74123, "lon": -73.82332, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.82332, 40.74123 ] } }, -{ "type": "Feature", "properties": { "id": 502510, "name": "Horace Harding Expwy/148 St", "direction": "E", "lat": 40.740646, "lon": -73.82157, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.82157, 40.740646 ] } }, -{ "type": "Feature", "properties": { "id": 502511, "name": "Horace Harding Expwy/150 St", "direction": "E", "lat": 40.73994, "lon": -73.8195, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.8195, 40.73994 ] } }, -{ "type": "Feature", "properties": { "id": 502512, "name": "Horace Harding Expwy/153 St", "direction": "E", "lat": 40.739273, "lon": -73.817474, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.817474, 40.739273 ] } }, -{ "type": "Feature", "properties": { "id": 502513, "name": "Horace Harding Expwy/Reeves Av", "direction": "E", "lat": 40.738735, "lon": -73.8159, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.8159, 40.738735 ] } }, -{ "type": "Feature", "properties": { "id": 502514, "name": "Kissena Blvd/64 Av", "direction": "S", "lat": 40.737747, "lon": -73.81497, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81497, 40.737747 ] } }, -{ "type": "Feature", "properties": { "id": 502540, "name": "23 Av/89 St", "direction": "E", "lat": 40.76758, "lon": -73.88047, "routes": "Q48, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88047, 40.76758 ] } }, -{ "type": "Feature", "properties": { "id": 502541, "name": "23 Av/92 St", "direction": "E", "lat": 40.767864, "lon": -73.87772, "routes": "Q48, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.87772, 40.767864 ] } }, -{ "type": "Feature", "properties": { "id": 502547, "name": "Ditmars Blvd/102 St", "direction": "SE", "lat": 40.768677, "lon": -73.86828, "routes": "Q48, Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86828, 40.768677 ] } }, -{ "type": "Feature", "properties": { "id": 502548, "name": "Ditmars Blvd/25 Av", "direction": "SE", "lat": 40.767017, "lon": -73.86547, "routes": "Q48, Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86547, 40.767017 ] } }, -{ "type": "Feature", "properties": { "id": 502549, "name": "Ditmars Blvd/27 Av", "direction": "SE", "lat": 40.76579, "lon": -73.864174, "routes": "Q23, Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.864174, 40.76579 ] } }, -{ "type": "Feature", "properties": { "id": 502550, "name": "Ditmars Blvd/29 Av", "direction": "", "lat": 40.76422, "lon": -73.86269, "routes": "Q48, Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86269, 40.76422 ] } }, -{ "type": "Feature", "properties": { "id": 502551, "name": "Ditmars Blvd/31 Av", "direction": "SE", "lat": 40.762684, "lon": -73.86169, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86169, 40.762684 ] } }, -{ "type": "Feature", "properties": { "id": 502553, "name": "108 St/32 Av", "direction": "S", "lat": 40.759647, "lon": -73.86143, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86143, 40.759647 ] } }, -{ "type": "Feature", "properties": { "id": 502554, "name": "108 St/Northern Blvd", "direction": "S", "lat": 40.757442, "lon": -73.86102, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86102, 40.757442 ] } }, -{ "type": "Feature", "properties": { "id": 502555, "name": "108 St/34 Av", "direction": "S", "lat": 40.755928, "lon": -73.86075, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86075, 40.755928 ] } }, -{ "type": "Feature", "properties": { "id": 502556, "name": "108 St/37 Av", "direction": "S", "lat": 40.754025, "lon": -73.8604, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.8604, 40.754025 ] } }, -{ "type": "Feature", "properties": { "id": 502557, "name": "108 St/38 Av", "direction": "SE", "lat": 40.751995, "lon": -73.85951, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.85951, 40.751995 ] } }, -{ "type": "Feature", "properties": { "id": 502558, "name": "Roosevelt Av/108 St", "direction": "E", "lat": 40.750786, "lon": -73.85835, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.85835, 40.750786 ] } }, -{ "type": "Feature", "properties": { "id": 502559, "name": "Roosevelt Av/111 St", "direction": "E", "lat": 40.751617, "lon": -73.85542, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.85542, 40.751617 ] } }, -{ "type": "Feature", "properties": { "id": 502560, "name": "Roosevelt Av/114 St", "direction": "E", "lat": 40.75259, "lon": -73.85229, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.85229, 40.75259 ] } }, -{ "type": "Feature", "properties": { "id": 502569, "name": "Roosevelt Av/Willets Point Blvd Station", "direction": "W", "lat": 40.75468, "lon": -73.845566, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.845566, 40.75468 ] } }, -{ "type": "Feature", "properties": { "id": 502570, "name": "Roosevelt Av/114 St", "direction": "W", "lat": 40.75263, "lon": -73.85252, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.85252, 40.75263 ] } }, -{ "type": "Feature", "properties": { "id": 502571, "name": "Roosevelt Av/111 St", "direction": "W", "lat": 40.75156, "lon": -73.856064, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.856064, 40.75156 ] } }, -{ "type": "Feature", "properties": { "id": 502572, "name": "Roosevelt Av/108 St", "direction": "W", "lat": 40.750828, "lon": -73.85866, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.85866, 40.750828 ] } }, -{ "type": "Feature", "properties": { "id": 502573, "name": "108 St/38 Av", "direction": "NW", "lat": 40.75263, "lon": -73.85965, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.85965, 40.75263 ] } }, -{ "type": "Feature", "properties": { "id": 502574, "name": "108 St/37 Av", "direction": "N", "lat": 40.754223, "lon": -73.86026, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86026, 40.754223 ] } }, -{ "type": "Feature", "properties": { "id": 502575, "name": "108 St/34 Av", "direction": "N", "lat": 40.75662, "lon": -73.860695, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.860695, 40.75662 ] } }, -{ "type": "Feature", "properties": { "id": 502576, "name": "108 St/Northern Blvd", "direction": "N", "lat": 40.758183, "lon": -73.86097, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86097, 40.758183 ] } }, -{ "type": "Feature", "properties": { "id": 502578, "name": "Ditmars Blvd/31 Av", "direction": "NW", "lat": 40.76261, "lon": -73.86142, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86142, 40.76261 ] } }, -{ "type": "Feature", "properties": { "id": 502579, "name": "Ditmars Blvd/29 Av", "direction": "NW", "lat": 40.76419, "lon": -73.86244, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86244, 40.76419 ] } }, -{ "type": "Feature", "properties": { "id": 502580, "name": "Ditmars Blvd/27 Av", "direction": "NW", "lat": 40.765717, "lon": -73.86391, "routes": "Q48, Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86391, 40.765717 ] } }, -{ "type": "Feature", "properties": { "id": 502623, "name": "73 Av/189 St", "direction": "E", "lat": 40.733475, "lon": -73.78172, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.78172, 40.733475 ] } }, -{ "type": "Feature", "properties": { "id": 502624, "name": "73 Av/192 St", "direction": "E", "lat": 40.734043, "lon": -73.78, "routes": "QM8, QM35, QM5, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.78, 40.734043 ] } }, -{ "type": "Feature", "properties": { "id": 502625, "name": "73 Av/194 St", "direction": "E", "lat": 40.7346, "lon": -73.77821, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.77821, 40.7346 ] } }, -{ "type": "Feature", "properties": { "id": 502626, "name": "73 Av/196 St", "direction": "E", "lat": 40.73512, "lon": -73.77648, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.77648, 40.73512 ] } }, -{ "type": "Feature", "properties": { "id": 502627, "name": "73 Av/197 St", "direction": "E", "lat": 40.73564, "lon": -73.774734, "routes": "QM35, QM5, QM8, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.774734, 40.73564 ] } }, -{ "type": "Feature", "properties": { "id": 502628, "name": "73 Av/199 St", "direction": "E", "lat": 40.735962, "lon": -73.77367, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.77367, 40.735962 ] } }, -{ "type": "Feature", "properties": { "id": 502629, "name": "73 Av/Francis Lewis Blvd", "direction": "E", "lat": 40.736362, "lon": -73.77237, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.77237, 40.736362 ] } }, -{ "type": "Feature", "properties": { "id": 502630, "name": "73 Av/Hollis Hills Terr", "direction": "E", "lat": 40.737953, "lon": -73.767494, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.767494, 40.737953 ] } }, -{ "type": "Feature", "properties": { "id": 502631, "name": "73 Av/210 St", "direction": "E", "lat": 40.73921, "lon": -73.763145, "routes": "Q88, QM35, QM5, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.763145, 40.73921 ] } }, -{ "type": "Feature", "properties": { "id": 502632, "name": "73 Av/213 St", "direction": "E", "lat": 40.740017, "lon": -73.76054, "routes": "QM8, QM5, Q88, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.76054, 40.740017 ] } }, -{ "type": "Feature", "properties": { "id": 502633, "name": "73 Av/Bell Blvd", "direction": "E", "lat": 40.74091, "lon": -73.7578, "routes": "Q88, QM35, QM8, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.7578, 40.74091 ] } }, -{ "type": "Feature", "properties": { "id": 502634, "name": "73 Av/220 St", "direction": "E", "lat": 40.74179, "lon": -73.75505, "routes": "QM5, Q88, QM35, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.75505, 40.74179 ] } }, -{ "type": "Feature", "properties": { "id": 502635, "name": "73 Av/Springfield Blvd", "direction": "E", "lat": 40.74227, "lon": -73.753624, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.753624, 40.74227 ] } }, -{ "type": "Feature", "properties": { "id": 502648, "name": "73 Av/218 St", "direction": "W", "lat": 40.741325, "lon": -73.756905, "routes": "Q88, QM8, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.756905, 40.741325 ] } }, -{ "type": "Feature", "properties": { "id": 502649, "name": "73 Av/Bell Blvd", "direction": "W", "lat": 40.740765, "lon": -73.758766, "routes": "Q88, QM35, QM8, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.758766, 40.740765 ] } }, -{ "type": "Feature", "properties": { "id": 502650, "name": "73 Av/213 St", "direction": "W", "lat": 40.739902, "lon": -73.76137, "routes": "Q88, QM5, QM8, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.76137, 40.739902 ] } }, -{ "type": "Feature", "properties": { "id": 502651, "name": "73 Av/210 St", "direction": "W", "lat": 40.739136, "lon": -73.76408, "routes": "QM8, Q88, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.76408, 40.739136 ] } }, -{ "type": "Feature", "properties": { "id": 502653, "name": "73 Av/Francis Lewis Blvd", "direction": "W", "lat": 40.736404, "lon": -73.7727, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.7727, 40.736404 ] } }, -{ "type": "Feature", "properties": { "id": 502654, "name": "73 Av/198 St", "direction": "W", "lat": 40.735764, "lon": -73.77477, "routes": "Q88, QM5, QM8, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.77477, 40.735764 ] } }, -{ "type": "Feature", "properties": { "id": 502656, "name": "73 Av/195 St", "direction": "W", "lat": 40.7349, "lon": -73.77774, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.77774, 40.7349 ] } }, -{ "type": "Feature", "properties": { "id": 502657, "name": "73 Av/193 St", "direction": "W", "lat": 40.734238, "lon": -73.77991, "routes": "QM35, QM8, Q88, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.77991, 40.734238 ] } }, -{ "type": "Feature", "properties": { "id": 502658, "name": "73 Av/190 St", "direction": "W", "lat": 40.73366, "lon": -73.78165, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.78165, 40.73366 ] } }, -{ "type": "Feature", "properties": { "id": 502685, "name": "Francis Lewis Blvd/86 Rd", "direction": "NW", "lat": 40.723778, "lon": -73.762825, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.762825, 40.723778 ] } }, -{ "type": "Feature", "properties": { "id": 502686, "name": "Francis Lewis Blvd/Epsom Course", "direction": "NW", "lat": 40.72466, "lon": -73.76456, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.76456, 40.72466 ] } }, -{ "type": "Feature", "properties": { "id": 502688, "name": "Francis Lewis Blvd/Union Tpke", "direction": "NW", "lat": 40.732117, "lon": -73.770195, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.770195, 40.732117 ] } }, -{ "type": "Feature", "properties": { "id": 502689, "name": "Francis Lewis Blvd/73 Av", "direction": "NW", "lat": 40.736626, "lon": -73.77286, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77286, 40.736626 ] } }, -{ "type": "Feature", "properties": { "id": 502690, "name": "Francis Lewis Blvd/Horace Harding Expwy South", "direction": "NW", "lat": 40.742924, "lon": -73.775406, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.775406, 40.742924 ] } }, -{ "type": "Feature", "properties": { "id": 502691, "name": "Francis Lewis Blvd/Horace Harding Expwy North", "direction": "NW", "lat": 40.744053, "lon": -73.77594, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77594, 40.744053 ] } }, -{ "type": "Feature", "properties": { "id": 502692, "name": "Francis Lewis Blvd/58 Av", "direction": "NW", "lat": 40.745903, "lon": -73.77681, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77681, 40.745903 ] } }, -{ "type": "Feature", "properties": { "id": 502693, "name": "Francis Lewis Blvd/56 Av", "direction": "NW", "lat": 40.747505, "lon": -73.777565, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.777565, 40.747505 ] } }, -{ "type": "Feature", "properties": { "id": 502694, "name": "Francis Lewis Blvd/53 Av", "direction": "NW", "lat": 40.749092, "lon": -73.77832, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77832, 40.749092 ] } }, -{ "type": "Feature", "properties": { "id": 502695, "name": "Francis Lewis Blvd/50 Av", "direction": "NW", "lat": 40.75066, "lon": -73.77907, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77907, 40.75066 ] } }, -{ "type": "Feature", "properties": { "id": 502696, "name": "Francis Lewis Blvd/48 Av", "direction": "NW", "lat": 40.7522, "lon": -73.7798, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.7798, 40.7522 ] } }, -{ "type": "Feature", "properties": { "id": 502697, "name": "Francis Lewis Blvd/47 Av", "direction": "NW", "lat": 40.75366, "lon": -73.7806, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.7806, 40.75366 ] } }, -{ "type": "Feature", "properties": { "id": 502698, "name": "Francis Lewis Blvd/46 Av", "direction": "NW", "lat": 40.755024, "lon": -73.78174, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78174, 40.755024 ] } }, -{ "type": "Feature", "properties": { "id": 502699, "name": "Francis Lewis Blvd/45 Rd", "direction": "NW", "lat": 40.756336, "lon": -73.78244, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78244, 40.756336 ] } }, -{ "type": "Feature", "properties": { "id": 502700, "name": "Francis Lewis Blvd/44 Av", "direction": "NW", "lat": 40.75729, "lon": -73.78292, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78292, 40.75729 ] } }, -{ "type": "Feature", "properties": { "id": 502701, "name": "Francis Lewis Blvd/43 Av", "direction": "NW", "lat": 40.758205, "lon": -73.78342, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78342, 40.758205 ] } }, -{ "type": "Feature", "properties": { "id": 502703, "name": "Francis Lewis Blvd/Station Rd", "direction": "NW", "lat": 40.761154, "lon": -73.78491, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78491, 40.761154 ] } }, -{ "type": "Feature", "properties": { "id": 502704, "name": "Francis Lewis Blvd/38 Av", "direction": "NW", "lat": 40.762917, "lon": -73.78554, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78554, 40.762917 ] } }, -{ "type": "Feature", "properties": { "id": 502717, "name": "Francis Lewis Blvd/160 St", "direction": "NW", "lat": 40.781727, "lon": -73.803314, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.803314, 40.781727 ] } }, -{ "type": "Feature", "properties": { "id": 502718, "name": "Francis Lewis Blvd/17 Rd", "direction": "NW", "lat": 40.782932, "lon": -73.80413, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.80413, 40.782932 ] } }, -{ "type": "Feature", "properties": { "id": 502719, "name": "Francis Lewis Blvd/16 Av", "direction": "NW", "lat": 40.785156, "lon": -73.8055, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.8055, 40.785156 ] } }, -{ "type": "Feature", "properties": { "id": 502722, "name": "Cross Island Pkwy/150 St", "direction": "W", "lat": 40.78762, "lon": -73.81389, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.81389, 40.78762 ] } }, -{ "type": "Feature", "properties": { "id": 502724, "name": "14 Av/147 St", "direction": "W", "lat": 40.787636, "lon": -73.81916, "routes": "QM2, QM32, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.81916, 40.787636 ] } }, -{ "type": "Feature", "properties": { "id": 502727, "name": "14 Av/Parsons Blvd", "direction": "E", "lat": 40.78688, "lon": -73.8219, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.8219, 40.78688 ] } }, -{ "type": "Feature", "properties": { "id": 502728, "name": "14 Av/147 St", "direction": "E", "lat": 40.787502, "lon": -73.8192, "routes": "QM2, Q76, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.8192, 40.787502 ] } }, -{ "type": "Feature", "properties": { "id": 502735, "name": "Francis Lewis Blvd/Locke Av", "direction": "SE", "lat": 40.78504, "lon": -73.80582, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.80582, 40.78504 ] } }, -{ "type": "Feature", "properties": { "id": 502736, "name": "Francis Lewis Blvd/17 Av", "direction": "SE", "lat": 40.783134, "lon": -73.80459, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.80459, 40.783134 ] } }, -{ "type": "Feature", "properties": { "id": 502737, "name": "Francis Lewis Blvd/18 Av", "direction": "SE", "lat": 40.7816, "lon": -73.8037, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.8037, 40.7816 ] } }, -{ "type": "Feature", "properties": { "id": 502746, "name": "Francis Lewis Blvd/171 St", "direction": "SE", "lat": 40.77085, "lon": -73.79376, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79376, 40.77085 ] } }, -{ "type": "Feature", "properties": { "id": 502750, "name": "Francis Lewis Blvd/194 St", "direction": "SE", "lat": 40.76393, "lon": -73.78782, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78782, 40.76393 ] } }, -{ "type": "Feature", "properties": { "id": 502751, "name": "Francis Lewis Blvd/38 Av", "direction": "SE", "lat": 40.76264, "lon": -73.78567, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78567, 40.76264 ] } }, -{ "type": "Feature", "properties": { "id": 502752, "name": "Francis Lewis Blvd/Station Rd", "direction": "S", "lat": 40.761166, "lon": -73.785194, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.785194, 40.761166 ] } }, -{ "type": "Feature", "properties": { "id": 502753, "name": "Francis Lewis Blvd/42 Av", "direction": "SE", "lat": 40.759537, "lon": -73.784515, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.784515, 40.759537 ] } }, -{ "type": "Feature", "properties": { "id": 502754, "name": "Francis Lewis Blvd/Northern Blvd", "direction": "SE", "lat": 40.757397, "lon": -73.783424, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.783424, 40.757397 ] } }, -{ "type": "Feature", "properties": { "id": 502755, "name": "Francis Lewis Blvd/45 Av", "direction": "SE", "lat": 40.756332, "lon": -73.78285, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78285, 40.756332 ] } }, -{ "type": "Feature", "properties": { "id": 502756, "name": "Francis Lewis Blvd/46 Av", "direction": "SE", "lat": 40.75439, "lon": -73.78157, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78157, 40.75439 ] } }, -{ "type": "Feature", "properties": { "id": 502757, "name": "Francis Lewis Blvd/47 Av", "direction": "SE", "lat": 40.753002, "lon": -73.7805, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.7805, 40.753002 ] } }, -{ "type": "Feature", "properties": { "id": 502758, "name": "Francis Lewis Blvd/48 Av", "direction": "SE", "lat": 40.751553, "lon": -73.7798, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.7798, 40.751553 ] } }, -{ "type": "Feature", "properties": { "id": 502759, "name": "Francis Lewis Blvd/50 Av", "direction": "SE", "lat": 40.749992, "lon": -73.77906, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77906, 40.749992 ] } }, -{ "type": "Feature", "properties": { "id": 502760, "name": "Francis Lewis Blvd/53 Av", "direction": "SE", "lat": 40.74839, "lon": -73.7783, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.7783, 40.74839 ] } }, -{ "type": "Feature", "properties": { "id": 502761, "name": "Francis Lewis Blvd/56 Av", "direction": "SE", "lat": 40.74679, "lon": -73.77754, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77754, 40.74679 ] } }, -{ "type": "Feature", "properties": { "id": 502762, "name": "Francis Lewis Blvd/58 Av", "direction": "SE", "lat": 40.74517, "lon": -73.77677, "routes": "Q76, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.77677, 40.74517 ] } }, -{ "type": "Feature", "properties": { "id": 502763, "name": "Francis Lewis Blvd/Horace Harding Expwy North", "direction": "SE", "lat": 40.743942, "lon": -73.77619, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77619, 40.743942 ] } }, -{ "type": "Feature", "properties": { "id": 502764, "name": "Francis Lewis Blvd/Horace Harding Expwy South", "direction": "SE", "lat": 40.742683, "lon": -73.77554, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77554, 40.742683 ] } }, -{ "type": "Feature", "properties": { "id": 502765, "name": "Francis Lewis Blvd/73 Av", "direction": "SE", "lat": 40.735912, "lon": -73.772835, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.772835, 40.735912 ] } }, -{ "type": "Feature", "properties": { "id": 502766, "name": "Francis Lewis Blvd/Union Tpke", "direction": "SE", "lat": 40.731453, "lon": -73.77004, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.77004, 40.731453 ] } }, -{ "type": "Feature", "properties": { "id": 502767, "name": "Francis Lewis Blvd/Mclaughlin Av", "direction": "SE", "lat": 40.725155, "lon": -73.7655, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.7655, 40.725155 ] } }, -{ "type": "Feature", "properties": { "id": 502768, "name": "Francis Lewis Blvd/204 St", "direction": "SE", "lat": 40.723225, "lon": -73.76225, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.76225, 40.723225 ] } }, -{ "type": "Feature", "properties": { "id": 502769, "name": "Francis Lewis Blvd/Hillside Av", "direction": "SE", "lat": 40.72116, "lon": -73.75958, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.75958, 40.72116 ] } }, -{ "type": "Feature", "properties": { "id": 502792, "name": "Francis Lewis Blvd/89 Av", "direction": "SE", "lat": 40.719265, "lon": -73.75824, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75824, 40.719265 ] } }, -{ "type": "Feature", "properties": { "id": 502793, "name": "Francis Lewis Blvd/90 Av", "direction": "SE", "lat": 40.7178, "lon": -73.75715, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75715, 40.7178 ] } }, -{ "type": "Feature", "properties": { "id": 502794, "name": "Francis Lewis Blvd/93 Av", "direction": "SE", "lat": 40.71597, "lon": -73.75578, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75578, 40.71597 ] } }, -{ "type": "Feature", "properties": { "id": 502795, "name": "Francis Lewis Blvd/Jamaica Av", "direction": "SE", "lat": 40.713978, "lon": -73.75429, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75429, 40.713978 ] } }, -{ "type": "Feature", "properties": { "id": 502796, "name": "Francis Lewis Blvd/99 Av", "direction": "SE", "lat": 40.712723, "lon": -73.75358, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75358, 40.712723 ] } }, -{ "type": "Feature", "properties": { "id": 502797, "name": "Francis Lewis Blvd/100 Av", "direction": "S", "lat": 40.711693, "lon": -73.75317, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75317, 40.711693 ] } }, -{ "type": "Feature", "properties": { "id": 502798, "name": "Francis Lewis Blvd/104 Av", "direction": "SE", "lat": 40.70997, "lon": -73.75244, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75244, 40.70997 ] } }, -{ "type": "Feature", "properties": { "id": 502799, "name": "Francis Lewis Blvd/109 Av", "direction": "SE", "lat": 40.708496, "lon": -73.75183, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75183, 40.708496 ] } }, -{ "type": "Feature", "properties": { "id": 502800, "name": "Francis Lewis Blvd/Hollis Av", "direction": "SE", "lat": 40.706985, "lon": -73.75116, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75116, 40.706985 ] } }, -{ "type": "Feature", "properties": { "id": 502801, "name": "Francis Lewis Blvd/111 Av", "direction": "SE", "lat": 40.70534, "lon": -73.750404, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.750404, 40.70534 ] } }, -{ "type": "Feature", "properties": { "id": 502802, "name": "Francis Lewis Blvd/112 Av", "direction": "SE", "lat": 40.70397, "lon": -73.749794, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.749794, 40.70397 ] } }, -{ "type": "Feature", "properties": { "id": 502803, "name": "Francis Lewis Blvd/113 Av", "direction": "SE", "lat": 40.702606, "lon": -73.74919, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74919, 40.702606 ] } }, -{ "type": "Feature", "properties": { "id": 502804, "name": "Francis Lewis Blvd/Murdock Av", "direction": "SE", "lat": 40.70121, "lon": -73.748604, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.748604, 40.70121 ] } }, -{ "type": "Feature", "properties": { "id": 502806, "name": "Francis Lewis Blvd/115 Av", "direction": "SE", "lat": 40.699223, "lon": -73.74766, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74766, 40.699223 ] } }, -{ "type": "Feature", "properties": { "id": 502807, "name": "Francis Lewis Blvd/116 Av", "direction": "SE", "lat": 40.697598, "lon": -73.746925, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.746925, 40.697598 ] } }, -{ "type": "Feature", "properties": { "id": 502808, "name": "Francis Lewis Blvd/Linden Blvd", "direction": "S", "lat": 40.6962, "lon": -73.7463, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.7463, 40.6962 ] } }, -{ "type": "Feature", "properties": { "id": 502809, "name": "Francis Lewis Blvd/Nashville Blvd", "direction": "SE", "lat": 40.693684, "lon": -73.745186, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.745186, 40.693684 ] } }, -{ "type": "Feature", "properties": { "id": 502810, "name": "Springfield Blvd/120 Av", "direction": "SW", "lat": 40.69123, "lon": -73.746376, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.746376, 40.69123 ] } }, -{ "type": "Feature", "properties": { "id": 502811, "name": "Springfield Blvd/121 Av", "direction": "SW", "lat": 40.68946, "lon": -73.7476, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.7476, 40.68946 ] } }, -{ "type": "Feature", "properties": { "id": 502812, "name": "Springfield Blvd/122 Av", "direction": "SW", "lat": 40.68759, "lon": -73.74886, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74886, 40.68759 ] } }, -{ "type": "Feature", "properties": { "id": 502813, "name": "Springfield Blvd/197 St", "direction": "SW", "lat": 40.68543, "lon": -73.750496, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.750496, 40.68543 ] } }, -{ "type": "Feature", "properties": { "id": 502814, "name": "Springfield Blvd/193 St", "direction": "SW", "lat": 40.683968, "lon": -73.7513, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.7513, 40.683968 ] } }, -{ "type": "Feature", "properties": { "id": 502815, "name": "Springfield Blvd/Lucas St", "direction": "SW", "lat": 40.682312, "lon": -73.75205, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75205, 40.682312 ] } }, -{ "type": "Feature", "properties": { "id": 502816, "name": "Springfield Blvd/Merrick Blvd", "direction": "SW", "lat": 40.68039, "lon": -73.753334, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.753334, 40.68039 ] } }, -{ "type": "Feature", "properties": { "id": 502818, "name": "Springfield Blvd/Eastgate Plaza", "direction": "S", "lat": 40.67551, "lon": -73.75598, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75598, 40.67551 ] } }, -{ "type": "Feature", "properties": { "id": 502819, "name": "Springfield Blvd/139 Av", "direction": "S", "lat": 40.67308, "lon": -73.756325, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.756325, 40.67308 ] } }, -{ "type": "Feature", "properties": { "id": 502830, "name": "Springfield Blvd/138 Rd", "direction": "N", "lat": 40.67409, "lon": -73.75599, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75599, 40.67409 ] } }, -{ "type": "Feature", "properties": { "id": 502831, "name": "Springfield Blvd/Eastgate Plaza", "direction": "N", "lat": 40.67571, "lon": -73.75569, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75569, 40.67571 ] } }, -{ "type": "Feature", "properties": { "id": 502832, "name": "Springfield Blvd/136 Av", "direction": "NE", "lat": 40.67809, "lon": -73.75446, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75446, 40.67809 ] } }, -{ "type": "Feature", "properties": { "id": 502833, "name": "Springfield Blvd/Merrick Blvd", "direction": "NE", "lat": 40.679924, "lon": -73.7531, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.7531, 40.679924 ] } }, -{ "type": "Feature", "properties": { "id": 502834, "name": "Springfield Blvd/132 Rd", "direction": "N", "lat": 40.682648, "lon": -73.75155, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75155, 40.682648 ] } }, -{ "type": "Feature", "properties": { "id": 502835, "name": "Springfield Blvd/131 Av", "direction": "NE", "lat": 40.68399, "lon": -73.75101, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75101, 40.68399 ] } }, -{ "type": "Feature", "properties": { "id": 502836, "name": "Springfield Blvd/130 Av", "direction": "NE", "lat": 40.685833, "lon": -73.749985, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.749985, 40.685833 ] } }, -{ "type": "Feature", "properties": { "id": 502837, "name": "Springfield Blvd/Montefiore Cemetery", "direction": "NE", "lat": 40.68803, "lon": -73.74826, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74826, 40.68803 ] } }, -{ "type": "Feature", "properties": { "id": 502838, "name": "Springfield Blvd/121 Av", "direction": "NE", "lat": 40.689972, "lon": -73.747, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.747, 40.689972 ] } }, -{ "type": "Feature", "properties": { "id": 502839, "name": "Springfield Blvd/120 Av", "direction": "NE", "lat": 40.69112, "lon": -73.746216, "routes": "Q77, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.746216, 40.69112 ] } }, -{ "type": "Feature", "properties": { "id": 502840, "name": "Francis Lewis Blvd/Springfield Blvd", "direction": "NW", "lat": 40.693817, "lon": -73.74502, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74502, 40.693817 ] } }, -{ "type": "Feature", "properties": { "id": 502841, "name": "Francis Lewis Blvd/Linden Blvd", "direction": "N", "lat": 40.696476, "lon": -73.74621, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74621, 40.696476 ] } }, -{ "type": "Feature", "properties": { "id": 502842, "name": "Francis Lewis Blvd/116 Av", "direction": "NW", "lat": 40.69785, "lon": -73.74685, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74685, 40.69785 ] } }, -{ "type": "Feature", "properties": { "id": 502843, "name": "Francis Lewis Blvd/115 Av", "direction": "NW", "lat": 40.699886, "lon": -73.747765, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.747765, 40.699886 ] } }, -{ "type": "Feature", "properties": { "id": 502844, "name": "Francis Lewis Blvd/Murdock Av", "direction": "NW", "lat": 40.701912, "lon": -73.74867, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74867, 40.701912 ] } }, -{ "type": "Feature", "properties": { "id": 502845, "name": "Francis Lewis Blvd/113 Av", "direction": "NW", "lat": 40.70326, "lon": -73.74928, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.74928, 40.70326 ] } }, -{ "type": "Feature", "properties": { "id": 502846, "name": "Francis Lewis Blvd/112 Av", "direction": "NW", "lat": 40.704597, "lon": -73.749886, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.749886, 40.704597 ] } }, -{ "type": "Feature", "properties": { "id": 502847, "name": "Francis Lewis Blvd/111 Av", "direction": "NW", "lat": 40.705956, "lon": -73.750496, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.750496, 40.705956 ] } }, -{ "type": "Feature", "properties": { "id": 502848, "name": "Francis Lewis Blvd/Hollis Av", "direction": "NW", "lat": 40.707676, "lon": -73.75126, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75126, 40.707676 ] } }, -{ "type": "Feature", "properties": { "id": 502849, "name": "Francis Lewis Blvd/109 Av", "direction": "NW", "lat": 40.709164, "lon": -73.75187, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75187, 40.709164 ] } }, -{ "type": "Feature", "properties": { "id": 502850, "name": "Francis Lewis Blvd/104 Av", "direction": "N", "lat": 40.710636, "lon": -73.75248, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75248, 40.710636 ] } }, -{ "type": "Feature", "properties": { "id": 502851, "name": "Francis Lewis Blvd/100 Av", "direction": "NW", "lat": 40.712353, "lon": -73.7532, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.7532, 40.712353 ] } }, -{ "type": "Feature", "properties": { "id": 502852, "name": "Francis Lewis Blvd/Jamaica Av", "direction": "NW", "lat": 40.71421, "lon": -73.75419, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75419, 40.71421 ] } }, -{ "type": "Feature", "properties": { "id": 502853, "name": "Francis Lewis Blvd/93 Av", "direction": "NW", "lat": 40.71661, "lon": -73.75599, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75599, 40.71661 ] } }, -{ "type": "Feature", "properties": { "id": 502854, "name": "Francis Lewis Blvd/90 Av", "direction": "NW", "lat": 40.718452, "lon": -73.75735, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75735, 40.718452 ] } }, -{ "type": "Feature", "properties": { "id": 502855, "name": "Francis Lewis Blvd/89 Av", "direction": "NW", "lat": 40.719543, "lon": -73.758156, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.758156, 40.719543 ] } }, -{ "type": "Feature", "properties": { "id": 502868, "name": "Junction Blvd/59 Av", "direction": "SE", "lat": 40.735134, "lon": -73.865166, "routes": "Q88, Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.865166, 40.735134 ] } }, -{ "type": "Feature", "properties": { "id": 502869, "name": "Horace Harding Expwy/Junction Blvd", "direction": "E", "lat": 40.73387, "lon": -73.863716, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.863716, 40.73387 ] } }, -{ "type": "Feature", "properties": { "id": 502870, "name": "Horace Harding Expwy/97 St", "direction": "E", "lat": 40.73434, "lon": -73.862144, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.862144, 40.73434 ] } }, -{ "type": "Feature", "properties": { "id": 502871, "name": "Horace Harding Expwy/98 St", "direction": "E", "lat": 40.73487, "lon": -73.86035, "routes": "QM42, Q88, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.86035, 40.73487 ] } }, -{ "type": "Feature", "properties": { "id": 502872, "name": "Horace Harding Expwy/99 St", "direction": "E", "lat": 40.735558, "lon": -73.85815, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.85815, 40.735558 ] } }, -{ "type": "Feature", "properties": { "id": 502873, "name": "Horace Harding Expwy/102 St", "direction": "E", "lat": 40.73617, "lon": -73.85599, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.85599, 40.73617 ] } }, -{ "type": "Feature", "properties": { "id": 502874, "name": "Horace Harding Expwy/Yellowstone Blvd", "direction": "E", "lat": 40.736546, "lon": -73.85357, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.85357, 40.736546 ] } }, -{ "type": "Feature", "properties": { "id": 502876, "name": "Horace Harding Expwy/College Point Blvd", "direction": "E", "lat": 40.74235, "lon": -73.83718, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.83718, 40.74235 ] } }, -{ "type": "Feature", "properties": { "id": 502877, "name": "Horace Harding Expwy/134 St", "direction": "E", "lat": 40.74274, "lon": -73.83161, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.83161, 40.74274 ] } }, -{ "type": "Feature", "properties": { "id": 502878, "name": "Horace Harding Expwy/136 St", "direction": "E", "lat": 40.742523, "lon": -73.829414, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.829414, 40.742523 ] } }, -{ "type": "Feature", "properties": { "id": 502879, "name": "Horace Harding Expwy/138 St", "direction": "E", "lat": 40.74228, "lon": -73.82742, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.82742, 40.74228 ] } }, -{ "type": "Feature", "properties": { "id": 502880, "name": "Horace Harding Expwy/Main St", "direction": "E", "lat": 40.741695, "lon": -73.824715, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.824715, 40.741695 ] } }, -{ "type": "Feature", "properties": { "id": 502947, "name": "73 Av/Springfield Blvd", "direction": "W", "lat": 40.74235, "lon": -73.75393, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.75393, 40.74235 ] } }, -{ "type": "Feature", "properties": { "id": 502974, "name": "Horace Harding Expwy/Kissena Blvd", "direction": "W", "lat": 40.739388, "lon": -73.81556, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.81556, 40.739388 ] } }, -{ "type": "Feature", "properties": { "id": 502975, "name": "Horace Harding Expwy/150 St", "direction": "W", "lat": 40.740726, "lon": -73.81971, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.81971, 40.740726 ] } }, -{ "type": "Feature", "properties": { "id": 502976, "name": "Horace Harding Expwy/148 St", "direction": "W", "lat": 40.741447, "lon": -73.82188, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.82188, 40.741447 ] } }, -{ "type": "Feature", "properties": { "id": 502977, "name": "Horace Harding Expwy/146 St", "direction": "W", "lat": 40.742073, "lon": -73.82372, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.82372, 40.742073 ] } }, -{ "type": "Feature", "properties": { "id": 502978, "name": "Horace Harding Expwy/Main St", "direction": "W", "lat": 40.7428, "lon": -73.82596, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.82596, 40.7428 ] } }, -{ "type": "Feature", "properties": { "id": 502979, "name": "Horace Harding Expwy/136 St", "direction": "W", "lat": 40.74323, "lon": -73.83013, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.83013, 40.74323 ] } }, -{ "type": "Feature", "properties": { "id": 502980, "name": "Horace Harding Expwy/Lawrence St", "direction": "W", "lat": 40.74358, "lon": -73.83362, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.83362, 40.74358 ] } }, -{ "type": "Feature", "properties": { "id": 502982, "name": "Horace Harding Expwy/Waldron St", "direction": "W", "lat": 40.738216, "lon": -73.85043, "routes": "Q88, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85043, 40.738216 ] } }, -{ "type": "Feature", "properties": { "id": 502983, "name": "Horace Harding Expwy/108 St", "direction": "W", "lat": 40.737602, "lon": -73.85244, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.85244, 40.737602 ] } }, -{ "type": "Feature", "properties": { "id": 502984, "name": "Horace Harding Expwy/Westside Av", "direction": "W", "lat": 40.737305, "lon": -73.85406, "routes": "QM10, QM10, QM40, QM11, QM11, Q88, QM40" }, "geometry": { "type": "Point", "coordinates": [ -73.85406, 40.737305 ] } }, -{ "type": "Feature", "properties": { "id": 502985, "name": "Horace Harding Expwy/Otis Av", "direction": "W", "lat": 40.73667, "lon": -73.85661, "routes": "Q88, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.85661, 40.73667 ] } }, -{ "type": "Feature", "properties": { "id": 502986, "name": "Horace Harding Expwy/99 St", "direction": "W", "lat": 40.735535, "lon": -73.86014, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.86014, 40.735535 ] } }, -{ "type": "Feature", "properties": { "id": 502987, "name": "Horace Harding Expwy/99 St", "direction": "W", "lat": 40.735146, "lon": -73.86186, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.86186, 40.735146 ] } }, -{ "type": "Feature", "properties": { "id": 502992, "name": "Grand Av/Queens Blvd", "direction": "NE", "lat": 40.736492, "lon": -73.87784, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87784, 40.736492 ] } }, -{ "type": "Feature", "properties": { "id": 502994, "name": "Broadway/Corona Av", "direction": "NW", "lat": 40.73933, "lon": -73.87779, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87779, 40.73933 ] } }, -{ "type": "Feature", "properties": { "id": 503017, "name": "Broadway/Corona Av", "direction": "SE", "lat": 40.739048, "lon": -73.87776, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87776, 40.739048 ] } }, -{ "type": "Feature", "properties": { "id": 503018, "name": "Broadway/Queens Blvd", "direction": "S", "lat": 40.73709, "lon": -73.877464, "routes": "Q53+, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.877464, 40.73709 ] } }, -{ "type": "Feature", "properties": { "id": 503021, "name": "Utopia Pkwy/Willets Point Blvd", "direction": "NW", "lat": 40.78579, "lon": -73.795, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.795, 40.78579 ] } }, -{ "type": "Feature", "properties": { "id": 503033, "name": "Union Tpke/252 St", "direction": "NE", "lat": 40.743637, "lon": -73.71812, "routes": "Q46, QM36, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.71812, 40.743637 ] } }, -{ "type": "Feature", "properties": { "id": 503037, "name": "Union Tpke/153 St", "direction": "W", "lat": 40.719463, "lon": -73.81104, "routes": "QM6, QM1, QM8, QM35, QM7, QM31, Q46, QM36, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.81104, 40.719463 ] } }, -{ "type": "Feature", "properties": { "id": 503041, "name": "Francis Lewis Blvd/32 Av", "direction": "SE", "lat": 40.768974, "lon": -73.792114, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.792114, 40.768974 ] } }, -{ "type": "Feature", "properties": { "id": 503058, "name": "Jamaica Av/Springfield Blvd", "direction": "E", "lat": 40.718246, "lon": -73.73575, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.73575, 40.718246 ] } }, -{ "type": "Feature", "properties": { "id": 503062, "name": "Murdock Av/Francis Lewis Blvd", "direction": "E", "lat": 40.70146, "lon": -73.748795, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.748795, 40.70146 ] } }, -{ "type": "Feature", "properties": { "id": 503064, "name": "Murdock Av/212 St", "direction": "W", "lat": 40.70304, "lon": -73.743195, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.743195, 40.70304 ] } }, -{ "type": "Feature", "properties": { "id": 503067, "name": "Murdock Av/Francis Lewis Blvd", "direction": "W", "lat": 40.701607, "lon": -73.748795, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.748795, 40.701607 ] } }, -{ "type": "Feature", "properties": { "id": 503070, "name": "Murdock Av/194 St", "direction": "W", "lat": 40.698433, "lon": -73.7609, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.7609, 40.698433 ] } }, -{ "type": "Feature", "properties": { "id": 503073, "name": "Springfield Blvd/141 Av", "direction": "S", "lat": 40.671215, "lon": -73.75655, "routes": "Q77, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.75655, 40.671215 ] } }, -{ "type": "Feature", "properties": { "id": 503074, "name": "Parsons Blvd/Ash Av", "direction": "SE", "lat": 40.757713, "lon": -73.81897, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.81897, 40.757713 ] } }, -{ "type": "Feature", "properties": { "id": 503075, "name": "Main St/76 Av", "direction": "NW", "lat": 40.72299, "lon": -73.81972, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81972, 40.72299 ] } }, -{ "type": "Feature", "properties": { "id": 503077, "name": "23 Av/212 St", "direction": "NE", "lat": 40.78125, "lon": -73.77821, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.77821, 40.78125 ] } }, -{ "type": "Feature", "properties": { "id": 503080, "name": "Murdock Av/210 St", "direction": "E", "lat": 40.70254, "lon": -73.74464, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74464, 40.70254 ] } }, -{ "type": "Feature", "properties": { "id": 503083, "name": "108 St/Astoria Blvd", "direction": "SW", "lat": 40.760654, "lon": -73.861305, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.861305, 40.760654 ] } }, -{ "type": "Feature", "properties": { "id": 503084, "name": "Jamaica Av/121 St", "direction": "E", "lat": 40.700333, "lon": -73.82887, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82887, 40.700333 ] } }, -{ "type": "Feature", "properties": { "id": 503096, "name": "Roosevelt Av/Main St", "direction": "E", "lat": 40.759823, "lon": -73.82896, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.82896, 40.759823 ] } }, -{ "type": "Feature", "properties": { "id": 503100, "name": "Sunrise Hwy/Sunrise Cinemas", "direction": "E", "lat": 40.66525, "lon": -73.728645, "routes": "Q85, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.728645, 40.66525 ] } }, -{ "type": "Feature", "properties": { "id": 503105, "name": "West Circle Dr/Parking Structure", "direction": "W", "lat": 40.661694, "lon": -73.72241, "routes": "Q85, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72241, 40.661694 ] } }, -{ "type": "Feature", "properties": { "id": 503110, "name": "Merrick Blvd/Hook Creek Blvd", "direction": "W", "lat": 40.67426, "lon": -73.72796, "routes": "X63, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72796, 40.67426 ] } }, -{ "type": "Feature", "properties": { "id": 503127, "name": "Merrick Blvd/242 St", "direction": "W", "lat": 40.673927, "lon": -73.7316, "routes": "Q5, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.7316, 40.673927 ] } }, -{ "type": "Feature", "properties": { "id": 503132, "name": "South Conduit Av/221 St", "direction": "E", "lat": 40.665497, "lon": -73.75705, "routes": "Q85, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75705, 40.665497 ] } }, -{ "type": "Feature", "properties": { "id": 503141, "name": "Horace Harding Expwy/190 St", "direction": "W", "lat": 40.74156, "lon": -73.78542, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.78542, 40.74156 ] } }, -{ "type": "Feature", "properties": { "id": 503142, "name": "Horace Harding Expwy/197 St", "direction": "W", "lat": 40.74317, "lon": -73.77917, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.77917, 40.74317 ] } }, -{ "type": "Feature", "properties": { "id": 503143, "name": "Horace Harding Expwy/218 St", "direction": "SW", "lat": 40.74831, "lon": -73.760185, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.760185, 40.74831 ] } }, -{ "type": "Feature", "properties": { "id": 503147, "name": "18 Av/Corporal Kennedy St", "direction": "W", "lat": 40.781864, "lon": -73.783875, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.783875, 40.781864 ] } }, -{ "type": "Feature", "properties": { "id": 503148, "name": "211 St/18 Av", "direction": "N", "lat": 40.78193, "lon": -73.781586, "routes": "QM32, Q28, QM2, QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.781586, 40.78193 ] } }, -{ "type": "Feature", "properties": { "id": 503149, "name": "211 St/23 Av", "direction": "NW", "lat": 40.780262, "lon": -73.780876, "routes": "Q28, QM32, QM2, QM2, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.780876, 40.780262 ] } }, -{ "type": "Feature", "properties": { "id": 503150, "name": "Northern Blvd/147 St", "direction": "E", "lat": 40.765087, "lon": -73.81899, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.81899, 40.765087 ] } }, -{ "type": "Feature", "properties": { "id": 503156, "name": "Corporal Kennedy St/34 Rd", "direction": "NW", "lat": 40.76856, "lon": -73.77855, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.77855, 40.76856 ] } }, -{ "type": "Feature", "properties": { "id": 503166, "name": "153 St/89 Av", "direction": "NW", "lat": 40.705486, "lon": -73.80363, "routes": "Q110, Q111, Q112, Q83, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.80363, 40.705486 ] } }, -{ "type": "Feature", "properties": { "id": 503167, "name": "153 St/Hillside Av", "direction": "NW", "lat": 40.70677, "lon": -73.80417, "routes": "Q83, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.80417, 40.70677 ] } }, -{ "type": "Feature", "properties": { "id": 503168, "name": "150 St/Jamaica Av", "direction": "SE", "lat": 40.702232, "lon": -73.804565, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.804565, 40.702232 ] } }, -{ "type": "Feature", "properties": { "id": 503169, "name": "153 St/Hillside Av", "direction": "NW", "lat": 40.707123, "lon": -73.80438, "routes": "Q114, Q83, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.80438, 40.707123 ] } }, -{ "type": "Feature", "properties": { "id": 503172, "name": "Archer Av/Parsons Blvd", "direction": "W", "lat": 40.70257, "lon": -73.79969, "routes": "Q5, Q4, Q84, Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.79969, 40.70257 ] } }, -{ "type": "Feature", "properties": { "id": 503175, "name": "Archer Av/Parsons Blvd", "direction": "W", "lat": 40.702442, "lon": -73.80013, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.80013, 40.702442 ] } }, -{ "type": "Feature", "properties": { "id": 503180, "name": "168 St/89 Av", "direction": "NW", "lat": 40.708378, "lon": -73.793755, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.793755, 40.708378 ] } }, -{ "type": "Feature", "properties": { "id": 503184, "name": "Jamaica Av/146 St", "direction": "W", "lat": 40.701836, "lon": -73.808716, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.808716, 40.701836 ] } }, -{ "type": "Feature", "properties": { "id": 503185, "name": "Jamaica Av/169 St", "direction": "W", "lat": 40.70676, "lon": -73.79145, "routes": "Q110, Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.79145, 40.70676 ] } }, -{ "type": "Feature", "properties": { "id": 503195, "name": "Hillside Av/172 St", "direction": "W", "lat": 40.711807, "lon": -73.79014, "routes": "X68, Q1, Q17, Q2, Q76, Q36, Q77, Q43, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.79014, 40.711807 ] } }, -{ "type": "Feature", "properties": { "id": 503200, "name": "Jamaica Av/Parsons Blvd", "direction": "E", "lat": 40.70323, "lon": -73.800446, "routes": "Q56, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.800446, 40.70323 ] } }, -{ "type": "Feature", "properties": { "id": 503206, "name": "169 St/Jamaica Av", "direction": "SE", "lat": 40.707, "lon": -73.79089, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.79089, 40.707 ] } }, -{ "type": "Feature", "properties": { "id": 503207, "name": "Hollis Court Blvd/48 Av", "direction": "SE", "lat": 40.750183, "lon": -73.78646, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.78646, 40.750183 ] } }, -{ "type": "Feature", "properties": { "id": 503208, "name": "Hollis Court Blvd/47 Av", "direction": "NW", "lat": 40.751522, "lon": -73.788216, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.788216, 40.751522 ] } }, -{ "type": "Feature", "properties": { "id": 503209, "name": "Hillside Av/161 St", "direction": "E", "lat": 40.708218, "lon": -73.80064, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.80064, 40.708218 ] } }, -{ "type": "Feature", "properties": { "id": 503210, "name": "Hillside Av/162 St", "direction": "W", "lat": 40.70838, "lon": -73.80065, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.80065, 40.70838 ] } }, -{ "type": "Feature", "properties": { "id": 503212, "name": "Amboy Ln/Springfield Blvd", "direction": "E", "lat": 40.71782, "lon": -73.735756, "routes": "Q1, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.735756, 40.71782 ] } }, -{ "type": "Feature", "properties": { "id": 503214, "name": "40 Av/Little Neck Pkwy", "direction": "NE", "lat": 40.77309, "lon": -73.7415, "routes": "Q36, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.7415, 40.77309 ] } }, -{ "type": "Feature", "properties": { "id": 503218, "name": "150 St/27 Av", "direction": "S", "lat": 40.773354, "lon": -73.81546, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81546, 40.773354 ] } }, -{ "type": "Feature", "properties": { "id": 503220, "name": "Utopia Pkwy/Willets Point Blvd", "direction": "S", "lat": 40.785713, "lon": -73.79518, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79518, 40.785713 ] } }, -{ "type": "Feature", "properties": { "id": 503221, "name": "Cross Island Pkwy/212 St", "direction": "W", "lat": 40.788914, "lon": -73.783104, "routes": "Q16, QM2, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.783104, 40.788914 ] } }, -{ "type": "Feature", "properties": { "id": 503237, "name": "Metropolitan Av/Forest Av", "direction": "W", "lat": 40.712936, "lon": -73.906296, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.906296, 40.712936 ] } }, -{ "type": "Feature", "properties": { "id": 503238, "name": "Metropolitan Av/Andrews Av", "direction": "W", "lat": 40.713127, "lon": -73.909325, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.909325, 40.713127 ] } }, -{ "type": "Feature", "properties": { "id": 503240, "name": "College Point Blvd/59 Av", "direction": "SW", "lat": 40.744717, "lon": -73.836205, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.836205, 40.744717 ] } }, -{ "type": "Feature", "properties": { "id": 503241, "name": "Grand Av/47 St", "direction": "W", "lat": 40.716606, "lon": -73.92246, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.92246, 40.716606 ] } }, -{ "type": "Feature", "properties": { "id": 503244, "name": "Murdock Av/202 St", "direction": "E", "lat": 40.700493, "lon": -73.752525, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.752525, 40.700493 ] } }, -{ "type": "Feature", "properties": { "id": 503245, "name": "Murdock Av/204 St", "direction": "E", "lat": 40.700966, "lon": -73.75071, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.75071, 40.700966 ] } }, -{ "type": "Feature", "properties": { "id": 503246, "name": "Murdock Av/208 St", "direction": "E", "lat": 40.702076, "lon": -73.746445, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.746445, 40.702076 ] } }, -{ "type": "Feature", "properties": { "id": 503247, "name": "Murdock Av/Farmers Blvd", "direction": "W", "lat": 40.698105, "lon": -73.76215, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.76215, 40.698105 ] } }, -{ "type": "Feature", "properties": { "id": 503248, "name": "23 Av/Bell Blvd", "direction": "SW", "lat": 40.782253, "lon": -73.77704, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.77704, 40.782253 ] } }, -{ "type": "Feature", "properties": { "id": 503255, "name": "Bell Blvd/33 Rd", "direction": "N", "lat": 40.771366, "lon": -73.77424, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77424, 40.771366 ] } }, -{ "type": "Feature", "properties": { "id": 503258, "name": "Grand Av/73 St", "direction": "NE", "lat": 40.729454, "lon": -73.88993, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.88993, 40.729454 ] } }, -{ "type": "Feature", "properties": { "id": 503259, "name": "Northern Blvd/232 St", "direction": "E", "lat": 40.764343, "lon": -73.74722, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.74722, 40.764343 ] } }, -{ "type": "Feature", "properties": { "id": 503268, "name": "Myrtle Av/85 Av", "direction": "W", "lat": 40.700855, "lon": -73.839, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.839, 40.700855 ] } }, -{ "type": "Feature", "properties": { "id": 503272, "name": "Hillside Av/218 St", "direction": "S", "lat": 40.72844, "lon": -73.74718, "routes": "Q43, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.74718, 40.72844 ] } }, -{ "type": "Feature", "properties": { "id": 503273, "name": "Merrick Blvd/90 Av", "direction": "SE", "lat": 40.707237, "lon": -73.79499, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.79499, 40.707237 ] } }, -{ "type": "Feature", "properties": { "id": 503274, "name": "Northern Blvd/154 St", "direction": "E", "lat": 40.764446, "lon": -73.81059, "routes": "Q13, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.81059, 40.764446 ] } }, -{ "type": "Feature", "properties": { "id": 503279, "name": "Myrtle Av/Woodhaven Blvd", "direction": "W", "lat": 40.70271, "lon": -73.85588, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.85588, 40.70271 ] } }, -{ "type": "Feature", "properties": { "id": 503283, "name": "Jamaica Av/168 St", "direction": "E", "lat": 40.70641, "lon": -73.792305, "routes": "Q54, Q30, Q110, Q56, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.792305, 40.70641 ] } }, -{ "type": "Feature", "properties": { "id": 503290, "name": "Parsons Blvd/14 Av", "direction": "NW", "lat": 40.78678, "lon": -73.82219, "routes": "QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.82219, 40.78678 ] } }, -{ "type": "Feature", "properties": { "id": 503293, "name": "Queens Blvd/Skillman Av", "direction": "SE", "lat": 40.74577, "lon": -73.934296, "routes": "Q32, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.934296, 40.74577 ] } }, -{ "type": "Feature", "properties": { "id": 503295, "name": "Queens Blvd/35 St", "direction": "E", "lat": 40.744183, "lon": -73.92963, "routes": "Q32, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.92963, 40.744183 ] } }, -{ "type": "Feature", "properties": { "id": 503296, "name": "Queens Blvd/38 St", "direction": "E", "lat": 40.743866, "lon": -73.926895, "routes": "Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.926895, 40.743866 ] } }, -{ "type": "Feature", "properties": { "id": 503298, "name": "Queens Blvd/41 St", "direction": "E", "lat": 40.743435, "lon": -73.92314, "routes": "Q107, Q32, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.92314, 40.743435 ] } }, -{ "type": "Feature", "properties": { "id": 503299, "name": "Queens Blvd/45 St", "direction": "E", "lat": 40.743114, "lon": -73.92003, "routes": "Q107, Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.92003, 40.743114 ] } }, -{ "type": "Feature", "properties": { "id": 503300, "name": "Queens Blvd/46 St", "direction": "E", "lat": 40.742966, "lon": -73.91862, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.91862, 40.742966 ] } }, -{ "type": "Feature", "properties": { "id": 503301, "name": "Roosevelt Av/49 St", "direction": "E", "lat": 40.74319, "lon": -73.91548, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.91548, 40.74319 ] } }, -{ "type": "Feature", "properties": { "id": 503302, "name": "Roosevelt Av/51 St", "direction": "E", "lat": 40.74378, "lon": -73.91364, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.91364, 40.74378 ] } }, -{ "type": "Feature", "properties": { "id": 503303, "name": "Roosevelt Av/53 St", "direction": "E", "lat": 40.744465, "lon": -73.91132, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.91132, 40.744465 ] } }, -{ "type": "Feature", "properties": { "id": 503304, "name": "Roosevelt Av/56 St", "direction": "E", "lat": 40.745113, "lon": -73.90843, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.90843, 40.745113 ] } }, -{ "type": "Feature", "properties": { "id": 503305, "name": "Roosevelt Av/58 St", "direction": "E", "lat": 40.745296, "lon": -73.906364, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.906364, 40.745296 ] } }, -{ "type": "Feature", "properties": { "id": 503306, "name": "Roosevelt Av/61 St", "direction": "E", "lat": 40.745575, "lon": -73.90329, "routes": "Q107, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.90329, 40.745575 ] } }, -{ "type": "Feature", "properties": { "id": 503307, "name": "Roosevelt Av/63 St", "direction": "E", "lat": 40.745804, "lon": -73.90091, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.90091, 40.745804 ] } }, -{ "type": "Feature", "properties": { "id": 503308, "name": "Roosevelt Av/65 Pl", "direction": "E", "lat": 40.746056, "lon": -73.898735, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.898735, 40.746056 ] } }, -{ "type": "Feature", "properties": { "id": 503309, "name": "Roosevelt Av/69 St", "direction": "E", "lat": 40.74629, "lon": -73.89647, "routes": "Q107, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.89647, 40.74629 ] } }, -{ "type": "Feature", "properties": { "id": 503310, "name": "Roosevelt Av/72 St", "direction": "E", "lat": 40.74662, "lon": -73.89327, "routes": "Q32, Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89327, 40.74662 ] } }, -{ "type": "Feature", "properties": { "id": 503311, "name": "Roosevelt Av/76 St", "direction": "E", "lat": 40.74704, "lon": -73.889366, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.889366, 40.74704 ] } }, -{ "type": "Feature", "properties": { "id": 503312, "name": "Roosevelt Av/78 St", "direction": "E", "lat": 40.747166, "lon": -73.88764, "routes": "Q33, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.88764, 40.747166 ] } }, -{ "type": "Feature", "properties": { "id": 503313, "name": "Roosevelt Av/80 St", "direction": "E", "lat": 40.74737, "lon": -73.88554, "routes": "Q32, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88554, 40.74737 ] } }, -{ "type": "Feature", "properties": { "id": 503316, "name": "Roosevelt Av/80 St", "direction": "W", "lat": 40.747463, "lon": -73.886215, "routes": "Q32, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.886215, 40.747463 ] } }, -{ "type": "Feature", "properties": { "id": 503317, "name": "Roosevelt Av/78 St", "direction": "W", "lat": 40.7473, "lon": -73.8879, "routes": "Q33, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.8879, 40.7473 ] } }, -{ "type": "Feature", "properties": { "id": 503318, "name": "Roosevelt Av/76 St", "direction": "W", "lat": 40.74706, "lon": -73.889984, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.889984, 40.74706 ] } }, -{ "type": "Feature", "properties": { "id": 503319, "name": "Roosevelt Av/74 St", "direction": "W", "lat": 40.746914, "lon": -73.89133, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.89133, 40.746914 ] } }, -{ "type": "Feature", "properties": { "id": 503320, "name": "Roosevelt Av/72 St", "direction": "W", "lat": 40.746693, "lon": -73.893814, "routes": "Q32, Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.893814, 40.746693 ] } }, -{ "type": "Feature", "properties": { "id": 503321, "name": "Roosevelt Av/69 St", "direction": "W", "lat": 40.746334, "lon": -73.896774, "routes": "Q107, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.896774, 40.746334 ] } }, -{ "type": "Feature", "properties": { "id": 503322, "name": "Roosevelt Av/67 St", "direction": "W", "lat": 40.746193, "lon": -73.898056, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.898056, 40.746193 ] } }, -{ "type": "Feature", "properties": { "id": 503323, "name": "Roosevelt Av/64 St", "direction": "W", "lat": 40.745934, "lon": -73.900444, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.900444, 40.745934 ] } }, -{ "type": "Feature", "properties": { "id": 503324, "name": "Roosevelt Av/61 St", "direction": "W", "lat": 40.745632, "lon": -73.90336, "routes": "Q107, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.90336, 40.745632 ] } }, -{ "type": "Feature", "properties": { "id": 503325, "name": "Roosevelt Av/58 St", "direction": "W", "lat": 40.745453, "lon": -73.90644, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.90644, 40.745453 ] } }, -{ "type": "Feature", "properties": { "id": 503326, "name": "Roosevelt Av/Skillman Av", "direction": "W", "lat": 40.745144, "lon": -73.90892, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.90892, 40.745144 ] } }, -{ "type": "Feature", "properties": { "id": 503327, "name": "Roosevelt Av/54 St", "direction": "W", "lat": 40.744686, "lon": -73.91091, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.91091, 40.744686 ] } }, -{ "type": "Feature", "properties": { "id": 503328, "name": "Roosevelt Av/51 St", "direction": "W", "lat": 40.74372, "lon": -73.9142, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.9142, 40.74372 ] } }, -{ "type": "Feature", "properties": { "id": 503330, "name": "Queens Blvd/46 St", "direction": "W", "lat": 40.743336, "lon": -73.91811, "routes": "Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.91811, 40.743336 ] } }, -{ "type": "Feature", "properties": { "id": 503331, "name": "Queens Blvd/45 St", "direction": "W", "lat": 40.74355, "lon": -73.91998, "routes": "Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.91998, 40.74355 ] } }, -{ "type": "Feature", "properties": { "id": 503333, "name": "Queens Blvd/41 St", "direction": "W", "lat": 40.74396, "lon": -73.923515, "routes": "Q32, Q60, Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.923515, 40.74396 ] } }, -{ "type": "Feature", "properties": { "id": 503334, "name": "Queens Blvd/39 St", "direction": "W", "lat": 40.74421, "lon": -73.92597, "routes": "Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.92597, 40.74421 ] } }, -{ "type": "Feature", "properties": { "id": 503335, "name": "Queens Blvd/38 St", "direction": "W", "lat": 40.74441, "lon": -73.92738, "routes": "Q32, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.92738, 40.74441 ] } }, -{ "type": "Feature", "properties": { "id": 503336, "name": "Queens Blvd/35 St", "direction": "W", "lat": 40.744625, "lon": -73.92958, "routes": "Q107, Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.92958, 40.744625 ] } }, -{ "type": "Feature", "properties": { "id": 503337, "name": "Queens Blvd/33 St", "direction": "W", "lat": 40.744946, "lon": -73.93204, "routes": "Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.93204, 40.744946 ] } }, -{ "type": "Feature", "properties": { "id": 503338, "name": "Queens Blvd/Skillman Av", "direction": "NW", "lat": 40.745953, "lon": -73.93416, "routes": "Q32, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.93416, 40.745953 ] } }, -{ "type": "Feature", "properties": { "id": 503340, "name": "Queens Plaza North/29 St", "direction": "W", "lat": 40.750065, "lon": -73.93815, "routes": "Q101, Q32, Q60, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93815, 40.750065 ] } }, -{ "type": "Feature", "properties": { "id": 503357, "name": "Hoyt Av South/31 St", "direction": "SE", "lat": 40.77046, "lon": -73.91778, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.91778, 40.77046 ] } }, -{ "type": "Feature", "properties": { "id": 503377, "name": "Jamaica Av/75 St", "direction": "E", "lat": 40.69142, "lon": -73.86609, "routes": "Q56, J90" }, "geometry": { "type": "Point", "coordinates": [ -73.86609, 40.69142 ] } }, -{ "type": "Feature", "properties": { "id": 503378, "name": "Jamaica Av/77 St", "direction": "E", "lat": 40.69173, "lon": -73.86426, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.86426, 40.69173 ] } }, -{ "type": "Feature", "properties": { "id": 503379, "name": "Jamaica Av/80 St", "direction": "E", "lat": 40.692158, "lon": -73.86159, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.86159, 40.692158 ] } }, -{ "type": "Feature", "properties": { "id": 503380, "name": "Jamaica Av/85 St", "direction": "E", "lat": 40.69249, "lon": -73.85858, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.85858, 40.69249 ] } }, -{ "type": "Feature", "properties": { "id": 503381, "name": "Jamaica Av/87 St", "direction": "E", "lat": 40.692593, "lon": -73.85678, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.85678, 40.692593 ] } }, -{ "type": "Feature", "properties": { "id": 503382, "name": "Jamaica Av/89 St", "direction": "E", "lat": 40.692696, "lon": -73.85511, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.85511, 40.692696 ] } }, -{ "type": "Feature", "properties": { "id": 503383, "name": "Jamaica Av/90 St", "direction": "E", "lat": 40.692863, "lon": -73.85424, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.85424, 40.692863 ] } }, -{ "type": "Feature", "properties": { "id": 503384, "name": "Jamaica Av/Woodhaven Blvd", "direction": "E", "lat": 40.69346, "lon": -73.852486, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.852486, 40.69346 ] } }, -{ "type": "Feature", "properties": { "id": 503385, "name": "Jamaica Av/94 St", "direction": "E", "lat": 40.694004, "lon": -73.85098, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.85098, 40.694004 ] } }, -{ "type": "Feature", "properties": { "id": 503386, "name": "Jamaica Av/96 St", "direction": "E", "lat": 40.69445, "lon": -73.84909, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.84909, 40.69445 ] } }, -{ "type": "Feature", "properties": { "id": 503387, "name": "Jamaica Av/98 St", "direction": "E", "lat": 40.69479, "lon": -73.84732, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.84732, 40.69479 ] } }, -{ "type": "Feature", "properties": { "id": 503388, "name": "Jamaica Av/102 St", "direction": "E", "lat": 40.695114, "lon": -73.844826, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.844826, 40.695114 ] } }, -{ "type": "Feature", "properties": { "id": 503389, "name": "Jamaica Av/104 St", "direction": "E", "lat": 40.69513, "lon": -73.842964, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.842964, 40.69513 ] } }, -{ "type": "Feature", "properties": { "id": 503390, "name": "Jamaica Av/107 St", "direction": "E", "lat": 40.695396, "lon": -73.839935, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.839935, 40.695396 ] } }, -{ "type": "Feature", "properties": { "id": 503391, "name": "Jamaica Av/109 St", "direction": "NE", "lat": 40.69597, "lon": -73.8384, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.8384, 40.69597 ] } }, -{ "type": "Feature", "properties": { "id": 503392, "name": "Jamaica Av/111 St", "direction": "NE", "lat": 40.69694, "lon": -73.83692, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.83692, 40.69694 ] } }, -{ "type": "Feature", "properties": { "id": 503393, "name": "Jamaica Av/113 St", "direction": "NE", "lat": 40.697937, "lon": -73.83529, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.83529, 40.697937 ] } }, -{ "type": "Feature", "properties": { "id": 503394, "name": "Jamaica Av/115 St", "direction": "NE", "lat": 40.698746, "lon": -73.83373, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.83373, 40.698746 ] } }, -{ "type": "Feature", "properties": { "id": 503395, "name": "Jamaica Av/117 St", "direction": "E", "lat": 40.699577, "lon": -73.8322, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.8322, 40.699577 ] } }, -{ "type": "Feature", "properties": { "id": 503396, "name": "Jamaica Av/Lefferts Blvd", "direction": "E", "lat": 40.700092, "lon": -73.830215, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.830215, 40.700092 ] } }, -{ "type": "Feature", "properties": { "id": 503397, "name": "Jamaica Av/124 St", "direction": "E", "lat": 40.7008, "lon": -73.82607, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82607, 40.7008 ] } }, -{ "type": "Feature", "properties": { "id": 503398, "name": "Jamaica Av/126 St", "direction": "E", "lat": 40.701225, "lon": -73.82431, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82431, 40.701225 ] } }, -{ "type": "Feature", "properties": { "id": 503399, "name": "Jamaica Av/130 St", "direction": "E", "lat": 40.701782, "lon": -73.82206, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82206, 40.701782 ] } }, -{ "type": "Feature", "properties": { "id": 503400, "name": "Jamaica Av/132 St", "direction": "E", "lat": 40.702007, "lon": -73.82071, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82071, 40.702007 ] } }, -{ "type": "Feature", "properties": { "id": 503402, "name": "Jamaica Av/Van Wyck Expwy", "direction": "E", "lat": 40.702366, "lon": -73.81695, "routes": "Q56, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.81695, 40.702366 ] } }, -{ "type": "Feature", "properties": { "id": 503404, "name": "Jamaica Av/139 St", "direction": "E", "lat": 40.702374, "lon": -73.81254, "routes": "Q56, Q60, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.81254, 40.702374 ] } }, -{ "type": "Feature", "properties": { "id": 503415, "name": "Jamaica Av/132 St", "direction": "W", "lat": 40.702126, "lon": -73.8208, "routes": "Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.8208, 40.702126 ] } }, -{ "type": "Feature", "properties": { "id": 503416, "name": "Jamaica Av/130 St", "direction": "W", "lat": 40.701694, "lon": -73.82303, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82303, 40.701694 ] } }, -{ "type": "Feature", "properties": { "id": 503417, "name": "Jamaica Av/127 St", "direction": "W", "lat": 40.701378, "lon": -73.82429, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82429, 40.701378 ] } }, -{ "type": "Feature", "properties": { "id": 503418, "name": "Jamaica Av/124 St", "direction": "W", "lat": 40.700832, "lon": -73.82674, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82674, 40.700832 ] } }, -{ "type": "Feature", "properties": { "id": 503419, "name": "Jamaica Av/122 St", "direction": "W", "lat": 40.700497, "lon": -73.82874, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.82874, 40.700497 ] } }, -{ "type": "Feature", "properties": { "id": 503420, "name": "Jamaica Av/Lefferts Blvd", "direction": "W", "lat": 40.700092, "lon": -73.83084, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.83084, 40.700092 ] } }, -{ "type": "Feature", "properties": { "id": 503421, "name": "Jamaica Av/118 St", "direction": "W", "lat": 40.699757, "lon": -73.832085, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.832085, 40.699757 ] } }, -{ "type": "Feature", "properties": { "id": 503422, "name": "Jamaica Av/116 St", "direction": "SW", "lat": 40.699024, "lon": -73.83361, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.83361, 40.699024 ] } }, -{ "type": "Feature", "properties": { "id": 503423, "name": "Jamaica Av/114 St", "direction": "SW", "lat": 40.698143, "lon": -73.8352, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.8352, 40.698143 ] } }, -{ "type": "Feature", "properties": { "id": 503424, "name": "Jamaica Av/112 St", "direction": "SW", "lat": 40.697243, "lon": -73.83673, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.83673, 40.697243 ] } }, -{ "type": "Feature", "properties": { "id": 503426, "name": "Jamaica Av/110 St", "direction": "SW", "lat": 40.696224, "lon": -73.838234, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.838234, 40.696224 ] } }, -{ "type": "Feature", "properties": { "id": 503427, "name": "Jamaica Av/108 St", "direction": "W", "lat": 40.69553, "lon": -73.8399, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.8399, 40.69553 ] } }, -{ "type": "Feature", "properties": { "id": 503428, "name": "Jamaica Av/106 St", "direction": "W", "lat": 40.6953, "lon": -73.84158, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.84158, 40.6953 ] } }, -{ "type": "Feature", "properties": { "id": 503429, "name": "Jamaica Av/104 St", "direction": "W", "lat": 40.695244, "lon": -73.84342, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.84342, 40.695244 ] } }, -{ "type": "Feature", "properties": { "id": 503430, "name": "Jamaica Av/102 St", "direction": "W", "lat": 40.695175, "lon": -73.84586, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.84586, 40.695175 ] } }, -{ "type": "Feature", "properties": { "id": 503431, "name": "Jamaica Av/98 St", "direction": "W", "lat": 40.694847, "lon": -73.84766, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.84766, 40.694847 ] } }, -{ "type": "Feature", "properties": { "id": 503432, "name": "Jamaica Av/96 St", "direction": "W", "lat": 40.694576, "lon": -73.84905, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.84905, 40.694576 ] } }, -{ "type": "Feature", "properties": { "id": 503433, "name": "Jamaica Av/94 St", "direction": "W", "lat": 40.694157, "lon": -73.85096, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.85096, 40.694157 ] } }, -{ "type": "Feature", "properties": { "id": 503434, "name": "Jamaica Av/Woodhaven Blvd", "direction": "W", "lat": 40.693813, "lon": -73.851906, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.851906, 40.693813 ] } }, -{ "type": "Feature", "properties": { "id": 503435, "name": "Jamaica Av/Woodhaven Blvd West", "direction": "W", "lat": 40.693485, "lon": -73.85283, "routes": "Q56, J90" }, "geometry": { "type": "Point", "coordinates": [ -73.85283, 40.693485 ] } }, -{ "type": "Feature", "properties": { "id": 503436, "name": "Jamaica Av/90 St", "direction": "W", "lat": 40.692825, "lon": -73.855095, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.855095, 40.692825 ] } }, -{ "type": "Feature", "properties": { "id": 503437, "name": "Jamaica Av/88 St", "direction": "W", "lat": 40.6927, "lon": -73.8569, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.8569, 40.6927 ] } }, -{ "type": "Feature", "properties": { "id": 503438, "name": "Jamaica Av/86 St", "direction": "W", "lat": 40.692604, "lon": -73.85862, "routes": "Q56, J90" }, "geometry": { "type": "Point", "coordinates": [ -73.85862, 40.692604 ] } }, -{ "type": "Feature", "properties": { "id": 503440, "name": "Jamaica Av/80 St", "direction": "W", "lat": 40.692154, "lon": -73.86224, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.86224, 40.692154 ] } }, -{ "type": "Feature", "properties": { "id": 503441, "name": "Jamaica Av/78 St", "direction": "W", "lat": 40.69182, "lon": -73.86449, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.86449, 40.69182 ] } }, -{ "type": "Feature", "properties": { "id": 503442, "name": "Jamaica Av/76 St", "direction": "W", "lat": 40.69156, "lon": -73.86601, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.86601, 40.69156 ] } }, -{ "type": "Feature", "properties": { "id": 503443, "name": "Jamaica Av/Dexter Ct", "direction": "W", "lat": 40.69139, "lon": -73.867096, "routes": "J90, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.867096, 40.69139 ] } }, -{ "type": "Feature", "properties": { "id": 503444, "name": "College Point Blvd/Horace Harding Expwy", "direction": "N", "lat": 40.74322, "lon": -73.83708, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83708, 40.74322 ] } }, -{ "type": "Feature", "properties": { "id": 503445, "name": "Union Tpke/Vleigh Pl", "direction": "W", "lat": 40.717434, "lon": -73.821396, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.821396, 40.717434 ] } }, -{ "type": "Feature", "properties": { "id": 503450, "name": "Madison St/Onderdonk Av", "direction": "NE", "lat": 40.703053, "lon": -73.90499, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90499, 40.703053 ] } }, -{ "type": "Feature", "properties": { "id": 503451, "name": "Madison St/Woodward Av", "direction": "NE", "lat": 40.70402, "lon": -73.90405, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90405, 40.70402 ] } }, -{ "type": "Feature", "properties": { "id": 503452, "name": "Madison St/Fairview Av", "direction": "NE", "lat": 40.70499, "lon": -73.90305, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90305, 40.70499 ] } }, -{ "type": "Feature", "properties": { "id": 503453, "name": "Fairview Av/Forest Av", "direction": "E", "lat": 40.704365, "lon": -73.901924, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.901924, 40.704365 ] } }, -{ "type": "Feature", "properties": { "id": 503454, "name": "67 Av/60 St", "direction": "E", "lat": 40.704678, "lon": -73.90055, "routes": "Q58, B13, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90055, 40.704678 ] } }, -{ "type": "Feature", "properties": { "id": 503455, "name": "67 Av/Fresh Pond Rd", "direction": "E", "lat": 40.705685, "lon": -73.8967, "routes": "B13, Q58, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.8967, 40.705685 ] } }, -{ "type": "Feature", "properties": { "id": 503456, "name": "Fresh Pond Rd/Putnam Av", "direction": "NW", "lat": 40.706406, "lon": -73.896835, "routes": "M90, Q58, QM24, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.896835, 40.706406 ] } }, -{ "type": "Feature", "properties": { "id": 503457, "name": "Fresh Pond Rd/Woodbine St", "direction": "NW", "lat": 40.708023, "lon": -73.8977, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.8977, 40.708023 ] } }, -{ "type": "Feature", "properties": { "id": 503458, "name": "Fresh Pond Rd/Gates Av", "direction": "NW", "lat": 40.709328, "lon": -73.89858, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.89858, 40.709328 ] } }, -{ "type": "Feature", "properties": { "id": 503459, "name": "Fresh Pond Rd/Grove St", "direction": "NW", "lat": 40.710175, "lon": -73.899216, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.899216, 40.710175 ] } }, -{ "type": "Feature", "properties": { "id": 503461, "name": "Fresh Pond Rd/Eliot Av", "direction": "N", "lat": 40.714985, "lon": -73.9012, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.9012, 40.714985 ] } }, -{ "type": "Feature", "properties": { "id": 503462, "name": "Fresh Pond Rd/60 Rd", "direction": "N", "lat": 40.71649, "lon": -73.901596, "routes": "Q58, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.901596, 40.71649 ] } }, -{ "type": "Feature", "properties": { "id": 503464, "name": "Fresh Pond Rd/59 Av", "direction": "N", "lat": 40.719707, "lon": -73.902534, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.902534, 40.719707 ] } }, -{ "type": "Feature", "properties": { "id": 503465, "name": "Fresh Pond Rd/Flushing Av", "direction": "N", "lat": 40.721504, "lon": -73.90305, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90305, 40.721504 ] } }, -{ "type": "Feature", "properties": { "id": 503466, "name": "Flushing Av/64 St", "direction": "NE", "lat": 40.722775, "lon": -73.90112, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90112, 40.722775 ] } }, -{ "type": "Feature", "properties": { "id": 503468, "name": "Grand Av/66 St", "direction": "NE", "lat": 40.72427, "lon": -73.89836, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.89836, 40.72427 ] } }, -{ "type": "Feature", "properties": { "id": 503469, "name": "Grand Av/Queens Midtown Expwy", "direction": "NE", "lat": 40.725094, "lon": -73.896736, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.896736, 40.725094 ] } }, -{ "type": "Feature", "properties": { "id": 503470, "name": "Grand Av/69 Pl", "direction": "NE", "lat": 40.726467, "lon": -73.89434, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.89434, 40.726467 ] } }, -{ "type": "Feature", "properties": { "id": 503471, "name": "Grand Av/71 St", "direction": "NE", "lat": 40.72776, "lon": -73.89215, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.89215, 40.72776 ] } }, -{ "type": "Feature", "properties": { "id": 503472, "name": "Grand Av/74 St", "direction": "E", "lat": 40.73028, "lon": -73.88715, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.88715, 40.73028 ] } }, -{ "type": "Feature", "properties": { "id": 503473, "name": "Grand Av/79 St", "direction": "NE", "lat": 40.731136, "lon": -73.88528, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.88528, 40.731136 ] } }, -{ "type": "Feature", "properties": { "id": 503475, "name": "Grand Av/84 St", "direction": "NE", "lat": 40.73345, "lon": -73.88383, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.88383, 40.73345 ] } }, -{ "type": "Feature", "properties": { "id": 503476, "name": "Grand Av/Haspel St", "direction": "NE", "lat": 40.735058, "lon": -73.881805, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.881805, 40.735058 ] } }, -{ "type": "Feature", "properties": { "id": 503477, "name": "Grand Av/Van Horn St", "direction": "E", "lat": 40.735806, "lon": -73.880196, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.880196, 40.735806 ] } }, -{ "type": "Feature", "properties": { "id": 503478, "name": "Broadway/Justice Av", "direction": "NE", "lat": 40.73752, "lon": -73.877205, "routes": "Q53+, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.877205, 40.73752 ] } }, -{ "type": "Feature", "properties": { "id": 503479, "name": "Corona Av/88 St", "direction": "NE", "lat": 40.740414, "lon": -73.87641, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87641, 40.740414 ] } }, -{ "type": "Feature", "properties": { "id": 503480, "name": "Corona Av/90 St", "direction": "NE", "lat": 40.741383, "lon": -73.875084, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.875084, 40.741383 ] } }, -{ "type": "Feature", "properties": { "id": 503481, "name": "Corona Av/91 Pl", "direction": "E", "lat": 40.742443, "lon": -73.87301, "routes": "Q58, Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87301, 40.742443 ] } }, -{ "type": "Feature", "properties": { "id": 503482, "name": "Corona Av/94 St", "direction": "E", "lat": 40.742306, "lon": -73.87005, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87005, 40.742306 ] } }, -{ "type": "Feature", "properties": { "id": 503483, "name": "Corona Av/Junction Blvd", "direction": "E", "lat": 40.74206, "lon": -73.867676, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.867676, 40.74206 ] } }, -{ "type": "Feature", "properties": { "id": 503484, "name": "Corona Av/Alstyne Av", "direction": "N", "lat": 40.74338, "lon": -73.86596, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.86596, 40.74338 ] } }, -{ "type": "Feature", "properties": { "id": 503485, "name": "Corona Av/98 Pl", "direction": "NE", "lat": 40.74495, "lon": -73.86449, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.86449, 40.74495 ] } }, -{ "type": "Feature", "properties": { "id": 503486, "name": "Corona Av/102 St", "direction": "E", "lat": 40.744225, "lon": -73.86163, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.86163, 40.744225 ] } }, -{ "type": "Feature", "properties": { "id": 503487, "name": "Corona Av/104 St", "direction": "E", "lat": 40.743954, "lon": -73.858284, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.858284, 40.743954 ] } }, -{ "type": "Feature", "properties": { "id": 503488, "name": "Corona Av/51 Av", "direction": "E", "lat": 40.74349, "lon": -73.85571, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85571, 40.74349 ] } }, -{ "type": "Feature", "properties": { "id": 503490, "name": "108 St/Martense Av", "direction": "SE", "lat": 40.741913, "lon": -73.85426, "routes": "Q58, Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85426, 40.741913 ] } }, -{ "type": "Feature", "properties": { "id": 503491, "name": "108 St/Waldron St", "direction": "", "lat": 40.739494, "lon": -73.85303, "routes": "Q23, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85303, 40.739494 ] } }, -{ "type": "Feature", "properties": { "id": 503492, "name": "108 St/Horace Harding Expwy North", "direction": "SE", "lat": 40.737774, "lon": -73.85216, "routes": "Q23, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85216, 40.737774 ] } }, -{ "type": "Feature", "properties": { "id": 503493, "name": "College Point Blvd/58 Rd", "direction": "NE", "lat": 40.745712, "lon": -73.83517, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83517, 40.745712 ] } }, -{ "type": "Feature", "properties": { "id": 503494, "name": "College Point Blvd/57 Rd", "direction": "NE", "lat": 40.74679, "lon": -73.834625, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.834625, 40.74679 ] } }, -{ "type": "Feature", "properties": { "id": 503497, "name": "College Point Blvd/Maple Av", "direction": "N", "lat": 40.75403, "lon": -73.832886, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.832886, 40.75403 ] } }, -{ "type": "Feature", "properties": { "id": 503499, "name": "41 Rd/College Point Blvd", "direction": "NE", "lat": 40.755657, "lon": -73.83301, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83301, 40.755657 ] } }, -{ "type": "Feature", "properties": { "id": 503501, "name": "41 Rd/Main St", "direction": "NE", "lat": 40.757393, "lon": -73.82929, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.82929, 40.757393 ] } }, -{ "type": "Feature", "properties": { "id": 503502, "name": "College Point Blvd/Sanford Av", "direction": "S", "lat": 40.754337, "lon": -73.833084, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.833084, 40.754337 ] } }, -{ "type": "Feature", "properties": { "id": 503505, "name": "College Point Blvd/Van Wyck Expwy Exit", "direction": "SW", "lat": 40.746655, "lon": -73.83498, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83498, 40.746655 ] } }, -{ "type": "Feature", "properties": { "id": 503506, "name": "College Point Blvd/58 Av", "direction": "SW", "lat": 40.746006, "lon": -73.83531, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83531, 40.746006 ] } }, -{ "type": "Feature", "properties": { "id": 503511, "name": "Corona Av/51 Av", "direction": "W", "lat": 40.74363, "lon": -73.85588, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85588, 40.74363 ] } }, -{ "type": "Feature", "properties": { "id": 503513, "name": "Corona Av/104 St", "direction": "W", "lat": 40.7441, "lon": -73.85917, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85917, 40.7441 ] } }, -{ "type": "Feature", "properties": { "id": 503514, "name": "Corona Av/102 St", "direction": "W", "lat": 40.744347, "lon": -73.86218, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.86218, 40.744347 ] } }, -{ "type": "Feature", "properties": { "id": 503515, "name": "Corona Av/National St", "direction": "SW", "lat": 40.74482, "lon": -73.864784, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.864784, 40.74482 ] } }, -{ "type": "Feature", "properties": { "id": 503516, "name": "Corona Av/46 Av", "direction": "S", "lat": 40.74348, "lon": -73.86603, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.86603, 40.74348 ] } }, -{ "type": "Feature", "properties": { "id": 503517, "name": "Corona Av/Junction Blvd", "direction": "SW", "lat": 40.742172, "lon": -73.867256, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.867256, 40.742172 ] } }, -{ "type": "Feature", "properties": { "id": 503518, "name": "Corona Av/94 St", "direction": "W", "lat": 40.74238, "lon": -73.87, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87, 40.74238 ] } }, -{ "type": "Feature", "properties": { "id": 503519, "name": "Corona Av/91 Pl", "direction": "SW", "lat": 40.742374, "lon": -73.8739, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.8739, 40.742374 ] } }, -{ "type": "Feature", "properties": { "id": 503520, "name": "Corona Av/90 St", "direction": "SW", "lat": 40.741585, "lon": -73.87495, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87495, 40.741585 ] } }, -{ "type": "Feature", "properties": { "id": 503521, "name": "Corona Av/88 St", "direction": "SW", "lat": 40.740585, "lon": -73.8763, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.8763, 40.740585 ] } }, -{ "type": "Feature", "properties": { "id": 503522, "name": "Grand Av/Queens Blvd", "direction": "W", "lat": 40.73636, "lon": -73.87832, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.87832, 40.73636 ] } }, -{ "type": "Feature", "properties": { "id": 503523, "name": "Grand Av/Goldsmith St", "direction": "W", "lat": 40.735703, "lon": -73.88089, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.88089, 40.735703 ] } }, -{ "type": "Feature", "properties": { "id": 503524, "name": "Grand Av/Haspel St", "direction": "SW", "lat": 40.73496, "lon": -73.88209, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.88209, 40.73496 ] } }, -{ "type": "Feature", "properties": { "id": 503525, "name": "Grand Av/Calamus Av", "direction": "SW", "lat": 40.73336, "lon": -73.88401, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.88401, 40.73336 ] } }, -{ "type": "Feature", "properties": { "id": 503526, "name": "Grand Av/82 St", "direction": "SW", "lat": 40.73214, "lon": -73.88473, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.88473, 40.73214 ] } }, -{ "type": "Feature", "properties": { "id": 503527, "name": "Grand Av/79 St", "direction": "SW", "lat": 40.730816, "lon": -73.885956, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.885956, 40.730816 ] } }, -{ "type": "Feature", "properties": { "id": 503528, "name": "Grand Av/74 St", "direction": "W", "lat": 40.7301, "lon": -73.88838, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.88838, 40.7301 ] } }, -{ "type": "Feature", "properties": { "id": 503529, "name": "Grand Av/73 St", "direction": "SW", "lat": 40.72925, "lon": -73.890274, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.890274, 40.72925 ] } }, -{ "type": "Feature", "properties": { "id": 503530, "name": "Grand Av/72 St", "direction": "SW", "lat": 40.728024, "lon": -73.89183, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.89183, 40.728024 ] } }, -{ "type": "Feature", "properties": { "id": 503531, "name": "Grand Av/69 Pl", "direction": "SW", "lat": 40.72635, "lon": -73.89469, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.89469, 40.72635 ] } }, -{ "type": "Feature", "properties": { "id": 503532, "name": "Grand Av/Borden Av", "direction": "SW", "lat": 40.725716, "lon": -73.89579, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.89579, 40.725716 ] } }, -{ "type": "Feature", "properties": { "id": 503533, "name": "Grand Av/Queens Midtown Expwy", "direction": "SW", "lat": 40.72491, "lon": -73.897316, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.897316, 40.72491 ] } }, -{ "type": "Feature", "properties": { "id": 503535, "name": "Grand Av/Remsen Pl", "direction": "SW", "lat": 40.723648, "lon": -73.8998, "routes": "Q59, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.8998, 40.723648 ] } }, -{ "type": "Feature", "properties": { "id": 503536, "name": "Flushing Av/64 St", "direction": "SW", "lat": 40.722443, "lon": -73.90188, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90188, 40.722443 ] } }, -{ "type": "Feature", "properties": { "id": 503537, "name": "Fresh Pond Rd/Flushing Av", "direction": "S", "lat": 40.721245, "lon": -73.90305, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90305, 40.721245 ] } }, -{ "type": "Feature", "properties": { "id": 503538, "name": "Fresh Pond Rd/59 Av", "direction": "S", "lat": 40.719078, "lon": -73.9025, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.9025, 40.719078 ] } }, -{ "type": "Feature", "properties": { "id": 503539, "name": "Fresh Pond Rd/59 Dr", "direction": "S", "lat": 40.718082, "lon": -73.902214, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.902214, 40.718082 ] } }, -{ "type": "Feature", "properties": { "id": 503540, "name": "Fresh Pond Rd/60 Av", "direction": "S", "lat": 40.716682, "lon": -73.90183, "routes": "Q58, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90183, 40.716682 ] } }, -{ "type": "Feature", "properties": { "id": 503541, "name": "Fresh Pond Rd/Eliot Av", "direction": "S", "lat": 40.714725, "lon": -73.90128, "routes": "Q58, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90128, 40.714725 ] } }, -{ "type": "Feature", "properties": { "id": 503542, "name": "Fresh Pond Rd/Metropolitan Av", "direction": "SE", "lat": 40.712402, "lon": -73.900536, "routes": "Q58, QM25, QM24, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.900536, 40.712402 ] } }, -{ "type": "Feature", "properties": { "id": 503543, "name": "Fresh Pond Rd/Menahan St", "direction": "SE", "lat": 40.710953, "lon": -73.899796, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.899796, 40.710953 ] } }, -{ "type": "Feature", "properties": { "id": 503544, "name": "Fresh Pond Rd/Linden St", "direction": "SE", "lat": 40.709385, "lon": -73.898796, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.898796, 40.709385 ] } }, -{ "type": "Feature", "properties": { "id": 503545, "name": "Fresh Pond Rd/Palmetto St", "direction": "SE", "lat": 40.708096, "lon": -73.89785, "routes": "Q58, QM24, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.89785, 40.708096 ] } }, -{ "type": "Feature", "properties": { "id": 503549, "name": "Sayres Av/178 Pl", "direction": "SW", "lat": 40.6978, "lon": -73.77543, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.77543, 40.6978 ] } }, -{ "type": "Feature", "properties": { "id": 503550, "name": "Parsons Blvd/23 Av", "direction": "N", "lat": 40.77839, "lon": -73.82372, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82372, 40.77839 ] } }, -{ "type": "Feature", "properties": { "id": 503551, "name": "Parsons Blvd/20 Av", "direction": "NE", "lat": 40.78202, "lon": -73.8219, "routes": "Q20B, QM2, Q76, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.8219, 40.78202 ] } }, -{ "type": "Feature", "properties": { "id": 503552, "name": "Parsons Blvd/17 Av", "direction": "N", "lat": 40.784313, "lon": -73.82125, "routes": "Q76, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82125, 40.784313 ] } }, -{ "type": "Feature", "properties": { "id": 503564, "name": "Merrick Blvd/230 St", "direction": "E", "lat": 40.675884, "lon": -73.74009, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.74009, 40.675884 ] } }, -{ "type": "Feature", "properties": { "id": 503565, "name": "Parsons Blvd/22 Av", "direction": "S", "lat": 40.778763, "lon": -73.82374, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.82374, 40.778763 ] } }, -{ "type": "Feature", "properties": { "id": 503566, "name": "47 Av/Francis Lewis Blvd", "direction": "E", "lat": 40.75337, "lon": -73.78019, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78019, 40.75337 ] } }, -{ "type": "Feature", "properties": { "id": 503568, "name": "235 St/Linden Blvd", "direction": "SW", "lat": 40.690365, "lon": -73.72748, "routes": "X64, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.72748, 40.690365 ] } }, -{ "type": "Feature", "properties": { "id": 503571, "name": "Hillside Av/175 St", "direction": "E", "lat": 40.711742, "lon": -73.78725, "routes": "Q77, Q76, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.78725, 40.711742 ] } }, -{ "type": "Feature", "properties": { "id": 503573, "name": "Northern Blvd/244 St", "direction": "W", "lat": 40.765556, "lon": -73.74267, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.74267, 40.765556 ] } }, -{ "type": "Feature", "properties": { "id": 503574, "name": "82 St/Northern Blvd", "direction": "S", "lat": 40.755196, "lon": -73.88541, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.88541, 40.755196 ] } }, -{ "type": "Feature", "properties": { "id": 503575, "name": "82 St/34 Av", "direction": "S", "lat": 40.75338, "lon": -73.8851, "routes": "Q33, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.8851, 40.75338 ] } }, -{ "type": "Feature", "properties": { "id": 503576, "name": "82 St/35 Av", "direction": "S", "lat": 40.751465, "lon": -73.88472, "routes": "Q32, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88472, 40.751465 ] } }, -{ "type": "Feature", "properties": { "id": 503577, "name": "82 St/37 Av", "direction": "S", "lat": 40.749836, "lon": -73.88443, "routes": "Q32, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88443, 40.749836 ] } }, -{ "type": "Feature", "properties": { "id": 503578, "name": "81 St/Roosevelt Av", "direction": "N", "lat": 40.747925, "lon": -73.88489, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.88489, 40.747925 ] } }, -{ "type": "Feature", "properties": { "id": 503579, "name": "81 St/37 Av", "direction": "N", "lat": 40.749935, "lon": -73.88516, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.88516, 40.749935 ] } }, -{ "type": "Feature", "properties": { "id": 503580, "name": "81 St/35 Av", "direction": "N", "lat": 40.751587, "lon": -73.88548, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.88548, 40.751587 ] } }, -{ "type": "Feature", "properties": { "id": 503581, "name": "81 St/34 Av", "direction": "N", "lat": 40.75396, "lon": -73.88591, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.88591, 40.75396 ] } }, -{ "type": "Feature", "properties": { "id": 503582, "name": "81 St/Northern Blvd", "direction": "N", "lat": 40.755074, "lon": -73.8862, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.8862, 40.755074 ] } }, -{ "type": "Feature", "properties": { "id": 503585, "name": "Corporal Kennedy St/23 Av", "direction": "SE", "lat": 40.778824, "lon": -73.78303, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78303, 40.778824 ] } }, -{ "type": "Feature", "properties": { "id": 503588, "name": "Union Tpke/248 St", "direction": "E", "lat": 40.742386, "lon": -73.721596, "routes": "QM6, QM36, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.721596, 40.742386 ] } }, -{ "type": "Feature", "properties": { "id": 503591, "name": "132 St/Jamaica Av", "direction": "S", "lat": 40.70222, "lon": -73.82036, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.82036, 40.70222 ] } }, -{ "type": "Feature", "properties": { "id": 503592, "name": "47 Av/48 St", "direction": "W", "lat": 40.741024, "lon": -73.91767, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91767, 40.741024 ] } }, -{ "type": "Feature", "properties": { "id": 503593, "name": "48 St/47 Av", "direction": "S", "lat": 40.74062, "lon": -73.9174, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.9174, 40.74062 ] } }, -{ "type": "Feature", "properties": { "id": 503594, "name": "48 St/47 St", "direction": "N", "lat": 40.732746, "lon": -73.91884, "routes": "Q67, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91884, 40.732746 ] } }, -{ "type": "Feature", "properties": { "id": 503604, "name": "Liberty Av/183 St", "direction": "W", "lat": 40.70551, "lon": -73.77629, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.77629, 40.70551 ] } }, -{ "type": "Feature", "properties": { "id": 503605, "name": "Bedell St/Farmers Blvd", "direction": "SE", "lat": 40.673798, "lon": -73.764, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.764, 40.673798 ] } }, -{ "type": "Feature", "properties": { "id": 503606, "name": "Bedell St/Farmers Blvd", "direction": "NW", "lat": 40.674114, "lon": -73.76423, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76423, 40.674114 ] } }, -{ "type": "Feature", "properties": { "id": 503609, "name": "Northern Blvd/227 St", "direction": "W", "lat": 40.763187, "lon": -73.75319, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.75319, 40.763187 ] } }, -{ "type": "Feature", "properties": { "id": 503614, "name": "Jamaica Av/165 St", "direction": "E", "lat": 40.705605, "lon": -73.79448, "routes": "Q110, Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.79448, 40.705605 ] } }, -{ "type": "Feature", "properties": { "id": 503615, "name": "48 St/48 Av", "direction": "S", "lat": 40.738777, "lon": -73.91776, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91776, 40.738777 ] } }, -{ "type": "Feature", "properties": { "id": 503618, "name": "Archer Av/153 St", "direction": "W", "lat": 40.701916, "lon": -73.80229, "routes": "Q20B, Q20A, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.80229, 40.701916 ] } }, -{ "type": "Feature", "properties": { "id": 503622, "name": "Archer Av/165 St", "direction": "SW", "lat": 40.70421, "lon": -73.79344, "routes": "Q4, Q85, Q84, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.79344, 40.70421 ] } }, -{ "type": "Feature", "properties": { "id": 503626, "name": "48 St/48 Av", "direction": "N", "lat": 40.73897, "lon": -73.91758, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91758, 40.73897 ] } }, -{ "type": "Feature", "properties": { "id": 503627, "name": "48 St/50 Av", "direction": "S", "lat": 40.736935, "lon": -73.91814, "routes": "Q39, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91814, 40.736935 ] } }, -{ "type": "Feature", "properties": { "id": 503628, "name": "48 St/50 Av", "direction": "N", "lat": 40.73756, "lon": -73.91787, "routes": "Q39, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91787, 40.73756 ] } }, -{ "type": "Feature", "properties": { "id": 503636, "name": "56 Av/Queens Blvd", "direction": "SW", "lat": 40.735004, "lon": -73.874306, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.874306, 40.735004 ] } }, -{ "type": "Feature", "properties": { "id": 503639, "name": "61 St/75 Av", "direction": "S", "lat": 40.69835, "lon": -73.89395, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.89395, 40.69835 ] } }, -{ "type": "Feature", "properties": { "id": 503640, "name": "61 St/Grand Av", "direction": "N", "lat": 40.721718, "lon": -73.904335, "routes": "B57, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.904335, 40.721718 ] } }, -{ "type": "Feature", "properties": { "id": 503641, "name": "61 St/St Felix Av", "direction": "S", "lat": 40.69722, "lon": -73.89377, "routes": "B13, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.89377, 40.69722 ] } }, -{ "type": "Feature", "properties": { "id": 503642, "name": "62 St/75 Av", "direction": "N", "lat": 40.698635, "lon": -73.892975, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.892975, 40.698635 ] } }, -{ "type": "Feature", "properties": { "id": 503643, "name": "62 St/Myrtle Av", "direction": "N", "lat": 40.700794, "lon": -73.89328, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.89328, 40.700794 ] } }, -{ "type": "Feature", "properties": { "id": 503644, "name": "90 St/57 Av", "direction": "N", "lat": 40.734905, "lon": -73.87228, "routes": "Q29, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.87228, 40.734905 ] } }, -{ "type": "Feature", "properties": { "id": 503645, "name": "Atlantic Av/100 St", "direction": "E", "lat": 40.68932, "lon": -73.84423, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.84423, 40.68932 ] } }, -{ "type": "Feature", "properties": { "id": 503646, "name": "Atlantic Av/100 St", "direction": "W", "lat": 40.689484, "lon": -73.84463, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.84463, 40.689484 ] } }, -{ "type": "Feature", "properties": { "id": 503647, "name": "Atlantic Av/102 St", "direction": "E", "lat": 40.689877, "lon": -73.84228, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.84228, 40.689877 ] } }, -{ "type": "Feature", "properties": { "id": 503648, "name": "Atlantic Av/102 St", "direction": "W", "lat": 40.68984, "lon": -73.843376, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.843376, 40.68984 ] } }, -{ "type": "Feature", "properties": { "id": 503649, "name": "Atlantic Av/104 St", "direction": "E", "lat": 40.69019, "lon": -73.841156, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.841156, 40.69019 ] } }, -{ "type": "Feature", "properties": { "id": 503650, "name": "Atlantic Av/104 St", "direction": "W", "lat": 40.690323, "lon": -73.841675, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.841675, 40.690323 ] } }, -{ "type": "Feature", "properties": { "id": 503651, "name": "Atlantic Av/106 St", "direction": "E", "lat": 40.6908, "lon": -73.83907, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.83907, 40.6908 ] } }, -{ "type": "Feature", "properties": { "id": 503652, "name": "Atlantic Av/108 St", "direction": "E", "lat": 40.691364, "lon": -73.83705, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.83705, 40.691364 ] } }, -{ "type": "Feature", "properties": { "id": 503653, "name": "Atlantic Av/108 St", "direction": "W", "lat": 40.691372, "lon": -73.838, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.838, 40.691372 ] } }, -{ "type": "Feature", "properties": { "id": 503654, "name": "Atlantic Av/111 St", "direction": "E", "lat": 40.69215, "lon": -73.83425, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.83425, 40.69215 ] } }, -{ "type": "Feature", "properties": { "id": 503655, "name": "Atlantic Av/111 St", "direction": "W", "lat": 40.69212, "lon": -73.83536, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.83536, 40.69212 ] } }, -{ "type": "Feature", "properties": { "id": 503656, "name": "Atlantic Av/114 St", "direction": "E", "lat": 40.692875, "lon": -73.83172, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.83172, 40.692875 ] } }, -{ "type": "Feature", "properties": { "id": 503657, "name": "Atlantic Av/114 St", "direction": "W", "lat": 40.692917, "lon": -73.83256, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.83256, 40.692917 ] } }, -{ "type": "Feature", "properties": { "id": 503658, "name": "Atlantic Av/117 St", "direction": "E", "lat": 40.693565, "lon": -73.829285, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.829285, 40.693565 ] } }, -{ "type": "Feature", "properties": { "id": 503659, "name": "Atlantic Av/117 St", "direction": "W", "lat": 40.69362, "lon": -73.830086, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.830086, 40.69362 ] } }, -{ "type": "Feature", "properties": { "id": 503660, "name": "Atlantic Av/121 St", "direction": "E", "lat": 40.694393, "lon": -73.82587, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.82587, 40.694393 ] } }, -{ "type": "Feature", "properties": { "id": 503661, "name": "Atlantic Av/121 St", "direction": "W", "lat": 40.694668, "lon": -73.82639, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.82639, 40.694668 ] } }, -{ "type": "Feature", "properties": { "id": 503662, "name": "Atlantic Av/124 St", "direction": "W", "lat": 40.695057, "lon": -73.824196, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.824196, 40.695057 ] } }, -{ "type": "Feature", "properties": { "id": 503663, "name": "Atlantic Av/127 St", "direction": "E", "lat": 40.695675, "lon": -73.82119, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.82119, 40.695675 ] } }, -{ "type": "Feature", "properties": { "id": 503665, "name": "Atlantic Av/130 St", "direction": "E", "lat": 40.695984, "lon": -73.818115, "routes": "Q24, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.818115, 40.695984 ] } }, -{ "type": "Feature", "properties": { "id": 503666, "name": "Atlantic Av/130 St", "direction": "W", "lat": 40.695885, "lon": -73.81935, "routes": "Q41, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.81935, 40.695885 ] } }, -{ "type": "Feature", "properties": { "id": 503667, "name": "Atlantic Av/133 St", "direction": "W", "lat": 40.69655, "lon": -73.816986, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.816986, 40.69655 ] } }, -{ "type": "Feature", "properties": { "id": 503668, "name": "Atlantic Av/134 St", "direction": "E", "lat": 40.69676, "lon": -73.815414, "routes": "Q41, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.815414, 40.69676 ] } }, -{ "type": "Feature", "properties": { "id": 503669, "name": "Atlantic Av/74 Pl", "direction": "W", "lat": 40.68345, "lon": -73.86585, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86585, 40.68345 ] } }, -{ "type": "Feature", "properties": { "id": 503670, "name": "Atlantic Av/75 St", "direction": "E", "lat": 40.683723, "lon": -73.86391, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86391, 40.683723 ] } }, -{ "type": "Feature", "properties": { "id": 503671, "name": "Archer Av/165 St", "direction": "SW", "lat": 40.703842, "lon": -73.79438, "routes": "Q83, Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.79438, 40.703842 ] } }, -{ "type": "Feature", "properties": { "id": 503674, "name": "168 St/Jamaica Av", "direction": "NW", "lat": 40.706734, "lon": -73.79264, "routes": "Q09, Q17, Q41, Q08, Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79264, 40.706734 ] } }, -{ "type": "Feature", "properties": { "id": 503676, "name": "Farmers Blvd/118 Rd", "direction": "S", "lat": 40.68864, "lon": -73.76211, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76211, 40.68864 ] } }, -{ "type": "Feature", "properties": { "id": 503678, "name": "Atlantic Av/76 St", "direction": "W", "lat": 40.683903, "lon": -73.86426, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86426, 40.683903 ] } }, -{ "type": "Feature", "properties": { "id": 503679, "name": "Atlantic Av/77 St", "direction": "E", "lat": 40.684223, "lon": -73.86216, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86216, 40.684223 ] } }, -{ "type": "Feature", "properties": { "id": 503680, "name": "Atlantic Av/78 St", "direction": "W", "lat": 40.684414, "lon": -73.86247, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86247, 40.684414 ] } }, -{ "type": "Feature", "properties": { "id": 503682, "name": "Atlantic Av/80 St", "direction": "W", "lat": 40.685005, "lon": -73.860374, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.860374, 40.685005 ] } }, -{ "type": "Feature", "properties": { "id": 503684, "name": "Union Tpke/248 St", "direction": "W", "lat": 40.74231, "lon": -73.722435, "routes": "QM6, Q46, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.722435, 40.74231 ] } }, -{ "type": "Feature", "properties": { "id": 503686, "name": "Hillside Av/248 St", "direction": "E", "lat": 40.73497, "lon": -73.71882, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.71882, 40.73497 ] } }, -{ "type": "Feature", "properties": { "id": 503687, "name": "Hillside Av/258 St", "direction": "W", "lat": 40.736954, "lon": -73.710556, "routes": "Q43, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.710556, 40.736954 ] } }, -{ "type": "Feature", "properties": { "id": 503689, "name": "Corona Av/93 St", "direction": "E", "lat": 40.74237, "lon": -73.87151, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.87151, 40.74237 ] } }, -{ "type": "Feature", "properties": { "id": 503690, "name": "Grand Av/47 St", "direction": "E", "lat": 40.716778, "lon": -73.92138, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.92138, 40.716778 ] } }, -{ "type": "Feature", "properties": { "id": 503691, "name": "Atlantic Av/80 St", "direction": "E", "lat": 40.684586, "lon": -73.86088, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86088, 40.684586 ] } }, -{ "type": "Feature", "properties": { "id": 503696, "name": "North Boundary Rd/Korean Airline", "direction": "NE", "lat": 40.661633, "lon": -73.78984, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.78984, 40.661633 ] } }, -{ "type": "Feature", "properties": { "id": 503697, "name": "North Boundary Rd/Federal Express", "direction": "E", "lat": 40.662903, "lon": -73.78488, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.78488, 40.662903 ] } }, -{ "type": "Feature", "properties": { "id": 503698, "name": "North Boundary Rd/North Hangar Rd", "direction": "E", "lat": 40.66037, "lon": -73.77869, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.77869, 40.66037 ] } }, -{ "type": "Feature", "properties": { "id": 503700, "name": "North Boundary Rd/Halmar Co", "direction": "W", "lat": 40.660667, "lon": -73.77869, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.77869, 40.660667 ] } }, -{ "type": "Feature", "properties": { "id": 503701, "name": "North Boundary Rd/Federal Express", "direction": "W", "lat": 40.66268, "lon": -73.783264, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.783264, 40.66268 ] } }, -{ "type": "Feature", "properties": { "id": 503702, "name": "North Boundary Rd/Korean Airline", "direction": "SW", "lat": 40.66164, "lon": -73.79013, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.79013, 40.66164 ] } }, -{ "type": "Feature", "properties": { "id": 503705, "name": "148 St/South Cargo Rd", "direction": "SE", "lat": 40.654762, "lon": -73.79128, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.79128, 40.654762 ] } }, -{ "type": "Feature", "properties": { "id": 503707, "name": "Metropolitan Av/Starr St", "direction": "E", "lat": 40.71335, "lon": -73.91431, "routes": "Q54, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91431, 40.71335 ] } }, -{ "type": "Feature", "properties": { "id": 503718, "name": "Jamaica Av/Sutphin Blvd", "direction": "W", "lat": 40.701794, "lon": -73.8078, "routes": "Q31, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.8078, 40.701794 ] } }, -{ "type": "Feature", "properties": { "id": 503719, "name": "Atlantic Av/82 Pl", "direction": "E", "lat": 40.68521, "lon": -73.85867, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.85867, 40.68521 ] } }, -{ "type": "Feature", "properties": { "id": 503720, "name": "Corporal Kennedy St/26 Av", "direction": "NW", "lat": 40.776978, "lon": -73.78285, "routes": "Q28, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.78285, 40.776978 ] } }, -{ "type": "Feature", "properties": { "id": 503721, "name": "Corporal Kennedy St/26 Av", "direction": "", "lat": 40.776752, "lon": -73.78295, "routes": "QM20, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78295, 40.776752 ] } }, -{ "type": "Feature", "properties": { "id": 503723, "name": "Bell Blvd/35 Av", "direction": "NW", "lat": 40.768875, "lon": -73.773636, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.773636, 40.768875 ] } }, -{ "type": "Feature", "properties": { "id": 503725, "name": "Metropolitan Av/Rentar Plaza", "direction": "E", "lat": 40.712276, "lon": -73.89124, "routes": "Q54, Q38, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89124, 40.712276 ] } }, -{ "type": "Feature", "properties": { "id": 503727, "name": "Jamaica Av/147 Pl", "direction": "E", "lat": 40.701714, "lon": -73.80703, "routes": "Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.80703, 40.701714 ] } }, -{ "type": "Feature", "properties": { "id": 503730, "name": "Francis Lewis Blvd/Whitehall Terr", "direction": "NW", "lat": 40.722088, "lon": -73.76017, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.76017, 40.722088 ] } }, -{ "type": "Feature", "properties": { "id": 503731, "name": "Francis Lewis Blvd/Epsom Course", "direction": "SE", "lat": 40.724396, "lon": -73.76451, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.76451, 40.724396 ] } }, -{ "type": "Feature", "properties": { "id": 503734, "name": "Grand Av/54 St", "direction": "E", "lat": 40.718452, "lon": -73.91528, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.91528, 40.718452 ] } }, -{ "type": "Feature", "properties": { "id": 503739, "name": "Grand Av/58 Av", "direction": "E", "lat": 40.721287, "lon": -73.90586, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.90586, 40.721287 ] } }, -{ "type": "Feature", "properties": { "id": 503740, "name": "Grand Av/59 St", "direction": "E", "lat": 40.720604, "lon": -73.90772, "routes": "Q59, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90772, 40.720604 ] } }, -{ "type": "Feature", "properties": { "id": 503741, "name": "Grand Av/59 St", "direction": "W", "lat": 40.72041, "lon": -73.908615, "routes": "Q59, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.908615, 40.72041 ] } }, -{ "type": "Feature", "properties": { "id": 503742, "name": "Grand Av/61 St", "direction": "W", "lat": 40.72194, "lon": -73.90431, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.90431, 40.72194 ] } }, -{ "type": "Feature", "properties": { "id": 503743, "name": "Grand Av/64 St", "direction": "E", "lat": 40.72272, "lon": -73.90182, "routes": "Q59, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.90182, 40.72272 ] } }, -{ "type": "Feature", "properties": { "id": 503747, "name": "Grand Av/Maspeth Av", "direction": "W", "lat": 40.72266, "lon": -73.90229, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.90229, 40.72266 ] } }, -{ "type": "Feature", "properties": { "id": 503748, "name": "Grand Av/Page Pl", "direction": "E", "lat": 40.717678, "lon": -73.918144, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.918144, 40.717678 ] } }, -{ "type": "Feature", "properties": { "id": 503749, "name": "Grand Av/Page Pl", "direction": "W", "lat": 40.71767, "lon": -73.91852, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.91852, 40.71767 ] } }, -{ "type": "Feature", "properties": { "id": 503750, "name": "Grand Av/Rust St", "direction": "E", "lat": 40.71966, "lon": -73.91089, "routes": "Q59, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91089, 40.71966 ] } }, -{ "type": "Feature", "properties": { "id": 503751, "name": "Grand Av/Rust St", "direction": "W", "lat": 40.7197, "lon": -73.911224, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.911224, 40.7197 ] } }, -{ "type": "Feature", "properties": { "id": 503753, "name": "Braddock Av/Cross Island Pkwy", "direction": "SE", "lat": 40.725655, "lon": -73.725174, "routes": "Q1, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.725174, 40.725655 ] } }, -{ "type": "Feature", "properties": { "id": 503756, "name": "Farmers Blvd/121 Av", "direction": "N", "lat": 40.685417, "lon": -73.76073, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76073, 40.685417 ] } }, -{ "type": "Feature", "properties": { "id": 503757, "name": "Farmers Blvd/120 Av", "direction": "NW", "lat": 40.68678, "lon": -73.76119, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76119, 40.68678 ] } }, -{ "type": "Feature", "properties": { "id": 503758, "name": "Farmers Blvd/119 Av", "direction": "N", "lat": 40.688576, "lon": -73.7619, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.7619, 40.688576 ] } }, -{ "type": "Feature", "properties": { "id": 503759, "name": "Farmers Blvd/118 Av", "direction": "N", "lat": 40.690544, "lon": -73.762146, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.762146, 40.690544 ] } }, -{ "type": "Feature", "properties": { "id": 503760, "name": "Farmers Blvd/116 Av", "direction": "N", "lat": 40.69387, "lon": -73.76217, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76217, 40.69387 ] } }, -{ "type": "Feature", "properties": { "id": 503761, "name": "Farmers Blvd/115 Rd", "direction": "N", "lat": 40.69552, "lon": -73.76152, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76152, 40.69552 ] } }, -{ "type": "Feature", "properties": { "id": 503763, "name": "Farmers Blvd/Turin Dr", "direction": "S", "lat": 40.69278, "lon": -73.76254, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76254, 40.69278 ] } }, -{ "type": "Feature", "properties": { "id": 503764, "name": "Farmers Blvd/Nellis St", "direction": "S", "lat": 40.683678, "lon": -73.76056, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76056, 40.683678 ] } }, -{ "type": "Feature", "properties": { "id": 503768, "name": "Linden Blvd/Everitt Pl", "direction": "E", "lat": 40.69179, "lon": -73.76399, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.76399, 40.69179 ] } }, -{ "type": "Feature", "properties": { "id": 503770, "name": "Farmers Blvd/Quencer Rd", "direction": "S", "lat": 40.694862, "lon": -73.76198, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76198, 40.694862 ] } }, -{ "type": "Feature", "properties": { "id": 503771, "name": "Farmers Blvd/114 Rd", "direction": "S", "lat": 40.697025, "lon": -73.762, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.762, 40.697025 ] } }, -{ "type": "Feature", "properties": { "id": 503772, "name": "Farmers Blvd/114 Dr", "direction": "N", "lat": 40.696976, "lon": -73.76177, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76177, 40.696976 ] } }, -{ "type": "Feature", "properties": { "id": 503773, "name": "165 St Terminal/Bay 3", "direction": "W", "lat": 40.70794, "lon": -73.79567, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79567, 40.70794 ] } }, -{ "type": "Feature", "properties": { "id": 503774, "name": "North Boundary Rd/China Cargo Airline", "direction": "NW", "lat": 40.659405, "lon": -73.775154, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.775154, 40.659405 ] } }, -{ "type": "Feature", "properties": { "id": 503778, "name": "Main St/63 Av", "direction": "S", "lat": 40.736973, "lon": -73.8252, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.8252, 40.736973 ] } }, -{ "type": "Feature", "properties": { "id": 503779, "name": "Farmers Blvd/145 Dr", "direction": "NE", "lat": 40.664368, "lon": -73.768265, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.768265, 40.664368 ] } }, -{ "type": "Feature", "properties": { "id": 503784, "name": "Farmers Blvd/113 Rd", "direction": "NW", "lat": 40.699097, "lon": -73.7628, "routes": "Q3, X64, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.7628, 40.699097 ] } }, -{ "type": "Feature", "properties": { "id": 503787, "name": "Francis Lewis Blvd/Grand Central Pkwy", "direction": "NW", "lat": 40.725403, "lon": -73.765366, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.765366, 40.725403 ] } }, -{ "type": "Feature", "properties": { "id": 503789, "name": "153 St /Jamaica Av", "direction": "NW", "lat": 40.703, "lon": -73.80228, "routes": "Q114, Q111, Q110, Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.80228, 40.703 ] } }, -{ "type": "Feature", "properties": { "id": 503791, "name": "Linden Blvd/179 St", "direction": "E", "lat": 40.69233, "lon": -73.76773, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.76773, 40.69233 ] } }, -{ "type": "Feature", "properties": { "id": 503792, "name": "Linden Blvd/79 St", "direction": "W", "lat": 40.670593, "lon": -73.85615, "routes": "BM5, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.85615, 40.670593 ] } }, -{ "type": "Feature", "properties": { "id": 503793, "name": "130 Pl/Bergen Rd", "direction": "NE", "lat": 40.65988, "lon": -73.810616, "routes": "Q3, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.810616, 40.65988 ] } }, -{ "type": "Feature", "properties": { "id": 503802, "name": "130 Pl/Bergen Rd", "direction": "S", "lat": 40.659138, "lon": -73.810844, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.810844, 40.659138 ] } }, -{ "type": "Feature", "properties": { "id": 503803, "name": "130 Pl/Hangar Rd Stop 20a", "direction": "S", "lat": 40.657047, "lon": -73.810616, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.810616, 40.657047 ] } }, -{ "type": "Feature", "properties": { "id": 503804, "name": "130 Pl/East Hangar Rd Stop 18", "direction": "SE", "lat": 40.654697, "lon": -73.80927, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.80927, 40.654697 ] } }, -{ "type": "Feature", "properties": { "id": 503805, "name": "South Van Wyck Expwy Service Rd/Building 14", "direction": "SE", "lat": 40.65251, "lon": -73.80696, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.80696, 40.65251 ] } }, -{ "type": "Feature", "properties": { "id": 503806, "name": "South Van Wyck Expwy Service Rd/Building 23", "direction": "SE", "lat": 40.64943, "lon": -73.80476, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.80476, 40.64943 ] } }, -{ "type": "Feature", "properties": { "id": 503825, "name": "Jamaica Av/138 St", "direction": "E", "lat": 40.70245, "lon": -73.81507, "routes": "Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.81507, 40.70245 ] } }, -{ "type": "Feature", "properties": { "id": 503827, "name": "Hook Creek Blvd/North Conduit Av", "direction": "N", "lat": 40.666107, "lon": -73.72973, "routes": "X63, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72973, 40.666107 ] } }, -{ "type": "Feature", "properties": { "id": 503828, "name": "213 Pl/Bay Terrace Shopping Center", "direction": "SE", "lat": 40.780907, "lon": -73.77719, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.77719, 40.780907 ] } }, -{ "type": "Feature", "properties": { "id": 503831, "name": "Liberty Av/184 St", "direction": "E", "lat": 40.704716, "lon": -73.77271, "routes": "Q83, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.77271, 40.704716 ] } }, -{ "type": "Feature", "properties": { "id": 503832, "name": "53 Av/48 St", "direction": "SE", "lat": 40.731514, "lon": -73.91937, "routes": "B24, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.91937, 40.731514 ] } }, -{ "type": "Feature", "properties": { "id": 503833, "name": "Atlantic Av/127 St", "direction": "W", "lat": 40.69576, "lon": -73.821724, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.821724, 40.69576 ] } }, -{ "type": "Feature", "properties": { "id": 503834, "name": "Metropolitan Av/Flushing Av", "direction": "W", "lat": 40.71357, "lon": -73.91612, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.91612, 40.71357 ] } }, -{ "type": "Feature", "properties": { "id": 503839, "name": "Hollis Av/217 St", "direction": "W", "lat": 40.710724, "lon": -73.74071, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74071, 40.710724 ] } }, -{ "type": "Feature", "properties": { "id": 503840, "name": "South Conduit Av/Francis Lewis Blvd", "direction": "E", "lat": 40.665264, "lon": -73.73468, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73468, 40.665264 ] } }, -{ "type": "Feature", "properties": { "id": 503845, "name": "Roosevelt Av/Main St", "direction": "E", "lat": 40.759323, "lon": -73.83071, "routes": "Q66, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.83071, 40.759323 ] } }, -{ "type": "Feature", "properties": { "id": 503848, "name": "Lga Internal Rdwy/Terminal C", "direction": "NW", "lat": 40.77033, "lon": -73.86444, "routes": "M60+, Q70+, Q72, Q48, Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86444, 40.77033 ] } }, -{ "type": "Feature", "properties": { "id": 503853, "name": "Lga/Terminal A - Marine Air Terminal", "direction": "S", "lat": 40.772915, "lon": -73.88613, "routes": "Q47, M60+, Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.88613, 40.772915 ] } }, -{ "type": "Feature", "properties": { "id": 503854, "name": "Marine Terminal Rd/Fiorello Ln", "direction": "S", "lat": 40.770775, "lon": -73.885315, "routes": "Q47, Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.885315, 40.770775 ] } }, -{ "type": "Feature", "properties": { "id": 503855, "name": "Ditmars Blvd/81 St", "direction": "S", "lat": 40.76728, "lon": -73.888, "routes": "Q47, Q48, Q69, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.888, 40.76728 ] } }, -{ "type": "Feature", "properties": { "id": 503856, "name": "23 Av/94 St", "direction": "E", "lat": 40.76801, "lon": -73.8764, "routes": "Q48, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.8764, 40.76801 ] } }, -{ "type": "Feature", "properties": { "id": 503857, "name": "23 Av/97 St", "direction": "E", "lat": 40.76832, "lon": -73.87349, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.87349, 40.76832 ] } }, -{ "type": "Feature", "properties": { "id": 503862, "name": "108 St/Horace Harding Expwy", "direction": "NW", "lat": 40.737984, "lon": -73.85217, "routes": "Q23, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85217, 40.737984 ] } }, -{ "type": "Feature", "properties": { "id": 503863, "name": "108 St/Waldron St", "direction": "", "lat": 40.73911, "lon": -73.85272, "routes": "Q23, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85272, 40.73911 ] } }, -{ "type": "Feature", "properties": { "id": 503864, "name": "108 St/Van Cleef St", "direction": "NW", "lat": 40.74092, "lon": -73.85371, "routes": "Q23, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.85371, 40.74092 ] } }, -{ "type": "Feature", "properties": { "id": 503869, "name": "Astoria Blvd/74 St", "direction": "W", "lat": 40.76688, "lon": -73.89512, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.89512, 40.76688 ] } }, -{ "type": "Feature", "properties": { "id": 503870, "name": "Astoria Blvd/Steinway St", "direction": "W", "lat": 40.769405, "lon": -73.90975, "routes": "M60+, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.90975, 40.769405 ] } }, -{ "type": "Feature", "properties": { "id": 503871, "name": "Astoria Blvd/Steinway St", "direction": "E", "lat": 40.768745, "lon": -73.91051, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.91051, 40.768745 ] } }, -{ "type": "Feature", "properties": { "id": 503872, "name": "Astoria Blvd/73 St Pedestrian Overpass", "direction": "E", "lat": 40.7664, "lon": -73.89627, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.89627, 40.7664 ] } }, -{ "type": "Feature", "properties": { "id": 503874, "name": "82 St/Astoria Blvd", "direction": "N", "lat": 40.76527, "lon": -73.88705, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88705, 40.76527 ] } }, -{ "type": "Feature", "properties": { "id": 503876, "name": "23 Av/87 St", "direction": "E", "lat": 40.76728, "lon": -73.88237, "routes": "Q33, Q48, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.88237, 40.76728 ] } }, -{ "type": "Feature", "properties": { "id": 503880, "name": "Roosevelt Av/126 St", "direction": "E", "lat": 40.755245, "lon": -73.843376, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.843376, 40.755245 ] } }, -{ "type": "Feature", "properties": { "id": 503882, "name": "Metropolitan Av/Forest Park Dr", "direction": "E", "lat": 40.70846, "lon": -73.838585, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.838585, 40.70846 ] } }, -{ "type": "Feature", "properties": { "id": 503883, "name": "Woodward Av/Stanhope St", "direction": "NW", "lat": 40.70901, "lon": -73.91259, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91259, 40.70901 ] } }, -{ "type": "Feature", "properties": { "id": 503884, "name": "Starr St/Woodward Av", "direction": "NE", "lat": 40.711617, "lon": -73.91646, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91646, 40.711617 ] } }, -{ "type": "Feature", "properties": { "id": 503885, "name": "Starr St/Metropolitan Av", "direction": "NE", "lat": 40.71334, "lon": -73.91469, "routes": "B38, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91469, 40.71334 ] } }, -{ "type": "Feature", "properties": { "id": 503890, "name": "Farmers Blvd/Linden Blvd", "direction": "N", "lat": 40.69199, "lon": -73.762314, "routes": "Q3, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.762314, 40.69199 ] } }, -{ "type": "Feature", "properties": { "id": 503894, "name": "108 St/32 Av", "direction": "N", "lat": 40.759895, "lon": -73.86128, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86128, 40.759895 ] } }, -{ "type": "Feature", "properties": { "id": 503898, "name": "Roosevelt Av/Shea Parking Lot", "direction": "E", "lat": 40.75381, "lon": -73.8482, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.8482, 40.75381 ] } }, -{ "type": "Feature", "properties": { "id": 503900, "name": "Roosevelt Av/College Point Blvd", "direction": "NE", "lat": 40.7582, "lon": -73.83382, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.83382, 40.7582 ] } }, -{ "type": "Feature", "properties": { "id": 503901, "name": "Roosevelt Av/Willets Point Blvd", "direction": "W", "lat": 40.755276, "lon": -73.84364, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.84364, 40.755276 ] } }, -{ "type": "Feature", "properties": { "id": 503902, "name": "Roosevelt Av/Grand Central Pkwy", "direction": "W", "lat": 40.75338, "lon": -73.84998, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.84998, 40.75338 ] } }, -{ "type": "Feature", "properties": { "id": 503907, "name": "Grandview Av/Metropolitan Av", "direction": "SE", "lat": 40.713078, "lon": -73.91278, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91278, 40.713078 ] } }, -{ "type": "Feature", "properties": { "id": 503908, "name": "Stanhope St/Grandview Av", "direction": "SW", "lat": 40.71085, "lon": -73.91028, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91028, 40.71085 ] } }, -{ "type": "Feature", "properties": { "id": 503911, "name": "Murdock Av/Farmers Blvd", "direction": "E", "lat": 40.698055, "lon": -73.761894, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.761894, 40.698055 ] } }, -{ "type": "Feature", "properties": { "id": 503912, "name": "South Conduit Av/140 Av", "direction": "E", "lat": 40.665184, "lon": -73.73668, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73668, 40.665184 ] } }, -{ "type": "Feature", "properties": { "id": 503913, "name": "Farmers Blvd/Linden Blvd", "direction": "S", "lat": 40.691425, "lon": -73.76244, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76244, 40.691425 ] } }, -{ "type": "Feature", "properties": { "id": 503914, "name": "Hillside Av/240 St", "direction": "W", "lat": 40.733543, "lon": -73.7263, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.7263, 40.733543 ] } }, -{ "type": "Feature", "properties": { "id": 503917, "name": "59 Av/92 St", "direction": "E", "lat": 40.734074, "lon": -73.869316, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.869316, 40.734074 ] } }, -{ "type": "Feature", "properties": { "id": 503919, "name": "Cross Island Pkwy/154 St", "direction": "E", "lat": 40.78592, "lon": -73.80771, "routes": "Q76, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80771, 40.78592 ] } }, -{ "type": "Feature", "properties": { "id": 503920, "name": "Corporal Kennedy St/33 Av", "direction": "NW", "lat": 40.77092, "lon": -73.779755, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.779755, 40.77092 ] } }, -{ "type": "Feature", "properties": { "id": 503921, "name": "32 Av/Corporal Kennedy St", "direction": "E", "lat": 40.77219, "lon": -73.7807, "routes": "Q28, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.7807, 40.77219 ] } }, -{ "type": "Feature", "properties": { "id": 503922, "name": "Murdock Av/196 St", "direction": "W", "lat": 40.699146, "lon": -73.758156, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.758156, 40.699146 ] } }, -{ "type": "Feature", "properties": { "id": 503927, "name": "41 Av/150 St", "direction": "W", "lat": 40.76251, "lon": -73.814316, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.814316, 40.76251 ] } }, -{ "type": "Feature", "properties": { "id": 503932, "name": "Jamaica Av/Parsons Blvd", "direction": "W", "lat": 40.703255, "lon": -73.80066, "routes": "Q31, Q54, Q24, Q56, Q110, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.80066, 40.703255 ] } }, -{ "type": "Feature", "properties": { "id": 503933, "name": "Archer Av/Guy R Brewer Blvd", "direction": "E", "lat": 40.70336, "lon": -73.79561, "routes": "Q20A, Q20B, Q24, Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79561, 40.70336 ] } }, -{ "type": "Feature", "properties": { "id": 503936, "name": "Archer Av/165 St", "direction": "NE", "lat": 40.704132, "lon": -73.79342, "routes": "Q85, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.79342, 40.704132 ] } }, -{ "type": "Feature", "properties": { "id": 503937, "name": "Archer Av/Merrick Blvd", "direction": "NE", "lat": 40.7043, "lon": -73.79293, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.79293, 40.7043 ] } }, -{ "type": "Feature", "properties": { "id": 503938, "name": "Jamaica Av/Guy R Brewer Blvd", "direction": "E", "lat": 40.704502, "lon": -73.79713, "routes": "Q56, Q54, Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.79713, 40.704502 ] } }, -{ "type": "Feature", "properties": { "id": 503950, "name": "Archer Av/165 St", "direction": "NE", "lat": 40.703854, "lon": -73.79399, "routes": "Q84, Q42, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.79399, 40.703854 ] } }, -{ "type": "Feature", "properties": { "id": 503953, "name": "Jamaica Av/162 St", "direction": "SW", "lat": 40.704243, "lon": -73.79818, "routes": "Q110, Q31, Q30, Q24, Q56, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.79818, 40.704243 ] } }, -{ "type": "Feature", "properties": { "id": 503954, "name": "Sunrise Hwy/Francis Lewis Blvd", "direction": "W", "lat": 40.66568, "lon": -73.73623, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.73623, 40.66568 ] } }, -{ "type": "Feature", "properties": { "id": 503956, "name": "College Point Blvd/Booth Memorial Av", "direction": "N", "lat": 40.748295, "lon": -73.83289, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83289, 40.748295 ] } }, -{ "type": "Feature", "properties": { "id": 503957, "name": "148 Av/259 St", "direction": "E", "lat": 40.654953, "lon": -73.72926, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.72926, 40.654953 ] } }, -{ "type": "Feature", "properties": { "id": 503959, "name": "Sunrise Hwy/Hook Creek Blvd", "direction": "W", "lat": 40.665646, "lon": -73.73032, "routes": "Q85, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.73032, 40.665646 ] } }, -{ "type": "Feature", "properties": { "id": 503960, "name": "Astoria Blvd/33 St", "direction": "W", "lat": 40.77034, "lon": -73.91554, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.91554, 40.77034 ] } }, -{ "type": "Feature", "properties": { "id": 503961, "name": "Main St/Horace Harding Expwy North", "direction": "S", "lat": 40.74281, "lon": -73.825584, "routes": "Q20B, Q44+, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.825584, 40.74281 ] } }, -{ "type": "Feature", "properties": { "id": 503962, "name": "11 St/Jackson Av", "direction": "S", "lat": 40.74329, "lon": -73.95132, "routes": "B62, B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95132, 40.74329 ] } }, -{ "type": "Feature", "properties": { "id": 503963, "name": "Jackson Av/Pulaski Br", "direction": "NE", "lat": 40.743668, "lon": -73.95028, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.95028, 40.743668 ] } }, -{ "type": "Feature", "properties": { "id": 503964, "name": "Merrick Blvd/Archer Av", "direction": "SE", "lat": 40.704906, "lon": -73.793304, "routes": "Q20A, Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.793304, 40.704906 ] } }, -{ "type": "Feature", "properties": { "id": 503965, "name": "Hillside Av/210 St", "direction": "NE", "lat": 40.723225, "lon": -73.75621, "routes": "Q1, X68, Q43, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.75621, 40.723225 ] } }, -{ "type": "Feature", "properties": { "id": 503967, "name": "Merrick Blvd/104 Av", "direction": "SE", "lat": 40.70155, "lon": -73.79044, "routes": "Q84, Q85, Q5, Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.79044, 40.70155 ] } }, -{ "type": "Feature", "properties": { "id": 503968, "name": "Linden Blvd/Nashville Blvd", "direction": "W", "lat": 40.69646, "lon": -73.744896, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.744896, 40.69646 ] } }, -{ "type": "Feature", "properties": { "id": 503971, "name": "Springfield Blvd/143 Av", "direction": "S", "lat": 40.668434, "lon": -73.75684, "routes": "Q85, Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75684, 40.668434 ] } }, -{ "type": "Feature", "properties": { "id": 503974, "name": "Jericho Tpke/246 St", "direction": "E", "lat": 40.724808, "lon": -73.72267, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.72267, 40.724808 ] } }, -{ "type": "Feature", "properties": { "id": 503975, "name": "168 St/Hillside Av", "direction": "NW", "lat": 40.709774, "lon": -73.794556, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.794556, 40.709774 ] } }, -{ "type": "Feature", "properties": { "id": 503976, "name": "Archer Av/168 St", "direction": "E", "lat": 40.704735, "lon": -73.79174, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79174, 40.704735 ] } }, -{ "type": "Feature", "properties": { "id": 503978, "name": "Hillside Av/199 St", "direction": "NE", "lat": 40.719173, "lon": -73.76371, "routes": "Q1, Q76, Q77, Q36, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.76371, 40.719173 ] } }, -{ "type": "Feature", "properties": { "id": 503979, "name": "150 St/Roosevelt Av", "direction": "SE", "lat": 40.76337, "lon": -73.81434, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81434, 40.76337 ] } }, -{ "type": "Feature", "properties": { "id": 503980, "name": "Archer Av/165 St", "direction": "W", "lat": 40.703598, "lon": -73.79517, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.79517, 40.703598 ] } }, -{ "type": "Feature", "properties": { "id": 503981, "name": "29 Av/167 St", "direction": "E", "lat": 40.770786, "lon": -73.79796, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.79796, 40.770786 ] } }, -{ "type": "Feature", "properties": { "id": 503982, "name": "College Point Blvd/Fowler Av", "direction": "S", "lat": 40.75201, "lon": -73.83231, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83231, 40.75201 ] } }, -{ "type": "Feature", "properties": { "id": 503983, "name": "73 Av/Clearview Expwy", "direction": "SW", "lat": 40.73741, "lon": -73.76937, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.76937, 40.73741 ] } }, -{ "type": "Feature", "properties": { "id": 503984, "name": "Hillside Av/168 Pl", "direction": "NE", "lat": 40.710262, "lon": -73.79394, "routes": "Q36, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.79394, 40.710262 ] } }, -{ "type": "Feature", "properties": { "id": 503985, "name": "Hollis Av/198 St", "direction": "E", "lat": 40.706287, "lon": -73.75909, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.75909, 40.706287 ] } }, -{ "type": "Feature", "properties": { "id": 503986, "name": "Hollis Av/201 St", "direction": "E", "lat": 40.70623, "lon": -73.75604, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.75604, 40.70623 ] } }, -{ "type": "Feature", "properties": { "id": 503989, "name": "Ditmars Blvd/24 Rd", "direction": "NW", "lat": 40.767544, "lon": -73.86606, "routes": "Q23, Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.86606, 40.767544 ] } }, -{ "type": "Feature", "properties": { "id": 503991, "name": "48 St/Brooklyn-Queens Expwy", "direction": "N", "lat": 40.735767, "lon": -73.918236, "routes": "B24, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.918236, 40.735767 ] } }, -{ "type": "Feature", "properties": { "id": 503993, "name": "Greenpoint Av/44 St", "direction": "W", "lat": 40.7415, "lon": -73.9208, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.9208, 40.7415 ] } }, -{ "type": "Feature", "properties": { "id": 503996, "name": "Van Wyck North Service Rd/Stop 11 Building 23", "direction": "NW", "lat": 40.649784, "lon": -73.80375, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.80375, 40.649784 ] } }, -{ "type": "Feature", "properties": { "id": 503997, "name": "Van Wyck North Service Rd/Stop 13 Building 21", "direction": "NW", "lat": 40.65293, "lon": -73.80592, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.80592, 40.65293 ] } }, -{ "type": "Feature", "properties": { "id": 503998, "name": "Van Wyck North Service Rd/Stop 17 American Freight", "direction": "NE", "lat": 40.657513, "lon": -73.8054, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.8054, 40.657513 ] } }, -{ "type": "Feature", "properties": { "id": 503999, "name": "Van Wyck South Service Rd/Building 90", "direction": "SE", "lat": 40.644894, "lon": -73.79972, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.79972, 40.644894 ] } }, -{ "type": "Feature", "properties": { "id": 504001, "name": "Jamaica Av/Sutphin Blvd", "direction": "W", "lat": 40.701836, "lon": -73.80849, "routes": "Q30, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.80849, 40.701836 ] } }, -{ "type": "Feature", "properties": { "id": 504004, "name": "Archer Av/149 St", "direction": "E", "lat": 40.701237, "lon": -73.80484, "routes": "Q30, Q20B, Q24, Q31, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.80484, 40.701237 ] } }, -{ "type": "Feature", "properties": { "id": 504007, "name": "Hoyt Av/31 St", "direction": "NW", "lat": 40.77107, "lon": -73.917564, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.917564, 40.77107 ] } }, -{ "type": "Feature", "properties": { "id": 504008, "name": "Liberty Av/Merrick Blvd", "direction": "W", "lat": 40.70237, "lon": -73.79169, "routes": "Q83, Q42, Q85, X64, Q4, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.79169, 40.70237 ] } }, -{ "type": "Feature", "properties": { "id": 504009, "name": "Farmers Blvd/105 Av", "direction": "N", "lat": 40.705803, "lon": -73.767044, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.767044, 40.705803 ] } }, -{ "type": "Feature", "properties": { "id": 504015, "name": "148 St/South Cargo Rd", "direction": "NW", "lat": 40.654606, "lon": -73.79097, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.79097, 40.654606 ] } }, -{ "type": "Feature", "properties": { "id": 504016, "name": "148 St/150 Av", "direction": "NE", "lat": 40.661076, "lon": -73.79263, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.79263, 40.661076 ] } }, -{ "type": "Feature", "properties": { "id": 504019, "name": "148 St/Center Cargo Rd", "direction": "S", "lat": 40.657852, "lon": -73.7937, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.7937, 40.657852 ] } }, -{ "type": "Feature", "properties": { "id": 504020, "name": "College Point Blvd/Avery Av", "direction": "N", "lat": 40.752274, "lon": -73.83237, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.83237, 40.752274 ] } }, -{ "type": "Feature", "properties": { "id": 504023, "name": "94 St/23 Av", "direction": "N", "lat": 40.768482, "lon": -73.87621, "routes": "M60+, Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87621, 40.768482 ] } }, -{ "type": "Feature", "properties": { "id": 504024, "name": "94 St/Ditmars Blvd", "direction": "N", "lat": 40.770264, "lon": -73.87589, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87589, 40.770264 ] } }, -{ "type": "Feature", "properties": { "id": 504027, "name": "Hillside Av/181 St", "direction": "E", "lat": 40.71319, "lon": -73.78139, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.78139, 40.71319 ] } }, -{ "type": "Feature", "properties": { "id": 504029, "name": "Hollis Court Blvd/Francis Lewis Blvd", "direction": "NW", "lat": 40.74502, "lon": -73.77751, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.77751, 40.74502 ] } }, -{ "type": "Feature", "properties": { "id": 504031, "name": "Horace Harding Expwy/175 Pl", "direction": "W", "lat": 40.739258, "lon": -73.7938, "routes": "Q17, Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.7938, 40.739258 ] } }, -{ "type": "Feature", "properties": { "id": 504032, "name": "150 St/25 Av", "direction": "S", "lat": 40.775574, "lon": -73.815056, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.815056, 40.775574 ] } }, -{ "type": "Feature", "properties": { "id": 504034, "name": "46 Av/163 St", "direction": "W", "lat": 40.753777, "lon": -73.80436, "routes": "Q27, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.80436, 40.753777 ] } }, -{ "type": "Feature", "properties": { "id": 504068, "name": "165 St Terminal/Bay 8", "direction": "W", "lat": 40.70796, "lon": -73.79561, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.79561, 40.70796 ] } }, -{ "type": "Feature", "properties": { "id": 504069, "name": "Farmers Blvd/120 Av", "direction": "S", "lat": 40.686085, "lon": -73.76115, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76115, 40.686085 ] } }, -{ "type": "Feature", "properties": { "id": 504072, "name": "Grand Av/58 Av", "direction": "W", "lat": 40.721058, "lon": -73.90672, "routes": "Q59, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90672, 40.721058 ] } }, -{ "type": "Feature", "properties": { "id": 504079, "name": "Jackson Av/Thompson Av", "direction": "E", "lat": 40.74668, "lon": -73.94336, "routes": "Q96" }, "geometry": { "type": "Point", "coordinates": [ -73.94336, 40.74668 ] } }, -{ "type": "Feature", "properties": { "id": 504080, "name": "Jamaica Av/Metropolitan Av", "direction": "W", "lat": 40.702457, "lon": -73.81799, "routes": "Q56, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.81799, 40.702457 ] } }, -{ "type": "Feature", "properties": { "id": 504081, "name": "Kissena Blvd/Holly Av", "direction": "SE", "lat": 40.750904, "lon": -73.81954, "routes": "Q34, Q25, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.81954, 40.750904 ] } }, -{ "type": "Feature", "properties": { "id": 504090, "name": "Roosevelt Av/82 St", "direction": "W", "lat": 40.747635, "lon": -73.88425, "routes": "Q33, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.88425, 40.747635 ] } }, -{ "type": "Feature", "properties": { "id": 504091, "name": "Sunrise Hwy/Opp 24502 South Conduit Av", "direction": "W", "lat": 40.665665, "lon": -73.7334, "routes": "Q5, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.7334, 40.665665 ] } }, -{ "type": "Feature", "properties": { "id": 504094, "name": "Cypress Hill St/Cypress Av", "direction": "NW", "lat": 40.69257, "lon": -73.882805, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.882805, 40.69257 ] } }, -{ "type": "Feature", "properties": { "id": 504095, "name": "Cypress Hill St/Machpelah Cemetery", "direction": "NW", "lat": 40.693703, "lon": -73.88417, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.88417, 40.693703 ] } }, -{ "type": "Feature", "properties": { "id": 504096, "name": "Cypress Hill St/Mount Neboh Cemetery", "direction": "NW", "lat": 40.69528, "lon": -73.88538, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.88538, 40.69528 ] } }, -{ "type": "Feature", "properties": { "id": 504099, "name": "Cooper Av/65 St", "direction": "W", "lat": 40.698624, "lon": -73.889175, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.889175, 40.698624 ] } }, -{ "type": "Feature", "properties": { "id": 504100, "name": "Cooper Av/64 Pl", "direction": "W", "lat": 40.698208, "lon": -73.891014, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.891014, 40.698208 ] } }, -{ "type": "Feature", "properties": { "id": 504101, "name": "Cooper Av/62 St", "direction": "W", "lat": 40.6978, "lon": -73.89279, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.89279, 40.6978 ] } }, -{ "type": "Feature", "properties": { "id": 504102, "name": "Fresh Pond Rd/Myrtle Av", "direction": "N", "lat": 40.70122, "lon": -73.89463, "routes": "B13, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89463, 40.70122 ] } }, -{ "type": "Feature", "properties": { "id": 504104, "name": "Fresh Pond Rd/70 Av", "direction": "N", "lat": 40.702877, "lon": -73.89522, "routes": "B20, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.89522, 40.702877 ] } }, -{ "type": "Feature", "properties": { "id": 504105, "name": "Fresh Pond Rd/Catalpa Av", "direction": "NW", "lat": 40.704258, "lon": -73.895744, "routes": "QM34, B13, B20, QM25, QM24" }, "geometry": { "type": "Point", "coordinates": [ -73.895744, 40.704258 ] } }, -{ "type": "Feature", "properties": { "id": 504106, "name": "Fresh Pond Rd/68 Av", "direction": "NW", "lat": 40.705544, "lon": -73.89638, "routes": "B13, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89638, 40.705544 ] } }, -{ "type": "Feature", "properties": { "id": 504107, "name": "Putnam Av/Fresh Pond Rd", "direction": "W", "lat": 40.70643, "lon": -73.897354, "routes": "M90, B13, B20, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.897354, 40.70643 ] } }, -{ "type": "Feature", "properties": { "id": 504109, "name": "Putnam Av/Forest Av", "direction": "SW", "lat": 40.704803, "lon": -73.90206, "routes": "B13, B20, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90206, 40.704803 ] } }, -{ "type": "Feature", "properties": { "id": 504110, "name": "Forest Av/Woodbine St", "direction": "NW", "lat": 40.70673, "lon": -73.902916, "routes": "Q39, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.902916, 40.70673 ] } }, -{ "type": "Feature", "properties": { "id": 504111, "name": "Gates Av/Grandview Av", "direction": "SW", "lat": 40.707497, "lon": -73.90412, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.90412, 40.707497 ] } }, -{ "type": "Feature", "properties": { "id": 504112, "name": "Gates Av/Fairview Av", "direction": "SW", "lat": 40.706146, "lon": -73.905556, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.905556, 40.706146 ] } }, -{ "type": "Feature", "properties": { "id": 504113, "name": "Gates Av/Woodward Av", "direction": "SW", "lat": 40.705063, "lon": -73.906654, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.906654, 40.705063 ] } }, -{ "type": "Feature", "properties": { "id": 504114, "name": "Gates Av/Onderdonk Av", "direction": "SW", "lat": 40.703934, "lon": -73.907814, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.907814, 40.703934 ] } }, -{ "type": "Feature", "properties": { "id": 504115, "name": "Gates Av/Seneca Av", "direction": "SW", "lat": 40.70302, "lon": -73.908745, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.908745, 40.70302 ] } }, -{ "type": "Feature", "properties": { "id": 504116, "name": "Gates Av/Cypress Av", "direction": "SW", "lat": 40.70222, "lon": -73.90955, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.90955, 40.70222 ] } }, -{ "type": "Feature", "properties": { "id": 504118, "name": "Gates Av/Saint Nicholas Av", "direction": "SW", "lat": 40.70115, "lon": -73.910645, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.910645, 40.70115 ] } }, -{ "type": "Feature", "properties": { "id": 504119, "name": "Gates Av/Wyckoff Av", "direction": "SW", "lat": 40.70005, "lon": -73.911766, "routes": "B52, M90, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.911766, 40.70005 ] } }, -{ "type": "Feature", "properties": { "id": 504120, "name": "Gates Av/Seneca Av", "direction": "NE", "lat": 40.703465, "lon": -73.908134, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.908134, 40.703465 ] } }, -{ "type": "Feature", "properties": { "id": 504121, "name": "Gates Av/Onderdonk Av", "direction": "NE", "lat": 40.70437, "lon": -73.9072, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.9072, 40.70437 ] } }, -{ "type": "Feature", "properties": { "id": 504122, "name": "Gates Av/Woodward Av", "direction": "NE", "lat": 40.705486, "lon": -73.90606, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.90606, 40.705486 ] } }, -{ "type": "Feature", "properties": { "id": 504123, "name": "Gates Av/Fairview Av", "direction": "NE", "lat": 40.70656, "lon": -73.90497, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.90497, 40.70656 ] } }, -{ "type": "Feature", "properties": { "id": 504124, "name": "Grandview Av/Gates Av", "direction": "SE", "lat": 40.70733, "lon": -73.903755, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.903755, 40.70733 ] } }, -{ "type": "Feature", "properties": { "id": 504125, "name": "Forest Av/Woodbine St", "direction": "SE", "lat": 40.706093, "lon": -73.90268, "routes": "Q39, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.90268, 40.706093 ] } }, -{ "type": "Feature", "properties": { "id": 504126, "name": "Forest Av/Putnam Av", "direction": "S", "lat": 40.70521, "lon": -73.902214, "routes": "Q39, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.902214, 40.70521 ] } }, -{ "type": "Feature", "properties": { "id": 504127, "name": "Fresh Pond Rd/Catalpa Av", "direction": "S", "lat": 40.70364, "lon": -73.895645, "routes": "QM24, QM34, B20, B13, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.895645, 40.70364 ] } }, -{ "type": "Feature", "properties": { "id": 504129, "name": "Fresh Pond Rd/70 Av", "direction": "S", "lat": 40.70265, "lon": -73.89531, "routes": "B13, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89531, 40.70265 ] } }, -{ "type": "Feature", "properties": { "id": 504130, "name": "Fresh Pond Rd/Myrtle Av", "direction": "S", "lat": 40.70089, "lon": -73.894684, "routes": "B20, QM34, QM24, B13, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.894684, 40.70089 ] } }, -{ "type": "Feature", "properties": { "id": 504131, "name": "Cooper Av/64 St", "direction": "E", "lat": 40.697857, "lon": -73.89211, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.89211, 40.697857 ] } }, -{ "type": "Feature", "properties": { "id": 504132, "name": "Cooper Av/64 Ln", "direction": "E", "lat": 40.698273, "lon": -73.89031, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.89031, 40.698273 ] } }, -{ "type": "Feature", "properties": { "id": 504133, "name": "Cooper Av/Cypress Hill St", "direction": "E", "lat": 40.698715, "lon": -73.88835, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.88835, 40.698715 ] } }, -{ "type": "Feature", "properties": { "id": 504136, "name": "Cypress Hills St/Beth-El Cemetery", "direction": "SE", "lat": 40.695435, "lon": -73.8857, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.8857, 40.695435 ] } }, -{ "type": "Feature", "properties": { "id": 504137, "name": "Cypress Hills St/Machpelah Cemetery", "direction": "SE", "lat": 40.693626, "lon": -73.88431, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.88431, 40.693626 ] } }, -{ "type": "Feature", "properties": { "id": 504138, "name": "Cypress Hills St/Cypress Av", "direction": "SE", "lat": 40.692467, "lon": -73.882904, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.882904, 40.692467 ] } }, -{ "type": "Feature", "properties": { "id": 504155, "name": "Cypress Av/Palmetto St", "direction": "SE", "lat": 40.701454, "lon": -73.90858, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90858, 40.701454 ] } }, -{ "type": "Feature", "properties": { "id": 504170, "name": "Decatur St/Wyckoff Av", "direction": "NE", "lat": 40.694466, "lon": -73.901535, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.901535, 40.694466 ] } }, -{ "type": "Feature", "properties": { "id": 504171, "name": "Decatur St/Cypress Av", "direction": "NE", "lat": 40.696426, "lon": -73.89955, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89955, 40.696426 ] } }, -{ "type": "Feature", "properties": { "id": 504172, "name": "Decatur St/Seneca Av", "direction": "NE", "lat": 40.697323, "lon": -73.89863, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89863, 40.697323 ] } }, -{ "type": "Feature", "properties": { "id": 504173, "name": "Decatur St/Forest Av", "direction": "NE", "lat": 40.698635, "lon": -73.89729, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89729, 40.698635 ] } }, -{ "type": "Feature", "properties": { "id": 504174, "name": "Decatur St/Myrtle Av", "direction": "N", "lat": 40.700554, "lon": -73.89602, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89602, 40.700554 ] } }, -{ "type": "Feature", "properties": { "id": 504175, "name": "Putnam Av/Fairview Av", "direction": "SW", "lat": 40.7047, "lon": -73.90224, "routes": "M90, B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90224, 40.7047 ] } }, -{ "type": "Feature", "properties": { "id": 504177, "name": "Summerfield St/Myrtle Av", "direction": "SW", "lat": 40.700306, "lon": -73.897095, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.897095, 40.700306 ] } }, -{ "type": "Feature", "properties": { "id": 504178, "name": "Summerfield St/Forest Av", "direction": "SW", "lat": 40.699, "lon": -73.89837, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89837, 40.699 ] } }, -{ "type": "Feature", "properties": { "id": 504179, "name": "Summerfield St/Seneca Av", "direction": "SW", "lat": 40.69766, "lon": -73.89967, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.89967, 40.69766 ] } }, -{ "type": "Feature", "properties": { "id": 504180, "name": "Summerfield St/Cypress Av", "direction": "SW", "lat": 40.696846, "lon": -73.90047, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90047, 40.696846 ] } }, -{ "type": "Feature", "properties": { "id": 504181, "name": "Summerfield St/Wyckoff Av", "direction": "SW", "lat": 40.694798, "lon": -73.90249, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90249, 40.694798 ] } }, -{ "type": "Feature", "properties": { "id": 504182, "name": "Covert St/Wyckoff Av", "direction": "SW", "lat": 40.69504, "lon": -73.90381, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90381, 40.69504 ] } }, -{ "type": "Feature", "properties": { "id": 504183, "name": "Atlantic Av/Eldert Ln", "direction": "E", "lat": 40.68319, "lon": -73.86579, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.86579, 40.68319 ] } }, -{ "type": "Feature", "properties": { "id": 504184, "name": "Atlantic Av/84 St", "direction": "E", "lat": 40.685566, "lon": -73.85742, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.85742, 40.685566 ] } }, -{ "type": "Feature", "properties": { "id": 504185, "name": "Atlantic Av/86 St", "direction": "E", "lat": 40.686203, "lon": -73.8552, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.8552, 40.686203 ] } }, -{ "type": "Feature", "properties": { "id": 504186, "name": "Atlantic Av/88 St", "direction": "E", "lat": 40.686687, "lon": -73.8535, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.8535, 40.686687 ] } }, -{ "type": "Feature", "properties": { "id": 504187, "name": "Atlantic Av/90 St", "direction": "E", "lat": 40.68717, "lon": -73.85181, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.85181, 40.68717 ] } }, -{ "type": "Feature", "properties": { "id": 504188, "name": "Atlantic Av/92 St", "direction": "E", "lat": 40.687653, "lon": -73.850105, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.850105, 40.687653 ] } }, -{ "type": "Feature", "properties": { "id": 504189, "name": "Atlantic Av/Woodhaven Blvd", "direction": "E", "lat": 40.68824, "lon": -73.84801, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.84801, 40.68824 ] } }, -{ "type": "Feature", "properties": { "id": 504190, "name": "Atlantic Av/96 St", "direction": "E", "lat": 40.68863, "lon": -73.846664, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.846664, 40.68863 ] } }, -{ "type": "Feature", "properties": { "id": 504191, "name": "Atlantic Av/Lefferts Blvd", "direction": "E", "lat": 40.694027, "lon": -73.82751, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.82751, 40.694027 ] } }, -{ "type": "Feature", "properties": { "id": 504196, "name": "Jamaica Av/144 Pl", "direction": "E", "lat": 40.702137, "lon": -73.81096, "routes": "Q56, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.81096, 40.702137 ] } }, -{ "type": "Feature", "properties": { "id": 504198, "name": "Jamaica Av/144 St", "direction": "W", "lat": 40.702305, "lon": -73.811386, "routes": "Q54, Q60, Q56, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.811386, 40.702305 ] } }, -{ "type": "Feature", "properties": { "id": 504199, "name": "Jamaica Av/Queens Blvd", "direction": "W", "lat": 40.702583, "lon": -73.81414, "routes": "Q24, Q56, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.81414, 40.702583 ] } }, -{ "type": "Feature", "properties": { "id": 504201, "name": "Van Wyck Expwy Service Rd West/Jamaica Av", "direction": "SE", "lat": 40.702316, "lon": -73.81685, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.81685, 40.702316 ] } }, -{ "type": "Feature", "properties": { "id": 504202, "name": "Van Wyck Expwy Service Rd West/89 Av", "direction": "SE", "lat": 40.70114, "lon": -73.816185, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.816185, 40.70114 ] } }, -{ "type": "Feature", "properties": { "id": 504203, "name": "Van Wyck Expwy Service Rd West/91 Av", "direction": "SE", "lat": 40.699543, "lon": -73.81534, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.81534, 40.699543 ] } }, -{ "type": "Feature", "properties": { "id": 504204, "name": "Atlantic Av/Van Wyck Expwy West", "direction": "W", "lat": 40.697212, "lon": -73.81445, "routes": "Q41, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.81445, 40.697212 ] } }, -{ "type": "Feature", "properties": { "id": 504205, "name": "Atlantic Av/Lefferts Blvd", "direction": "W", "lat": 40.69402, "lon": -73.828636, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.828636, 40.69402 ] } }, -{ "type": "Feature", "properties": { "id": 504206, "name": "Atlantic Av/96 St", "direction": "W", "lat": 40.688667, "lon": -73.8475, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.8475, 40.688667 ] } }, -{ "type": "Feature", "properties": { "id": 504207, "name": "Atlantic Av/Woodhaven Blvd", "direction": "W", "lat": 40.688, "lon": -73.84986, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.84986, 40.688 ] } }, -{ "type": "Feature", "properties": { "id": 504208, "name": "Atlantic Av/92 St", "direction": "W", "lat": 40.687695, "lon": -73.85093, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.85093, 40.687695 ] } }, -{ "type": "Feature", "properties": { "id": 504209, "name": "Atlantic Av/90 St", "direction": "W", "lat": 40.687183, "lon": -73.852715, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.852715, 40.687183 ] } }, -{ "type": "Feature", "properties": { "id": 504210, "name": "Atlantic Av/88 St", "direction": "W", "lat": 40.68673, "lon": -73.85433, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.85433, 40.68673 ] } }, -{ "type": "Feature", "properties": { "id": 504211, "name": "Atlantic Av/85 St", "direction": "W", "lat": 40.685966, "lon": -73.85699, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.85699, 40.685966 ] } }, -{ "type": "Feature", "properties": { "id": 504212, "name": "Atlantic Av/82 St", "direction": "W", "lat": 40.685375, "lon": -73.85907, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.85907, 40.685375 ] } }, -{ "type": "Feature", "properties": { "id": 504213, "name": "Greenpoint Av/Review Av", "direction": "NE", "lat": 40.734432, "lon": -73.937515, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.937515, 40.734432 ] } }, -{ "type": "Feature", "properties": { "id": 504214, "name": "Greenpoint Av/Bradley Av", "direction": "E", "lat": 40.735447, "lon": -73.93487, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.93487, 40.735447 ] } }, -{ "type": "Feature", "properties": { "id": 504215, "name": "Greenpoint Av/Gale Av", "direction": "E", "lat": 40.736248, "lon": -73.93272, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.93272, 40.736248 ] } }, -{ "type": "Feature", "properties": { "id": 504216, "name": "Greenpoint Av/Hunters Point Av", "direction": "E", "lat": 40.737633, "lon": -73.92951, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.92951, 40.737633 ] } }, -{ "type": "Feature", "properties": { "id": 504218, "name": "Greenpoint Av/39 Pl", "direction": "NE", "lat": 40.739143, "lon": -73.92581, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.92581, 40.739143 ] } }, -{ "type": "Feature", "properties": { "id": 504219, "name": "Greenpoint Av/48 Av", "direction": "E", "lat": 40.73976, "lon": -73.92439, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.92439, 40.73976 ] } }, -{ "type": "Feature", "properties": { "id": 504220, "name": "Greenpoint Av/43 St", "direction": "NE", "lat": 40.740993, "lon": -73.921616, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.921616, 40.740993 ] } }, -{ "type": "Feature", "properties": { "id": 504221, "name": "Greenpoint Av/46 St", "direction": "E", "lat": 40.74207, "lon": -73.91903, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91903, 40.74207 ] } }, -{ "type": "Feature", "properties": { "id": 504222, "name": "Greenpoint Av/47 St", "direction": "E", "lat": 40.74256, "lon": -73.9175, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.9175, 40.74256 ] } }, -{ "type": "Feature", "properties": { "id": 504223, "name": "Greenpoint Av/42 St", "direction": "SW", "lat": 40.740345, "lon": -73.92339, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.92339, 40.740345 ] } }, -{ "type": "Feature", "properties": { "id": 504224, "name": "Greenpoint Av/Hunters Point Av", "direction": "W", "lat": 40.73742, "lon": -73.93044, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.93044, 40.73742 ] } }, -{ "type": "Feature", "properties": { "id": 504225, "name": "Greenpoint Av/Gale Av", "direction": "SW", "lat": 40.736458, "lon": -73.93261, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.93261, 40.736458 ] } }, -{ "type": "Feature", "properties": { "id": 504226, "name": "Greenpoint Av/Bradley Av", "direction": "W", "lat": 40.73564, "lon": -73.934715, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.934715, 40.73564 ] } }, -{ "type": "Feature", "properties": { "id": 504227, "name": "Greenpoint Av/Starr Av", "direction": "W", "lat": 40.73505, "lon": -73.936195, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.936195, 40.73505 ] } }, -{ "type": "Feature", "properties": { "id": 504228, "name": "Van Dam St/Review Av", "direction": "SW", "lat": 40.734543, "lon": -73.93802, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.93802, 40.734543 ] } }, -{ "type": "Feature", "properties": { "id": 504230, "name": "De Kalb Av/Seneca Av", "direction": "NE", "lat": 40.707493, "lon": -73.91589, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91589, 40.707493 ] } }, -{ "type": "Feature", "properties": { "id": 504231, "name": "Seneca Av/Stockholm St", "direction": "SE", "lat": 40.706947, "lon": -73.91482, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91482, 40.706947 ] } }, -{ "type": "Feature", "properties": { "id": 504233, "name": "Seneca Av/Bleecker St", "direction": "SE", "lat": 40.704777, "lon": -73.911156, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.911156, 40.704777 ] } }, -{ "type": "Feature", "properties": { "id": 504236, "name": "Seneca Av/Palmetto St", "direction": "SE", "lat": 40.70282, "lon": -73.90783, "routes": "M90, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.90783, 40.70282 ] } }, -{ "type": "Feature", "properties": { "id": 504238, "name": "Seneca Av/Cornelia St", "direction": "SE", "lat": 40.701057, "lon": -73.90486, "routes": "B38, Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90486, 40.701057 ] } }, -{ "type": "Feature", "properties": { "id": 504239, "name": "Onderdonk Av/Catalpa Av", "direction": "SE", "lat": 40.70149, "lon": -73.90309, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.90309, 40.70149 ] } }, -{ "type": "Feature", "properties": { "id": 504240, "name": "Stanhope St/Onderdonk Av", "direction": "NE", "lat": 40.707886, "lon": -73.91316, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91316, 40.707886 ] } }, -{ "type": "Feature", "properties": { "id": 504244, "name": "Seneca Av/Gates Av", "direction": "NW", "lat": 40.70324, "lon": -73.908295, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.908295, 40.70324 ] } }, -{ "type": "Feature", "properties": { "id": 504246, "name": "Seneca Av/Bleecker St", "direction": "NW", "lat": 40.70523, "lon": -73.911674, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.911674, 40.70523 ] } }, -{ "type": "Feature", "properties": { "id": 504249, "name": "Seneca Av/De Kalb Av", "direction": "NW", "lat": 40.707577, "lon": -73.91569, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91569, 40.707577 ] } }, -{ "type": "Feature", "properties": { "id": 504251, "name": "Metropolitan Av/Woodward Av", "direction": "E", "lat": 40.713715, "lon": -73.9202, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.9202, 40.713715 ] } }, -{ "type": "Feature", "properties": { "id": 504252, "name": "Metropolitan Av/H C Bohack Gate", "direction": "E", "lat": 40.71359, "lon": -73.91811, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.91811, 40.71359 ] } }, -{ "type": "Feature", "properties": { "id": 504253, "name": "Metropolitan Av/Grandview Av", "direction": "E", "lat": 40.713226, "lon": -73.91245, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.91245, 40.713226 ] } }, -{ "type": "Feature", "properties": { "id": 504254, "name": "Metropolitan Av/Amory Ct", "direction": "E", "lat": 40.713028, "lon": -73.90932, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.90932, 40.713028 ] } }, -{ "type": "Feature", "properties": { "id": 504256, "name": "Metropolitan Av/Forest Av", "direction": "E", "lat": 40.712822, "lon": -73.905624, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.905624, 40.712822 ] } }, -{ "type": "Feature", "properties": { "id": 504257, "name": "Metropolitan Av/60 Pl", "direction": "E", "lat": 40.71277, "lon": -73.9033, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.9033, 40.71277 ] } }, -{ "type": "Feature", "properties": { "id": 504258, "name": "Metropolitan Av/61 St", "direction": "E", "lat": 40.71268, "lon": -73.90177, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.90177, 40.71268 ] } }, -{ "type": "Feature", "properties": { "id": 504259, "name": "Metropolitan Av/Fresh Pond Rd", "direction": "E", "lat": 40.71262, "lon": -73.89975, "routes": "Q54, Q38, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89975, 40.71262 ] } }, -{ "type": "Feature", "properties": { "id": 504260, "name": "Metropolitan Av/65 St", "direction": "E", "lat": 40.71243, "lon": -73.8955, "routes": "Q38, Q67, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.8955, 40.71243 ] } }, -{ "type": "Feature", "properties": { "id": 504261, "name": "Metropolitan Av/Rentar Plaza East", "direction": "E", "lat": 40.712208, "lon": -73.888664, "routes": "Q67, Q54, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.888664, 40.712208 ] } }, -{ "type": "Feature", "properties": { "id": 504262, "name": "Metropolitan Av/69 St", "direction": "E", "lat": 40.71212, "lon": -73.88586, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.88586, 40.71212 ] } }, -{ "type": "Feature", "properties": { "id": 504263, "name": "Metropolitan Av/71 St", "direction": "E", "lat": 40.7122, "lon": -73.88399, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.88399, 40.7122 ] } }, -{ "type": "Feature", "properties": { "id": 504264, "name": "Metropolitan Av/Pleasant View St", "direction": "E", "lat": 40.712433, "lon": -73.88163, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.88163, 40.712433 ] } }, -{ "type": "Feature", "properties": { "id": 504265, "name": "Metropolitan Av/73 Pl", "direction": "E", "lat": 40.712708, "lon": -73.87893, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.87893, 40.712708 ] } }, -{ "type": "Feature", "properties": { "id": 504266, "name": "Metropolitan Av/75 St", "direction": "E", "lat": 40.712875, "lon": -73.87729, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.87729, 40.712875 ] } }, -{ "type": "Feature", "properties": { "id": 504267, "name": "Metropolitan Av/78 St", "direction": "E", "lat": 40.71305, "lon": -73.87561, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.87561, 40.71305 ] } }, -{ "type": "Feature", "properties": { "id": 504268, "name": "Metropolitan Av/79 St", "direction": "E", "lat": 40.713165, "lon": -73.87371, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.87371, 40.713165 ] } }, -{ "type": "Feature", "properties": { "id": 504271, "name": "Metropolitan Av/Cooper Av", "direction": "E", "lat": 40.71208, "lon": -73.861694, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.861694, 40.71208 ] } }, -{ "type": "Feature", "properties": { "id": 504273, "name": "Metropolitan Av/Woodhaven Blvd", "direction": "E", "lat": 40.711662, "lon": -73.85897, "routes": "Q23, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.85897, 40.711662 ] } }, -{ "type": "Feature", "properties": { "id": 504274, "name": "Metropolitan Av/Selfridge St", "direction": "E", "lat": 40.711334, "lon": -73.85692, "routes": "Q54, QM12, Q23, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.85692, 40.711334 ] } }, -{ "type": "Feature", "properties": { "id": 504275, "name": "Metropolitan Av/69 Rd", "direction": "E", "lat": 40.71097, "lon": -73.85447, "routes": "Q23, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.85447, 40.71097 ] } }, -{ "type": "Feature", "properties": { "id": 504276, "name": "Metropolitan Av/70 Rd", "direction": "E", "lat": 40.710648, "lon": -73.85241, "routes": "QM12, QM42, Q23, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.85241, 40.710648 ] } }, -{ "type": "Feature", "properties": { "id": 504277, "name": "Metropolitan Av/71 Av", "direction": "E", "lat": 40.71032, "lon": -73.850296, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.850296, 40.71032 ] } }, -{ "type": "Feature", "properties": { "id": 504278, "name": "Metropolitan Av/72 Av", "direction": "E", "lat": 40.709915, "lon": -73.84774, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.84774, 40.709915 ] } }, -{ "type": "Feature", "properties": { "id": 504279, "name": "Metropolitan Av/72 Dr", "direction": "E", "lat": 40.709606, "lon": -73.84591, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.84591, 40.709606 ] } }, -{ "type": "Feature", "properties": { "id": 504280, "name": "Metropolitan Av/Union Tpke", "direction": "E", "lat": 40.709305, "lon": -73.843864, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.843864, 40.709305 ] } }, -{ "type": "Feature", "properties": { "id": 504281, "name": "Metropolitan Av/Park Ln South", "direction": "E", "lat": 40.707775, "lon": -73.83678, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.83678, 40.707775 ] } }, -{ "type": "Feature", "properties": { "id": 504282, "name": "Metropolitan Av/118 St", "direction": "E", "lat": 40.706886, "lon": -73.83453, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.83453, 40.706886 ] } }, -{ "type": "Feature", "properties": { "id": 504283, "name": "Metropolitan Av/Lefferts Blvd", "direction": "E", "lat": 40.70597, "lon": -73.8313, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.8313, 40.70597 ] } }, -{ "type": "Feature", "properties": { "id": 504284, "name": "Metropolitan Av/Brevoort St", "direction": "E", "lat": 40.705402, "lon": -73.829285, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.829285, 40.705402 ] } }, -{ "type": "Feature", "properties": { "id": 504285, "name": "Metropolitan Av/124 St", "direction": "E", "lat": 40.704945, "lon": -73.82776, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.82776, 40.704945 ] } }, -{ "type": "Feature", "properties": { "id": 504286, "name": "Metropolitan Av/Hillside Av", "direction": "E", "lat": 40.703712, "lon": -73.82302, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.82302, 40.703712 ] } }, -{ "type": "Feature", "properties": { "id": 504288, "name": "Metropolitan Av/132 St", "direction": "E", "lat": 40.703228, "lon": -73.820595, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.820595, 40.703228 ] } }, -{ "type": "Feature", "properties": { "id": 504289, "name": "Jamaica Av/134 St", "direction": "E", "lat": 40.702354, "lon": -73.81828, "routes": "Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.81828, 40.702354 ] } }, -{ "type": "Feature", "properties": { "id": 504293, "name": "Jamaica Av/138 St", "direction": "W", "lat": 40.702503, "lon": -73.81577, "routes": "Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.81577, 40.702503 ] } }, -{ "type": "Feature", "properties": { "id": 504294, "name": "Jamaica Av/Metropolitan Av", "direction": "W", "lat": 40.702457, "lon": -73.81751, "routes": "J90" }, "geometry": { "type": "Point", "coordinates": [ -73.81751, 40.702457 ] } }, -{ "type": "Feature", "properties": { "id": 504296, "name": "Metropolitan Av/129 St", "direction": "W", "lat": 40.703938, "lon": -73.82387, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.82387, 40.703938 ] } }, -{ "type": "Feature", "properties": { "id": 504298, "name": "Metropolitan Av/125 St", "direction": "W", "lat": 40.704872, "lon": -73.82718, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.82718, 40.704872 ] } }, -{ "type": "Feature", "properties": { "id": 504299, "name": "Metropolitan Av/Brevoort St", "direction": "W", "lat": 40.705685, "lon": -73.830025, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.830025, 40.705685 ] } }, -{ "type": "Feature", "properties": { "id": 504300, "name": "Metropolitan Av/Lefferts Blvd", "direction": "W", "lat": 40.706295, "lon": -73.832214, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.832214, 40.706295 ] } }, -{ "type": "Feature", "properties": { "id": 504302, "name": "Metropolitan Av/Park Ln South", "direction": "NW", "lat": 40.70803, "lon": -73.837265, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.837265, 40.70803 ] } }, -{ "type": "Feature", "properties": { "id": 504303, "name": "Metropolitan Av/Forest Park Dr", "direction": "W", "lat": 40.708626, "lon": -73.839134, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.839134, 40.708626 ] } }, -{ "type": "Feature", "properties": { "id": 504304, "name": "Metropolitan Av/75 Av", "direction": "W", "lat": 40.709507, "lon": -73.84455, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.84455, 40.709507 ] } }, -{ "type": "Feature", "properties": { "id": 504305, "name": "Metropolitan Av/Ascan Av", "direction": "W", "lat": 40.70981, "lon": -73.84641, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.84641, 40.70981 ] } }, -{ "type": "Feature", "properties": { "id": 504306, "name": "Metropolitan Av/72 Av", "direction": "W", "lat": 40.710197, "lon": -73.84884, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.84884, 40.710197 ] } }, -{ "type": "Feature", "properties": { "id": 504307, "name": "Metropolitan Av/71 Av", "direction": "W", "lat": 40.710625, "lon": -73.85158, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.85158, 40.710625 ] } }, -{ "type": "Feature", "properties": { "id": 504309, "name": "Metropolitan Av/69 Av", "direction": "W", "lat": 40.711235, "lon": -73.85551, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.85551, 40.711235 ] } }, -{ "type": "Feature", "properties": { "id": 504313, "name": "Metropolitan Av/80 St", "direction": "W", "lat": 40.713326, "lon": -73.872025, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.872025, 40.713326 ] } }, -{ "type": "Feature", "properties": { "id": 504314, "name": "Metropolitan Av/79 St", "direction": "W", "lat": 40.713226, "lon": -73.874725, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.874725, 40.713226 ] } }, -{ "type": "Feature", "properties": { "id": 504315, "name": "Metropolitan Av/74 St", "direction": "W", "lat": 40.712826, "lon": -73.87874, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.87874, 40.712826 ] } }, -{ "type": "Feature", "properties": { "id": 504317, "name": "Metropolitan Av/Pleasant View St", "direction": "W", "lat": 40.712456, "lon": -73.882484, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.882484, 40.712456 ] } }, -{ "type": "Feature", "properties": { "id": 504318, "name": "Metropolitan Av/71 St", "direction": "W", "lat": 40.712254, "lon": -73.88472, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.88472, 40.712254 ] } }, -{ "type": "Feature", "properties": { "id": 504319, "name": "Metropolitan Av/69 St", "direction": "W", "lat": 40.712257, "lon": -73.88683, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.88683, 40.712257 ] } }, -{ "type": "Feature", "properties": { "id": 504320, "name": "Metropolitan Av/Rentar Plaza East", "direction": "W", "lat": 40.712326, "lon": -73.889305, "routes": "Q67, Q54, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.889305, 40.712326 ] } }, -{ "type": "Feature", "properties": { "id": 504322, "name": "Metropolitan Av/Mount Olivet Cres", "direction": "W", "lat": 40.71251, "lon": -73.89497, "routes": "Q67, Q38, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.89497, 40.71251 ] } }, -{ "type": "Feature", "properties": { "id": 504323, "name": "Metropolitan Av/65 St", "direction": "W", "lat": 40.71258, "lon": -73.89658, "routes": "Q54, Q67, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.89658, 40.71258 ] } }, -{ "type": "Feature", "properties": { "id": 504324, "name": "Metropolitan Av/Fresh Pond Rd", "direction": "W", "lat": 40.712776, "lon": -73.90144, "routes": "Q67, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.90144, 40.712776 ] } }, -{ "type": "Feature", "properties": { "id": 504325, "name": "Metropolitan Av/60 Ln", "direction": "W", "lat": 40.712856, "lon": -73.90335, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.90335, 40.712856 ] } }, -{ "type": "Feature", "properties": { "id": 504326, "name": "Metropolitan Av/Eliot Av", "direction": "W", "lat": 40.712887, "lon": -73.904366, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.904366, 40.712887 ] } }, -{ "type": "Feature", "properties": { "id": 504327, "name": "Metropolitan Av/Arnold Av", "direction": "W", "lat": 40.713257, "lon": -73.91118, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.91118, 40.713257 ] } }, -{ "type": "Feature", "properties": { "id": 504328, "name": "Metropolitan Av/Nurge Av", "direction": "W", "lat": 40.71337, "lon": -73.91283, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.91283, 40.71337 ] } }, -{ "type": "Feature", "properties": { "id": 504330, "name": "Myrtle Av/Madison St", "direction": "E", "lat": 40.699863, "lon": -73.90795, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90795, 40.699863 ] } }, -{ "type": "Feature", "properties": { "id": 504332, "name": "Myrtle Av/62 St", "direction": "E", "lat": 40.70087, "lon": -73.89294, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.89294, 40.70087 ] } }, -{ "type": "Feature", "properties": { "id": 504333, "name": "Myrtle Av/Cypress Hills St", "direction": "E", "lat": 40.70102, "lon": -73.89106, "routes": "QM34, QM24, QM25, Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.89106, 40.70102 ] } }, -{ "type": "Feature", "properties": { "id": 504334, "name": "Myrtle Av/70 St", "direction": "E", "lat": 40.701862, "lon": -73.88111, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.88111, 40.701862 ] } }, -{ "type": "Feature", "properties": { "id": 504335, "name": "Myrtle Av/73 Pl", "direction": "E", "lat": 40.702362, "lon": -73.874954, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.874954, 40.702362 ] } }, -{ "type": "Feature", "properties": { "id": 504336, "name": "Myrtle Av/76 St", "direction": "E", "lat": 40.702545, "lon": -73.87265, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.87265, 40.702545 ] } }, -{ "type": "Feature", "properties": { "id": 504337, "name": "Myrtle Av/79 Pl", "direction": "E", "lat": 40.702774, "lon": -73.86988, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.86988, 40.702774 ] } }, -{ "type": "Feature", "properties": { "id": 504338, "name": "Myrtle Av/81 St", "direction": "E", "lat": 40.702988, "lon": -73.867325, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.867325, 40.702988 ] } }, -{ "type": "Feature", "properties": { "id": 504339, "name": "Myrtle Av/81 Av", "direction": "E", "lat": 40.703217, "lon": -73.861496, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.861496, 40.703217 ] } }, -{ "type": "Feature", "properties": { "id": 504340, "name": "Myrtle Av/83 St", "direction": "E", "lat": 40.70312, "lon": -73.86572, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.86572, 40.70312 ] } }, -{ "type": "Feature", "properties": { "id": 504341, "name": "Myrtle Av/85 St", "direction": "E", "lat": 40.703274, "lon": -73.86388, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.86388, 40.703274 ] } }, -{ "type": "Feature", "properties": { "id": 504342, "name": "Myrtle Av/88 St", "direction": "E", "lat": 40.70293, "lon": -73.858925, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.858925, 40.70293 ] } }, -{ "type": "Feature", "properties": { "id": 504343, "name": "Myrtle Av/88 Ln", "direction": "E", "lat": 40.702744, "lon": -73.85719, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.85719, 40.702744 ] } }, -{ "type": "Feature", "properties": { "id": 504344, "name": "Myrtle Av/Woodhaven Blvd North", "direction": "E", "lat": 40.70257, "lon": -73.85557, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.85557, 40.70257 ] } }, -{ "type": "Feature", "properties": { "id": 504345, "name": "Myrtle Av/Woodhaven Blvd", "direction": "E", "lat": 40.702473, "lon": -73.854706, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.854706, 40.702473 ] } }, -{ "type": "Feature", "properties": { "id": 504346, "name": "Myrtle Av/Freedom Dr", "direction": "E", "lat": 40.702, "lon": -73.85037, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.85037, 40.702 ] } }, -{ "type": "Feature", "properties": { "id": 504347, "name": "Myrtle Av/108 St", "direction": "E", "lat": 40.70112, "lon": -73.842384, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.842384, 40.70112 ] } }, -{ "type": "Feature", "properties": { "id": 504348, "name": "Myrtle Av/111 St", "direction": "E", "lat": 40.70078, "lon": -73.83927, "routes": "Q37, Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.83927, 40.70078 ] } }, -{ "type": "Feature", "properties": { "id": 504349, "name": "Myrtle Av/114 St", "direction": "E", "lat": 40.70042, "lon": -73.836044, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.836044, 40.70042 ] } }, -{ "type": "Feature", "properties": { "id": 504350, "name": "Myrtle Av/115 St", "direction": "E", "lat": 40.700306, "lon": -73.835, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.835, 40.700306 ] } }, -{ "type": "Feature", "properties": { "id": 504351, "name": "117 St/Jamaica Av", "direction": "SE", "lat": 40.699627, "lon": -73.832565, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.832565, 40.699627 ] } }, -{ "type": "Feature", "properties": { "id": 504353, "name": "Myrtle Av/Hillside Av", "direction": "W", "lat": 40.700157, "lon": -73.832535, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.832535, 40.700157 ] } }, -{ "type": "Feature", "properties": { "id": 504354, "name": "Myrtle Av/115 St", "direction": "W", "lat": 40.700386, "lon": -73.83476, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.83476, 40.700386 ] } }, -{ "type": "Feature", "properties": { "id": 504355, "name": "Myrtle Av/Park Ln South", "direction": "W", "lat": 40.701096, "lon": -73.84126, "routes": "Q55, Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.84126, 40.701096 ] } }, -{ "type": "Feature", "properties": { "id": 504356, "name": "Myrtle Av/Freedom Dr", "direction": "W", "lat": 40.702126, "lon": -73.85057, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.85057, 40.702126 ] } }, -{ "type": "Feature", "properties": { "id": 504357, "name": "Myrtle Av/Woodhaven Blvd", "direction": "W", "lat": 40.702614, "lon": -73.85501, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.85501, 40.702614 ] } }, -{ "type": "Feature", "properties": { "id": 504358, "name": "Myrtle Av/82 Av", "direction": "W", "lat": 40.702946, "lon": -73.85827, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.85827, 40.702946 ] } }, -{ "type": "Feature", "properties": { "id": 504359, "name": "Myrtle Av/81 Av", "direction": "W", "lat": 40.70328, "lon": -73.861084, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.861084, 40.70328 ] } }, -{ "type": "Feature", "properties": { "id": 504360, "name": "Myrtle Av/85 St", "direction": "W", "lat": 40.703354, "lon": -73.86421, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.86421, 40.703354 ] } }, -{ "type": "Feature", "properties": { "id": 504361, "name": "Myrtle Av/83 St", "direction": "W", "lat": 40.7032, "lon": -73.86605, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.86605, 40.7032 ] } }, -{ "type": "Feature", "properties": { "id": 504362, "name": "Myrtle Av/81 St", "direction": "W", "lat": 40.703068, "lon": -73.86767, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.86767, 40.703068 ] } }, -{ "type": "Feature", "properties": { "id": 504363, "name": "Myrtle Av/79 St", "direction": "W", "lat": 40.702785, "lon": -73.87109, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.87109, 40.702785 ] } }, -{ "type": "Feature", "properties": { "id": 504364, "name": "Myrtle Av/76 St", "direction": "W", "lat": 40.70263, "lon": -73.87301, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.87301, 40.70263 ] } }, -{ "type": "Feature", "properties": { "id": 504365, "name": "Myrtle Av/74 St", "direction": "W", "lat": 40.70247, "lon": -73.874916, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.874916, 40.70247 ] } }, -{ "type": "Feature", "properties": { "id": 504366, "name": "Myrtle Av/73 St", "direction": "W", "lat": 40.702297, "lon": -73.87685, "routes": "Q55, QM34, QM24, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.87685, 40.702297 ] } }, -{ "type": "Feature", "properties": { "id": 504368, "name": "Myrtle Av/69 St", "direction": "W", "lat": 40.70184, "lon": -73.88271, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.88271, 40.70184 ] } }, -{ "type": "Feature", "properties": { "id": 504369, "name": "Myrtle Av/68 St", "direction": "W", "lat": 40.70169, "lon": -73.88455, "routes": "Q55, QM25, QM34, QM24" }, "geometry": { "type": "Point", "coordinates": [ -73.88455, 40.70169 ] } }, -{ "type": "Feature", "properties": { "id": 504370, "name": "Myrtle Av/67 St", "direction": "W", "lat": 40.701527, "lon": -73.88638, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.88638, 40.701527 ] } }, -{ "type": "Feature", "properties": { "id": 504371, "name": "Myrtle Av/66 St", "direction": "W", "lat": 40.701317, "lon": -73.88876, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.88876, 40.701317 ] } }, -{ "type": "Feature", "properties": { "id": 504372, "name": "Myrtle Av/Cypress Hills St", "direction": "W", "lat": 40.701134, "lon": -73.89081, "routes": "QM24, Q55, QM25, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.89081, 40.701134 ] } }, -{ "type": "Feature", "properties": { "id": 504373, "name": "Myrtle Av/64 St", "direction": "W", "lat": 40.701015, "lon": -73.89234, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.89234, 40.701015 ] } }, -{ "type": "Feature", "properties": { "id": 504374, "name": "Myrtle Av/Fresh Pond Rd", "direction": "W", "lat": 40.700848, "lon": -73.89434, "routes": "QM34, QM25, QM24, Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.89434, 40.700848 ] } }, -{ "type": "Feature", "properties": { "id": 504375, "name": "Myrtle Av/60 Ln", "direction": "W", "lat": 40.700645, "lon": -73.89672, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.89672, 40.700645 ] } }, -{ "type": "Feature", "properties": { "id": 504376, "name": "Myrtle Av/60 St", "direction": "W", "lat": 40.70055, "lon": -73.898796, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.898796, 40.70055 ] } }, -{ "type": "Feature", "properties": { "id": 504377, "name": "Myrtle Av/Forest Av", "direction": "W", "lat": 40.700527, "lon": -73.90064, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90064, 40.700527 ] } }, -{ "type": "Feature", "properties": { "id": 504378, "name": "Myrtle Av/Onderdonk Av", "direction": "W", "lat": 40.700516, "lon": -73.901955, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.901955, 40.700516 ] } }, -{ "type": "Feature", "properties": { "id": 504379, "name": "Myrtle Av/Seneca Av", "direction": "W", "lat": 40.7004, "lon": -73.90421, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90421, 40.7004 ] } }, -{ "type": "Feature", "properties": { "id": 504380, "name": "Myrtle Av/Cypress Av", "direction": "W", "lat": 40.700108, "lon": -73.90678, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90678, 40.700108 ] } }, -{ "type": "Feature", "properties": { "id": 504381, "name": "Myrtle Av/Saint Nicholas Av", "direction": "W", "lat": 40.699905, "lon": -73.908554, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.908554, 40.699905 ] } }, -{ "type": "Feature", "properties": { "id": 504384, "name": "Jamaica Av/170 St", "direction": "W", "lat": 40.707287, "lon": -73.78958, "routes": "Q54, Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.78958, 40.707287 ] } }, -{ "type": "Feature", "properties": { "id": 504386, "name": "Flushing Av/Onderdonk Av", "direction": "NE", "lat": 40.711674, "lon": -73.919556, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.919556, 40.711674 ] } }, -{ "type": "Feature", "properties": { "id": 504387, "name": "Flushing Av/Woodward Av", "direction": "NE", "lat": 40.712597, "lon": -73.91812, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.91812, 40.712597 ] } }, -{ "type": "Feature", "properties": { "id": 504388, "name": "Flushing Av/Troutman St", "direction": "E", "lat": 40.713215, "lon": -73.916374, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.916374, 40.713215 ] } }, -{ "type": "Feature", "properties": { "id": 504389, "name": "Flushing Av/54 St", "direction": "NE", "lat": 40.714764, "lon": -73.913506, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.913506, 40.714764 ] } }, -{ "type": "Feature", "properties": { "id": 504390, "name": "Flushing Av/60 St", "direction": "NE", "lat": 40.71946, "lon": -73.9065, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.9065, 40.71946 ] } }, -{ "type": "Feature", "properties": { "id": 504392, "name": "Flushing Av/61 St", "direction": "NE", "lat": 40.720894, "lon": -73.904175, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.904175, 40.720894 ] } }, -{ "type": "Feature", "properties": { "id": 504394, "name": "Flushing Av/61 St", "direction": "SW", "lat": 40.72108, "lon": -73.904045, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.904045, 40.72108 ] } }, -{ "type": "Feature", "properties": { "id": 504395, "name": "Flushing Av/54 St", "direction": "SW", "lat": 40.714912, "lon": -73.91362, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.91362, 40.714912 ] } }, -{ "type": "Feature", "properties": { "id": 504396, "name": "Flushing Av/Metropolitan Av", "direction": "SW", "lat": 40.713604, "lon": -73.91568, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.91568, 40.713604 ] } }, -{ "type": "Feature", "properties": { "id": 504397, "name": "Flushing Av/Woodward Av", "direction": "SW", "lat": 40.712288, "lon": -73.91894, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.91894, 40.712288 ] } }, -{ "type": "Feature", "properties": { "id": 504398, "name": "Queens Blvd/55 Av", "direction": "SE", "lat": 40.735252, "lon": -73.87596, "routes": "Q60, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.87596, 40.735252 ] } }, -{ "type": "Feature", "properties": { "id": 504399, "name": "Queens Blvd/56 Av", "direction": "E", "lat": 40.734444, "lon": -73.874466, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.874466, 40.734444 ] } }, -{ "type": "Feature", "properties": { "id": 504400, "name": "Queens Blvd/Woodhaven Blvd", "direction": "E", "lat": 40.733303, "lon": -73.87086, "routes": "Q59, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.87086, 40.733303 ] } }, -{ "type": "Feature", "properties": { "id": 504401, "name": "Queens Blvd/Eliot Av", "direction": "SE", "lat": 40.732403, "lon": -73.868195, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.868195, 40.732403 ] } }, -{ "type": "Feature", "properties": { "id": 504403, "name": "Queens Blvd/62 Dr", "direction": "W", "lat": 40.731182, "lon": -73.86462, "routes": "Q60, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.86462, 40.731182 ] } }, -{ "type": "Feature", "properties": { "id": 504404, "name": "Queens Blvd/59 Av", "direction": "W", "lat": 40.73394, "lon": -73.870834, "routes": "Q29, Q60, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.870834, 40.73394 ] } }, -{ "type": "Feature", "properties": { "id": 504409, "name": "Jackson Av/21 St", "direction": "NE", "lat": 40.744724, "lon": -73.94815, "routes": "B98, B62, B94, B98, Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.94815, 40.744724 ] } }, -{ "type": "Feature", "properties": { "id": 504410, "name": "Jackson Av/Davis St", "direction": "E", "lat": 40.745865, "lon": -73.9453, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9453, 40.745865 ] } }, -{ "type": "Feature", "properties": { "id": 504413, "name": "Jackson Av/Queens Plaza South", "direction": "W", "lat": 40.74861, "lon": -73.93843, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.93843, 40.74861 ] } }, -{ "type": "Feature", "properties": { "id": 504415, "name": "Jackson Av/23 St", "direction": "W", "lat": 40.745747, "lon": -73.94599, "routes": "B98, Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.94599, 40.745747 ] } }, -{ "type": "Feature", "properties": { "id": 504416, "name": "Jackson Av/47 Av", "direction": "SW", "lat": 40.744392, "lon": -73.94915, "routes": "B98, Q93, B94, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.94915, 40.744392 ] } }, -{ "type": "Feature", "properties": { "id": 504417, "name": "23 Av/82 St", "direction": "E", "lat": 40.766376, "lon": -73.88718, "routes": "Q48, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.88718, 40.766376 ] } }, -{ "type": "Feature", "properties": { "id": 504418, "name": "Astoria Blvd/49 St", "direction": "E", "lat": 40.767426, "lon": -73.902214, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.902214, 40.767426 ] } }, -{ "type": "Feature", "properties": { "id": 504419, "name": "Astoria Blvd/49 St", "direction": "W", "lat": 40.767883, "lon": -73.90172, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.90172, 40.767883 ] } }, -{ "type": "Feature", "properties": { "id": 504421, "name": "165 St Terminal/Bay 6", "direction": "W", "lat": 40.7079, "lon": -73.79578, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.79578, 40.7079 ] } }, -{ "type": "Feature", "properties": { "id": 504423, "name": "Astoria Blvd South/77 St", "direction": "E", "lat": 40.765587, "lon": -73.89145, "routes": "Q19, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.89145, 40.765587 ] } }, -{ "type": "Feature", "properties": { "id": 504424, "name": "Utopia Pkwy/Union Tpke", "direction": "NW", "lat": 40.725628, "lon": -73.79156, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79156, 40.725628 ] } }, -{ "type": "Feature", "properties": { "id": 504427, "name": "150 St/Cross Island Pkwy Service Rd South", "direction": "S", "lat": 40.78666, "lon": -73.81349, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81349, 40.78666 ] } }, -{ "type": "Feature", "properties": { "id": 504428, "name": "48 Av/207 St", "direction": "SW", "lat": 40.753952, "lon": -73.773766, "routes": "Q27, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.773766, 40.753952 ] } }, -{ "type": "Feature", "properties": { "id": 504429, "name": "Bell Bl/24 Av", "direction": "N", "lat": 40.779514, "lon": -73.775444, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.775444, 40.779514 ] } }, -{ "type": "Feature", "properties": { "id": 504430, "name": "42 Rd/28 St", "direction": "NE", "lat": 40.749035, "lon": -73.939545, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.939545, 40.749035 ] } }, -{ "type": "Feature", "properties": { "id": 504432, "name": "Northern Blvd/243 St", "direction": "E", "lat": 40.765327, "lon": -73.7435, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.7435, 40.765327 ] } }, -{ "type": "Feature", "properties": { "id": 504434, "name": "Myrtle Av/114 St", "direction": "W", "lat": 40.70056, "lon": -73.83632, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.83632, 40.70056 ] } }, -{ "type": "Feature", "properties": { "id": 504435, "name": "Greenpoint Av/Borden Av", "direction": "NE", "lat": 40.736717, "lon": -73.93162, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.93162, 40.736717 ] } }, -{ "type": "Feature", "properties": { "id": 504436, "name": "Homelawn St/Gothic Dr", "direction": "NE", "lat": 40.71436, "lon": -73.7934, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.7934, 40.71436 ] } }, -{ "type": "Feature", "properties": { "id": 504437, "name": "Liberty Av/170 St", "direction": "W", "lat": 40.703636, "lon": -73.787926, "routes": "Q42, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.787926, 40.703636 ] } }, -{ "type": "Feature", "properties": { "id": 504439, "name": "Metropolitan Av/62 St", "direction": "W", "lat": 40.71271, "lon": -73.899796, "routes": "Q67, Q54, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.899796, 40.71271 ] } }, -{ "type": "Feature", "properties": { "id": 504440, "name": "Metropolitan Av/83 Av", "direction": "W", "lat": 40.707264, "lon": -73.83532, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.83532, 40.707264 ] } }, -{ "type": "Feature", "properties": { "id": 504441, "name": "148 St/150 Av", "direction": "S", "lat": 40.661034, "lon": -73.792885, "routes": "Q3, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.792885, 40.661034 ] } }, -{ "type": "Feature", "properties": { "id": 504442, "name": "Hook Creek Blvd/136 Av", "direction": "N", "lat": 40.668793, "lon": -73.728966, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.728966, 40.668793 ] } }, -{ "type": "Feature", "properties": { "id": 504443, "name": "Hook Creek Blvd/134 Av", "direction": "N", "lat": 40.6714, "lon": -73.72801, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.72801, 40.6714 ] } }, -{ "type": "Feature", "properties": { "id": 504444, "name": "48 Av/Bell Blvd", "direction": "E", "lat": 40.755577, "lon": -73.76735, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.76735, 40.755577 ] } }, -{ "type": "Feature", "properties": { "id": 504445, "name": "Totten Av/Cross Island Pkwy", "direction": "SW", "lat": 40.791428, "lon": -73.78106, "routes": "Q13, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.78106, 40.791428 ] } }, -{ "type": "Feature", "properties": { "id": 504446, "name": "32 Av/Clearview Expwy Service Rd East", "direction": "W", "lat": 40.771595, "lon": -73.78316, "routes": "Q31, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78316, 40.771595 ] } }, -{ "type": "Feature", "properties": { "id": 504447, "name": "32 Av/Clearview Expwy Service Rd West", "direction": "W", "lat": 40.771214, "lon": -73.78444, "routes": "Q28, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.78444, 40.771214 ] } }, -{ "type": "Feature", "properties": { "id": 504448, "name": "Metropolitan Av/Admiral Av", "direction": "E", "lat": 40.7125, "lon": -73.89727, "routes": "Q54, Q38, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89727, 40.7125 ] } }, -{ "type": "Feature", "properties": { "id": 504449, "name": "Metropolitan Av/Woodward Av", "direction": "W", "lat": 40.71382, "lon": -73.92037, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.92037, 40.71382 ] } }, -{ "type": "Feature", "properties": { "id": 504450, "name": "Metropolitan Av/70 Av", "direction": "W", "lat": 40.710922, "lon": -73.85347, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.85347, 40.710922 ] } }, -{ "type": "Feature", "properties": { "id": 504452, "name": "Metropolitan Av/Woodhaven Blvd", "direction": "W", "lat": 40.711975, "lon": -73.86034, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.86034, 40.711975 ] } }, -{ "type": "Feature", "properties": { "id": 504455, "name": "Grand Av/Hamilton Pl", "direction": "SW", "lat": 40.724155, "lon": -73.89877, "routes": "Q58, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.89877, 40.724155 ] } }, -{ "type": "Feature", "properties": { "id": 504456, "name": "Farmers Bl/Ludlum Av", "direction": "S", "lat": 40.70534, "lon": -73.76711, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76711, 40.70534 ] } }, -{ "type": "Feature", "properties": { "id": 504457, "name": "Farmers Blvd/104 Av", "direction": "S", "lat": 40.7064, "lon": -73.76736, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76736, 40.7064 ] } }, -{ "type": "Feature", "properties": { "id": 504458, "name": "Queens Blvd/Queens Plaza East", "direction": "NW", "lat": 40.74883, "lon": -73.93718, "routes": "Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.93718, 40.74883 ] } }, -{ "type": "Feature", "properties": { "id": 504459, "name": "Farmers Blvd/103 Av", "direction": "N", "lat": 40.707638, "lon": -73.76758, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76758, 40.707638 ] } }, -{ "type": "Feature", "properties": { "id": 504460, "name": "Farmers Blvd/142 Av", "direction": "SW", "lat": 40.67028, "lon": -73.765366, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.765366, 40.67028 ] } }, -{ "type": "Feature", "properties": { "id": 504461, "name": "Linden Blvd/172 St", "direction": "W", "lat": 40.691837, "lon": -73.77878, "routes": "Q4" }, "geometry": { "type": "Point", "coordinates": [ -73.77878, 40.691837 ] } }, -{ "type": "Feature", "properties": { "id": 504462, "name": "Merrick Blvd/111 Av", "direction": "NW", "lat": 40.694378, "lon": -73.78121, "routes": "Q85, Q4, Q84, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.78121, 40.694378 ] } }, -{ "type": "Feature", "properties": { "id": 504463, "name": "Francis Lewis Blvd/Sunrise Hwy", "direction": "NW", "lat": 40.666042, "lon": -73.73597, "routes": "Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.73597, 40.666042 ] } }, -{ "type": "Feature", "properties": { "id": 504464, "name": "Liberty Av/180 St", "direction": "E", "lat": 40.70558, "lon": -73.7778, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.7778, 40.70558 ] } }, -{ "type": "Feature", "properties": { "id": 504465, "name": "Liberty Av/183 St", "direction": "E", "lat": 40.70539, "lon": -73.77628, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.77628, 40.70539 ] } }, -{ "type": "Feature", "properties": { "id": 504467, "name": "Archer Av/Parsons Blvd Bay D", "direction": "E", "lat": 40.702312, "lon": -73.80037, "routes": "Q5, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.80037, 40.702312 ] } }, -{ "type": "Feature", "properties": { "id": 504469, "name": "Archer Av/Parsons Blvd", "direction": "E", "lat": 40.702217, "lon": -73.800606, "routes": "Q83, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.800606, 40.702217 ] } }, -{ "type": "Feature", "properties": { "id": 504470, "name": "Archer Av/Parsons Blvd", "direction": "E", "lat": 40.702168, "lon": -73.80081, "routes": "Q4, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.80081, 40.702168 ] } }, -{ "type": "Feature", "properties": { "id": 504471, "name": "165 St/Terminal", "direction": "NW", "lat": 40.707634, "lon": -73.79556, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.79556, 40.707634 ] } }, -{ "type": "Feature", "properties": { "id": 504472, "name": "165 St/Terminal", "direction": "W", "lat": 40.70792, "lon": -73.79573, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.79573, 40.70792 ] } }, -{ "type": "Feature", "properties": { "id": 504473, "name": "Francis Lewis Blvd/172 St", "direction": "NW", "lat": 40.77085, "lon": -73.79341, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.79341, 40.77085 ] } }, -{ "type": "Feature", "properties": { "id": 504474, "name": "Madison St/Cypress Av", "direction": "NE", "lat": 40.70101, "lon": -73.90707, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90707, 40.70101 ] } }, -{ "type": "Feature", "properties": { "id": 504475, "name": "Madison St/Seneca Av", "direction": "NE", "lat": 40.70215, "lon": -73.905914, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.905914, 40.70215 ] } }, -{ "type": "Feature", "properties": { "id": 504476, "name": "39 Av /138 St", "direction": "E", "lat": 40.76077, "lon": -73.82794, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.82794, 40.76077 ] } }, -{ "type": "Feature", "properties": { "id": 504477, "name": "39 Av/Union St", "direction": "E", "lat": 40.76088, "lon": -73.82749, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.82749, 40.76088 ] } }, -{ "type": "Feature", "properties": { "id": 504478, "name": "Cross Island Pkwy/209 St", "direction": "E", "lat": 40.788803, "lon": -73.78312, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.78312, 40.788803 ] } }, -{ "type": "Feature", "properties": { "id": 504480, "name": "Archer Av/Sutphin Blvd", "direction": "NE", "lat": 40.700516, "lon": -73.80783, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.80783, 40.700516 ] } }, -{ "type": "Feature", "properties": { "id": 504481, "name": "Archer Av/Sutphin Blvd", "direction": "NE", "lat": 40.700504, "lon": -73.80782, "routes": "Q24, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.80782, 40.700504 ] } }, -{ "type": "Feature", "properties": { "id": 504482, "name": "Corporal Kennedy St/32 Av", "direction": "SE", "lat": 40.77237, "lon": -73.78071, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.78071, 40.77237 ] } }, -{ "type": "Feature", "properties": { "id": 504483, "name": "Kissena Blvd/Queens College", "direction": "S", "lat": 40.735615, "lon": -73.814865, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.814865, 40.735615 ] } }, -{ "type": "Feature", "properties": { "id": 504484, "name": "Roosevelt Av/Willets Point Blvd Station", "direction": "E", "lat": 40.75452, "lon": -73.84575, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.84575, 40.75452 ] } }, -{ "type": "Feature", "properties": { "id": 504485, "name": "Ditmars Blvd/102 St", "direction": "NW", "lat": 40.76908, "lon": -73.86847, "routes": "Q48, Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86847, 40.76908 ] } }, -{ "type": "Feature", "properties": { "id": 504486, "name": "Farmers Blvd/Liberty Av", "direction": "S", "lat": 40.70305, "lon": -73.76669, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76669, 40.70305 ] } }, -{ "type": "Feature", "properties": { "id": 504487, "name": "39 Av/138 St", "direction": "E", "lat": 40.76097, "lon": -73.82705, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.82705, 40.76097 ] } }, -{ "type": "Feature", "properties": { "id": 504489, "name": "Queens Blvd/78 Cres", "direction": "NW", "lat": 40.714733, "lon": -73.83124, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.83124, 40.714733 ] } }, -{ "type": "Feature", "properties": { "id": 504491, "name": "Grand Av/61 St", "direction": "E", "lat": 40.72173, "lon": -73.904594, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.904594, 40.72173 ] } }, -{ "type": "Feature", "properties": { "id": 504493, "name": "257 St/Jericho Tpke", "direction": "N", "lat": 40.728207, "lon": -73.70775, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.70775, 40.728207 ] } }, -{ "type": "Feature", "properties": { "id": 504497, "name": "Myrtle Av/65 Pl", "direction": "E", "lat": 40.70125, "lon": -73.88845, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.88845, 40.70125 ] } }, -{ "type": "Feature", "properties": { "id": 504498, "name": "Myrtle Av/66 Pl", "direction": "E", "lat": 40.701363, "lon": -73.88711, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.88711, 40.701363 ] } }, -{ "type": "Feature", "properties": { "id": 504499, "name": "Myrtle Av/67 Pl", "direction": "E", "lat": 40.70152, "lon": -73.885254, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.885254, 40.70152 ] } }, -{ "type": "Feature", "properties": { "id": 504500, "name": "Myrtle Av/69 St", "direction": "E", "lat": 40.701714, "lon": -73.88293, "routes": "QM25, QM24, Q55, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.88293, 40.701714 ] } }, -{ "type": "Feature", "properties": { "id": 504502, "name": "Myrtle Av/72 St", "direction": "E", "lat": 40.702076, "lon": -73.87836, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.87836, 40.702076 ] } }, -{ "type": "Feature", "properties": { "id": 504505, "name": "Jericho Tpke/Tulip Av", "direction": "E", "lat": 40.7275, "lon": -73.70863, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.70863, 40.7275 ] } }, -{ "type": "Feature", "properties": { "id": 504511, "name": "Archer Av/Van Wyck Expwy Service Rd East", "direction": "E", "lat": 40.69863, "lon": -73.81387, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.81387, 40.69863 ] } }, -{ "type": "Feature", "properties": { "id": 504512, "name": "Archer Av/143 St", "direction": "E", "lat": 40.699642, "lon": -73.81028, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.81028, 40.699642 ] } }, -{ "type": "Feature", "properties": { "id": 504517, "name": "Astoria Blvd North/77 St", "direction": "W", "lat": 40.7668, "lon": -73.89251, "routes": "Q19, M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.89251, 40.7668 ] } }, -{ "type": "Feature", "properties": { "id": 504518, "name": "Metropolitan Av/125 St", "direction": "E", "lat": 40.704464, "lon": -73.82601, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.82601, 40.704464 ] } }, -{ "type": "Feature", "properties": { "id": 504519, "name": "Jackson Av/45 Av", "direction": "W", "lat": 40.746704, "lon": -73.94353, "routes": "B62, B94" }, "geometry": { "type": "Point", "coordinates": [ -73.94353, 40.746704 ] } }, -{ "type": "Feature", "properties": { "id": 504521, "name": "Little Neck Pkwy/87 Dr", "direction": "N", "lat": 40.72831, "lon": -73.71044, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71044, 40.72831 ] } }, -{ "type": "Feature", "properties": { "id": 504522, "name": "Little Neck Pkwy/87 Rd", "direction": "S", "lat": 40.72914, "lon": -73.71076, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71076, 40.72914 ] } }, -{ "type": "Feature", "properties": { "id": 504523, "name": "Brinkerhoff Av/189 St", "direction": "W", "lat": 40.70383, "lon": -73.767426, "routes": "Q83, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.767426, 40.70383 ] } }, -{ "type": "Feature", "properties": { "id": 504526, "name": "Jackson Av/43 Av", "direction": "W", "lat": 40.747654, "lon": -73.94111, "routes": "Q67, Q39, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.94111, 40.747654 ] } }, -{ "type": "Feature", "properties": { "id": 504527, "name": "Utopia Pkwy/169 St", "direction": "S", "lat": 40.781513, "lon": -73.79437, "routes": "Q16, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.79437, 40.781513 ] } }, -{ "type": "Feature", "properties": { "id": 504528, "name": "Hillside Av/248 St", "direction": "W", "lat": 40.734966, "lon": -73.71968, "routes": "Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.71968, 40.734966 ] } }, -{ "type": "Feature", "properties": { "id": 504535, "name": "Jamaica Av/165 St", "direction": "W", "lat": 40.705578, "lon": -73.79478, "routes": "Q54, Q56, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.79478, 40.705578 ] } }, -{ "type": "Feature", "properties": { "id": 504538, "name": "Farmers Blvd/Mars Pl", "direction": "S", "lat": 40.681538, "lon": -73.76113, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76113, 40.681538 ] } }, -{ "type": "Feature", "properties": { "id": 504539, "name": "Farmers Blvd/Merrick Blvd", "direction": "SW", "lat": 40.679405, "lon": -73.761795, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.761795, 40.679405 ] } }, -{ "type": "Feature", "properties": { "id": 504540, "name": "Jamaica Av/Merrick Blvd", "direction": "W", "lat": 40.70596, "lon": -73.79387, "routes": "Q30, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79387, 40.70596 ] } }, -{ "type": "Feature", "properties": { "id": 504541, "name": "Murdock Av/200 St", "direction": "E", "lat": 40.699917, "lon": -73.75479, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.75479, 40.699917 ] } }, -{ "type": "Feature", "properties": { "id": 504543, "name": "140 Av/Bedell St", "direction": "W", "lat": 40.67218, "lon": -73.76123, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76123, 40.67218 ] } }, -{ "type": "Feature", "properties": { "id": 504544, "name": "Little Neck Pkwy/82 Av", "direction": "NW", "lat": 40.74022, "lon": -73.71579, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71579, 40.74022 ] } }, -{ "type": "Feature", "properties": { "id": 504545, "name": "Union Tpke/Queens Blvd", "direction": "E", "lat": 40.71462, "lon": -73.82881, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.82881, 40.71462 ] } }, -{ "type": "Feature", "properties": { "id": 504546, "name": "Grand Av/54 St", "direction": "W", "lat": 40.718616, "lon": -73.915115, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.915115, 40.718616 ] } }, -{ "type": "Feature", "properties": { "id": 504547, "name": "Decatur St/Irving Av", "direction": "NE", "lat": 40.693077, "lon": -73.903244, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.903244, 40.693077 ] } }, -{ "type": "Feature", "properties": { "id": 504548, "name": "150 St/24 Av", "direction": "S", "lat": 40.777283, "lon": -73.81483, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.81483, 40.777283 ] } }, -{ "type": "Feature", "properties": { "id": 504549, "name": "28 St/Queens Plaza South", "direction": "NE", "lat": 40.7497, "lon": -73.93904, "routes": "B62, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.93904, 40.7497 ] } }, -{ "type": "Feature", "properties": { "id": 504553, "name": "Lakeville Rd/Union Tpke", "direction": "NW", "lat": 40.752846, "lon": -73.70194, "routes": "QM6, Q46, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.70194, 40.752846 ] } }, -{ "type": "Feature", "properties": { "id": 504554, "name": "Lakeville Rd/ Hewlett St", "direction": "NW", "lat": 40.753735, "lon": -73.70321, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.70321, 40.753735 ] } }, -{ "type": "Feature", "properties": { "id": 504555, "name": "Lij Medical Rdwy/271 St", "direction": "NE", "lat": 40.755066, "lon": -73.70642, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.70642, 40.755066 ] } }, -{ "type": "Feature", "properties": { "id": 504556, "name": "Lakeville Rd/Hewlett St", "direction": "SE", "lat": 40.75365, "lon": -73.70335, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.70335, 40.75365 ] } }, -{ "type": "Feature", "properties": { "id": 504557, "name": "Archer Av/150 St", "direction": "W", "lat": 40.701424, "lon": -73.80457, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.80457, 40.701424 ] } }, -{ "type": "Feature", "properties": { "id": 504559, "name": "Archer Av/Sutphin Blvd", "direction": "E", "lat": 40.700638, "lon": -73.807236, "routes": "Q20B, Q20A, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.807236, 40.700638 ] } }, -{ "type": "Feature", "properties": { "id": 504560, "name": "47 St/Greenpoint Av", "direction": "N", "lat": 40.742393, "lon": -73.91785, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.91785, 40.742393 ] } }, -{ "type": "Feature", "properties": { "id": 504950, "name": "149 Av/253 St", "direction": "E", "lat": 40.65297, "lon": -73.73649, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.73649, 40.65297 ] } }, -{ "type": "Feature", "properties": { "id": 504951, "name": "149 Av/257 St", "direction": "E", "lat": 40.652843, "lon": -73.73165, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.73165, 40.652843 ] } }, -{ "type": "Feature", "properties": { "id": 504952, "name": "259 St/149 Av", "direction": "N", "lat": 40.65319, "lon": -73.72967, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.72967, 40.65319 ] } }, -{ "type": "Feature", "properties": { "id": 504954, "name": "Francis Lewis Blvd/256 St", "direction": "NW", "lat": 40.65921, "lon": -73.72984, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.72984, 40.65921 ] } }, -{ "type": "Feature", "properties": { "id": 504955, "name": "Francis Lewis Blvd/245 St", "direction": "NW", "lat": 40.664814, "lon": -73.734856, "routes": "Q85, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.734856, 40.664814 ] } }, -{ "type": "Feature", "properties": { "id": 504957, "name": "Linden Blvd/Guy Brewer Blvd", "direction": "W", "lat": 40.689117, "lon": -73.78571, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.78571, 40.689117 ] } }, -{ "type": "Feature", "properties": { "id": 504959, "name": "Linden Blvd/Van Wyck Expwy", "direction": "W", "lat": 40.68319, "lon": -73.80512, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.80512, 40.68319 ] } }, -{ "type": "Feature", "properties": { "id": 504965, "name": "Palmetto St/Saint Nicholas Av", "direction": "NE", "lat": 40.70042, "lon": -73.909996, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.909996, 40.70042 ] } }, -{ "type": "Feature", "properties": { "id": 504967, "name": "Liberty Av/Van Wyck Expwy", "direction": "W", "lat": 40.692142, "lon": -73.81018, "routes": "X64" }, "geometry": { "type": "Point", "coordinates": [ -73.81018, 40.692142 ] } }, -{ "type": "Feature", "properties": { "id": 504979, "name": "Atlantic Av/124 St", "direction": "E", "lat": 40.69508, "lon": -73.82328, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.82328, 40.69508 ] } }, -{ "type": "Feature", "properties": { "id": 504980, "name": "Archer Av/Sutphin Blvd", "direction": "W", "lat": 40.700653, "lon": -73.80756, "routes": "Q20A, Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.80756, 40.700653 ] } }, -{ "type": "Feature", "properties": { "id": 504981, "name": "Archer Av/158 St", "direction": "E", "lat": 40.701904, "lon": -73.80206, "routes": "Q44+, Q30, Q31, Q20A, Q20B, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.80206, 40.701904 ] } }, -{ "type": "Feature", "properties": { "id": 504984, "name": "Jamaica Av/150 St", "direction": "E", "lat": 40.702038, "lon": -73.80461, "routes": "Q56, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.80461, 40.702038 ] } }, -{ "type": "Feature", "properties": { "id": 504985, "name": "Archer Av/Merrick Blvd", "direction": "E", "lat": 40.704536, "lon": -73.79229, "routes": "Q20B, Q20A, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.79229, 40.704536 ] } }, -{ "type": "Feature", "properties": { "id": 504986, "name": "29 Av/163 St", "direction": "W", "lat": 40.771214, "lon": -73.80198, "routes": "Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.80198, 40.771214 ] } }, -{ "type": "Feature", "properties": { "id": 504987, "name": "Horace Harding Expwy/Junction Blvd", "direction": "W", "lat": 40.734364, "lon": -73.86451, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.86451, 40.734364 ] } }, -{ "type": "Feature", "properties": { "id": 504988, "name": "94 St/58 Av", "direction": "NW", "lat": 40.735603, "lon": -73.86719, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.86719, 40.735603 ] } }, -{ "type": "Feature", "properties": { "id": 504992, "name": "Roosevelt Av/Bowne St", "direction": "W", "lat": 40.760925, "lon": -73.824936, "routes": "Q15, Q12, Q15A, Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.824936, 40.760925 ] } }, -{ "type": "Feature", "properties": { "id": 504993, "name": "Main St/39 Av", "direction": "SE", "lat": 40.760395, "lon": -73.83066, "routes": "Q20A, Q20B, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.83066, 40.760395 ] } }, -{ "type": "Feature", "properties": { "id": 504994, "name": "Roosevelt Av /Union St", "direction": "E", "lat": 40.759926, "lon": -73.82855, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.82855, 40.759926 ] } }, -{ "type": "Feature", "properties": { "id": 504995, "name": "Horace Harding Expwy/231 St", "direction": "E", "lat": 40.75117, "lon": -73.747116, "routes": "QM35, Q30, QM5, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.747116, 40.75117 ] } }, -{ "type": "Feature", "properties": { "id": 504998, "name": "Hillside Av/139 St", "direction": "W", "lat": 40.704453, "lon": -73.81432, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81432, 40.704453 ] } }, -{ "type": "Feature", "properties": { "id": 504999, "name": "Queens Blvd/87 Av", "direction": "NW", "lat": 40.70667, "lon": -73.81672, "routes": "Q20B, Q60, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81672, 40.70667 ] } }, -{ "type": "Feature", "properties": { "id": 505000, "name": "Queens Blvd/86 Av", "direction": "NW", "lat": 40.708042, "lon": -73.817665, "routes": "Q60, Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.817665, 40.708042 ] } }, -{ "type": "Feature", "properties": { "id": 505002, "name": "Main St/84 Rd", "direction": "NE", "lat": 40.712864, "lon": -73.81697, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81697, 40.712864 ] } }, -{ "type": "Feature", "properties": { "id": 505003, "name": "Main St/Coolidge Av", "direction": "N", "lat": 40.71524, "lon": -73.81627, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81627, 40.71524 ] } }, -{ "type": "Feature", "properties": { "id": 505004, "name": "Parsons Blvd/21 Av", "direction": "NE", "lat": 40.78081, "lon": -73.82271, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82271, 40.78081 ] } }, -{ "type": "Feature", "properties": { "id": 505006, "name": "Main St/Grand Central Pkwy", "direction": "S", "lat": 40.715286, "lon": -73.816444, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.816444, 40.715286 ] } }, -{ "type": "Feature", "properties": { "id": 505007, "name": "Main St/ 82 Dr", "direction": "SW", "lat": 40.713165, "lon": -73.81701, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81701, 40.713165 ] } }, -{ "type": "Feature", "properties": { "id": 505008, "name": "Main St/139 St", "direction": "SW", "lat": 40.71109, "lon": -73.81899, "routes": "Q20A, Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.81899, 40.71109 ] } }, -{ "type": "Feature", "properties": { "id": 505009, "name": "Queens Blvd/Main St", "direction": "SE", "lat": 40.7087, "lon": -73.818756, "routes": "X68, Q60, Q44+, Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.818756, 40.7087 ] } }, -{ "type": "Feature", "properties": { "id": 505010, "name": "Queens Bl/86 Av", "direction": "SE", "lat": 40.707302, "lon": -73.81755, "routes": "Q60, Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81755, 40.707302 ] } }, -{ "type": "Feature", "properties": { "id": 505011, "name": "Hillside Av/139 St", "direction": "E", "lat": 40.70443, "lon": -73.813995, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.813995, 40.70443 ] } }, -{ "type": "Feature", "properties": { "id": 505013, "name": "20 Av/Whitestone Expwy", "direction": "W", "lat": 40.781742, "lon": -73.82612, "routes": "Q20A, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.82612, 40.781742 ] } }, -{ "type": "Feature", "properties": { "id": 505014, "name": "20 Av/Petracca Pl-Target", "direction": "W", "lat": 40.781704, "lon": -73.832634, "routes": "Q76, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.832634, 40.781704 ] } }, -{ "type": "Feature", "properties": { "id": 505015, "name": "20 Av/132 St", "direction": "W", "lat": 40.781708, "lon": -73.83579, "routes": "Q20A, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.83579, 40.781708 ] } }, -{ "type": "Feature", "properties": { "id": 505016, "name": "20 Av/131 St", "direction": "W", "lat": 40.781696, "lon": -73.83768, "routes": "Q20A, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.83768, 40.781696 ] } }, -{ "type": "Feature", "properties": { "id": 505017, "name": "20 Av/127 St", "direction": "W", "lat": 40.78174, "lon": -73.841286, "routes": "Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.841286, 40.78174 ] } }, -{ "type": "Feature", "properties": { "id": 505018, "name": "20 Av/124 St", "direction": "W", "lat": 40.781734, "lon": -73.84452, "routes": "Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.84452, 40.781734 ] } }, -{ "type": "Feature", "properties": { "id": 505019, "name": "College Point Blvd/20 Av", "direction": "N", "lat": 40.78198, "lon": -73.845856, "routes": "Q20A, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.845856, 40.78198 ] } }, -{ "type": "Feature", "properties": { "id": 505020, "name": "College Point Blvd/18 Av", "direction": "N", "lat": 40.78352, "lon": -73.845764, "routes": "Q65, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.845764, 40.78352 ] } }, -{ "type": "Feature", "properties": { "id": 505021, "name": "15 Av/College Point Blvd", "direction": "E", "lat": 40.784153, "lon": -73.84551, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.84551, 40.784153 ] } }, -{ "type": "Feature", "properties": { "id": 505022, "name": "College Point Blvd/15 Av", "direction": "S", "lat": 40.784073, "lon": -73.845894, "routes": "Q65, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.845894, 40.784073 ] } }, -{ "type": "Feature", "properties": { "id": 505023, "name": "20 Av/College Point Blvd", "direction": "E", "lat": 40.78164, "lon": -73.84551, "routes": "Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.84551, 40.78164 ] } }, -{ "type": "Feature", "properties": { "id": 505024, "name": "20 Av/124 St", "direction": "E", "lat": 40.781635, "lon": -73.843735, "routes": "Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.843735, 40.781635 ] } }, -{ "type": "Feature", "properties": { "id": 505025, "name": "20 Av/128 St", "direction": "E", "lat": 40.781647, "lon": -73.840614, "routes": "Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.840614, 40.781647 ] } }, -{ "type": "Feature", "properties": { "id": 505026, "name": "20 Av/131 St", "direction": "E", "lat": 40.781544, "lon": -73.8373, "routes": "Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.8373, 40.781544 ] } }, -{ "type": "Feature", "properties": { "id": 505027, "name": "20 Av/Opp Shoprite", "direction": "E", "lat": 40.781548, "lon": -73.83483, "routes": "Q76, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.83483, 40.781548 ] } }, -{ "type": "Feature", "properties": { "id": 505028, "name": "20 Av/Opp Target", "direction": "E", "lat": 40.781548, "lon": -73.83239, "routes": "Q76, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.83239, 40.781548 ] } }, -{ "type": "Feature", "properties": { "id": 505029, "name": "20 Av/Postal Facility", "direction": "E", "lat": 40.781567, "lon": -73.82749, "routes": "Q20A, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.82749, 40.781567 ] } }, -{ "type": "Feature", "properties": { "id": 505031, "name": "Main St/Gravett Rd", "direction": "S", "lat": 40.735226, "lon": -73.82537, "routes": "Q20A, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82537, 40.735226 ] } }, -{ "type": "Feature", "properties": { "id": 505032, "name": "Queens Bl/87 Av", "direction": "SE", "lat": 40.706116, "lon": -73.81674, "routes": "Q20A, Q20B, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.81674, 40.706116 ] } }, -{ "type": "Feature", "properties": { "id": 505033, "name": "Main St/Manton St", "direction": "N", "lat": 40.70995, "lon": -73.8189, "routes": "Q20A, Q20B, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.8189, 40.70995 ] } }, -{ "type": "Feature", "properties": { "id": 505037, "name": "Parsons Blvd/20 Av", "direction": "SW", "lat": 40.78206, "lon": -73.82205, "routes": "Q20B, Q76, QM2, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.82205, 40.78206 ] } }, -{ "type": "Feature", "properties": { "id": 505038, "name": "14 Av/141 St", "direction": "E", "lat": 40.786545, "lon": -73.82785, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82785, 40.786545 ] } }, -{ "type": "Feature", "properties": { "id": 505039, "name": "14 Av/137 St", "direction": "E", "lat": 40.786133, "lon": -73.83147, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.83147, 40.786133 ] } }, -{ "type": "Feature", "properties": { "id": 505040, "name": "15 Av/124 St", "direction": "E", "lat": 40.784554, "lon": -73.843575, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.843575, 40.784554 ] } }, -{ "type": "Feature", "properties": { "id": 505041, "name": "14 Av/143 St", "direction": "W", "lat": 40.78669, "lon": -73.82683, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82683, 40.78669 ] } }, -{ "type": "Feature", "properties": { "id": 505042, "name": "14 Av/142 St", "direction": "W", "lat": 40.78664, "lon": -73.827675, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.827675, 40.78664 ] } }, -{ "type": "Feature", "properties": { "id": 505043, "name": "14 Av/139 St", "direction": "W", "lat": 40.78635, "lon": -73.830345, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.830345, 40.78635 ] } }, -{ "type": "Feature", "properties": { "id": 505044, "name": "14 Av/130 St", "direction": "W", "lat": 40.78581, "lon": -73.8387, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.8387, 40.78581 ] } }, -{ "type": "Feature", "properties": { "id": 505045, "name": "14 Av/128 St", "direction": "W", "lat": 40.785336, "lon": -73.84061, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.84061, 40.785336 ] } }, -{ "type": "Feature", "properties": { "id": 505048, "name": "Bowne St/Sanford Av", "direction": "NW", "lat": 40.75851, "lon": -73.82321, "routes": "Q26, Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.82321, 40.75851 ] } }, -{ "type": "Feature", "properties": { "id": 505053, "name": "32 Av/200 St", "direction": "E", "lat": 40.769615, "lon": -73.7894, "routes": "Q31, Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.7894, 40.769615 ] } }, -{ "type": "Feature", "properties": { "id": 505054, "name": "Flushing Av/Metropolitan Av", "direction": "NE", "lat": 40.713863, "lon": -73.914955, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.914955, 40.713863 ] } }, -{ "type": "Feature", "properties": { "id": 505055, "name": "Greenpoint Av/39 St", "direction": "SW", "lat": 40.738735, "lon": -73.92705, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.92705, 40.738735 ] } }, -{ "type": "Feature", "properties": { "id": 505056, "name": "Greenpoint Av/38 St", "direction": "W", "lat": 40.738132, "lon": -73.92857, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.92857, 40.738132 ] } }, -{ "type": "Feature", "properties": { "id": 505057, "name": "92 St/59 Av", "direction": "S", "lat": 40.73427, "lon": -73.8693, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.8693, 40.73427 ] } }, -{ "type": "Feature", "properties": { "id": 505059, "name": "Cross Island Pkwy/150 St", "direction": "E", "lat": 40.786903, "lon": -73.81306, "routes": "Q15, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.81306, 40.786903 ] } }, -{ "type": "Feature", "properties": { "id": 505060, "name": "Cross Island Pkwy/149 St", "direction": "SE", "lat": 40.787464, "lon": -73.81628, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.81628, 40.787464 ] } }, -{ "type": "Feature", "properties": { "id": 505061, "name": "132 St /20 Av", "direction": "S", "lat": 40.78214, "lon": -73.836716, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.836716, 40.78214 ] } }, -{ "type": "Feature", "properties": { "id": 505065, "name": "48 Av/211 St", "direction": "E", "lat": 40.755013, "lon": -73.7698, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.7698, 40.755013 ] } }, -{ "type": "Feature", "properties": { "id": 505066, "name": "28 St/Queens Plaza South", "direction": "SW", "lat": 40.7497, "lon": -73.93925, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.93925, 40.7497 ] } }, -{ "type": "Feature", "properties": { "id": 505068, "name": "Woodhull Av/190 St", "direction": "W", "lat": 40.710495, "lon": -73.76947, "routes": "Q2, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.76947, 40.710495 ] } }, -{ "type": "Feature", "properties": { "id": 505069, "name": "Metropolitan Av/Aubrey Av", "direction": "E", "lat": 40.71189, "lon": -73.86049, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.86049, 40.71189 ] } }, -{ "type": "Feature", "properties": { "id": 505071, "name": "Horace Harding Expwy/108 St", "direction": "E", "lat": 40.736893, "lon": -73.85185, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.85185, 40.736893 ] } }, -{ "type": "Feature", "properties": { "id": 505072, "name": "Hollis Av/217 Ln", "direction": "E", "lat": 40.710674, "lon": -73.74054, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.74054, 40.710674 ] } }, -{ "type": "Feature", "properties": { "id": 505074, "name": "Flushing Av/58 Dr", "direction": "SW", "lat": 40.7195, "lon": -73.90663, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.90663, 40.7195 ] } }, -{ "type": "Feature", "properties": { "id": 505075, "name": "Brooklyn-Queens Expwy/45 St", "direction": "W", "lat": 40.735462, "lon": -73.92159, "routes": "B24, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.92159, 40.735462 ] } }, -{ "type": "Feature", "properties": { "id": 505076, "name": "Greenpoint Av/40 St", "direction": "W", "lat": 40.73966, "lon": -73.92495, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.92495, 40.73966 ] } }, -{ "type": "Feature", "properties": { "id": 505077, "name": "Myrtle Av/Cornelia St", "direction": "E", "lat": 40.700176, "lon": -73.90525, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90525, 40.700176 ] } }, -{ "type": "Feature", "properties": { "id": 505078, "name": "Myrtle Av/Seneca Av", "direction": "E", "lat": 40.700405, "lon": -73.90308, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90308, 40.700405 ] } }, -{ "type": "Feature", "properties": { "id": 505079, "name": "Myrtle Av/Centre St", "direction": "E", "lat": 40.70044, "lon": -73.90099, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.90099, 40.70044 ] } }, -{ "type": "Feature", "properties": { "id": 505080, "name": "Myrtle Av/Forest Av", "direction": "E", "lat": 40.70045, "lon": -73.89961, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.89961, 40.70045 ] } }, -{ "type": "Feature", "properties": { "id": 505081, "name": "Myrtle Av/Summerfield St", "direction": "E", "lat": 40.700584, "lon": -73.89636, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.89636, 40.700584 ] } }, -{ "type": "Feature", "properties": { "id": 505082, "name": "Putnam Av/Woodward Av", "direction": "SW", "lat": 40.703316, "lon": -73.90367, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90367, 40.703316 ] } }, -{ "type": "Feature", "properties": { "id": 505083, "name": "Putnam Av/Onderdonk Av", "direction": "SW", "lat": 40.70217, "lon": -73.904816, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.904816, 40.70217 ] } }, -{ "type": "Feature", "properties": { "id": 505085, "name": "Stanhope St/Woodward Av", "direction": "SW", "lat": 40.70855, "lon": -73.91258, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91258, 40.70855 ] } }, -{ "type": "Feature", "properties": { "id": 505086, "name": "Stanhope St/Onderdonk Av", "direction": "SW", "lat": 40.707424, "lon": -73.913734, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.913734, 40.707424 ] } }, -{ "type": "Feature", "properties": { "id": 505087, "name": "Woodhaven Blvd/65 Av", "direction": "NW", "lat": 40.720013, "lon": -73.864944, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.864944, 40.720013 ] } }, -{ "type": "Feature", "properties": { "id": 505092, "name": "20 Av/Petracca Pl-Bobs", "direction": "W", "lat": 40.781727, "lon": -73.8282, "routes": "Q20A, Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.8282, 40.781727 ] } }, -{ "type": "Feature", "properties": { "id": 505093, "name": "Union Tpke/Hewlett St", "direction": "SW", "lat": 40.752136, "lon": -73.70255, "routes": "Q46, QM6, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.70255, 40.752136 ] } }, -{ "type": "Feature", "properties": { "id": 505095, "name": "14 Av/132 St", "direction": "W", "lat": 40.78636, "lon": -73.83618, "routes": "Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.83618, 40.78636 ] } }, -{ "type": "Feature", "properties": { "id": 505096, "name": "Hillside Av/187 Pl", "direction": "E", "lat": 40.714832, "lon": -73.77451, "routes": "Q77, Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.77451, 40.714832 ] } }, -{ "type": "Feature", "properties": { "id": 505097, "name": "Queens Blvd/48 St", "direction": "W", "lat": 40.74317, "lon": -73.91667, "routes": "Q32, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.91667, 40.74317 ] } }, -{ "type": "Feature", "properties": { "id": 505098, "name": "148 Av/259 St", "direction": "W", "lat": 40.65505, "lon": -73.72954, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.72954, 40.65505 ] } }, -{ "type": "Feature", "properties": { "id": 505099, "name": "259 St/149 Av", "direction": "S", "lat": 40.652977, "lon": -73.72979, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.72979, 40.652977 ] } }, -{ "type": "Feature", "properties": { "id": 505100, "name": "149 Av/257 St", "direction": "W", "lat": 40.653, "lon": -73.7319, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.7319, 40.653 ] } }, -{ "type": "Feature", "properties": { "id": 505101, "name": "Gates Av/Cypress Av", "direction": "NE", "lat": 40.702312, "lon": -73.90931, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.90931, 40.702312 ] } }, -{ "type": "Feature", "properties": { "id": 505102, "name": "177th St / 104th Ave", "direction": "NW", "lat": 40.704124, "lon": -73.78161, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.78161, 40.704124 ] } }, -{ "type": "Feature", "properties": { "id": 505108, "name": "Fresh Pond Rd / 61st St", "direction": "N", "lat": 40.718254, "lon": -73.90212, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.90212, 40.718254 ] } }, -{ "type": "Feature", "properties": { "id": 505121, "name": "39 Av/Lippman Plaza", "direction": "E", "lat": 40.760693, "lon": -73.82818, "routes": "Q28, Q13, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.82818, 40.760693 ] } }, -{ "type": "Feature", "properties": { "id": 505124, "name": "Springfield Blvd/ 135 Av", "direction": "SW", "lat": 40.67859, "lon": -73.75462, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75462, 40.67859 ] } }, -{ "type": "Feature", "properties": { "id": 505125, "name": "131 St/15 Av", "direction": "N", "lat": 40.78446, "lon": -73.83754, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.83754, 40.78446 ] } }, -{ "type": "Feature", "properties": { "id": 505126, "name": "154 St/9 Av", "direction": "N", "lat": 40.793625, "lon": -73.80697, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80697, 40.793625 ] } }, -{ "type": "Feature", "properties": { "id": 505127, "name": "Powells Cove Blvd/157 St", "direction": "E", "lat": 40.79438, "lon": -73.80333, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.80333, 40.79438 ] } }, -{ "type": "Feature", "properties": { "id": 505128, "name": "Powells Cove Blvd/159 St", "direction": "W", "lat": 40.794437, "lon": -73.80272, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.80272, 40.794437 ] } }, -{ "type": "Feature", "properties": { "id": 505129, "name": "154 St/Powells Cove Blvd", "direction": "S", "lat": 40.79441, "lon": -73.807, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.807, 40.79441 ] } }, -{ "type": "Feature", "properties": { "id": 505130, "name": "154 St/11 Av", "direction": "S", "lat": 40.792175, "lon": -73.807335, "routes": "Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.807335, 40.792175 ] } }, -{ "type": "Feature", "properties": { "id": 505131, "name": "Hempstead Av/Springfield Blvd", "direction": "E", "lat": 40.713085, "lon": -73.73539, "routes": "Q110, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.73539, 40.713085 ] } }, -{ "type": "Feature", "properties": { "id": 505134, "name": "Springfield Blvd/115 Av", "direction": "SW", "lat": 40.700924, "lon": -73.74173, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74173, 40.700924 ] } }, -{ "type": "Feature", "properties": { "id": 505135, "name": "Springfield Blvd/116 Rd", "direction": "S", "lat": 40.696873, "lon": -73.74351, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74351, 40.696873 ] } }, -{ "type": "Feature", "properties": { "id": 505136, "name": "Francis Lewis Blvd/Springfield Blvd", "direction": "SE", "lat": 40.692932, "lon": -73.74474, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74474, 40.692932 ] } }, -{ "type": "Feature", "properties": { "id": 505137, "name": "Springfield Blvd/119 Av", "direction": "NE", "lat": 40.692703, "lon": -73.74505, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74505, 40.692703 ] } }, -{ "type": "Feature", "properties": { "id": 505138, "name": "Springfield Blvd/118 Av", "direction": "N", "lat": 40.694824, "lon": -73.743935, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.743935, 40.694824 ] } }, -{ "type": "Feature", "properties": { "id": 505139, "name": "Springfield Blvd/Linden Blvd", "direction": "N", "lat": 40.697536, "lon": -73.74303, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74303, 40.697536 ] } }, -{ "type": "Feature", "properties": { "id": 505140, "name": "Springfield Blvd/116 Av", "direction": "N", "lat": 40.698193, "lon": -73.74279, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74279, 40.698193 ] } }, -{ "type": "Feature", "properties": { "id": 505141, "name": "Springfield Blvd/115 Rd", "direction": "NE", "lat": 40.699898, "lon": -73.74201, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74201, 40.699898 ] } }, -{ "type": "Feature", "properties": { "id": 505143, "name": "Springfield Blvd/109 Av", "direction": "NE", "lat": 40.70873, "lon": -73.73818, "routes": "Q83, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.73818, 40.70873 ] } }, -{ "type": "Feature", "properties": { "id": 505152, "name": "Union Tpke/256 St", "direction": "NE", "lat": 40.745396, "lon": -73.71481, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.71481, 40.745396 ] } }, -{ "type": "Feature", "properties": { "id": 505154, "name": "Springfield Blvd/114 Av", "direction": "N", "lat": 40.70227, "lon": -73.7408, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.7408, 40.70227 ] } }, -{ "type": "Feature", "properties": { "id": 505156, "name": "Astoria Blvd/Sound St", "direction": "W", "lat": 40.769012, "lon": -73.90713, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.90713, 40.769012 ] } }, -{ "type": "Feature", "properties": { "id": 505158, "name": "Queens Plaza South/28 St", "direction": "SE", "lat": 40.749554, "lon": -73.9385, "routes": "Q60, Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.9385, 40.749554 ] } }, -{ "type": "Feature", "properties": { "id": 505160, "name": "Powells Cove Blvd/160 St", "direction": "E", "lat": 40.794205, "lon": -73.801094, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.801094, 40.794205 ] } }, -{ "type": "Feature", "properties": { "id": 505165, "name": "Atlantic Av/132 St", "direction": "E", "lat": 40.696396, "lon": -73.81674, "routes": "Q24, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81674, 40.696396 ] } }, -{ "type": "Feature", "properties": { "id": 505168, "name": "Brooklyn-Queens Expwy/47 St", "direction": "W", "lat": 40.73541, "lon": -73.919106, "routes": "Q67, B24" }, "geometry": { "type": "Point", "coordinates": [ -73.919106, 40.73541 ] } }, -{ "type": "Feature", "properties": { "id": 505169, "name": "Francis Lewis Blvd/South Conduit Av", "direction": "SE", "lat": 40.664978, "lon": -73.735214, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.735214, 40.664978 ] } }, -{ "type": "Feature", "properties": { "id": 505171, "name": "Francis Lewis Blvd/147 Dr", "direction": "SE", "lat": 40.655506, "lon": -73.72711, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.72711, 40.655506 ] } }, -{ "type": "Feature", "properties": { "id": 505173, "name": "Rocky Hill Rd/Clearview Expwy", "direction": "W", "lat": 40.75325, "lon": -73.77651, "routes": "Q31, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.77651, 40.75325 ] } }, -{ "type": "Feature", "properties": { "id": 505174, "name": "Hillside Av/144 St", "direction": "E", "lat": 40.70508, "lon": -73.811676, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.811676, 40.70508 ] } }, -{ "type": "Feature", "properties": { "id": 505175, "name": "Hillside Av/144 St", "direction": "W", "lat": 40.70517, "lon": -73.81178, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.81178, 40.70517 ] } }, -{ "type": "Feature", "properties": { "id": 505177, "name": "Metropolitan Av/Onderdonk Av", "direction": "E", "lat": 40.71395, "lon": -73.92384, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.92384, 40.71395 ] } }, -{ "type": "Feature", "properties": { "id": 505190, "name": "Astoria Blvd/44 St", "direction": "E", "lat": 40.76818, "lon": -73.90733, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.90733, 40.76818 ] } }, -{ "type": "Feature", "properties": { "id": 505192, "name": "Roosevelt Av/75 St", "direction": "E", "lat": 40.746895, "lon": -73.89061, "routes": "Q32, Q47, Q107, Q70+" }, "geometry": { "type": "Point", "coordinates": [ -73.89061, 40.746895 ] } }, -{ "type": "Feature", "properties": { "id": 505201, "name": "Hillside Av/198 St", "direction": "SW", "lat": 40.718857, "lon": -73.764626, "routes": "X68, Q1, Q76, Q36, Q77, Q43" }, "geometry": { "type": "Point", "coordinates": [ -73.764626, 40.718857 ] } }, -{ "type": "Feature", "properties": { "id": 505203, "name": "Cooper Av/Atlas Park Mall", "direction": "E", "lat": 40.709908, "lon": -73.868065, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.868065, 40.709908 ] } }, -{ "type": "Feature", "properties": { "id": 505204, "name": "Cooper Av/84 St", "direction": "E", "lat": 40.71064, "lon": -73.86542, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.86542, 40.71064 ] } }, -{ "type": "Feature", "properties": { "id": 505205, "name": "Cooper Av/Metropolitan Av", "direction": "SW", "lat": 40.711697, "lon": -73.86322, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.86322, 40.711697 ] } }, -{ "type": "Feature", "properties": { "id": 505206, "name": "Cooper Av/88 St", "direction": "W", "lat": 40.7108, "lon": -73.86513, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.86513, 40.7108 ] } }, -{ "type": "Feature", "properties": { "id": 505209, "name": "Jericho Tpke/251 St", "direction": "W", "lat": 40.72684, "lon": -73.71388, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71388, 40.72684 ] } }, -{ "type": "Feature", "properties": { "id": 505213, "name": "Kissena Blvd/Sanford Av", "direction": "NW", "lat": 40.757282, "lon": -73.82721, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.82721, 40.757282 ] } }, -{ "type": "Feature", "properties": { "id": 505215, "name": "Jackson Av/Thomson Av", "direction": "E", "lat": 40.746708, "lon": -73.94328, "routes": "B62, Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.94328, 40.746708 ] } }, -{ "type": "Feature", "properties": { "id": 505218, "name": "Palmetto St/Saint Nicholas Av", "direction": "SW", "lat": 40.70042, "lon": -73.91023, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.91023, 40.70042 ] } }, -{ "type": "Feature", "properties": { "id": 505219, "name": "South Conduit Av/Lansing Av", "direction": "E", "lat": 40.665405, "lon": -73.74725, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.74725, 40.665405 ] } }, -{ "type": "Feature", "properties": { "id": 505227, "name": "39 Av/Main St", "direction": "W", "lat": 40.760105, "lon": -73.83127, "routes": "Q19, Q50, Q66, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.83127, 40.760105 ] } }, -{ "type": "Feature", "properties": { "id": 505231, "name": "Sutphin Blvd/89 Av", "direction": "SE", "lat": 40.703606, "lon": -73.8088, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.8088, 40.703606 ] } }, -{ "type": "Feature", "properties": { "id": 505233, "name": "Hillside Av/Avon St", "direction": "W", "lat": 40.713535, "lon": -73.78043, "routes": "Q17, Q77, Q43, Q3, Q76, Q2, Q36, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.78043, 40.713535 ] } }, -{ "type": "Feature", "properties": { "id": 505236, "name": "169 St/Hillside Av", "direction": "SE", "lat": 40.710545, "lon": -73.793015, "routes": "Q31, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.793015, 40.710545 ] } }, -{ "type": "Feature", "properties": { "id": 505239, "name": "Douglaston Pkwy/Douglaston Plaza", "direction": "NE", "lat": 40.755608, "lon": -73.73943, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.73943, 40.755608 ] } }, -{ "type": "Feature", "properties": { "id": 505240, "name": "58 Av/223 St", "direction": "W", "lat": 40.75145, "lon": -73.755714, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.755714, 40.75145 ] } }, -{ "type": "Feature", "properties": { "id": 505241, "name": "56 Av/223 St", "direction": "E", "lat": 40.753742, "lon": -73.75693, "routes": "Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75693, 40.753742 ] } }, -{ "type": "Feature", "properties": { "id": 505245, "name": "Little Neck Pkwy/87 Terr", "direction": "N", "lat": 40.72961, "lon": -73.71054, "routes": "Q36" }, "geometry": { "type": "Point", "coordinates": [ -73.71054, 40.72961 ] } }, -{ "type": "Feature", "properties": { "id": 505246, "name": "Myrtle Av/71 Pl", "direction": "W", "lat": 40.702103, "lon": -73.879364, "routes": "QM34, Q55, QM24, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.879364, 40.702103 ] } }, -{ "type": "Feature", "properties": { "id": 505251, "name": "Fresh Pond Rd/Bleecker St", "direction": "NW", "lat": 40.71219, "lon": -73.90032, "routes": "QM34, QM24, Q58, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.90032, 40.71219 ] } }, -{ "type": "Feature", "properties": { "id": 505254, "name": "Astoria Blvd South/Steinway St", "direction": "E", "lat": 40.76879, "lon": -73.91081, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.91081, 40.76879 ] } }, -{ "type": "Feature", "properties": { "id": 505256, "name": "Archer Av /Parsons Blvd", "direction": "E", "lat": 40.702656, "lon": -73.79862, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.79862, 40.702656 ] } }, -{ "type": "Feature", "properties": { "id": 505264, "name": "Archer Av/160 St", "direction": "W", "lat": 40.702736, "lon": -73.798744, "routes": "Q113, Q112, Q114, Q111, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.798744, 40.702736 ] } }, -{ "type": "Feature", "properties": { "id": 505269, "name": "Wyckoff Av/Cornelia St", "direction": "NW", "lat": 40.697876, "lon": -73.90807, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.90807, 40.697876 ] } }, -{ "type": "Feature", "properties": { "id": 505284, "name": "Hillside Av/175 St", "direction": "E", "lat": 40.711853, "lon": -73.786804, "routes": "Q2, Q3, Q36, Q1, Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.786804, 40.711853 ] } }, -{ "type": "Feature", "properties": { "id": 505290, "name": "Jackson Av/23 St", "direction": "W", "lat": 40.745926, "lon": -73.945496, "routes": "B94, B62" }, "geometry": { "type": "Point", "coordinates": [ -73.945496, 40.745926 ] } }, -{ "type": "Feature", "properties": { "id": 505293, "name": "Union St/Northern Blvd", "direction": "NW", "lat": 40.76357, "lon": -73.827995, "routes": "Q28, Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.827995, 40.76357 ] } }, -{ "type": "Feature", "properties": { "id": 505294, "name": "Hoyt Av/29 St", "direction": "NW", "lat": 40.771503, "lon": -73.9181, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.9181, 40.771503 ] } }, -{ "type": "Feature", "properties": { "id": 505316, "name": "Belmont Park Racetrack/Ubs Arena", "direction": "S", "lat": 40.712948, "lon": -73.72765, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.72765, 40.712948 ] } }, -{ "type": "Feature", "properties": { "id": 505322, "name": "Sunrise Hwy/Francis Lewis Blvd", "direction": "W", "lat": 40.66563, "lon": -73.7355, "routes": "Q5, Q5" }, "geometry": { "type": "Point", "coordinates": [ -73.7355, 40.66563 ] } }, -{ "type": "Feature", "properties": { "id": 505325, "name": "54 Av/43 St", "direction": "E", "lat": 40.73225, "lon": -73.92462, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.92462, 40.73225 ] } }, -{ "type": "Feature", "properties": { "id": 505339, "name": "21 St/47 Rd", "direction": "S", "lat": 40.744083, "lon": -73.94881, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94881, 40.744083 ] } }, -{ "type": "Feature", "properties": { "id": 550001, "name": "Eastern Rd/Bldg 77 Halmar", "direction": "NW", "lat": 40.652637, "lon": -73.76537, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.76537, 40.652637 ] } }, -{ "type": "Feature", "properties": { "id": 550002, "name": "N Boundary Rd/Bldg 250 Post Office", "direction": "NW", "lat": 40.656654, "lon": -73.77053, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77053, 40.656654 ] } }, -{ "type": "Feature", "properties": { "id": 550003, "name": "N Boundary Rd/Old Rockaway Blvd", "direction": "NW", "lat": 40.65745, "lon": -73.77177, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77177, 40.65745 ] } }, -{ "type": "Feature", "properties": { "id": 550004, "name": "Rockaway Blvd/147 Av", "direction": "NW", "lat": 40.66036, "lon": -73.77419, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77419, 40.66036 ] } }, -{ "type": "Feature", "properties": { "id": 550005, "name": "Rockaway Blvd/145 Rd", "direction": "NW", "lat": 40.66265, "lon": -73.77617, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77617, 40.66265 ] } }, -{ "type": "Feature", "properties": { "id": 550007, "name": "Rockaway Blvd/144 Av", "direction": "NW", "lat": 40.665882, "lon": -73.778915, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.778915, 40.665882 ] } }, -{ "type": "Feature", "properties": { "id": 550008, "name": "Rockaway Blvd/N Conduit Av", "direction": "NW", "lat": 40.667706, "lon": -73.78056, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78056, 40.667706 ] } }, -{ "type": "Feature", "properties": { "id": 550009, "name": "Rockaway Blvd/137 Av", "direction": "NW", "lat": 40.66881, "lon": -73.78163, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78163, 40.66881 ] } }, -{ "type": "Feature", "properties": { "id": 550010, "name": "Ditmars Blvd/36 St", "direction": "SE", "lat": 40.774258, "lon": -73.90812, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.90812, 40.774258 ] } }, -{ "type": "Feature", "properties": { "id": 550011, "name": "Rockaway Blvd/Baisley Blvd", "direction": "NW", "lat": 40.672436, "lon": -73.78552, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78552, 40.672436 ] } }, -{ "type": "Feature", "properties": { "id": 550012, "name": "Sutphin Blvd/Rockaway Blvd", "direction": "NW", "lat": 40.673855, "lon": -73.78857, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78857, 40.673855 ] } }, -{ "type": "Feature", "properties": { "id": 550013, "name": "Sutphin Blvd/123 Av", "direction": "NW", "lat": 40.6762, "lon": -73.79031, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79031, 40.6762 ] } }, -{ "type": "Feature", "properties": { "id": 550014, "name": "Sutphin Blvd/120 Av", "direction": "N", "lat": 40.67817, "lon": -73.791176, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.791176, 40.67817 ] } }, -{ "type": "Feature", "properties": { "id": 550015, "name": "Sutphin Blvd/119 Av", "direction": "N", "lat": 40.67923, "lon": -73.79156, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79156, 40.67923 ] } }, -{ "type": "Feature", "properties": { "id": 550016, "name": "Sutphin Blvd/Foch Blvd", "direction": "N", "lat": 40.680656, "lon": -73.79203, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79203, 40.680656 ] } }, -{ "type": "Feature", "properties": { "id": 550017, "name": "Sutphin Blvd/116 Av", "direction": "N", "lat": 40.68286, "lon": -73.79255, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79255, 40.68286 ] } }, -{ "type": "Feature", "properties": { "id": 550018, "name": "Sutphin Blvd/115 Rd", "direction": "N", "lat": 40.684376, "lon": -73.79252, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79252, 40.684376 ] } }, -{ "type": "Feature", "properties": { "id": 550019, "name": "Sutphin Blvd/Linden Blvd", "direction": "NW", "lat": 40.686207, "lon": -73.793724, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.793724, 40.686207 ] } }, -{ "type": "Feature", "properties": { "id": 550020, "name": "Sutphin Blvd/112 Av", "direction": "NW", "lat": 40.687626, "lon": -73.794785, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.794785, 40.687626 ] } }, -{ "type": "Feature", "properties": { "id": 550021, "name": "Sutphin Blvd/111 Av", "direction": "NW", "lat": 40.68881, "lon": -73.7956, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.7956, 40.68881 ] } }, -{ "type": "Feature", "properties": { "id": 550024, "name": "Sutphin Blvd/109 Av", "direction": "NW", "lat": 40.691822, "lon": -73.798035, "routes": "Q06, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.798035, 40.691822 ] } }, -{ "type": "Feature", "properties": { "id": 550025, "name": "Sutphin Blvd/Yates Rd", "direction": "NW", "lat": 40.693314, "lon": -73.79956, "routes": "Q60, Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79956, 40.693314 ] } }, -{ "type": "Feature", "properties": { "id": 550027, "name": "Sutphin Blvd/Tuskegee Airmen Way", "direction": "NW", "lat": 40.694714, "lon": -73.802216, "routes": "Q06, Q40, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.802216, 40.694714 ] } }, -{ "type": "Feature", "properties": { "id": 550028, "name": "Sutphin Blvd/Liberty Av", "direction": "NW", "lat": 40.69613, "lon": -73.80424, "routes": "Q40, Q06, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.80424, 40.69613 ] } }, -{ "type": "Feature", "properties": { "id": 550030, "name": "Sutphin Blvd/95 Av", "direction": "NW", "lat": 40.69833, "lon": -73.80633, "routes": "Q09, Q08, Q60, Q06, Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80633, 40.69833 ] } }, -{ "type": "Feature", "properties": { "id": 550031, "name": "Sutphin Blvd/Archer Av", "direction": "NW", "lat": 40.700523, "lon": -73.807594, "routes": "Q06, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.807594, 40.700523 ] } }, -{ "type": "Feature", "properties": { "id": 550034, "name": "165 St Terminal/Q6 Stand", "direction": "SE", "lat": 40.707092, "lon": -73.79554, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79554, 40.707092 ] } }, -{ "type": "Feature", "properties": { "id": 550035, "name": "Jamaica Av / 164 St", "direction": "W", "lat": 40.705334, "lon": -73.79551, "routes": "Q09, Q08, Q06, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.79551, 40.705334 ] } }, -{ "type": "Feature", "properties": { "id": 550036, "name": "Jamaica Av /160 St", "direction": "SW", "lat": 40.70374, "lon": -73.79959, "routes": "Q09, Q08, Q06, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.79959, 40.70374 ] } }, -{ "type": "Feature", "properties": { "id": 550038, "name": "Sutphin Blvd/91 Av", "direction": "S", "lat": 40.701298, "lon": -73.808, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.808, 40.701298 ] } }, -{ "type": "Feature", "properties": { "id": 550039, "name": "Sutphin Blvd/Archer Av", "direction": "S", "lat": 40.699917, "lon": -73.80746, "routes": "Q08, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.80746, 40.699917 ] } }, -{ "type": "Feature", "properties": { "id": 550040, "name": "Sutphin Blvd/97 Av", "direction": "SE", "lat": 40.69735, "lon": -73.80586, "routes": "Q60, Q40, Q08, Q06, Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80586, 40.69735 ] } }, -{ "type": "Feature", "properties": { "id": 550041, "name": "Sutphin Blvd/Liberty Av", "direction": "SE", "lat": 40.696037, "lon": -73.80435, "routes": "Q40, Q60, Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.80435, 40.696037 ] } }, -{ "type": "Feature", "properties": { "id": 550042, "name": "Sutphin Blvd/Tuskegee Airmen Way", "direction": "SE", "lat": 40.694458, "lon": -73.802055, "routes": "Q06, Q60, Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.802055, 40.694458 ] } }, -{ "type": "Feature", "properties": { "id": 550043, "name": "Sutphin Blvd/Lakewood Av", "direction": "SE", "lat": 40.69351, "lon": -73.8001, "routes": "Q06, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.8001, 40.69351 ] } }, -{ "type": "Feature", "properties": { "id": 550044, "name": "Sutphin Blvd/Arlington Terr", "direction": "SE", "lat": 40.69238, "lon": -73.798775, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.798775, 40.69238 ] } }, -{ "type": "Feature", "properties": { "id": 550045, "name": "Sutphin Blvd/Ferndale Av", "direction": "SE", "lat": 40.69115, "lon": -73.797775, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.797775, 40.69115 ] } }, -{ "type": "Feature", "properties": { "id": 550046, "name": "Sutphin Blvd/110 Av", "direction": "SE", "lat": 40.689915, "lon": -73.79678, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79678, 40.689915 ] } }, -{ "type": "Feature", "properties": { "id": 550047, "name": "Sutphin Blvd/111 Av", "direction": "SE", "lat": 40.688538, "lon": -73.79559, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79559, 40.688538 ] } }, -{ "type": "Feature", "properties": { "id": 550048, "name": "Sutphin Blvd/112 Av", "direction": "SE", "lat": 40.687347, "lon": -73.794754, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.794754, 40.687347 ] } }, -{ "type": "Feature", "properties": { "id": 550049, "name": "Sutphin Blvd/Linden Blvd", "direction": "SE", "lat": 40.68615, "lon": -73.79388, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79388, 40.68615 ] } }, -{ "type": "Feature", "properties": { "id": 550050, "name": "Sutphin Blvd/115 Av", "direction": "S", "lat": 40.684505, "lon": -73.79274, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79274, 40.684505 ] } }, -{ "type": "Feature", "properties": { "id": 550051, "name": "Sutphin Blvd/116 Av", "direction": "S", "lat": 40.68246, "lon": -73.79273, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79273, 40.68246 ] } }, -{ "type": "Feature", "properties": { "id": 550052, "name": "Sutphin Blvd/Foch Blvd", "direction": "S", "lat": 40.68034, "lon": -73.79212, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79212, 40.68034 ] } }, -{ "type": "Feature", "properties": { "id": 550053, "name": "Sutphin Blvd/119 Av", "direction": "S", "lat": 40.67921, "lon": -73.79174, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79174, 40.67921 ] } }, -{ "type": "Feature", "properties": { "id": 550054, "name": "Sutphin Blvd/120 Av", "direction": "S", "lat": 40.677624, "lon": -73.79116, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79116, 40.677624 ] } }, -{ "type": "Feature", "properties": { "id": 550055, "name": "Sutphin Blvd/123 Av", "direction": "SE", "lat": 40.676147, "lon": -73.7905, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.7905, 40.676147 ] } }, -{ "type": "Feature", "properties": { "id": 550057, "name": "Rockaway Blvd/150 St", "direction": "E", "lat": 40.672894, "lon": -73.78783, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78783, 40.672894 ] } }, -{ "type": "Feature", "properties": { "id": 550058, "name": "Rockaway Blvd/Baisley Blvd", "direction": "SE", "lat": 40.67236, "lon": -73.78593, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78593, 40.67236 ] } }, -{ "type": "Feature", "properties": { "id": 550059, "name": "Rockaway Blvd/134 Av", "direction": "SE", "lat": 40.67004, "lon": -73.78331, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78331, 40.67004 ] } }, -{ "type": "Feature", "properties": { "id": 550060, "name": "Rockaway Blvd/N Conduit Av", "direction": "SE", "lat": 40.667652, "lon": -73.78088, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78088, 40.667652 ] } }, -{ "type": "Feature", "properties": { "id": 550061, "name": "Rockaway Blvd/136 Av", "direction": "SE", "lat": 40.66874, "lon": -73.78197, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.78197, 40.66874 ] } }, -{ "type": "Feature", "properties": { "id": 550062, "name": "Rockaway Blvd/158 St", "direction": "SE", "lat": 40.665512, "lon": -73.77897, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77897, 40.665512 ] } }, -{ "type": "Feature", "properties": { "id": 550063, "name": "Rockaway Blvd/144 Dr", "direction": "SE", "lat": 40.66422, "lon": -73.77786, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77786, 40.66422 ] } }, -{ "type": "Feature", "properties": { "id": 550064, "name": "Rockaway Blvd/145 Rd", "direction": "SE", "lat": 40.662506, "lon": -73.776436, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.776436, 40.662506 ] } }, -{ "type": "Feature", "properties": { "id": 550065, "name": "Rockaway Blvd/147 Av", "direction": "S", "lat": 40.660664, "lon": -73.77559, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77559, 40.660664 ] } }, -{ "type": "Feature", "properties": { "id": 550066, "name": "N Boundary Rd/Farmers Blvd", "direction": "SE", "lat": 40.658737, "lon": -73.77443, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77443, 40.658737 ] } }, -{ "type": "Feature", "properties": { "id": 550067, "name": "N Boundary Rd/Old Rockaway Blvd", "direction": "SE", "lat": 40.65725, "lon": -73.77196, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77196, 40.65725 ] } }, -{ "type": "Feature", "properties": { "id": 550068, "name": "N Boundary Rd/Bldg 250 Post Office", "direction": "SE", "lat": 40.65648, "lon": -73.7708, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.7708, 40.65648 ] } }, -{ "type": "Feature", "properties": { "id": 550069, "name": "Cross Bay Blvd/108 Av", "direction": "N", "lat": 40.67826, "lon": -73.84398, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.84398, 40.67826 ] } }, -{ "type": "Feature", "properties": { "id": 550070, "name": "Cross Bay Blvd/Liberty Av", "direction": "N", "lat": 40.680275, "lon": -73.84444, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.84444, 40.680275 ] } }, -{ "type": "Feature", "properties": { "id": 550071, "name": "Rockaway Blvd/97 St", "direction": "E", "lat": 40.68026, "lon": -73.842064, "routes": "Q07, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.842064, 40.68026 ] } }, -{ "type": "Feature", "properties": { "id": 550072, "name": "Rockaway Blvd/98 St", "direction": "E", "lat": 40.68008, "lon": -73.84076, "routes": "Q37, Q07, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84076, 40.68008 ] } }, -{ "type": "Feature", "properties": { "id": 550073, "name": "Rockaway Blvd/101 St", "direction": "E", "lat": 40.67972, "lon": -73.83823, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.83823, 40.67972 ] } }, -{ "type": "Feature", "properties": { "id": 550074, "name": "Rockaway Blvd/103 St", "direction": "E", "lat": 40.679443, "lon": -73.836464, "routes": "Q07, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.836464, 40.679443 ] } }, -{ "type": "Feature", "properties": { "id": 550075, "name": "Rockaway Blvd/Centerville St", "direction": "E", "lat": 40.678856, "lon": -73.83431, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.83431, 40.678856 ] } }, -{ "type": "Feature", "properties": { "id": 550076, "name": "Rockaway Blvd/107 St", "direction": "E", "lat": 40.678246, "lon": -73.831955, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.831955, 40.678246 ] } }, -{ "type": "Feature", "properties": { "id": 550077, "name": "Rockaway Blvd/109 St", "direction": "E", "lat": 40.67777, "lon": -73.82985, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.82985, 40.67777 ] } }, -{ "type": "Feature", "properties": { "id": 550078, "name": "Rockaway Blvd/111 St", "direction": "E", "lat": 40.677402, "lon": -73.82769, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.82769, 40.677402 ] } }, -{ "type": "Feature", "properties": { "id": 550079, "name": "Rockaway Blvd/113 St", "direction": "E", "lat": 40.677094, "lon": -73.82579, "routes": "Q07, Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82579, 40.677094 ] } }, -{ "type": "Feature", "properties": { "id": 550080, "name": "Rockaway Blvd/114 Pl", "direction": "E", "lat": 40.67674, "lon": -73.82358, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.82358, 40.67674 ] } }, -{ "type": "Feature", "properties": { "id": 550081, "name": "Rockaway Blvd/116 St", "direction": "E", "lat": 40.67644, "lon": -73.821754, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.821754, 40.67644 ] } }, -{ "type": "Feature", "properties": { "id": 550082, "name": "Rockaway Blvd/Lefferts Blvd", "direction": "E", "lat": 40.676044, "lon": -73.81931, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.81931, 40.676044 ] } }, -{ "type": "Feature", "properties": { "id": 550083, "name": "Rockaway Blvd/121 St", "direction": "E", "lat": 40.67568, "lon": -73.81706, "routes": "Q10, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.81706, 40.67568 ] } }, -{ "type": "Feature", "properties": { "id": 550084, "name": "Rockaway Blvd/122 Pl", "direction": "E", "lat": 40.67549, "lon": -73.81522, "routes": "Q07, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.81522, 40.67549 ] } }, -{ "type": "Feature", "properties": { "id": 550085, "name": "Rockaway Blvd/124 St", "direction": "E", "lat": 40.675316, "lon": -73.81336, "routes": "Q10, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.81336, 40.675316 ] } }, -{ "type": "Feature", "properties": { "id": 550086, "name": "Rockaway Blvd/126 St", "direction": "E", "lat": 40.67519, "lon": -73.81182, "routes": "Q07, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.81182, 40.67519 ] } }, -{ "type": "Feature", "properties": { "id": 550087, "name": "Rockaway Blvd/128 St", "direction": "E", "lat": 40.675007, "lon": -73.809586, "routes": "Q07, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.809586, 40.675007 ] } }, -{ "type": "Feature", "properties": { "id": 550088, "name": "Rockaway Blvd/131 St", "direction": "E", "lat": 40.67479, "lon": -73.80722, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.80722, 40.67479 ] } }, -{ "type": "Feature", "properties": { "id": 550089, "name": "Rockaway Blvd/133 St", "direction": "E", "lat": 40.674606, "lon": -73.80521, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.80521, 40.674606 ] } }, -{ "type": "Feature", "properties": { "id": 550090, "name": "Rockaway Blvd/135 St", "direction": "E", "lat": 40.67445, "lon": -73.803406, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.803406, 40.67445 ] } }, -{ "type": "Feature", "properties": { "id": 550091, "name": "Rockaway Blvd/Van Wyck Expwy", "direction": "E", "lat": 40.674335, "lon": -73.80214, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.80214, 40.674335 ] } }, -{ "type": "Feature", "properties": { "id": 550093, "name": "Rockaway Blvd/142 St", "direction": "E", "lat": 40.674004, "lon": -73.798485, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.798485, 40.674004 ] } }, -{ "type": "Feature", "properties": { "id": 550094, "name": "Rockaway Blvd/143 St", "direction": "E", "lat": 40.673767, "lon": -73.79581, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79581, 40.673767 ] } }, -{ "type": "Feature", "properties": { "id": 550095, "name": "Rockaway Blvd/145 St", "direction": "E", "lat": 40.673573, "lon": -73.79365, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79365, 40.673573 ] } }, -{ "type": "Feature", "properties": { "id": 550096, "name": "Rockaway Blvd/147 St", "direction": "E", "lat": 40.673313, "lon": -73.79062, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79062, 40.673313 ] } }, -{ "type": "Feature", "properties": { "id": 550097, "name": "Rockaway Blvd/150 St", "direction": "E", "lat": 40.672928, "lon": -73.788216, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.788216, 40.672928 ] } }, -{ "type": "Feature", "properties": { "id": 550098, "name": "150 St/Sutter Av", "direction": "S", "lat": 40.671425, "lon": -73.78855, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.78855, 40.671425 ] } }, -{ "type": "Feature", "properties": { "id": 550099, "name": "150 St/130 Av", "direction": "S", "lat": 40.669937, "lon": -73.78892, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.78892, 40.669937 ] } }, -{ "type": "Feature", "properties": { "id": 550100, "name": "150 St/133 Av", "direction": "S", "lat": 40.668438, "lon": -73.789246, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.789246, 40.668438 ] } }, -{ "type": "Feature", "properties": { "id": 550101, "name": "148 St/Central Cargo Rd", "direction": "S", "lat": 40.658096, "lon": -73.79378, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79378, 40.658096 ] } }, -{ "type": "Feature", "properties": { "id": 550102, "name": "148 St/S Cargo Rd", "direction": "SE", "lat": 40.6551, "lon": -73.79159, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79159, 40.6551 ] } }, -{ "type": "Feature", "properties": { "id": 550103, "name": "S Cargo Rd/Cargo Plaza", "direction": "SW", "lat": 40.65291, "lon": -73.7949, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.7949, 40.65291 ] } }, -{ "type": "Feature", "properties": { "id": 550107, "name": "Cargo Plaza/N Service Center", "direction": "N", "lat": 40.655582, "lon": -73.79528, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79528, 40.655582 ] } }, -{ "type": "Feature", "properties": { "id": 550108, "name": "Cargo Plaza/Bldg 86", "direction": "N", "lat": 40.658558, "lon": -73.7952, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.7952, 40.658558 ] } }, -{ "type": "Feature", "properties": { "id": 550109, "name": "Cargo Plaza/150 Av", "direction": "N", "lat": 40.66144, "lon": -73.79516, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79516, 40.66144 ] } }, -{ "type": "Feature", "properties": { "id": 550110, "name": "150 Av/147 St", "direction": "E", "lat": 40.661537, "lon": -73.79349, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79349, 40.661537 ] } }, -{ "type": "Feature", "properties": { "id": 550111, "name": "148 St/147 Av", "direction": "N", "lat": 40.663296, "lon": -73.79196, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79196, 40.663296 ] } }, -{ "type": "Feature", "properties": { "id": 550112, "name": "150 St/133 Av", "direction": "N", "lat": 40.66849, "lon": -73.789024, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.789024, 40.66849 ] } }, -{ "type": "Feature", "properties": { "id": 550113, "name": "150 St/130 Av", "direction": "N", "lat": 40.67, "lon": -73.7887, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.7887, 40.67 ] } }, -{ "type": "Feature", "properties": { "id": 550114, "name": "Rockaway Blvd/Sutphin Blvd", "direction": "W", "lat": 40.673206, "lon": -73.788315, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.788315, 40.673206 ] } }, -{ "type": "Feature", "properties": { "id": 550115, "name": "Rockaway Blvd/147 St", "direction": "W", "lat": 40.67356, "lon": -73.79077, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79077, 40.67356 ] } }, -{ "type": "Feature", "properties": { "id": 550116, "name": "Rockaway Blvd/145 St", "direction": "W", "lat": 40.673832, "lon": -73.79388, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79388, 40.673832 ] } }, -{ "type": "Feature", "properties": { "id": 550117, "name": "Rockaway Blvd/143 St", "direction": "W", "lat": 40.67402, "lon": -73.79593, "routes": "Q07, Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79593, 40.67402 ] } }, -{ "type": "Feature", "properties": { "id": 550118, "name": "Rockaway Blvd/142 St", "direction": "W", "lat": 40.67431, "lon": -73.79912, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79912, 40.67431 ] } }, -{ "type": "Feature", "properties": { "id": 550119, "name": "Rockaway Blvd/140 St", "direction": "W", "lat": 40.67445, "lon": -73.800606, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.800606, 40.67445 ] } }, -{ "type": "Feature", "properties": { "id": 550120, "name": "Rockaway Blvd/135 St", "direction": "W", "lat": 40.67469, "lon": -73.8035, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.8035, 40.67469 ] } }, -{ "type": "Feature", "properties": { "id": 550121, "name": "Rockaway Blvd/133 St", "direction": "W", "lat": 40.67486, "lon": -73.80562, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.80562, 40.67486 ] } }, -{ "type": "Feature", "properties": { "id": 550122, "name": "Rockaway Blvd/Lincoln St", "direction": "W", "lat": 40.675034, "lon": -73.807335, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.807335, 40.675034 ] } }, -{ "type": "Feature", "properties": { "id": 550123, "name": "Rockaway Blvd/128 St", "direction": "W", "lat": 40.675247, "lon": -73.80964, "routes": "Q07, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.80964, 40.675247 ] } }, -{ "type": "Feature", "properties": { "id": 550124, "name": "Rockaway Blvd/127 St", "direction": "W", "lat": 40.675365, "lon": -73.81098, "routes": "Q10, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.81098, 40.675365 ] } }, -{ "type": "Feature", "properties": { "id": 550126, "name": "Rockaway Blvd /122 St", "direction": "W", "lat": 40.675816, "lon": -73.81616, "routes": "Q10, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.81616, 40.675816 ] } }, -{ "type": "Feature", "properties": { "id": 550127, "name": "Rockaway Blvd/Lefferts Blvd", "direction": "W", "lat": 40.676224, "lon": -73.81901, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.81901, 40.676224 ] } }, -{ "type": "Feature", "properties": { "id": 550128, "name": "Rockaway Blvd/118 St", "direction": "W", "lat": 40.676487, "lon": -73.82054, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.82054, 40.676487 ] } }, -{ "type": "Feature", "properties": { "id": 550129, "name": "Rockaway Blvd/116 St", "direction": "W", "lat": 40.676823, "lon": -73.82255, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.82255, 40.676823 ] } }, -{ "type": "Feature", "properties": { "id": 550131, "name": "Rockaway Blvd/111 St", "direction": "W", "lat": 40.677647, "lon": -73.82752, "routes": "Q37, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.82752, 40.677647 ] } }, -{ "type": "Feature", "properties": { "id": 550132, "name": "Rockaway Blvd/109 St", "direction": "W", "lat": 40.67813, "lon": -73.83025, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.83025, 40.67813 ] } }, -{ "type": "Feature", "properties": { "id": 550133, "name": "135 Av/Lefferts Blvd", "direction": "E", "lat": 40.67046, "lon": -73.820656, "routes": "QM18, Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.820656, 40.67046 ] } }, -{ "type": "Feature", "properties": { "id": 550134, "name": "Rockaway Blvd/109 Av", "direction": "W", "lat": 40.678886, "lon": -73.83386, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.83386, 40.678886 ] } }, -{ "type": "Feature", "properties": { "id": 550136, "name": "Rockaway Blvd/102 St", "direction": "W", "lat": 40.679817, "lon": -73.83799, "routes": "Q07, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.83799, 40.679817 ] } }, -{ "type": "Feature", "properties": { "id": 550137, "name": "Rockaway Blvd /Liberty Av", "direction": "W", "lat": 40.680473, "lon": -73.84237, "routes": "Q112, Q07, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84237, 40.680473 ] } }, -{ "type": "Feature", "properties": { "id": 550138, "name": "Cross Bay Blvd/Liberty Av", "direction": "S", "lat": 40.679836, "lon": -73.844734, "routes": "QM15, Q11, Q07, Q41, Q53+, Q21, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.844734, 40.679836 ] } }, -{ "type": "Feature", "properties": { "id": 550139, "name": "Sutter Av/93 St", "direction": "W", "lat": 40.67683, "lon": -73.844444, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.844444, 40.67683 ] } }, -{ "type": "Feature", "properties": { "id": 550140, "name": "Sutter Av/91 St", "direction": "W", "lat": 40.676567, "lon": -73.846275, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.846275, 40.676567 ] } }, -{ "type": "Feature", "properties": { "id": 550141, "name": "Sutter Av/88 St", "direction": "W", "lat": 40.67617, "lon": -73.849075, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.849075, 40.67617 ] } }, -{ "type": "Feature", "properties": { "id": 550142, "name": "Sutter Av/85 St", "direction": "W", "lat": 40.675808, "lon": -73.85154, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.85154, 40.675808 ] } }, -{ "type": "Feature", "properties": { "id": 550143, "name": "Pitkin Av/84 St", "direction": "W", "lat": 40.675415, "lon": -73.8527, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.8527, 40.675415 ] } }, -{ "type": "Feature", "properties": { "id": 550144, "name": "Pitkin Av/81 St", "direction": "W", "lat": 40.676224, "lon": -73.85583, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.85583, 40.676224 ] } }, -{ "type": "Feature", "properties": { "id": 550145, "name": "Pitkin Av/79 St", "direction": "W", "lat": 40.676743, "lon": -73.85812, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.85812, 40.676743 ] } }, -{ "type": "Feature", "properties": { "id": 550146, "name": "Pitkin Av/76 St", "direction": "W", "lat": 40.676754, "lon": -73.86101, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.86101, 40.676754 ] } }, -{ "type": "Feature", "properties": { "id": 550152, "name": "Liberty Av /75 St", "direction": "E", "lat": 40.679146, "lon": -73.86215, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86215, 40.679146 ] } }, -{ "type": "Feature", "properties": { "id": 550153, "name": "101 Av /77 St", "direction": "E", "lat": 40.680153, "lon": -73.86038, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86038, 40.680153 ] } }, -{ "type": "Feature", "properties": { "id": 550154, "name": "101 Av /80 St", "direction": "E", "lat": 40.680637, "lon": -73.85864, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.85864, 40.680637 ] } }, -{ "type": "Feature", "properties": { "id": 550156, "name": "101 Av /84 St", "direction": "E", "lat": 40.681625, "lon": -73.85521, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.85521, 40.681625 ] } }, -{ "type": "Feature", "properties": { "id": 550158, "name": "101 Av /88 St", "direction": "E", "lat": 40.682503, "lon": -73.85209, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.85209, 40.682503 ] } }, -{ "type": "Feature", "properties": { "id": 550160, "name": "101 Av /92 St", "direction": "E", "lat": 40.683556, "lon": -73.84838, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84838, 40.683556 ] } }, -{ "type": "Feature", "properties": { "id": 550161, "name": "101 Av /94 St", "direction": "E", "lat": 40.68397, "lon": -73.84687, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84687, 40.68397 ] } }, -{ "type": "Feature", "properties": { "id": 550162, "name": "101 Av/Woodhaven Blvd", "direction": "E", "lat": 40.68432, "lon": -73.84573, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84573, 40.68432 ] } }, -{ "type": "Feature", "properties": { "id": 550163, "name": "101 Av /97 St", "direction": "E", "lat": 40.684784, "lon": -73.844055, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.844055, 40.684784 ] } }, -{ "type": "Feature", "properties": { "id": 550164, "name": "101 Av /100 St", "direction": "E", "lat": 40.685314, "lon": -73.84226, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84226, 40.685314 ] } }, -{ "type": "Feature", "properties": { "id": 550166, "name": "101 Av /104 St", "direction": "E", "lat": 40.686172, "lon": -73.839165, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.839165, 40.686172 ] } }, -{ "type": "Feature", "properties": { "id": 550167, "name": "101 Av /106 St", "direction": "E", "lat": 40.686855, "lon": -73.83678, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.83678, 40.686855 ] } }, -{ "type": "Feature", "properties": { "id": 550168, "name": "101 Av /108 St", "direction": "E", "lat": 40.687347, "lon": -73.83506, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.83506, 40.687347 ] } }, -{ "type": "Feature", "properties": { "id": 550169, "name": "101 Av /111 St", "direction": "E", "lat": 40.688065, "lon": -73.832565, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.832565, 40.688065 ] } }, -{ "type": "Feature", "properties": { "id": 550173, "name": "101 Av /Lefferts Blvd", "direction": "E", "lat": 40.689976, "lon": -73.82579, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.82579, 40.689976 ] } }, -{ "type": "Feature", "properties": { "id": 550174, "name": "101 Av /121 St", "direction": "E", "lat": 40.69057, "lon": -73.82376, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.82376, 40.69057 ] } }, -{ "type": "Feature", "properties": { "id": 550175, "name": "101 Av /124 St", "direction": "E", "lat": 40.69116, "lon": -73.821655, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.821655, 40.69116 ] } }, -{ "type": "Feature", "properties": { "id": 550176, "name": "101 Av /127 St", "direction": "E", "lat": 40.691906, "lon": -73.81899, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.81899, 40.691906 ] } }, -{ "type": "Feature", "properties": { "id": 550177, "name": "101 Av /131 St", "direction": "E", "lat": 40.692753, "lon": -73.81605, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.81605, 40.692753 ] } }, -{ "type": "Feature", "properties": { "id": 550178, "name": "101 Av /133 St", "direction": "E", "lat": 40.69323, "lon": -73.81438, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.81438, 40.69323 ] } }, -{ "type": "Feature", "properties": { "id": 550179, "name": "101 Av /Van Wyck Expwy", "direction": "E", "lat": 40.693836, "lon": -73.812225, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.812225, 40.693836 ] } }, -{ "type": "Feature", "properties": { "id": 550180, "name": "101 Av /Remington St", "direction": "E", "lat": 40.69426, "lon": -73.81072, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.81072, 40.69426 ] } }, -{ "type": "Feature", "properties": { "id": 550181, "name": "101 Av /Liverpool St", "direction": "E", "lat": 40.69546, "lon": -73.806465, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.806465, 40.69546 ] } }, -{ "type": "Feature", "properties": { "id": 550182, "name": "Sutphin Blvd/Liberty Av", "direction": "NW", "lat": 40.69638, "lon": -73.80464, "routes": "Q09, Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.80464, 40.69638 ] } }, -{ "type": "Feature", "properties": { "id": 550183, "name": "165 St Terminal/Q8 Stand", "direction": "SE", "lat": 40.70715, "lon": -73.79557, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.79557, 40.70715 ] } }, -{ "type": "Feature", "properties": { "id": 550184, "name": "Sutphin Blvd/91 Av", "direction": "S", "lat": 40.700768, "lon": -73.807884, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.807884, 40.700768 ] } }, -{ "type": "Feature", "properties": { "id": 550185, "name": "146 St /101 Av", "direction": "SE", "lat": 40.696087, "lon": -73.805115, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.805115, 40.696087 ] } }, -{ "type": "Feature", "properties": { "id": 550186, "name": "101 Av /Liverpool St", "direction": "W", "lat": 40.69548, "lon": -73.80685, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.80685, 40.69548 ] } }, -{ "type": "Feature", "properties": { "id": 550187, "name": "101 Av /Cresskill Pl", "direction": "W", "lat": 40.694744, "lon": -73.80938, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.80938, 40.694744 ] } }, -{ "type": "Feature", "properties": { "id": 550188, "name": "101 Av /Van Wyck Expwy", "direction": "W", "lat": 40.694202, "lon": -73.81133, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.81133, 40.694202 ] } }, -{ "type": "Feature", "properties": { "id": 550189, "name": "101 Av /133 St", "direction": "W", "lat": 40.693237, "lon": -73.8147, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.8147, 40.693237 ] } }, -{ "type": "Feature", "properties": { "id": 550190, "name": "101 Av /131 St", "direction": "W", "lat": 40.692772, "lon": -73.81639, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.81639, 40.692772 ] } }, -{ "type": "Feature", "properties": { "id": 550191, "name": "101 Av /127 St", "direction": "W", "lat": 40.691917, "lon": -73.81933, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.81933, 40.691917 ] } }, -{ "type": "Feature", "properties": { "id": 550192, "name": "101 Av /124 St", "direction": "W", "lat": 40.691154, "lon": -73.82204, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.82204, 40.691154 ] } }, -{ "type": "Feature", "properties": { "id": 550193, "name": "101 Av /121 St", "direction": "W", "lat": 40.69057, "lon": -73.8241, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.8241, 40.69057 ] } }, -{ "type": "Feature", "properties": { "id": 550194, "name": "101 Av /Lefferts Blvd", "direction": "W", "lat": 40.689983, "lon": -73.82619, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.82619, 40.689983 ] } }, -{ "type": "Feature", "properties": { "id": 550196, "name": "101 Av /115 St", "direction": "W", "lat": 40.68905, "lon": -73.82952, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.82952, 40.68905 ] } }, -{ "type": "Feature", "properties": { "id": 550197, "name": "101 Av /113 St", "direction": "W", "lat": 40.688595, "lon": -73.831116, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.831116, 40.688595 ] } }, -{ "type": "Feature", "properties": { "id": 550198, "name": "101 Av /111 St", "direction": "W", "lat": 40.688065, "lon": -73.8329, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.8329, 40.688065 ] } }, -{ "type": "Feature", "properties": { "id": 550199, "name": "101 Av /109 St", "direction": "W", "lat": 40.68753, "lon": -73.83483, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.83483, 40.68753 ] } }, -{ "type": "Feature", "properties": { "id": 550200, "name": "101 Av /107 St", "direction": "W", "lat": 40.687035, "lon": -73.83657, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.83657, 40.687035 ] } }, -{ "type": "Feature", "properties": { "id": 550201, "name": "101 Av /105 St", "direction": "W", "lat": 40.686527, "lon": -73.83833, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.83833, 40.686527 ] } }, -{ "type": "Feature", "properties": { "id": 550203, "name": "101 Av /100 St", "direction": "W", "lat": 40.68539, "lon": -73.84232, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84232, 40.68539 ] } }, -{ "type": "Feature", "properties": { "id": 550204, "name": "101 Av /97 St", "direction": "W", "lat": 40.68482, "lon": -73.84437, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84437, 40.68482 ] } }, -{ "type": "Feature", "properties": { "id": 550205, "name": "101 Av /Woodhaven Blvd", "direction": "W", "lat": 40.684402, "lon": -73.845795, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.845795, 40.684402 ] } }, -{ "type": "Feature", "properties": { "id": 550206, "name": "101 Av /94 St", "direction": "W", "lat": 40.68407, "lon": -73.84698, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84698, 40.68407 ] } }, -{ "type": "Feature", "properties": { "id": 550207, "name": "101 Av /92 St", "direction": "W", "lat": 40.683582, "lon": -73.84872, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.84872, 40.683582 ] } }, -{ "type": "Feature", "properties": { "id": 550209, "name": "101 Av /88 St", "direction": "W", "lat": 40.68268, "lon": -73.85188, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.85188, 40.68268 ] } }, -{ "type": "Feature", "properties": { "id": 550211, "name": "101 Av /84 St", "direction": "W", "lat": 40.681644, "lon": -73.85553, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.85553, 40.681644 ] } }, -{ "type": "Feature", "properties": { "id": 550213, "name": "101 Av /80 St", "direction": "W", "lat": 40.68067, "lon": -73.85893, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.85893, 40.68067 ] } }, -{ "type": "Feature", "properties": { "id": 550214, "name": "101 Av /77 St", "direction": "W", "lat": 40.680126, "lon": -73.86082, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.86082, 40.680126 ] } }, -{ "type": "Feature", "properties": { "id": 550215, "name": "101 Av /75 St", "direction": "W", "lat": 40.67967, "lon": -73.862465, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.862465, 40.67967 ] } }, -{ "type": "Feature", "properties": { "id": 550220, "name": "Lincoln St /Rockaway Blvd", "direction": "N", "lat": 40.67515, "lon": -73.80736, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80736, 40.67515 ] } }, -{ "type": "Feature", "properties": { "id": 550221, "name": "Lincoln St /Foch Blvd", "direction": "N", "lat": 40.67665, "lon": -73.80745, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80745, 40.67665 ] } }, -{ "type": "Feature", "properties": { "id": 550222, "name": "Lincoln St /116 Av", "direction": "N", "lat": 40.67839, "lon": -73.807594, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.807594, 40.67839 ] } }, -{ "type": "Feature", "properties": { "id": 550223, "name": "Lincoln St /115 Av", "direction": "N", "lat": 40.68032, "lon": -73.80776, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80776, 40.68032 ] } }, -{ "type": "Feature", "properties": { "id": 550224, "name": "Lincoln St /Linden Blvd", "direction": "N", "lat": 40.682335, "lon": -73.80769, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80769, 40.682335 ] } }, -{ "type": "Feature", "properties": { "id": 550225, "name": "135 St /111 Av", "direction": "NW", "lat": 40.684505, "lon": -73.80799, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80799, 40.684505 ] } }, -{ "type": "Feature", "properties": { "id": 550226, "name": "135 St /109 Av", "direction": "NW", "lat": 40.686855, "lon": -73.809166, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.809166, 40.686855 ] } }, -{ "type": "Feature", "properties": { "id": 550227, "name": "135 St /107 Av", "direction": "NW", "lat": 40.68838, "lon": -73.80995, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80995, 40.68838 ] } }, -{ "type": "Feature", "properties": { "id": 550228, "name": "135 St /105 Av", "direction": "NW", "lat": 40.690586, "lon": -73.81119, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.81119, 40.690586 ] } }, -{ "type": "Feature", "properties": { "id": 550229, "name": "Liberty Av /Van Wyck Expwy", "direction": "E", "lat": 40.691734, "lon": -73.81117, "routes": "Q09, Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81117, 40.691734 ] } }, -{ "type": "Feature", "properties": { "id": 550230, "name": "Liberty Av /Remington St", "direction": "E", "lat": 40.692204, "lon": -73.809364, "routes": "Q112, Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.809364, 40.692204 ] } }, -{ "type": "Feature", "properties": { "id": 550231, "name": "Liberty Av /Inwood St", "direction": "NE", "lat": 40.69338, "lon": -73.80773, "routes": "Q112, Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80773, 40.69338 ] } }, -{ "type": "Feature", "properties": { "id": 550232, "name": "Liberty Av /Liverpool St", "direction": "NE", "lat": 40.69481, "lon": -73.805954, "routes": "Q09, Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.805954, 40.69481 ] } }, -{ "type": "Feature", "properties": { "id": 550235, "name": "Rockaway Blvd/102 St", "direction": "E", "lat": 40.67967, "lon": -73.83768, "routes": "Q41, Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.83768, 40.67967 ] } }, -{ "type": "Feature", "properties": { "id": 550236, "name": "Lincoln St /Rockaway Blvd", "direction": "S", "lat": 40.67506, "lon": -73.80755, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80755, 40.67506 ] } }, -{ "type": "Feature", "properties": { "id": 550237, "name": "Lincoln St /Foch Blvd", "direction": "S", "lat": 40.67631, "lon": -73.80761, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80761, 40.67631 ] } }, -{ "type": "Feature", "properties": { "id": 550238, "name": "Lincoln St /116 Av", "direction": "S", "lat": 40.6785, "lon": -73.807785, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.807785, 40.6785 ] } }, -{ "type": "Feature", "properties": { "id": 550239, "name": "Lincoln St /115 Av", "direction": "S", "lat": 40.680443, "lon": -73.807945, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.807945, 40.680443 ] } }, -{ "type": "Feature", "properties": { "id": 550240, "name": "Lincoln St/Linden Blvd", "direction": "S", "lat": 40.68247, "lon": -73.80785, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80785, 40.68247 ] } }, -{ "type": "Feature", "properties": { "id": 550242, "name": "Liberty Av /Remington St", "direction": "SW", "lat": 40.692665, "lon": -73.80908, "routes": "Q112, Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80908, 40.692665 ] } }, -{ "type": "Feature", "properties": { "id": 550243, "name": "165 St Terminal/Q9 Stand", "direction": "SE", "lat": 40.707047, "lon": -73.79551, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.79551, 40.707047 ] } }, -{ "type": "Feature", "properties": { "id": 550245, "name": "Sutphin Blvd/Jamaica Av", "direction": "S", "lat": 40.701424, "lon": -73.80803, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80803, 40.701424 ] } }, -{ "type": "Feature", "properties": { "id": 550247, "name": "Pitkin Av/77 St", "direction": "E", "lat": 40.67671, "lon": -73.85958, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.85958, 40.67671 ] } }, -{ "type": "Feature", "properties": { "id": 550248, "name": "Pitkin Av/79 St", "direction": "E", "lat": 40.676533, "lon": -73.85768, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.85768, 40.676533 ] } }, -{ "type": "Feature", "properties": { "id": 550249, "name": "Pitkin Av/81 St", "direction": "E", "lat": 40.676006, "lon": -73.85558, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.85558, 40.676006 ] } }, -{ "type": "Feature", "properties": { "id": 550250, "name": "Pitkin Av/83 St", "direction": "E", "lat": 40.675495, "lon": -73.85364, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.85364, 40.675495 ] } }, -{ "type": "Feature", "properties": { "id": 550251, "name": "Sutter Av/85 St", "direction": "E", "lat": 40.6757, "lon": -73.851364, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.851364, 40.6757 ] } }, -{ "type": "Feature", "properties": { "id": 550252, "name": "Sutter Av/87 St", "direction": "E", "lat": 40.675983, "lon": -73.84949, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.84949, 40.675983 ] } }, -{ "type": "Feature", "properties": { "id": 550253, "name": "Sutter Av/89 St", "direction": "E", "lat": 40.67624, "lon": -73.84765, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.84765, 40.67624 ] } }, -{ "type": "Feature", "properties": { "id": 550254, "name": "Sutter Av/91 St", "direction": "E", "lat": 40.676495, "lon": -73.845825, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.845825, 40.676495 ] } }, -{ "type": "Feature", "properties": { "id": 550255, "name": "Sutter Av/Cross Bay Blvd", "direction": "E", "lat": 40.67675, "lon": -73.84396, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.84396, 40.67675 ] } }, -{ "type": "Feature", "properties": { "id": 550256, "name": "Liberty Av /Allendale St", "direction": "SW", "lat": 40.69427, "lon": -73.807076, "routes": "Q112, Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.807076, 40.69427 ] } }, -{ "type": "Feature", "properties": { "id": 550257, "name": "Van Wyck Expwy/Liberty Av", "direction": "SE", "lat": 40.69171, "lon": -73.81098, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.81098, 40.69171 ] } }, -{ "type": "Feature", "properties": { "id": 550258, "name": "Van Wyck Expwy/105 Av", "direction": "SE", "lat": 40.690536, "lon": -73.81033, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.81033, 40.690536 ] } }, -{ "type": "Feature", "properties": { "id": 550259, "name": "Van Wyck Expwy/107 Av", "direction": "SE", "lat": 40.688484, "lon": -73.80921, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80921, 40.688484 ] } }, -{ "type": "Feature", "properties": { "id": 550260, "name": "Van Wyck Expwy/109 Av", "direction": "SE", "lat": 40.68703, "lon": -73.80838, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80838, 40.68703 ] } }, -{ "type": "Feature", "properties": { "id": 550261, "name": "Van Wyck Expwy/111 Av", "direction": "SE", "lat": 40.684624, "lon": -73.8072, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.8072, 40.684624 ] } }, -{ "type": "Feature", "properties": { "id": 550262, "name": "Linden Blvd/Van Wyck Expwy", "direction": "E", "lat": 40.683086, "lon": -73.804855, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.804855, 40.683086 ] } }, -{ "type": "Feature", "properties": { "id": 550263, "name": "Linden Blvd/142 St", "direction": "E", "lat": 40.684113, "lon": -73.801445, "routes": "QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.801445, 40.684113 ] } }, -{ "type": "Feature", "properties": { "id": 550265, "name": "Linden Blvd/Sutphin Blvd", "direction": "E", "lat": 40.68637, "lon": -73.79349, "routes": "X63, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.79349, 40.68637 ] } }, -{ "type": "Feature", "properties": { "id": 550267, "name": "Linden Blvd/Guy R Brewer Blvd", "direction": "E", "lat": 40.688866, "lon": -73.78592, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.78592, 40.688866 ] } }, -{ "type": "Feature", "properties": { "id": 550270, "name": "82 St/Astoria Blvd", "direction": "S", "lat": 40.76473, "lon": -73.88714, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88714, 40.76473 ] } }, -{ "type": "Feature", "properties": { "id": 550279, "name": "Linden Blvd/Sutphin Blvd", "direction": "W", "lat": 40.686253, "lon": -73.794365, "routes": "QM21, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.794365, 40.686253 ] } }, -{ "type": "Feature", "properties": { "id": 550281, "name": "Linden Blvd/142 St", "direction": "W", "lat": 40.68413, "lon": -73.80196, "routes": "QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.80196, 40.68413 ] } }, -{ "type": "Feature", "properties": { "id": 550285, "name": "Van Wyck North Service Rd/Stop 15 Building 122", "direction": "N", "lat": 40.65471, "lon": -73.80669, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.80669, 40.65471 ] } }, -{ "type": "Feature", "properties": { "id": 550289, "name": "134 St /150 Av", "direction": "N", "lat": 40.663773, "lon": -73.80643, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.80643, 40.663773 ] } }, -{ "type": "Feature", "properties": { "id": 550290, "name": "150 Av /149 Av", "direction": "W", "lat": 40.665367, "lon": -73.807, "routes": "Q10, Q10, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.807, 40.665367 ] } }, -{ "type": "Feature", "properties": { "id": 550291, "name": "150 Av/131 St", "direction": "W", "lat": 40.664803, "lon": -73.809, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.809, 40.664803 ] } }, -{ "type": "Feature", "properties": { "id": 550292, "name": "130 St /150 Av", "direction": "N", "lat": 40.665096, "lon": -73.81085, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.81085, 40.665096 ] } }, -{ "type": "Feature", "properties": { "id": 550293, "name": "130 St /135 Av", "direction": "N", "lat": 40.668434, "lon": -73.80983, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.80983, 40.668434 ] } }, -{ "type": "Feature", "properties": { "id": 550299, "name": "Lefferts Blvd/150 Av", "direction": "N", "lat": 40.667095, "lon": -73.82187, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82187, 40.667095 ] } }, -{ "type": "Feature", "properties": { "id": 550300, "name": "Lefferts Blvd/150 Av", "direction": "S", "lat": 40.667034, "lon": -73.8221, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.8221, 40.667034 ] } }, -{ "type": "Feature", "properties": { "id": 550303, "name": "Lefferts Blvd/135 Av", "direction": "N", "lat": 40.670723, "lon": -73.82073, "routes": "Q37, Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.82073, 40.670723 ] } }, -{ "type": "Feature", "properties": { "id": 550304, "name": "Lefferts Blvd/135 Av", "direction": "S", "lat": 40.670403, "lon": -73.82105, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82105, 40.670403 ] } }, -{ "type": "Feature", "properties": { "id": 550306, "name": "Lefferts Blvd/133 Av", "direction": "S", "lat": 40.67221, "lon": -73.82048, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82048, 40.67221 ] } }, -{ "type": "Feature", "properties": { "id": 550309, "name": "Lefferts Blvd/Rockaway Blvd", "direction": "NW", "lat": 40.676388, "lon": -73.819214, "routes": "Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.819214, 40.676388 ] } }, -{ "type": "Feature", "properties": { "id": 550311, "name": "Lefferts Blvd/Linden Blvd", "direction": "NW", "lat": 40.67897, "lon": -73.82048, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82048, 40.67897 ] } }, -{ "type": "Feature", "properties": { "id": 550312, "name": "Lefferts Blvd/Linden Blvd", "direction": "SE", "lat": 40.678585, "lon": -73.82052, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82052, 40.678585 ] } }, -{ "type": "Feature", "properties": { "id": 550313, "name": "Lefferts Blvd/111 Av", "direction": "NW", "lat": 40.680733, "lon": -73.82136, "routes": "Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.82136, 40.680733 ] } }, -{ "type": "Feature", "properties": { "id": 550314, "name": "Lefferts Blvd/111 Av", "direction": "SE", "lat": 40.680336, "lon": -73.82138, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82138, 40.680336 ] } }, -{ "type": "Feature", "properties": { "id": 550315, "name": "Lefferts Blvd/109 Av", "direction": "NW", "lat": 40.682484, "lon": -73.8222, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.8222, 40.682484 ] } }, -{ "type": "Feature", "properties": { "id": 550316, "name": "Lefferts Blvd/109 Av", "direction": "SE", "lat": 40.68207, "lon": -73.82221, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82221, 40.68207 ] } }, -{ "type": "Feature", "properties": { "id": 550317, "name": "Lefferts Blvd/107 Av", "direction": "NW", "lat": 40.68461, "lon": -73.82325, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82325, 40.68461 ] } }, -{ "type": "Feature", "properties": { "id": 550318, "name": "Lefferts Blvd/107 Av", "direction": "SE", "lat": 40.6842, "lon": -73.823265, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.823265, 40.6842 ] } }, -{ "type": "Feature", "properties": { "id": 550319, "name": "Lefferts Blvd/Liberty Av", "direction": "NW", "lat": 40.68647, "lon": -73.824165, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.824165, 40.68647 ] } }, -{ "type": "Feature", "properties": { "id": 550320, "name": "Lefferts Blvd/Liberty Av", "direction": "SE", "lat": 40.686058, "lon": -73.82418, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82418, 40.686058 ] } }, -{ "type": "Feature", "properties": { "id": 550321, "name": "Lefferts Blvd/103 Av", "direction": "NW", "lat": 40.688183, "lon": -73.825, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.825, 40.688183 ] } }, -{ "type": "Feature", "properties": { "id": 550322, "name": "Lefferts Blvd/103 Av", "direction": "SE", "lat": 40.68779, "lon": -73.825035, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.825035, 40.68779 ] } }, -{ "type": "Feature", "properties": { "id": 550323, "name": "Lefferts Blvd/101 Av", "direction": "NW", "lat": 40.68995, "lon": -73.82587, "routes": "Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.82587, 40.68995 ] } }, -{ "type": "Feature", "properties": { "id": 550324, "name": "Lefferts Blvd/101 Av", "direction": "SE", "lat": 40.690025, "lon": -73.82612, "routes": "Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.82612, 40.690025 ] } }, -{ "type": "Feature", "properties": { "id": 550327, "name": "Lefferts Blvd/95 Av", "direction": "NW", "lat": 40.69262, "lon": -73.82719, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82719, 40.69262 ] } }, -{ "type": "Feature", "properties": { "id": 550328, "name": "Lefferts Blvd/95 Av", "direction": "SE", "lat": 40.69222, "lon": -73.82722, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82722, 40.69222 ] } }, -{ "type": "Feature", "properties": { "id": 550329, "name": "Lefferts Blvd/94 Av", "direction": "NW", "lat": 40.69368, "lon": -73.8277, "routes": "Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.8277, 40.69368 ] } }, -{ "type": "Feature", "properties": { "id": 550331, "name": "Lefferts Blvd/91 Av", "direction": "NW", "lat": 40.69605, "lon": -73.82886, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82886, 40.69605 ] } }, -{ "type": "Feature", "properties": { "id": 550332, "name": "Lefferts Blvd/91 Av", "direction": "SE", "lat": 40.69572, "lon": -73.82891, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82891, 40.69572 ] } }, -{ "type": "Feature", "properties": { "id": 550333, "name": "Lefferts Blvd/89 Av", "direction": "NW", "lat": 40.697536, "lon": -73.8296, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.8296, 40.697536 ] } }, -{ "type": "Feature", "properties": { "id": 550334, "name": "Lefferts Blvd/89 Av", "direction": "SE", "lat": 40.69718, "lon": -73.82965, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82965, 40.69718 ] } }, -{ "type": "Feature", "properties": { "id": 550335, "name": "Lefferts Blvd/Jamaica Av", "direction": "NW", "lat": 40.699974, "lon": -73.83079, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83079, 40.699974 ] } }, -{ "type": "Feature", "properties": { "id": 550336, "name": "Lefferts Blvd/Jamaica Av", "direction": "SE", "lat": 40.69983, "lon": -73.83094, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83094, 40.69983 ] } }, -{ "type": "Feature", "properties": { "id": 550337, "name": "Lefferts Blvd/Hillside Av", "direction": "NW", "lat": 40.7016, "lon": -73.8315, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.8315, 40.7016 ] } }, -{ "type": "Feature", "properties": { "id": 550338, "name": "Lefferts Blvd/Hillside Av", "direction": "SE", "lat": 40.70123, "lon": -73.83156, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83156, 40.70123 ] } }, -{ "type": "Feature", "properties": { "id": 550339, "name": "Lefferts Blvd/85 Av", "direction": "NW", "lat": 40.703007, "lon": -73.832115, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.832115, 40.703007 ] } }, -{ "type": "Feature", "properties": { "id": 550340, "name": "Lefferts Blvd/85 Av", "direction": "SE", "lat": 40.702667, "lon": -73.83218, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83218, 40.702667 ] } }, -{ "type": "Feature", "properties": { "id": 550341, "name": "Lefferts Blvd/84 Av", "direction": "NW", "lat": 40.704365, "lon": -73.832695, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.832695, 40.704365 ] } }, -{ "type": "Feature", "properties": { "id": 550342, "name": "Lefferts Blvd/84 Av", "direction": "SE", "lat": 40.704227, "lon": -73.83284, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83284, 40.704227 ] } }, -{ "type": "Feature", "properties": { "id": 550343, "name": "Lefferts Blvd/Metropolitan Av", "direction": "N", "lat": 40.706295, "lon": -73.83172, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83172, 40.706295 ] } }, -{ "type": "Feature", "properties": { "id": 550344, "name": "Lefferts Blvd/Metropolitan Av", "direction": "S", "lat": 40.706047, "lon": -73.83186, "routes": "Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.83186, 40.706047 ] } }, -{ "type": "Feature", "properties": { "id": 550345, "name": "Lefferts Blvd/Austin St", "direction": "NE", "lat": 40.70941, "lon": -73.829475, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.829475, 40.70941 ] } }, -{ "type": "Feature", "properties": { "id": 550346, "name": "Lefferts Blvd/Austin St", "direction": "SW", "lat": 40.709484, "lon": -73.82967, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82967, 40.709484 ] } }, -{ "type": "Feature", "properties": { "id": 550347, "name": "Kew Gardens Rd /82 Rd", "direction": "NW", "lat": 40.711514, "lon": -73.828575, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.828575, 40.711514 ] } }, -{ "type": "Feature", "properties": { "id": 550348, "name": "Kew Gardens Rd /82 Av", "direction": "NW", "lat": 40.71237, "lon": -73.82915, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82915, 40.71237 ] } }, -{ "type": "Feature", "properties": { "id": 550349, "name": "Kew Gardens Rd /80 Rd", "direction": "NW", "lat": 40.713642, "lon": -73.830246, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.830246, 40.713642 ] } }, -{ "type": "Feature", "properties": { "id": 550350, "name": "80 Rd /Austin St", "direction": "SW", "lat": 40.712368, "lon": -73.83248, "routes": "Q37, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83248, 40.712368 ] } }, -{ "type": "Feature", "properties": { "id": 550351, "name": "Austin St /82 Av", "direction": "SE", "lat": 40.71116, "lon": -73.831505, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.831505, 40.71116 ] } }, -{ "type": "Feature", "properties": { "id": 550352, "name": "Austin St /Mowbray Dr", "direction": "SE", "lat": 40.709946, "lon": -73.83042, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83042, 40.709946 ] } }, -{ "type": "Feature", "properties": { "id": 550353, "name": "Lefferts Blvd/83 Av", "direction": "S", "lat": 40.70853, "lon": -73.83081, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83081, 40.70853 ] } }, -{ "type": "Feature", "properties": { "id": 550354, "name": "Lefferts Blvd/Atlantic Av", "direction": "SE", "lat": 40.693798, "lon": -73.82797, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82797, 40.693798 ] } }, -{ "type": "Feature", "properties": { "id": 550378, "name": "Queens Blvd/80 Rd", "direction": "SE", "lat": 40.713623, "lon": -73.82976, "routes": "Q10, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.82976, 40.713623 ] } }, -{ "type": "Feature", "properties": { "id": 550379, "name": "165 Av /98 St", "direction": "E", "lat": 40.64981, "lon": -73.832535, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.832535, 40.64981 ] } }, -{ "type": "Feature", "properties": { "id": 550381, "name": "99 St /164 Av", "direction": "N", "lat": 40.651768, "lon": -73.83213, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83213, 40.651768 ] } }, -{ "type": "Feature", "properties": { "id": 550382, "name": "99 St /164 Av", "direction": "S", "lat": 40.651745, "lon": -73.8323, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.8323, 40.651745 ] } }, -{ "type": "Feature", "properties": { "id": 550383, "name": "99 St /163 Av", "direction": "N", "lat": 40.65357, "lon": -73.83259, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83259, 40.65357 ] } }, -{ "type": "Feature", "properties": { "id": 550384, "name": "99 St /163 Av", "direction": "S", "lat": 40.65311, "lon": -73.832664, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.832664, 40.65311 ] } }, -{ "type": "Feature", "properties": { "id": 550385, "name": "99 St /162 Av", "direction": "N", "lat": 40.654823, "lon": -73.83291, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83291, 40.654823 ] } }, -{ "type": "Feature", "properties": { "id": 550386, "name": "99 St /162 Av", "direction": "S", "lat": 40.654808, "lon": -73.83308, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83308, 40.654808 ] } }, -{ "type": "Feature", "properties": { "id": 550387, "name": "99 St /161 Av", "direction": "N", "lat": 40.65679, "lon": -73.83339, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83339, 40.65679 ] } }, -{ "type": "Feature", "properties": { "id": 550388, "name": "99 St /161 Av", "direction": "S", "lat": 40.656498, "lon": -73.833496, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.833496, 40.656498 ] } }, -{ "type": "Feature", "properties": { "id": 550389, "name": "99 St /160 Av", "direction": "N", "lat": 40.658173, "lon": -73.833725, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.833725, 40.658173 ] } }, -{ "type": "Feature", "properties": { "id": 550390, "name": "104 St /165 Av", "direction": "N", "lat": 40.650932, "lon": -73.82716, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.82716, 40.650932 ] } }, -{ "type": "Feature", "properties": { "id": 550391, "name": "99 St /160 Av", "direction": "S", "lat": 40.658157, "lon": -73.833885, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.833885, 40.658157 ] } }, -{ "type": "Feature", "properties": { "id": 550392, "name": "104 St /164 Av", "direction": "N", "lat": 40.652405, "lon": -73.82755, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.82755, 40.652405 ] } }, -{ "type": "Feature", "properties": { "id": 550393, "name": "104 St /165 Av", "direction": "SW", "lat": 40.650475, "lon": -73.827286, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.827286, 40.650475 ] } }, -{ "type": "Feature", "properties": { "id": 550394, "name": "104 St/Rau Ct", "direction": "N", "lat": 40.654167, "lon": -73.828, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.828, 40.654167 ] } }, -{ "type": "Feature", "properties": { "id": 550395, "name": "104 St /164 Av", "direction": "S", "lat": 40.652374, "lon": -73.827705, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.827705, 40.652374 ] } }, -{ "type": "Feature", "properties": { "id": 550396, "name": "102 St /160 Av", "direction": "N", "lat": 40.658566, "lon": -73.83098, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83098, 40.658566 ] } }, -{ "type": "Feature", "properties": { "id": 550398, "name": "102 St /159 Rd", "direction": "N", "lat": 40.659603, "lon": -73.83125, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83125, 40.659603 ] } }, -{ "type": "Feature", "properties": { "id": 550399, "name": "102 St /159 Av", "direction": "N", "lat": 40.660522, "lon": -73.831474, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.831474, 40.660522 ] } }, -{ "type": "Feature", "properties": { "id": 550401, "name": "102 St /158 Av", "direction": "N", "lat": 40.662197, "lon": -73.83188, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83188, 40.662197 ] } }, -{ "type": "Feature", "properties": { "id": 550402, "name": "156 Av/ 99 St", "direction": "W", "lat": 40.66357, "lon": -73.835045, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.835045, 40.66357 ] } }, -{ "type": "Feature", "properties": { "id": 550403, "name": "Cohancy St /155 Av", "direction": "N", "lat": 40.665295, "lon": -73.83516, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83516, 40.665295 ] } }, -{ "type": "Feature", "properties": { "id": 550404, "name": "Albert Rd /99 Pl", "direction": "NW", "lat": 40.6678, "lon": -73.8356, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.8356, 40.6678 ] } }, -{ "type": "Feature", "properties": { "id": 550406, "name": "Albert Rd /Centerville St", "direction": "W", "lat": 40.66967, "lon": -73.83852, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83852, 40.66967 ] } }, -{ "type": "Feature", "properties": { "id": 550407, "name": "Centerville St /Eckford Av", "direction": "NE", "lat": 40.67073, "lon": -73.8382, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.8382, 40.67073 ] } }, -{ "type": "Feature", "properties": { "id": 550408, "name": "Centerville St /Pitkin Av", "direction": "N", "lat": 40.67289, "lon": -73.837296, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.837296, 40.67289 ] } }, -{ "type": "Feature", "properties": { "id": 550409, "name": "Pitkin Av /96 St", "direction": "W", "lat": 40.67266, "lon": -73.84011, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.84011, 40.67266 ] } }, -{ "type": "Feature", "properties": { "id": 550410, "name": "Pitkin Av /96 St", "direction": "E", "lat": 40.67252, "lon": -73.8404, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.8404, 40.67252 ] } }, -{ "type": "Feature", "properties": { "id": 550417, "name": "Cross Bay Blvd/163 Av", "direction": "S", "lat": 40.652626, "lon": -73.838455, "routes": "Q21, QM16, Q52+, Q53+, Q41, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.838455, 40.652626 ] } }, -{ "type": "Feature", "properties": { "id": 550421, "name": "Cross Bay Blvd/161 Av", "direction": "S", "lat": 40.655678, "lon": -73.83917, "routes": "Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.83917, 40.655678 ] } }, -{ "type": "Feature", "properties": { "id": 550423, "name": "Cross Bay Blvd/159 Av", "direction": "S", "lat": 40.659283, "lon": -73.840096, "routes": "QM16, QM17, Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.840096, 40.659283 ] } }, -{ "type": "Feature", "properties": { "id": 550424, "name": "Cross Bay Blvd/149 Av", "direction": "N", "lat": 40.67075, "lon": -73.84263, "routes": "Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84263, 40.67075 ] } }, -{ "type": "Feature", "properties": { "id": 550425, "name": "Cross Bay Blvd/149 Av", "direction": "S", "lat": 40.670403, "lon": -73.843, "routes": "Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.843, 40.670403 ] } }, -{ "type": "Feature", "properties": { "id": 550426, "name": "Cross Bay Blvd/Pitkin Av", "direction": "N", "lat": 40.672356, "lon": -73.84302, "routes": "Q41, Q21, QM15, BM5, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.84302, 40.672356 ] } }, -{ "type": "Feature", "properties": { "id": 550427, "name": "Cross Bay Blvd/Pitkin Av", "direction": "S", "lat": 40.672344, "lon": -73.843376, "routes": "QM15, Q21, BM5, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.843376, 40.672344 ] } }, -{ "type": "Feature", "properties": { "id": 550428, "name": "Cross Bay Blvd/Linden Blvd", "direction": "N", "lat": 40.673958, "lon": -73.843025, "routes": "Q21, Q41, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.843025, 40.673958 ] } }, -{ "type": "Feature", "properties": { "id": 550430, "name": "Cross Bay Blvd/Sutter Av", "direction": "N", "lat": 40.676647, "lon": -73.843506, "routes": "Q21, Q11, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.843506, 40.676647 ] } }, -{ "type": "Feature", "properties": { "id": 550431, "name": "Cross Bay Blvd/Sutter Av", "direction": "S", "lat": 40.676632, "lon": -73.84388, "routes": "Q11, Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84388, 40.676632 ] } }, -{ "type": "Feature", "properties": { "id": 550435, "name": "Woodhaven Blvd/Atlantic Av", "direction": "NW", "lat": 40.688473, "lon": -73.848724, "routes": "QM15, Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.848724, 40.688473 ] } }, -{ "type": "Feature", "properties": { "id": 550436, "name": "Woodhaven Blvd/Atlantic Av", "direction": "SE", "lat": 40.688267, "lon": -73.84924, "routes": "Q11, QM15, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84924, 40.688267 ] } }, -{ "type": "Feature", "properties": { "id": 550437, "name": "Woodhaven Blvd/91 Av", "direction": "NW", "lat": 40.690052, "lon": -73.849884, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.849884, 40.690052 ] } }, -{ "type": "Feature", "properties": { "id": 550438, "name": "Woodhaven Blvd/91 Av", "direction": "SE", "lat": 40.689655, "lon": -73.85025, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.85025, 40.689655 ] } }, -{ "type": "Feature", "properties": { "id": 550449, "name": "Woodhaven Blvd/Forest Park Dr", "direction": "NW", "lat": 40.700573, "lon": -73.85429, "routes": "QM15, Q11, BM5, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.85429, 40.700573 ] } }, -{ "type": "Feature", "properties": { "id": 550450, "name": "Woodhaven Blvd/Forest Park Dr", "direction": "SE", "lat": 40.700645, "lon": -73.854866, "routes": "QM15, Q21, BM5, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.854866, 40.700645 ] } }, -{ "type": "Feature", "properties": { "id": 550451, "name": "Woodhaven Blvd/Myrtle Av", "direction": "N", "lat": 40.70244, "lon": -73.85508, "routes": "Q52+, Q53+, Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.85508, 40.70244 ] } }, -{ "type": "Feature", "properties": { "id": 550452, "name": "Woodhaven Blvd/Myrtle Av", "direction": "S", "lat": 40.70247, "lon": -73.85545, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.85545, 40.70247 ] } }, -{ "type": "Feature", "properties": { "id": 550453, "name": "Woodhaven Blvd/81 Rd", "direction": "NW", "lat": 40.704605, "lon": -73.856384, "routes": "QM15, Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.856384, 40.704605 ] } }, -{ "type": "Feature", "properties": { "id": 550454, "name": "Woodhaven Blvd/Metropolitan Av", "direction": "N", "lat": 40.71208, "lon": -73.859505, "routes": "QM12, Q11, QM15, BM5, QM42, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.859505, 40.71208 ] } }, -{ "type": "Feature", "properties": { "id": 550456, "name": "Woodhaven Blvd/68 Rd", "direction": "NW", "lat": 40.715126, "lon": -73.85995, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.85995, 40.715126 ] } }, -{ "type": "Feature", "properties": { "id": 550458, "name": "Woodhaven Blvd/66 Rd", "direction": "NW", "lat": 40.717922, "lon": -73.862915, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.862915, 40.717922 ] } }, -{ "type": "Feature", "properties": { "id": 550462, "name": "Woodhaven Blvd/63 Dr", "direction": "NW", "lat": 40.722713, "lon": -73.867424, "routes": "QM15, Q21, BM5, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.867424, 40.722713 ] } }, -{ "type": "Feature", "properties": { "id": 550465, "name": "Woodhaven Blvd/62 Rd", "direction": "NW", "lat": 40.726395, "lon": -73.87011, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.87011, 40.726395 ] } }, -{ "type": "Feature", "properties": { "id": 550466, "name": "Woodhaven Blvd/Alderton St", "direction": "N", "lat": 40.728012, "lon": -73.87082, "routes": "Q21, QM15, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.87082, 40.728012 ] } }, -{ "type": "Feature", "properties": { "id": 550467, "name": "Woodhaven Blvd/Wetherole St", "direction": "N", "lat": 40.730976, "lon": -73.87141, "routes": "Q38, Q11, Q21, Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87141, 40.730976 ] } }, -{ "type": "Feature", "properties": { "id": 550470, "name": "Woodhaven Blvd/Hoffman Dr", "direction": "SW", "lat": 40.73265, "lon": -73.87109, "routes": "QM10, QM12, QM42, QM40, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.87109, 40.73265 ] } }, -{ "type": "Feature", "properties": { "id": 550471, "name": "Woodhaven Blvd/61 Rd", "direction": "S", "lat": 40.72838, "lon": -73.871376, "routes": "Q21, QM15, Q29, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.871376, 40.72838 ] } }, -{ "type": "Feature", "properties": { "id": 550472, "name": "Woodhaven Blvd/62 Rd", "direction": "SE", "lat": 40.72593, "lon": -73.87028, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.87028, 40.72593 ] } }, -{ "type": "Feature", "properties": { "id": 550473, "name": "Woodhaven Blvd/Penelope Av", "direction": "SE", "lat": 40.72249, "lon": -73.86774, "routes": "Q11, QM15, Q53+, Q21, Q52+, BM5" }, "geometry": { "type": "Point", "coordinates": [ -73.86774, 40.72249 ] } }, -{ "type": "Feature", "properties": { "id": 550474, "name": "Woodhaven Blvd/Furmanville Av", "direction": "SE", "lat": 40.720074, "lon": -73.86554, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.86554, 40.720074 ] } }, -{ "type": "Feature", "properties": { "id": 550475, "name": "Woodhaven Blvd/66 Av", "direction": "SE", "lat": 40.7183, "lon": -73.86382, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.86382, 40.7183 ] } }, -{ "type": "Feature", "properties": { "id": 550480, "name": "Woodhaven Blvd/81 Av", "direction": "SE", "lat": 40.704876, "lon": -73.85748, "routes": "Q11, Q21, QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.85748, 40.704876 ] } }, -{ "type": "Feature", "properties": { "id": 550485, "name": "153 Av/151 Av", "direction": "S", "lat": 40.66723, "lon": -73.84525, "routes": "Q21, QM15, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84525, 40.66723 ] } }, -{ "type": "Feature", "properties": { "id": 550486, "name": "155 Av/89 St", "direction": "SW", "lat": 40.666435, "lon": -73.84561, "routes": "Q21, QM15, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84561, 40.666435 ] } }, -{ "type": "Feature", "properties": { "id": 550487, "name": "155 Av/89 St", "direction": "NE", "lat": 40.66629, "lon": -73.8455, "routes": "Q41, QM15, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.8455, 40.66629 ] } }, -{ "type": "Feature", "properties": { "id": 550488, "name": "155 Av/86 St", "direction": "W", "lat": 40.665012, "lon": -73.84881, "routes": "Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84881, 40.665012 ] } }, -{ "type": "Feature", "properties": { "id": 550489, "name": "155 Av/86 St", "direction": "NE", "lat": 40.665035, "lon": -73.84836, "routes": "Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84836, 40.665035 ] } }, -{ "type": "Feature", "properties": { "id": 550490, "name": "84 St/155 Av", "direction": "S", "lat": 40.664474, "lon": -73.849976, "routes": "Q21, Q41, QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.849976, 40.664474 ] } }, -{ "type": "Feature", "properties": { "id": 550491, "name": "84 St/155 Av", "direction": "N", "lat": 40.664505, "lon": -73.8498, "routes": "Q21, Q41, QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.8498, 40.664505 ] } }, -{ "type": "Feature", "properties": { "id": 550492, "name": "84 St/Shore Pkwy", "direction": "SE", "lat": 40.663307, "lon": -73.84932, "routes": "Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84932, 40.663307 ] } }, -{ "type": "Feature", "properties": { "id": 550493, "name": "84 St/Shore Pkwy", "direction": "NW", "lat": 40.663425, "lon": -73.84914, "routes": "Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84914, 40.663425 ] } }, -{ "type": "Feature", "properties": { "id": 550494, "name": "84 St/157 Av", "direction": "S", "lat": 40.661446, "lon": -73.84918, "routes": "QM15, Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84918, 40.661446 ] } }, -{ "type": "Feature", "properties": { "id": 550495, "name": "157 Av/87 St", "direction": "E", "lat": 40.661694, "lon": -73.84606, "routes": "Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84606, 40.661694 ] } }, -{ "type": "Feature", "properties": { "id": 550496, "name": "157 Av/89 St", "direction": "E", "lat": 40.66198, "lon": -73.84422, "routes": "QM15, Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84422, 40.66198 ] } }, -{ "type": "Feature", "properties": { "id": 550497, "name": "157 Av/89 St", "direction": "W", "lat": 40.66204, "lon": -73.84471, "routes": "Q21, Q41, QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.84471, 40.66204 ] } }, -{ "type": "Feature", "properties": { "id": 550499, "name": "157 Av/Cross Bay Blvd", "direction": "W", "lat": 40.66257, "lon": -73.84098, "routes": "QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.84098, 40.66257 ] } }, -{ "type": "Feature", "properties": { "id": 550500, "name": "Pitkin Av/Cross Bay Blvd", "direction": "E", "lat": 40.67215, "lon": -73.84288, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.84288, 40.67215 ] } }, -{ "type": "Feature", "properties": { "id": 550502, "name": "Centerville St /149 Av", "direction": "S", "lat": 40.671154, "lon": -73.83821, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83821, 40.671154 ] } }, -{ "type": "Feature", "properties": { "id": 550503, "name": "Eckford Av /Raleigh St", "direction": "E", "lat": 40.6702, "lon": -73.836784, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.836784, 40.6702 ] } }, -{ "type": "Feature", "properties": { "id": 550504, "name": "Cohancy St /N Conduit Av", "direction": "S", "lat": 40.66731, "lon": -73.83465, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83465, 40.66731 ] } }, -{ "type": "Feature", "properties": { "id": 550505, "name": "155 Av /99 St", "direction": "E", "lat": 40.665295, "lon": -73.83452, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83452, 40.665295 ] } }, -{ "type": "Feature", "properties": { "id": 550506, "name": "101 St /157 Av", "direction": "S", "lat": 40.66343, "lon": -73.83328, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83328, 40.66343 ] } }, -{ "type": "Feature", "properties": { "id": 550507, "name": "101 St /158 Av", "direction": "S", "lat": 40.661762, "lon": -73.8329, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.8329, 40.661762 ] } }, -{ "type": "Feature", "properties": { "id": 550508, "name": "101 St /159 Av", "direction": "S", "lat": 40.660374, "lon": -73.83255, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83255, 40.660374 ] } }, -{ "type": "Feature", "properties": { "id": 550509, "name": "101 St /160 Av", "direction": "S", "lat": 40.65869, "lon": -73.832115, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.832115, 40.65869 ] } }, -{ "type": "Feature", "properties": { "id": 550510, "name": "104 St /1 St", "direction": "S", "lat": 40.6558, "lon": -73.828606, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.828606, 40.6558 ] } }, -{ "type": "Feature", "properties": { "id": 550511, "name": "104 St /164 Dr", "direction": "S", "lat": 40.651413, "lon": -73.827446, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.827446, 40.651413 ] } }, -{ "type": "Feature", "properties": { "id": 550512, "name": "164 Av /97 St", "direction": "W", "lat": 40.651417, "lon": -73.834236, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.834236, 40.651417 ] } }, -{ "type": "Feature", "properties": { "id": 550513, "name": "96 St /164 Av", "direction": "S", "lat": 40.651115, "lon": -73.835, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.835, 40.651115 ] } }, -{ "type": "Feature", "properties": { "id": 550514, "name": "165 Av /96 St", "direction": "E", "lat": 40.64958, "lon": -73.834274, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.834274, 40.64958 ] } }, -{ "type": "Feature", "properties": { "id": 550519, "name": "8 St/27 Av", "direction": "SW", "lat": 40.774124, "lon": -73.932076, "routes": "Q18, Q103, Q102, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.932076, 40.774124 ] } }, -{ "type": "Feature", "properties": { "id": 550520, "name": "30 Av/14 St", "direction": "SE", "lat": 40.770702, "lon": -73.929825, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.929825, 40.770702 ] } }, -{ "type": "Feature", "properties": { "id": 550522, "name": "30 Av/21 St", "direction": "SE", "lat": 40.769703, "lon": -73.92744, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.92744, 40.769703 ] } }, -{ "type": "Feature", "properties": { "id": 550523, "name": "30 Av/21 St", "direction": "NW", "lat": 40.770058, "lon": -73.9279, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.9279, 40.770058 ] } }, -{ "type": "Feature", "properties": { "id": 550524, "name": "30 Av/27 St", "direction": "SE", "lat": 40.768238, "lon": -73.9245, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.9245, 40.768238 ] } }, -{ "type": "Feature", "properties": { "id": 550525, "name": "30 Av/29 St", "direction": "SE", "lat": 40.767567, "lon": -73.92292, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.92292, 40.767567 ] } }, -{ "type": "Feature", "properties": { "id": 550526, "name": "30 Av/29 St", "direction": "NW", "lat": 40.768063, "lon": -73.923645, "routes": "Q18, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.923645, 40.768063 ] } }, -{ "type": "Feature", "properties": { "id": 550527, "name": "30 Av/31 St", "direction": "SE", "lat": 40.76674, "lon": -73.921326, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.921326, 40.76674 ] } }, -{ "type": "Feature", "properties": { "id": 550528, "name": "30 Av/31 St", "direction": "NW", "lat": 40.76722, "lon": -73.92183, "routes": "Q18, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92183, 40.76722 ] } }, -{ "type": "Feature", "properties": { "id": 550529, "name": "30 Av/33 St", "direction": "SE", "lat": 40.766033, "lon": -73.91971, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91971, 40.766033 ] } }, -{ "type": "Feature", "properties": { "id": 550530, "name": "30 Av/35 St", "direction": "SE", "lat": 40.76522, "lon": -73.91808, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91808, 40.76522 ] } }, -{ "type": "Feature", "properties": { "id": 550531, "name": "30 Av/37 St", "direction": "SE", "lat": 40.76446, "lon": -73.91651, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91651, 40.76446 ] } }, -{ "type": "Feature", "properties": { "id": 550532, "name": "30 Av/Steinway St", "direction": "SE", "lat": 40.763947, "lon": -73.915184, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.915184, 40.763947 ] } }, -{ "type": "Feature", "properties": { "id": 550533, "name": "30 Av/Steinway St", "direction": "NW", "lat": 40.76392, "lon": -73.91482, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91482, 40.76392 ] } }, -{ "type": "Feature", "properties": { "id": 550534, "name": "30 Av/43 St", "direction": "SE", "lat": 40.762604, "lon": -73.91253, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91253, 40.762604 ] } }, -{ "type": "Feature", "properties": { "id": 550535, "name": "30 Av/45 St", "direction": "SE", "lat": 40.761826, "lon": -73.91088, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91088, 40.761826 ] } }, -{ "type": "Feature", "properties": { "id": 550536, "name": "30 Av/47 St", "direction": "SE", "lat": 40.76112, "lon": -73.90926, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90926, 40.76112 ] } }, -{ "type": "Feature", "properties": { "id": 550537, "name": "30 Av/49 St", "direction": "SE", "lat": 40.760307, "lon": -73.907684, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.907684, 40.760307 ] } }, -{ "type": "Feature", "properties": { "id": 550538, "name": "30 Av/49 St", "direction": "NW", "lat": 40.760666, "lon": -73.907875, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.907875, 40.760666 ] } }, -{ "type": "Feature", "properties": { "id": 550539, "name": "Hobart St/30 Av", "direction": "SW", "lat": 40.759727, "lon": -73.90653, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90653, 40.759727 ] } }, -{ "type": "Feature", "properties": { "id": 550540, "name": "Hobart St/30 Av", "direction": "NE", "lat": 40.759754, "lon": -73.906296, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.906296, 40.759754 ] } }, -{ "type": "Feature", "properties": { "id": 550541, "name": "51 St/31 Av", "direction": "S", "lat": 40.756805, "lon": -73.90816, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90816, 40.756805 ] } }, -{ "type": "Feature", "properties": { "id": 550542, "name": "51 St/32 Av", "direction": "S", "lat": 40.75547, "lon": -73.90858, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90858, 40.75547 ] } }, -{ "type": "Feature", "properties": { "id": 550543, "name": "Broadway/Northern Blvd", "direction": "SE", "lat": 40.753445, "lon": -73.90735, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90735, 40.753445 ] } }, -{ "type": "Feature", "properties": { "id": 550545, "name": "Broadway/56 St", "direction": "SE", "lat": 40.752544, "lon": -73.905495, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.905495, 40.752544 ] } }, -{ "type": "Feature", "properties": { "id": 550546, "name": "Broadway/56 St", "direction": "NW", "lat": 40.752632, "lon": -73.90511, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90511, 40.752632 ] } }, -{ "type": "Feature", "properties": { "id": 550547, "name": "Broadway/57 St", "direction": "SE", "lat": 40.75205, "lon": -73.90432, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90432, 40.75205 ] } }, -{ "type": "Feature", "properties": { "id": 550548, "name": "58 St/37 Av", "direction": "SW", "lat": 40.750042, "lon": -73.90457, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90457, 40.750042 ] } }, -{ "type": "Feature", "properties": { "id": 550550, "name": "58 St/Woodside Av", "direction": "S", "lat": 40.745876, "lon": -73.906525, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.906525, 40.745876 ] } }, -{ "type": "Feature", "properties": { "id": 550551, "name": "58 St/Woodside Av", "direction": "NE", "lat": 40.745754, "lon": -73.90623, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90623, 40.745754 ] } }, -{ "type": "Feature", "properties": { "id": 550552, "name": "Woodside Av/60 St", "direction": "E", "lat": 40.74498, "lon": -73.90401, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90401, 40.74498 ] } }, -{ "type": "Feature", "properties": { "id": 550553, "name": "Woodside Av/63 St", "direction": "E", "lat": 40.74409, "lon": -73.90127, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90127, 40.74409 ] } }, -{ "type": "Feature", "properties": { "id": 550554, "name": "Woodside Av/65 Pl", "direction": "E", "lat": 40.74344, "lon": -73.89932, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89932, 40.74344 ] } }, -{ "type": "Feature", "properties": { "id": 550555, "name": "Woodside Av/65 Pl", "direction": "W", "lat": 40.743694, "lon": -73.89926, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89926, 40.743694 ] } }, -{ "type": "Feature", "properties": { "id": 550556, "name": "65 Pl/Queens Blvd", "direction": "S", "lat": 40.74135, "lon": -73.89977, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89977, 40.74135 ] } }, -{ "type": "Feature", "properties": { "id": 550557, "name": "65 Pl/Queens Blvd", "direction": "NE", "lat": 40.741287, "lon": -73.89932, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89932, 40.741287 ] } }, -{ "type": "Feature", "properties": { "id": 550559, "name": "65 Pl/48 Av", "direction": "S", "lat": 40.738617, "lon": -73.900024, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.900024, 40.738617 ] } }, -{ "type": "Feature", "properties": { "id": 550560, "name": "65 Pl/48 Av", "direction": "N", "lat": 40.738358, "lon": -73.89977, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89977, 40.738358 ] } }, -{ "type": "Feature", "properties": { "id": 550561, "name": "65 Pl/50 Av", "direction": "S", "lat": 40.73721, "lon": -73.90008, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90008, 40.73721 ] } }, -{ "type": "Feature", "properties": { "id": 550562, "name": "50 Av/67 St", "direction": "E", "lat": 40.73687, "lon": -73.897995, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.897995, 40.73687 ] } }, -{ "type": "Feature", "properties": { "id": 550563, "name": "50 Av/67 St", "direction": "W", "lat": 40.73706, "lon": -73.89759, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89759, 40.73706 ] } }, -{ "type": "Feature", "properties": { "id": 550564, "name": "69 St/50 Av", "direction": "S", "lat": 40.73666, "lon": -73.896034, "routes": "Q47, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.896034, 40.73666 ] } }, -{ "type": "Feature", "properties": { "id": 550565, "name": "69 St/Maurice Av", "direction": "S", "lat": 40.734932, "lon": -73.896095, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.896095, 40.734932 ] } }, -{ "type": "Feature", "properties": { "id": 550566, "name": "69 St/52 Av", "direction": "S", "lat": 40.73377, "lon": -73.89619, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89619, 40.73377 ] } }, -{ "type": "Feature", "properties": { "id": 550567, "name": "69 St/52 Av", "direction": "N", "lat": 40.73342, "lon": -73.89582, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89582, 40.73342 ] } }, -{ "type": "Feature", "properties": { "id": 550568, "name": "69 St/53 Av", "direction": "S", "lat": 40.731674, "lon": -73.89596, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89596, 40.731674 ] } }, -{ "type": "Feature", "properties": { "id": 550569, "name": "53 Av/68 St", "direction": "W", "lat": 40.731606, "lon": -73.89691, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89691, 40.731606 ] } }, -{ "type": "Feature", "properties": { "id": 550570, "name": "53 Av/68 St", "direction": "E", "lat": 40.73136, "lon": -73.8974, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.8974, 40.73136 ] } }, -{ "type": "Feature", "properties": { "id": 550572, "name": "65 Pl/53 Av", "direction": "S", "lat": 40.731274, "lon": -73.90029, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90029, 40.731274 ] } }, -{ "type": "Feature", "properties": { "id": 550573, "name": "65 Pl/53 Dr", "direction": "S", "lat": 40.728703, "lon": -73.90041, "routes": "Q67, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90041, 40.728703 ] } }, -{ "type": "Feature", "properties": { "id": 550575, "name": "65 Pl/Jay Av", "direction": "N", "lat": 40.726997, "lon": -73.90022, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.90022, 40.726997 ] } }, -{ "type": "Feature", "properties": { "id": 550576, "name": "Hamilton Pl/Grand Av", "direction": "SE", "lat": 40.724365, "lon": -73.89875, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89875, 40.724365 ] } }, -{ "type": "Feature", "properties": { "id": 550579, "name": "69 St/Grand Av", "direction": "N", "lat": 40.726498, "lon": -73.89532, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89532, 40.726498 ] } }, -{ "type": "Feature", "properties": { "id": 550580, "name": "69 St/55 Av", "direction": "N", "lat": 40.727943, "lon": -73.89536, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89536, 40.727943 ] } }, -{ "type": "Feature", "properties": { "id": 550581, "name": "Jay Av/68 St", "direction": "W", "lat": 40.728436, "lon": -73.89675, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89675, 40.728436 ] } }, -{ "type": "Feature", "properties": { "id": 550582, "name": "Jay Av/66 St", "direction": "SW", "lat": 40.72777, "lon": -73.89847, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89847, 40.72777 ] } }, -{ "type": "Feature", "properties": { "id": 550583, "name": "Jay Av/65 Pl", "direction": "SW", "lat": 40.726856, "lon": -73.90023, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90023, 40.726856 ] } }, -{ "type": "Feature", "properties": { "id": 550584, "name": "65 Pl/Claran Ct", "direction": "N", "lat": 40.72825, "lon": -73.900116, "routes": "Q18, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.900116, 40.72825 ] } }, -{ "type": "Feature", "properties": { "id": 550585, "name": "65 Pl/53 Av", "direction": "N", "lat": 40.731277, "lon": -73.899994, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.899994, 40.731277 ] } }, -{ "type": "Feature", "properties": { "id": 550586, "name": "69 St/52 Dr", "direction": "N", "lat": 40.732117, "lon": -73.89576, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89576, 40.732117 ] } }, -{ "type": "Feature", "properties": { "id": 550587, "name": "69 St/Calamus Av", "direction": "N", "lat": 40.734863, "lon": -73.89589, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89589, 40.734863 ] } }, -{ "type": "Feature", "properties": { "id": 550588, "name": "69 St/Garfield Av", "direction": "N", "lat": 40.73633, "lon": -73.895836, "routes": "Q47, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.895836, 40.73633 ] } }, -{ "type": "Feature", "properties": { "id": 550589, "name": "50 Av/65 Pl", "direction": "W", "lat": 40.737125, "lon": -73.89976, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89976, 40.737125 ] } }, -{ "type": "Feature", "properties": { "id": 550590, "name": "65 Pl/Laurel Hill Blvd", "direction": "N", "lat": 40.74045, "lon": -73.89959, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89959, 40.74045 ] } }, -{ "type": "Feature", "properties": { "id": 550591, "name": "Woodside Av/64 St", "direction": "W", "lat": 40.74426, "lon": -73.90102, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90102, 40.74426 ] } }, -{ "type": "Feature", "properties": { "id": 550592, "name": "Woodside Av/61 St", "direction": "W", "lat": 40.745113, "lon": -73.90403, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90403, 40.745113 ] } }, -{ "type": "Feature", "properties": { "id": 550593, "name": "58 St/38 Av", "direction": "NE", "lat": 40.748287, "lon": -73.90506, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90506, 40.748287 ] } }, -{ "type": "Feature", "properties": { "id": 550594, "name": "58 St/Broadway", "direction": "N", "lat": 40.751698, "lon": -73.9035, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.9035, 40.751698 ] } }, -{ "type": "Feature", "properties": { "id": 550595, "name": "54 St/Northern Blvd", "direction": "N", "lat": 40.753555, "lon": -73.90665, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90665, 40.753555 ] } }, -{ "type": "Feature", "properties": { "id": 550596, "name": "54 St/32 Av", "direction": "N", "lat": 40.755386, "lon": -73.90699, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90699, 40.755386 ] } }, -{ "type": "Feature", "properties": { "id": 550597, "name": "54 St/31 Av", "direction": "N", "lat": 40.75694, "lon": -73.90724, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90724, 40.75694 ] } }, -{ "type": "Feature", "properties": { "id": 550598, "name": "30 Av/46 St", "direction": "NW", "lat": 40.761787, "lon": -73.91036, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91036, 40.761787 ] } }, -{ "type": "Feature", "properties": { "id": 550599, "name": "30 Av/44 St", "direction": "NW", "lat": 40.762432, "lon": -73.91163, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91163, 40.762432 ] } }, -{ "type": "Feature", "properties": { "id": 550600, "name": "30 Av/42 St", "direction": "NW", "lat": 40.763325, "lon": -73.91344, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91344, 40.763325 ] } }, -{ "type": "Feature", "properties": { "id": 550601, "name": "30 Av/36 St", "direction": "NW", "lat": 40.765167, "lon": -73.91746, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91746, 40.765167 ] } }, -{ "type": "Feature", "properties": { "id": 550602, "name": "30 Av/34 St", "direction": "NW", "lat": 40.76591, "lon": -73.91908, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.91908, 40.76591 ] } }, -{ "type": "Feature", "properties": { "id": 550603, "name": "30 Av/Crescent St", "direction": "NW", "lat": 40.768753, "lon": -73.92514, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.92514, 40.768753 ] } }, -{ "type": "Feature", "properties": { "id": 550604, "name": "30 Av/14 St", "direction": "NW", "lat": 40.770885, "lon": -73.92972, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.92972, 40.770885 ] } }, -{ "type": "Feature", "properties": { "id": 550605, "name": "30 Av/12 St", "direction": "NW", "lat": 40.771496, "lon": -73.931046, "routes": "Q102, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.931046, 40.771496 ] } }, -{ "type": "Feature", "properties": { "id": 550607, "name": "Astoria Blvd/Crescent St", "direction": "E", "lat": 40.771317, "lon": -73.9231, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.9231, 40.771317 ] } }, -{ "type": "Feature", "properties": { "id": 550608, "name": "Astoria Blvd/28 St", "direction": "E", "lat": 40.77068, "lon": -73.92067, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.92067, 40.77068 ] } }, -{ "type": "Feature", "properties": { "id": 550609, "name": "Astoria Bl/31 St", "direction": "E", "lat": 40.769733, "lon": -73.91653, "routes": "M60+, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.91653, 40.769733 ] } }, -{ "type": "Feature", "properties": { "id": 550612, "name": "Astoria Blvd/37 St", "direction": "E", "lat": 40.769062, "lon": -73.91278, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.91278, 40.769062 ] } }, -{ "type": "Feature", "properties": { "id": 550613, "name": "Astoria Blvd/37 St", "direction": "W", "lat": 40.76983, "lon": -73.91219, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.91219, 40.76983 ] } }, -{ "type": "Feature", "properties": { "id": 550615, "name": "Astoria Blvd/42 St", "direction": "E", "lat": 40.7685, "lon": -73.90925, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.90925, 40.7685 ] } }, -{ "type": "Feature", "properties": { "id": 550620, "name": "Astoria Blvd/80 St", "direction": "E", "lat": 40.76518, "lon": -73.88923, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.88923, 40.76518 ] } }, -{ "type": "Feature", "properties": { "id": 550621, "name": "Astoria Blvd/80 St", "direction": "W", "lat": 40.765484, "lon": -73.888885, "routes": "Q19, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.888885, 40.765484 ] } }, -{ "type": "Feature", "properties": { "id": 550622, "name": "Astoria Blvd/82 St", "direction": "E", "lat": 40.76482, "lon": -73.886475, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.886475, 40.76482 ] } }, -{ "type": "Feature", "properties": { "id": 550623, "name": "Astoria Blvd/82 St", "direction": "W", "lat": 40.765152, "lon": -73.886955, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.886955, 40.765152 ] } }, -{ "type": "Feature", "properties": { "id": 550624, "name": "Astoria Blvd/82 St", "direction": "W", "lat": 40.765316, "lon": -73.88767, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.88767, 40.765316 ] } }, -{ "type": "Feature", "properties": { "id": 550625, "name": "Astoria Blvd/84 St", "direction": "E", "lat": 40.764507, "lon": -73.8849, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.8849, 40.764507 ] } }, -{ "type": "Feature", "properties": { "id": 550626, "name": "Astoria Blvd/86 St", "direction": "E", "lat": 40.764175, "lon": -73.88295, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.88295, 40.764175 ] } }, -{ "type": "Feature", "properties": { "id": 550627, "name": "Astoria Blvd/88 St", "direction": "E", "lat": 40.76385, "lon": -73.881065, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.881065, 40.76385 ] } }, -{ "type": "Feature", "properties": { "id": 550628, "name": "Astoria Blvd/90 St", "direction": "E", "lat": 40.7635, "lon": -73.87876, "routes": "Q19, Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87876, 40.7635 ] } }, -{ "type": "Feature", "properties": { "id": 550629, "name": "Astoria Blvd/89 St", "direction": "W", "lat": 40.764053, "lon": -73.88025, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.88025, 40.764053 ] } }, -{ "type": "Feature", "properties": { "id": 550630, "name": "Astoria Blvd/92 St", "direction": "E", "lat": 40.76325, "lon": -73.877464, "routes": "Q49, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.877464, 40.76325 ] } }, -{ "type": "Feature", "properties": { "id": 550631, "name": "Astoria Blvd/92 St", "direction": "W", "lat": 40.763554, "lon": -73.8775, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.8775, 40.763554 ] } }, -{ "type": "Feature", "properties": { "id": 550632, "name": "Astoria Blvd/94 St", "direction": "E", "lat": 40.76282, "lon": -73.875114, "routes": "Q49, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.875114, 40.76282 ] } }, -{ "type": "Feature", "properties": { "id": 550633, "name": "Astoria Blvd/94 St", "direction": "W", "lat": 40.76315, "lon": -73.87514, "routes": "Q19, Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87514, 40.76315 ] } }, -{ "type": "Feature", "properties": { "id": 550634, "name": "Astoria Blvd/96 St", "direction": "E", "lat": 40.76251, "lon": -73.87337, "routes": "Q19, Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87337, 40.76251 ] } }, -{ "type": "Feature", "properties": { "id": 550635, "name": "Astoria Blvd/96 St", "direction": "W", "lat": 40.76286, "lon": -73.87343, "routes": "Q49, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.87343, 40.76286 ] } }, -{ "type": "Feature", "properties": { "id": 550636, "name": "Astoria Blvd/98 St", "direction": "E", "lat": 40.76213, "lon": -73.87115, "routes": "Q49, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.87115, 40.76213 ] } }, -{ "type": "Feature", "properties": { "id": 550637, "name": "Astoria Blvd/98 St", "direction": "W", "lat": 40.762535, "lon": -73.87156, "routes": "Q49, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.87156, 40.762535 ] } }, -{ "type": "Feature", "properties": { "id": 550638, "name": "Astoria Blvd/100 St", "direction": "E", "lat": 40.761784, "lon": -73.869156, "routes": "Q19, Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.869156, 40.761784 ] } }, -{ "type": "Feature", "properties": { "id": 550639, "name": "Astoria Blvd/100 St", "direction": "W", "lat": 40.762222, "lon": -73.86955, "routes": "Q49, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.86955, 40.762222 ] } }, -{ "type": "Feature", "properties": { "id": 550640, "name": "Astoria Blvd/102 St", "direction": "E", "lat": 40.76153, "lon": -73.867386, "routes": "Q19, Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.867386, 40.76153 ] } }, -{ "type": "Feature", "properties": { "id": 550641, "name": "31 Av/102 St", "direction": "W", "lat": 40.76131, "lon": -73.86711, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.86711, 40.76131 ] } }, -{ "type": "Feature", "properties": { "id": 550642, "name": "Astoria Blvd/87 St", "direction": "W", "lat": 40.764378, "lon": -73.882355, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.882355, 40.764378 ] } }, -{ "type": "Feature", "properties": { "id": 550643, "name": "Astoria Blvd/85 St", "direction": "W", "lat": 40.7647, "lon": -73.88437, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.88437, 40.7647 ] } }, -{ "type": "Feature", "properties": { "id": 550646, "name": "Astoria Blvd/72 St", "direction": "W", "lat": 40.767246, "lon": -73.897194, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.897194, 40.767246 ] } }, -{ "type": "Feature", "properties": { "id": 550647, "name": "Astoria Blvd/70 St", "direction": "W", "lat": 40.76744, "lon": -73.89906, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.89906, 40.76744 ] } }, -{ "type": "Feature", "properties": { "id": 550648, "name": "Astoria Blvd/47 St", "direction": "W", "lat": 40.76819, "lon": -73.90362, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.90362, 40.76819 ] } }, -{ "type": "Feature", "properties": { "id": 550650, "name": "Hoyt Av/27 St", "direction": "NW", "lat": 40.772675, "lon": -73.91965, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.91965, 40.772675 ] } }, -{ "type": "Feature", "properties": { "id": 550653, "name": "44 Dr/Hunter St", "direction": "W", "lat": 40.747498, "lon": -73.94353, "routes": "Q39, Q69, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94353, 40.747498 ] } }, -{ "type": "Feature", "properties": { "id": 550654, "name": "44 Dr/23 St", "direction": "W", "lat": 40.74788, "lon": -73.94534, "routes": "Q67, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.94534, 40.74788 ] } }, -{ "type": "Feature", "properties": { "id": 550655, "name": "74 St/35 Av", "direction": "N", "lat": 40.75089, "lon": -73.89203, "routes": "Q47, Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.89203, 40.75089 ] } }, -{ "type": "Feature", "properties": { "id": 550657, "name": "21 St/43 Av", "direction": "NE", "lat": 40.750576, "lon": -73.945656, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.945656, 40.750576 ] } }, -{ "type": "Feature", "properties": { "id": 550658, "name": "21 St/Queens Plaza South", "direction": "NE", "lat": 40.75202, "lon": -73.94422, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.94422, 40.75202 ] } }, -{ "type": "Feature", "properties": { "id": 550659, "name": "21 St/Queens Plaza North", "direction": "NE", "lat": 40.75275, "lon": -73.943535, "routes": "Q69, Q66, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.943535, 40.75275 ] } }, -{ "type": "Feature", "properties": { "id": 550660, "name": "35 Av/80 St", "direction": "E", "lat": 40.751575, "lon": -73.886375, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.886375, 40.751575 ] } }, -{ "type": "Feature", "properties": { "id": 550661, "name": "35 Av/80 St", "direction": "W", "lat": 40.75166, "lon": -73.886734, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.886734, 40.75166 ] } }, -{ "type": "Feature", "properties": { "id": 550662, "name": "35 Av/82 St", "direction": "E", "lat": 40.751797, "lon": -73.88423, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.88423, 40.751797 ] } }, -{ "type": "Feature", "properties": { "id": 550663, "name": "35 Av/82 St", "direction": "W", "lat": 40.751896, "lon": -73.88491, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.88491, 40.751896 ] } }, -{ "type": "Feature", "properties": { "id": 550664, "name": "35 Av/84 St", "direction": "E", "lat": 40.751965, "lon": -73.882614, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.882614, 40.751965 ] } }, -{ "type": "Feature", "properties": { "id": 550665, "name": "35 Av/84 St", "direction": "W", "lat": 40.752056, "lon": -73.88299, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.88299, 40.752056 ] } }, -{ "type": "Feature", "properties": { "id": 550666, "name": "35 Av/86 St", "direction": "E", "lat": 40.752163, "lon": -73.8808, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.8808, 40.752163 ] } }, -{ "type": "Feature", "properties": { "id": 550667, "name": "89 St/35 Av", "direction": "N", "lat": 40.752853, "lon": -73.87816, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87816, 40.752853 ] } }, -{ "type": "Feature", "properties": { "id": 550668, "name": "89 St/34 Av", "direction": "N", "lat": 40.754585, "lon": -73.87847, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87847, 40.754585 ] } }, -{ "type": "Feature", "properties": { "id": 550669, "name": "89 St/Northern Blvd", "direction": "N", "lat": 40.756435, "lon": -73.87881, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87881, 40.756435 ] } }, -{ "type": "Feature", "properties": { "id": 550670, "name": "21 St/41 Av", "direction": "NE", "lat": 40.75429, "lon": -73.94197, "routes": "Q100, Q103, Q102, Q66, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.94197, 40.75429 ] } }, -{ "type": "Feature", "properties": { "id": 550671, "name": "21 St/41 Av", "direction": "SW", "lat": 40.754177, "lon": -73.94228, "routes": "Q66, Q69, Q103, Q96, Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.94228, 40.754177 ] } }, -{ "type": "Feature", "properties": { "id": 550672, "name": "21 St/40 Av", "direction": "NE", "lat": 40.75541, "lon": -73.94096, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.94096, 40.75541 ] } }, -{ "type": "Feature", "properties": { "id": 550673, "name": "21 St/40 Av", "direction": "SW", "lat": 40.75519, "lon": -73.94142, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.94142, 40.75519 ] } }, -{ "type": "Feature", "properties": { "id": 550676, "name": "21 St/37 Av", "direction": "NE", "lat": 40.758633, "lon": -73.93792, "routes": "Q66, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.93792, 40.758633 ] } }, -{ "type": "Feature", "properties": { "id": 550677, "name": "21 St/37 Av", "direction": "SW", "lat": 40.75859, "lon": -73.93817, "routes": "Q69, Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.93817, 40.75859 ] } }, -{ "type": "Feature", "properties": { "id": 550680, "name": "21 St/35 Av", "direction": "NE", "lat": 40.76132, "lon": -73.935394, "routes": "Q66, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.935394, 40.76132 ] } }, -{ "type": "Feature", "properties": { "id": 550681, "name": "21 St/35 Av", "direction": "SW", "lat": 40.761093, "lon": -73.93574, "routes": "Q69, Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.93574, 40.761093 ] } }, -{ "type": "Feature", "properties": { "id": 550682, "name": "21 St/34 Av", "direction": "NE", "lat": 40.762928, "lon": -73.9338, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.9338, 40.762928 ] } }, -{ "type": "Feature", "properties": { "id": 550683, "name": "21 St/34 Av", "direction": "SW", "lat": 40.76278, "lon": -73.9342, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.9342, 40.76278 ] } }, -{ "type": "Feature", "properties": { "id": 550685, "name": "21 St/Broadway", "direction": "SW", "lat": 40.76523, "lon": -73.93187, "routes": "Q69, Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.93187, 40.76523 ] } }, -{ "type": "Feature", "properties": { "id": 550686, "name": "21 St/31 Rd", "direction": "NE", "lat": 40.766754, "lon": -73.93017, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.93017, 40.766754 ] } }, -{ "type": "Feature", "properties": { "id": 550688, "name": "21 St/30 Av", "direction": "NE", "lat": 40.770107, "lon": -73.92758, "routes": "Q69, Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.92758, 40.770107 ] } }, -{ "type": "Feature", "properties": { "id": 550689, "name": "21 St/30 Av", "direction": "SW", "lat": 40.769814, "lon": -73.92806, "routes": "Q100, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.92806, 40.769814 ] } }, -{ "type": "Feature", "properties": { "id": 550690, "name": "Rockaway Beach Blvd/Beach 108 St", "direction": "E", "lat": 40.581913, "lon": -73.82935, "routes": "Q53+, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.82935, 40.581913 ] } }, -{ "type": "Feature", "properties": { "id": 550691, "name": "Rockaway Beach Blvd/Beach 108 St", "direction": "W", "lat": 40.582157, "lon": -73.82954, "routes": "Q22, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.82954, 40.582157 ] } }, -{ "type": "Feature", "properties": { "id": 550692, "name": "21 St/Astoria Blvd", "direction": "NE", "lat": 40.772396, "lon": -73.92573, "routes": "Q69, Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.92573, 40.772396 ] } }, -{ "type": "Feature", "properties": { "id": 550693, "name": "21 St/Astoria Blvd", "direction": "SW", "lat": 40.772186, "lon": -73.92614, "routes": "Q100, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.92614, 40.772186 ] } }, -{ "type": "Feature", "properties": { "id": 550694, "name": "Rockaway Beach Blvd/Beach 105 St", "direction": "E", "lat": 40.582996, "lon": -73.82573, "routes": "Q22, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.82573, 40.582996 ] } }, -{ "type": "Feature", "properties": { "id": 550695, "name": "Rockaway Beach Blvd/Beach 105 St", "direction": "W", "lat": 40.58312, "lon": -73.82633, "routes": "Q22, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.82633, 40.58312 ] } }, -{ "type": "Feature", "properties": { "id": 550696, "name": "Rockaway Beach Blvd/Beach 102 St", "direction": "E", "lat": 40.58363, "lon": -73.82324, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.82324, 40.58363 ] } }, -{ "type": "Feature", "properties": { "id": 550697, "name": "21 St/Hoyt Av N", "direction": "SW", "lat": 40.775627, "lon": -73.92294, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.92294, 40.775627 ] } }, -{ "type": "Feature", "properties": { "id": 550699, "name": "Rockaway Beach Blvd/Beach 100 St", "direction": "NE", "lat": 40.583748, "lon": -73.82121, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.82121, 40.583748 ] } }, -{ "type": "Feature", "properties": { "id": 550702, "name": "Rockaway Beach Blvd/Beach 96 St", "direction": "NE", "lat": 40.58532, "lon": -73.81784, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.81784, 40.58532 ] } }, -{ "type": "Feature", "properties": { "id": 550703, "name": "Rockaway Beach Blvd/Beach 96 St", "direction": "SW", "lat": 40.58549, "lon": -73.81792, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.81792, 40.58549 ] } }, -{ "type": "Feature", "properties": { "id": 550706, "name": "Ditmars Blvd/31 St", "direction": "SE", "lat": 40.775833, "lon": -73.91032, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.91032, 40.775833 ] } }, -{ "type": "Feature", "properties": { "id": 550707, "name": "Ditmars Blvd/31 St", "direction": "NW", "lat": 40.776485, "lon": -73.91105, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.91105, 40.776485 ] } }, -{ "type": "Feature", "properties": { "id": 550709, "name": "Ditmars Blvd/Steinway St", "direction": "SE", "lat": 40.77271, "lon": -73.90599, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.90599, 40.77271 ] } }, -{ "type": "Feature", "properties": { "id": 550710, "name": "Ditmars Blvd/Steinway St", "direction": "NW", "lat": 40.77305, "lon": -73.906166, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.906166, 40.77305 ] } }, -{ "type": "Feature", "properties": { "id": 550712, "name": "Ditmars Blvd/42 St", "direction": "NW", "lat": 40.772045, "lon": -73.9047, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.9047, 40.772045 ] } }, -{ "type": "Feature", "properties": { "id": 550713, "name": "Cross Bay Blvd/Noel Rd", "direction": "S", "lat": 40.607872, "lon": -73.81948, "routes": "Q53+, QM17, Q52+, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.81948, 40.607872 ] } }, -{ "type": "Feature", "properties": { "id": 550714, "name": "Ditmars Blvd/45 St", "direction": "NW", "lat": 40.77101, "lon": -73.90331, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.90331, 40.77101 ] } }, -{ "type": "Feature", "properties": { "id": 550720, "name": "Ditmars Blvd/75 St", "direction": "E", "lat": 40.768402, "lon": -73.89414, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89414, 40.768402 ] } }, -{ "type": "Feature", "properties": { "id": 550722, "name": "Ditmars Blvd/79 St", "direction": "E", "lat": 40.76874, "lon": -73.89044, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89044, 40.76874 ] } }, -{ "type": "Feature", "properties": { "id": 550723, "name": "157 Av/84 St", "direction": "W", "lat": 40.661427, "lon": -73.8489, "routes": "Q21, Q41, QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.8489, 40.661427 ] } }, -{ "type": "Feature", "properties": { "id": 550724, "name": "82 St/Astoria Blvd", "direction": "SE", "lat": 40.765278, "lon": -73.887314, "routes": "Q47, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.887314, 40.765278 ] } }, -{ "type": "Feature", "properties": { "id": 550725, "name": "89 St/151 Av", "direction": "N", "lat": 40.66861, "lon": -73.84601, "routes": "Q41, QM15, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84601, 40.66861 ] } }, -{ "type": "Feature", "properties": { "id": 550726, "name": "Ditmars Blvd/78 St", "direction": "W", "lat": 40.76883, "lon": -73.891846, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.891846, 40.76883 ] } }, -{ "type": "Feature", "properties": { "id": 550727, "name": "Ditmars Blvd/76 St", "direction": "W", "lat": 40.76858, "lon": -73.89368, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89368, 40.76858 ] } }, -{ "type": "Feature", "properties": { "id": 550728, "name": "Ditmars Blvd/74 St", "direction": "W", "lat": 40.76844, "lon": -73.89544, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89544, 40.76844 ] } }, -{ "type": "Feature", "properties": { "id": 550732, "name": "Rockaway Beach Blvd/Beach 99 St", "direction": "SW", "lat": 40.58423, "lon": -73.82054, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.82054, 40.58423 ] } }, -{ "type": "Feature", "properties": { "id": 550733, "name": "Rockaway Beach Blvd/Beach 110 St", "direction": "W", "lat": 40.581272, "lon": -73.83229, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.83229, 40.581272 ] } }, -{ "type": "Feature", "properties": { "id": 550735, "name": "Rockaway Beach Blvd/Beach 116 St", "direction": "W", "lat": 40.579994, "lon": -73.83698, "routes": "Q22, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.83698, 40.579994 ] } }, -{ "type": "Feature", "properties": { "id": 550737, "name": "Beach 169 St/Rockaway Point Blvd", "direction": "SE", "lat": 40.56736, "lon": -73.8827, "routes": "Q22, Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.8827, 40.56736 ] } }, -{ "type": "Feature", "properties": { "id": 550739, "name": "Queens Plaza South/22 St", "direction": "SE", "lat": 40.751648, "lon": -73.943306, "routes": "Q66, Q102, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.943306, 40.751648 ] } }, -{ "type": "Feature", "properties": { "id": 550741, "name": "Rockaway Beach Blvd/Beach 149 St", "direction": "E", "lat": 40.56927, "lon": -73.86381, "routes": "Q35, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.86381, 40.56927 ] } }, -{ "type": "Feature", "properties": { "id": 550742, "name": "28 St/Queens Plaza South", "direction": "SW", "lat": 40.74939, "lon": -73.939514, "routes": "Q39, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.939514, 40.74939 ] } }, -{ "type": "Feature", "properties": { "id": 550748, "name": "Rockaway Beach Blvd/Beach 141 St", "direction": "NE", "lat": 40.571884, "lon": -73.85766, "routes": "QM16, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.85766, 40.571884 ] } }, -{ "type": "Feature", "properties": { "id": 550749, "name": "Rockaway Beach Blvd/Beach 141 St", "direction": "W", "lat": 40.57214, "lon": -73.85782, "routes": "QM16, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.85782, 40.57214 ] } }, -{ "type": "Feature", "properties": { "id": 550752, "name": "Rockaway Beach Blvd/Beach 137 St", "direction": "E", "lat": 40.57323, "lon": -73.854485, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.854485, 40.57323 ] } }, -{ "type": "Feature", "properties": { "id": 550753, "name": "Rockaway Beach Blvd/Beach 137 St", "direction": "W", "lat": 40.57354, "lon": -73.85426, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.85426, 40.57354 ] } }, -{ "type": "Feature", "properties": { "id": 550754, "name": "Rockaway Beach Blvd/Beach 135 St", "direction": "NE", "lat": 40.573887, "lon": -73.85291, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.85291, 40.573887 ] } }, -{ "type": "Feature", "properties": { "id": 550755, "name": "Rockaway Beach Blvd/Beach 135 St", "direction": "W", "lat": 40.5742, "lon": -73.85265, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.85265, 40.5742 ] } }, -{ "type": "Feature", "properties": { "id": 550756, "name": "Rockaway Beach Blvd/Beach 133 St", "direction": "E", "lat": 40.5745, "lon": -73.851295, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.851295, 40.5745 ] } }, -{ "type": "Feature", "properties": { "id": 550757, "name": "Rockaway Beach Blvd/Beach 133 St", "direction": "W", "lat": 40.574837, "lon": -73.85108, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.85108, 40.574837 ] } }, -{ "type": "Feature", "properties": { "id": 550761, "name": "Rockaway Beach Blvd/Beach 129 St", "direction": "W", "lat": 40.57616, "lon": -73.84786, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.84786, 40.57616 ] } }, -{ "type": "Feature", "properties": { "id": 550762, "name": "Rockaway Beach Blvd/Beach 127 St", "direction": "E", "lat": 40.576653, "lon": -73.84606, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.84606, 40.576653 ] } }, -{ "type": "Feature", "properties": { "id": 550764, "name": "Rockaway Beach Blvd/Beach 123 St", "direction": "E", "lat": 40.57773, "lon": -73.84317, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.84317, 40.57773 ] } }, -{ "type": "Feature", "properties": { "id": 550765, "name": "Rockaway Beach Blvd/Beach 122 St", "direction": "E", "lat": 40.578117, "lon": -73.841965, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.841965, 40.578117 ] } }, -{ "type": "Feature", "properties": { "id": 550766, "name": "Rockaway Beach Blvd/Beach 122 St", "direction": "W", "lat": 40.578312, "lon": -73.842094, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.842094, 40.578312 ] } }, -{ "type": "Feature", "properties": { "id": 550767, "name": "Rockaway Beach Blvd/Beach 119 St", "direction": "E", "lat": 40.578938, "lon": -73.83952, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.83952, 40.578938 ] } }, -{ "type": "Feature", "properties": { "id": 550770, "name": "Rockaway Beach Blvd/Beach 92 St", "direction": "E", "lat": 40.58648, "lon": -73.8152, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.8152, 40.58648 ] } }, -{ "type": "Feature", "properties": { "id": 550771, "name": "Rockaway Beach Blvd/Beach 88 St", "direction": "E", "lat": 40.58723, "lon": -73.81318, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.81318, 40.58723 ] } }, -{ "type": "Feature", "properties": { "id": 550772, "name": "Rockaway Beach Blvd/Beach 88 St", "direction": "W", "lat": 40.587494, "lon": -73.81289, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.81289, 40.587494 ] } }, -{ "type": "Feature", "properties": { "id": 550775, "name": "Rockaway Beach Blvd/Beach 84 St", "direction": "E", "lat": 40.587666, "lon": -73.809685, "routes": "Q52+, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.809685, 40.587666 ] } }, -{ "type": "Feature", "properties": { "id": 550776, "name": "Rockaway Beach Blvd/Beach 81 St", "direction": "E", "lat": 40.58793, "lon": -73.807045, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.807045, 40.58793 ] } }, -{ "type": "Feature", "properties": { "id": 550777, "name": "Rockaway Beach Blvd/Beach 81 St", "direction": "W", "lat": 40.588093, "lon": -73.80753, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.80753, 40.588093 ] } }, -{ "type": "Feature", "properties": { "id": 550778, "name": "Rockaway Beach Blvd/Beach 79 St", "direction": "E", "lat": 40.58812, "lon": -73.80526, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.80526, 40.58812 ] } }, -{ "type": "Feature", "properties": { "id": 550780, "name": "Rockaway Beach Blvd/Beach 77 St", "direction": "W", "lat": 40.588383, "lon": -73.80449, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.80449, 40.588383 ] } }, -{ "type": "Feature", "properties": { "id": 550781, "name": "Rockaway Beach Blvd/Beach 75 St", "direction": "E", "lat": 40.588573, "lon": -73.80286, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.80286, 40.588573 ] } }, -{ "type": "Feature", "properties": { "id": 550782, "name": "Rockaway Beach Blvd/Beach 75 St", "direction": "W", "lat": 40.58875, "lon": -73.80293, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.80293, 40.58875 ] } }, -{ "type": "Feature", "properties": { "id": 550783, "name": "Rockaway Beach Blvd/Beach 73 St", "direction": "E", "lat": 40.58897, "lon": -73.80122, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.80122, 40.58897 ] } }, -{ "type": "Feature", "properties": { "id": 550784, "name": "Rockaway Beach Blvd/Beach 73 St", "direction": "W", "lat": 40.589172, "lon": -73.80119, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.80119, 40.589172 ] } }, -{ "type": "Feature", "properties": { "id": 550785, "name": "Beach Channel Dr/Beach 71 St", "direction": "NE", "lat": 40.591953, "lon": -73.7999, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.7999, 40.591953 ] } }, -{ "type": "Feature", "properties": { "id": 550786, "name": "Beach Channel Dr/Beach 69 St", "direction": "E", "lat": 40.592644, "lon": -73.79786, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.79786, 40.592644 ] } }, -{ "type": "Feature", "properties": { "id": 550787, "name": "Beach Channel Dr/Beach 69 St", "direction": "W", "lat": 40.59284, "lon": -73.79836, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.79836, 40.59284 ] } }, -{ "type": "Feature", "properties": { "id": 550788, "name": "Beach Channel Dr/Beach 67 St", "direction": "E", "lat": 40.59276, "lon": -73.79586, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.79586, 40.59276 ] } }, -{ "type": "Feature", "properties": { "id": 550789, "name": "Beach Channel Dr/Beach 67 St", "direction": "W", "lat": 40.592953, "lon": -73.796425, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.796425, 40.592953 ] } }, -{ "type": "Feature", "properties": { "id": 550790, "name": "Beach Channel Dr/Beach 63 St", "direction": "E", "lat": 40.59299, "lon": -73.792564, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.792564, 40.59299 ] } }, -{ "type": "Feature", "properties": { "id": 550791, "name": "Beach Channel Dr/Beach 63 St", "direction": "W", "lat": 40.59318, "lon": -73.79254, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.79254, 40.59318 ] } }, -{ "type": "Feature", "properties": { "id": 550792, "name": "Beach Channel Dr/Beach 59 St", "direction": "E", "lat": 40.593872, "lon": -73.78932, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.78932, 40.593872 ] } }, -{ "type": "Feature", "properties": { "id": 550793, "name": "Beach Channel Dr/Beach 59 St", "direction": "W", "lat": 40.594284, "lon": -73.78893, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.78893, 40.594284 ] } }, -{ "type": "Feature", "properties": { "id": 550796, "name": "Beach Channel Dr/Beach 54 St", "direction": "E", "lat": 40.59497, "lon": -73.78476, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.78476, 40.59497 ] } }, -{ "type": "Feature", "properties": { "id": 550797, "name": "Beach Channel Dr/Beach 54 St", "direction": "W", "lat": 40.595196, "lon": -73.78476, "routes": "QM17, Q22, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.78476, 40.595196 ] } }, -{ "type": "Feature", "properties": { "id": 550798, "name": "Beach Channel Dr/Beach 51 St", "direction": "E", "lat": 40.59522, "lon": -73.78168, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.78168, 40.59522 ] } }, -{ "type": "Feature", "properties": { "id": 550800, "name": "Beach Channel Dr/Beach 49 St", "direction": "E", "lat": 40.595333, "lon": -73.77973, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.77973, 40.595333 ] } }, -{ "type": "Feature", "properties": { "id": 550803, "name": "Beach Channel Dr/Beach 47 St", "direction": "W", "lat": 40.595627, "lon": -73.7784, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.7784, 40.595627 ] } }, -{ "type": "Feature", "properties": { "id": 550804, "name": "Beach Channel Dr/Beach 44 St", "direction": "E", "lat": 40.595604, "lon": -73.77549, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.77549, 40.595604 ] } }, -{ "type": "Feature", "properties": { "id": 550805, "name": "Beach Channel Dr/Beach 101 St", "direction": "W", "lat": 40.586113, "lon": -73.82314, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.82314, 40.586113 ] } }, -{ "type": "Feature", "properties": { "id": 550806, "name": "Beach Channel Dr/Beach 41 St", "direction": "E", "lat": 40.59572, "lon": -73.77261, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.77261, 40.59572 ] } }, -{ "type": "Feature", "properties": { "id": 550807, "name": "Beach Channel Dr/Beach 38 St", "direction": "E", "lat": 40.59595, "lon": -73.770424, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.770424, 40.59595 ] } }, -{ "type": "Feature", "properties": { "id": 550808, "name": "Beach Channel Dr/Beach 38 St", "direction": "W", "lat": 40.596085, "lon": -73.77093, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.77093, 40.596085 ] } }, -{ "type": "Feature", "properties": { "id": 550810, "name": "Seagirt Blvd/Beach 34 St", "direction": "E", "lat": 40.59597, "lon": -73.76633, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.76633, 40.59597 ] } }, -{ "type": "Feature", "properties": { "id": 550818, "name": "Seagirt Blvd/Crest Rd", "direction": "E", "lat": 40.595047, "lon": -73.75582, "routes": "Q22, QM17, Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.75582, 40.595047 ] } }, -{ "type": "Feature", "properties": { "id": 550819, "name": "Seagirt Blvd/Crest Rd", "direction": "W", "lat": 40.5954, "lon": -73.7562, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.7562, 40.5954 ] } }, -{ "type": "Feature", "properties": { "id": 550820, "name": "Beach 19 St/Seagirt Blvd", "direction": "N", "lat": 40.595455, "lon": -73.753044, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.753044, 40.595455 ] } }, -{ "type": "Feature", "properties": { "id": 550821, "name": "Beach 19 St/Plainview Av", "direction": "N", "lat": 40.598, "lon": -73.75282, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75282, 40.598 ] } }, -{ "type": "Feature", "properties": { "id": 550822, "name": "Beach 19 St/Gateway Blvd", "direction": "N", "lat": 40.59968, "lon": -73.752235, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.752235, 40.59968 ] } }, -{ "type": "Feature", "properties": { "id": 550823, "name": "Beach 19 St/Everdell Av", "direction": "N", "lat": 40.60141, "lon": -73.75161, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75161, 40.60141 ] } }, -{ "type": "Feature", "properties": { "id": 550824, "name": "Cornaga Av/Beach 19 St", "direction": "W", "lat": 40.602406, "lon": -73.752304, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.752304, 40.602406 ] } }, -{ "type": "Feature", "properties": { "id": 550846, "name": "Beach 21 St/Mott Av", "direction": "N", "lat": 40.604397, "lon": -73.75348, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75348, 40.604397 ] } }, -{ "type": "Feature", "properties": { "id": 550847, "name": "Beach 20 St/Cornaga Av", "direction": "S", "lat": 40.602524, "lon": -73.75345, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75345, 40.602524 ] } }, -{ "type": "Feature", "properties": { "id": 550848, "name": "Beach 20 St/New Haven Av", "direction": "S", "lat": 40.600986, "lon": -73.75384, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75384, 40.600986 ] } }, -{ "type": "Feature", "properties": { "id": 550849, "name": "Beach 20 St/Brookhaven Av", "direction": "S", "lat": 40.59933, "lon": -73.75427, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.75427, 40.59933 ] } }, -{ "type": "Feature", "properties": { "id": 550850, "name": "Beach 20 St/Plainview Av", "direction": "S", "lat": 40.59717, "lon": -73.75438, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75438, 40.59717 ] } }, -{ "type": "Feature", "properties": { "id": 550851, "name": "Beach 20 St/Seagirt Blvd", "direction": "S", "lat": 40.59543, "lon": -73.754166, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.754166, 40.59543 ] } }, -{ "type": "Feature", "properties": { "id": 550852, "name": "Beach Channel Dr/Beach 36 St", "direction": "W", "lat": 40.596325, "lon": -73.76918, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.76918, 40.596325 ] } }, -{ "type": "Feature", "properties": { "id": 550853, "name": "Beach Channel Dr/Beach 40 St", "direction": "W", "lat": 40.59597, "lon": -73.77255, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.77255, 40.59597 ] } }, -{ "type": "Feature", "properties": { "id": 550854, "name": "Beach Channel Dr/Beach 72 St", "direction": "SW", "lat": 40.591908, "lon": -73.800255, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.800255, 40.591908 ] } }, -{ "type": "Feature", "properties": { "id": 550856, "name": "Rockaway Beach Blvd/Beach 91 St", "direction": "W", "lat": 40.58682, "lon": -73.814865, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.814865, 40.58682 ] } }, -{ "type": "Feature", "properties": { "id": 550857, "name": "Rockaway Beach Blvd/Beach 118 St", "direction": "W", "lat": 40.57927, "lon": -73.83915, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.83915, 40.57927 ] } }, -{ "type": "Feature", "properties": { "id": 550858, "name": "Rockaway Beach Blvd/Beach 124 St", "direction": "W", "lat": 40.577766, "lon": -73.84373, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.84373, 40.577766 ] } }, -{ "type": "Feature", "properties": { "id": 550859, "name": "Rockaway Beach Blvd/Beach 126 St", "direction": "W", "lat": 40.577015, "lon": -73.845726, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.845726, 40.577015 ] } }, -{ "type": "Feature", "properties": { "id": 550860, "name": "Rockaway Beach Blvd/Beach 145 St", "direction": "W", "lat": 40.570797, "lon": -73.86108, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.86108, 40.570797 ] } }, -{ "type": "Feature", "properties": { "id": 550867, "name": "20 Av/31 St", "direction": "NW", "lat": 40.78, "lon": -73.90645, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.90645, 40.78 ] } }, -{ "type": "Feature", "properties": { "id": 550880, "name": "71 Av/Metropolitan Av", "direction": "NE", "lat": 40.710907, "lon": -73.85056, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85056, 40.710907 ] } }, -{ "type": "Feature", "properties": { "id": 550881, "name": "71 Av/Manse St", "direction": "NE", "lat": 40.712135, "lon": -73.849724, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.849724, 40.712135 ] } }, -{ "type": "Feature", "properties": { "id": 550882, "name": "Kessel St/71 Av", "direction": "W", "lat": 40.713474, "lon": -73.84928, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84928, 40.713474 ] } }, -{ "type": "Feature", "properties": { "id": 550883, "name": "Kessel St/70 Av", "direction": "W", "lat": 40.714264, "lon": -73.85145, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85145, 40.714264 ] } }, -{ "type": "Feature", "properties": { "id": 550886, "name": "69 Av/Ingram St", "direction": "SW", "lat": 40.71609, "lon": -73.85279, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85279, 40.71609 ] } }, -{ "type": "Feature", "properties": { "id": 550887, "name": "69 Av/Groton St", "direction": "NE", "lat": 40.71758, "lon": -73.851654, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.851654, 40.71758 ] } }, -{ "type": "Feature", "properties": { "id": 550888, "name": "69 Av/Groton St", "direction": "SW", "lat": 40.71741, "lon": -73.85199, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85199, 40.71741 ] } }, -{ "type": "Feature", "properties": { "id": 550889, "name": "69 Av/Dartmouth St", "direction": "NE", "lat": 40.719494, "lon": -73.85041, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85041, 40.719494 ] } }, -{ "type": "Feature", "properties": { "id": 550891, "name": "Burns St/68 Av", "direction": "W", "lat": 40.72162, "lon": -73.85205, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85205, 40.72162 ] } }, -{ "type": "Feature", "properties": { "id": 550892, "name": "Burns St/Yellowstone Blvd", "direction": "W", "lat": 40.72202, "lon": -73.85323, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85323, 40.72202 ] } }, -{ "type": "Feature", "properties": { "id": 550893, "name": "Burns St/Yellowstone Blvd", "direction": "E", "lat": 40.72193, "lon": -73.85337, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85337, 40.72193 ] } }, -{ "type": "Feature", "properties": { "id": 550895, "name": "Austin St/69 Rd", "direction": "E", "lat": 40.721336, "lon": -73.84833, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84833, 40.721336 ] } }, -{ "type": "Feature", "properties": { "id": 550896, "name": "Austin St/69 Rd", "direction": "W", "lat": 40.721504, "lon": -73.848175, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.848175, 40.721504 ] } }, -{ "type": "Feature", "properties": { "id": 550898, "name": "71 Av/Queens Blvd", "direction": "NE", "lat": 40.721107, "lon": -73.84403, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84403, 40.721107 ] } }, -{ "type": "Feature", "properties": { "id": 550899, "name": "71 Av/Queens Blvd", "direction": "SW", "lat": 40.720963, "lon": -73.84441, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84441, 40.720963 ] } }, -{ "type": "Feature", "properties": { "id": 550900, "name": "108 St/70 Rd", "direction": "NW", "lat": 40.722477, "lon": -73.84403, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84403, 40.722477 ] } }, -{ "type": "Feature", "properties": { "id": 550901, "name": "108 St/Jewel Av", "direction": "NW", "lat": 40.723793, "lon": -73.84474, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84474, 40.723793 ] } }, -{ "type": "Feature", "properties": { "id": 550902, "name": "108 St/69 Av", "direction": "NW", "lat": 40.725166, "lon": -73.84543, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84543, 40.725166 ] } }, -{ "type": "Feature", "properties": { "id": 550903, "name": "108 St/68 Av", "direction": "NW", "lat": 40.727154, "lon": -73.84646, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84646, 40.727154 ] } }, -{ "type": "Feature", "properties": { "id": 550904, "name": "108 St/67 Av", "direction": "NW", "lat": 40.72889, "lon": -73.84739, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84739, 40.72889 ] } }, -{ "type": "Feature", "properties": { "id": 550905, "name": "108 St/66 Av", "direction": "NW", "lat": 40.730476, "lon": -73.84816, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84816, 40.730476 ] } }, -{ "type": "Feature", "properties": { "id": 550906, "name": "108 St/65 Av", "direction": "NW", "lat": 40.73155, "lon": -73.8487, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8487, 40.73155 ] } }, -{ "type": "Feature", "properties": { "id": 550907, "name": "108 St/65 Av", "direction": "SE", "lat": 40.73151, "lon": -73.84899, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84899, 40.73151 ] } }, -{ "type": "Feature", "properties": { "id": 550908, "name": "108 St/63 Dr", "direction": "NW", "lat": 40.7339, "lon": -73.84997, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84997, 40.7339 ] } }, -{ "type": "Feature", "properties": { "id": 550909, "name": "108 St / 62 Dr", "direction": "NW", "lat": 40.73616, "lon": -73.851166, "routes": "QM40, Q23, QM10, QM40, QM11, QM11, QM10" }, "geometry": { "type": "Point", "coordinates": [ -73.851166, 40.73616 ] } }, -{ "type": "Feature", "properties": { "id": 550910, "name": "108 St/62 Dr", "direction": "SE", "lat": 40.735256, "lon": -73.85092, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85092, 40.735256 ] } }, -{ "type": "Feature", "properties": { "id": 550913, "name": "108 St/Horace Harding Expwy", "direction": "SE", "lat": 40.736843, "lon": -73.85177, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85177, 40.736843 ] } }, -{ "type": "Feature", "properties": { "id": 550917, "name": "108 St/51 Av", "direction": "NW", "lat": 40.743885, "lon": -73.8551, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8551, 40.743885 ] } }, -{ "type": "Feature", "properties": { "id": 550918, "name": "108 St/49 Av", "direction": "NW", "lat": 40.745457, "lon": -73.85593, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85593, 40.745457 ] } }, -{ "type": "Feature", "properties": { "id": 550919, "name": "108 St/47 Av", "direction": "NW", "lat": 40.746788, "lon": -73.85654, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85654, 40.746788 ] } }, -{ "type": "Feature", "properties": { "id": 550920, "name": "108 St/47 Av", "direction": "SE", "lat": 40.746475, "lon": -73.85674, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85674, 40.746475 ] } }, -{ "type": "Feature", "properties": { "id": 550921, "name": "108 St/44 Av", "direction": "NW", "lat": 40.748238, "lon": -73.857285, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.857285, 40.748238 ] } }, -{ "type": "Feature", "properties": { "id": 550922, "name": "43 Av/108 St", "direction": "W", "lat": 40.748783, "lon": -73.858, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.858, 40.748783 ] } }, -{ "type": "Feature", "properties": { "id": 550923, "name": "43 Av/108 St", "direction": "E", "lat": 40.748566, "lon": -73.85783, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85783, 40.748566 ] } }, -{ "type": "Feature", "properties": { "id": 550925, "name": "43 Av/104 St", "direction": "E", "lat": 40.74781, "lon": -73.8604, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8604, 40.74781 ] } }, -{ "type": "Feature", "properties": { "id": 550926, "name": "43 Av/102 St", "direction": "W", "lat": 40.74732, "lon": -73.8627, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8627, 40.74732 ] } }, -{ "type": "Feature", "properties": { "id": 550927, "name": "103 St/Roosevelt Av", "direction": "NW", "lat": 40.750233, "lon": -73.8628, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8628, 40.750233 ] } }, -{ "type": "Feature", "properties": { "id": 550928, "name": "103 St/37 Av", "direction": "NW", "lat": 40.75342, "lon": -73.864395, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.864395, 40.75342 ] } }, -{ "type": "Feature", "properties": { "id": 550929, "name": "103 St/35 Av", "direction": "N", "lat": 40.754887, "lon": -73.86509, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86509, 40.754887 ] } }, -{ "type": "Feature", "properties": { "id": 550930, "name": "103 St/Northern Blvd", "direction": "N", "lat": 40.757473, "lon": -73.86552, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86552, 40.757473 ] } }, -{ "type": "Feature", "properties": { "id": 550931, "name": "32 Av/103 St", "direction": "W", "lat": 40.759575, "lon": -73.8662, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8662, 40.759575 ] } }, -{ "type": "Feature", "properties": { "id": 550932, "name": "32 Av/101 St", "direction": "W", "lat": 40.759403, "lon": -73.86764, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86764, 40.759403 ] } }, -{ "type": "Feature", "properties": { "id": 550933, "name": "101 St/31 Av", "direction": "N", "lat": 40.76096, "lon": -73.86791, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86791, 40.76096 ] } }, -{ "type": "Feature", "properties": { "id": 550934, "name": "29 Av/Humphreys St", "direction": "NE", "lat": 40.762302, "lon": -73.86595, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86595, 40.762302 ] } }, -{ "type": "Feature", "properties": { "id": 550935, "name": "29 Av/Ericsson St", "direction": "NE", "lat": 40.76295, "lon": -73.8646, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8646, 40.76295 ] } }, -{ "type": "Feature", "properties": { "id": 550936, "name": "29 Av/Ericsson St", "direction": "SW", "lat": 40.762936, "lon": -73.86504, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86504, 40.762936 ] } }, -{ "type": "Feature", "properties": { "id": 550937, "name": "29 Av/Butler St", "direction": "NE", "lat": 40.763763, "lon": -73.86311, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86311, 40.763763 ] } }, -{ "type": "Feature", "properties": { "id": 550938, "name": "29 Av/Butler St", "direction": "SW", "lat": 40.76378, "lon": -73.863525, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.863525, 40.76378 ] } }, -{ "type": "Feature", "properties": { "id": 550940, "name": "29 Av/Humphreys St", "direction": "SW", "lat": 40.762123, "lon": -73.86647, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86647, 40.762123 ] } }, -{ "type": "Feature", "properties": { "id": 550941, "name": "102 St/Astoria Blvd", "direction": "S", "lat": 40.76143, "lon": -73.86737, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86737, 40.76143 ] } }, -{ "type": "Feature", "properties": { "id": 550942, "name": "102 St/32 Av", "direction": "S", "lat": 40.759216, "lon": -73.867, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.867, 40.759216 ] } }, -{ "type": "Feature", "properties": { "id": 550943, "name": "102 St/Northern Blvd", "direction": "S", "lat": 40.757347, "lon": -73.866646, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.866646, 40.757347 ] } }, -{ "type": "Feature", "properties": { "id": 550944, "name": "102 St/34 Av", "direction": "S", "lat": 40.75553, "lon": -73.86632, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86632, 40.75553 ] } }, -{ "type": "Feature", "properties": { "id": 550945, "name": "102 St/35 Av", "direction": "S", "lat": 40.7544, "lon": -73.86612, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86612, 40.7544 ] } }, -{ "type": "Feature", "properties": { "id": 550946, "name": "102 St/37 Av", "direction": "SE", "lat": 40.75312, "lon": -73.8656, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8656, 40.75312 ] } }, -{ "type": "Feature", "properties": { "id": 550947, "name": "37 Av/104 St", "direction": "E", "lat": 40.753384, "lon": -73.86368, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86368, 40.753384 ] } }, -{ "type": "Feature", "properties": { "id": 550950, "name": "108 St/Corona Av", "direction": "SE", "lat": 40.743523, "lon": -73.85514, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85514, 40.743523 ] } }, -{ "type": "Feature", "properties": { "id": 550952, "name": "108 St/63 Rd", "direction": "SE", "lat": 40.734177, "lon": -73.85038, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85038, 40.734177 ] } }, -{ "type": "Feature", "properties": { "id": 550953, "name": "108 St/66 Rd", "direction": "SE", "lat": 40.72949, "lon": -73.84797, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84797, 40.72949 ] } }, -{ "type": "Feature", "properties": { "id": 550954, "name": "108 St/67 Rd", "direction": "SE", "lat": 40.728184, "lon": -73.8473, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8473, 40.728184 ] } }, -{ "type": "Feature", "properties": { "id": 550955, "name": "108 St/68 Rd", "direction": "SE", "lat": 40.72619, "lon": -73.846245, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.846245, 40.72619 ] } }, -{ "type": "Feature", "properties": { "id": 550956, "name": "108 St/69 Rd", "direction": "SE", "lat": 40.724438, "lon": -73.84537, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84537, 40.724438 ] } }, -{ "type": "Feature", "properties": { "id": 550957, "name": "108 St/69 Rd", "direction": "SE", "lat": 40.72416, "lon": -73.845184, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.845184, 40.72416 ] } }, -{ "type": "Feature", "properties": { "id": 550959, "name": "Austin St/70 Rd", "direction": "W", "lat": 40.720695, "lon": -73.845985, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.845985, 40.720695 ] } }, -{ "type": "Feature", "properties": { "id": 550960, "name": "Yellowstone Blvd/Austin St", "direction": "W", "lat": 40.722664, "lon": -73.85182, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85182, 40.722664 ] } }, -{ "type": "Feature", "properties": { "id": 550961, "name": "Burns St/68 Av", "direction": "E", "lat": 40.72135, "lon": -73.851814, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.851814, 40.72135 ] } }, -{ "type": "Feature", "properties": { "id": 550962, "name": "69 Av/Clyde St", "direction": "S", "lat": 40.720043, "lon": -73.85052, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85052, 40.720043 ] } }, -{ "type": "Feature", "properties": { "id": 550963, "name": "69 Av/Exeter St", "direction": "SW", "lat": 40.718697, "lon": -73.85116, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85116, 40.718697 ] } }, -{ "type": "Feature", "properties": { "id": 550964, "name": "69 Av/Loubet St", "direction": "SW", "lat": 40.714417, "lon": -73.85392, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85392, 40.714417 ] } }, -{ "type": "Feature", "properties": { "id": 550965, "name": "Loubet St/70 Av", "direction": "E", "lat": 40.713352, "lon": -73.85157, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85157, 40.713352 ] } }, -{ "type": "Feature", "properties": { "id": 550972, "name": "Parsons Blvd/89 Av", "direction": "NW", "lat": 40.705746, "lon": -73.801506, "routes": "Q25, Q34, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.801506, 40.705746 ] } }, -{ "type": "Feature", "properties": { "id": 550973, "name": "Parsons Blvd/89 Av", "direction": "SE", "lat": 40.70558, "lon": -73.80166, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.80166, 40.70558 ] } }, -{ "type": "Feature", "properties": { "id": 550978, "name": "Parsons Blvd/Hillside Av", "direction": "SE", "lat": 40.707863, "lon": -73.80294, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80294, 40.707863 ] } }, -{ "type": "Feature", "properties": { "id": 550980, "name": "Parsons Blvd/87 Av", "direction": "NW", "lat": 40.709007, "lon": -73.803955, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.803955, 40.709007 ] } }, -{ "type": "Feature", "properties": { "id": 550981, "name": "Parsons Blvd/159 St", "direction": "NW", "lat": 40.710205, "lon": -73.80541, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.80541, 40.710205 ] } }, -{ "type": "Feature", "properties": { "id": 550982, "name": "Parsons Blvd/85 Av", "direction": "N", "lat": 40.71225, "lon": -73.80639, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.80639, 40.71225 ] } }, -{ "type": "Feature", "properties": { "id": 550983, "name": "Parsons Blvd/84 Rd", "direction": "NW", "lat": 40.71383, "lon": -73.80692, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80692, 40.71383 ] } }, -{ "type": "Feature", "properties": { "id": 550984, "name": "Parsons Blvd/Grand Central Pkwy", "direction": "N", "lat": 40.715664, "lon": -73.80767, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.80767, 40.715664 ] } }, -{ "type": "Feature", "properties": { "id": 550985, "name": "Parsons Blvd/Grand Central Pkwy", "direction": "S", "lat": 40.716114, "lon": -73.80798, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.80798, 40.716114 ] } }, -{ "type": "Feature", "properties": { "id": 550986, "name": "Parsons Blvd/82 Dr", "direction": "N", "lat": 40.716995, "lon": -73.80804, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80804, 40.716995 ] } }, -{ "type": "Feature", "properties": { "id": 550987, "name": "Parsons Blvd/Goethals Av", "direction": "N", "lat": 40.718655, "lon": -73.80856, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.80856, 40.718655 ] } }, -{ "type": "Feature", "properties": { "id": 550988, "name": "Parsons Blvd/Union Tpke", "direction": "N", "lat": 40.720207, "lon": -73.80902, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80902, 40.720207 ] } }, -{ "type": "Feature", "properties": { "id": 550989, "name": "Parsons Blvd/Union Tpke", "direction": "S", "lat": 40.719666, "lon": -73.80908, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80908, 40.719666 ] } }, -{ "type": "Feature", "properties": { "id": 550991, "name": "Parsons Blvd/78 Av", "direction": "N", "lat": 40.722538, "lon": -73.809814, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.809814, 40.722538 ] } }, -{ "type": "Feature", "properties": { "id": 550992, "name": "Parsons Blvd/77 Av", "direction": "N", "lat": 40.723927, "lon": -73.810356, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.810356, 40.723927 ] } }, -{ "type": "Feature", "properties": { "id": 550993, "name": "Parsons Blvd/76 Av", "direction": "N", "lat": 40.725323, "lon": -73.81058, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81058, 40.725323 ] } }, -{ "type": "Feature", "properties": { "id": 550994, "name": "Kissena Blvd/75 Av", "direction": "NW", "lat": 40.726665, "lon": -73.811264, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.811264, 40.726665 ] } }, -{ "type": "Feature", "properties": { "id": 550996, "name": "Kissena Blvd/73 Av", "direction": "SE", "lat": 40.726997, "lon": -73.812325, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.812325, 40.726997 ] } }, -{ "type": "Feature", "properties": { "id": 550997, "name": "Kissena Blvd/Aguilar Av", "direction": "NW", "lat": 40.728, "lon": -73.81401, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81401, 40.728 ] } }, -{ "type": "Feature", "properties": { "id": 550998, "name": "Kissena Blvd/71 Av", "direction": "N", "lat": 40.730583, "lon": -73.81486, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81486, 40.730583 ] } }, -{ "type": "Feature", "properties": { "id": 550999, "name": "Kissena Blvd/Jewel Av", "direction": "N", "lat": 40.73245, "lon": -73.814766, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.814766, 40.73245 ] } }, -{ "type": "Feature", "properties": { "id": 551000, "name": "Kissena Blvd/Jewel Av", "direction": "S", "lat": 40.73171, "lon": -73.81506, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81506, 40.73171 ] } }, -{ "type": "Feature", "properties": { "id": 551001, "name": "Kissena Blvd/Melbourne Av", "direction": "N", "lat": 40.733955, "lon": -73.81461, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81461, 40.733955 ] } }, -{ "type": "Feature", "properties": { "id": 551002, "name": "Kissena Blvd/Melbourne Av", "direction": "S", "lat": 40.733593, "lon": -73.81498, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81498, 40.733593 ] } }, -{ "type": "Feature", "properties": { "id": 551003, "name": "Kissena Blvd/Queens College", "direction": "N", "lat": 40.736374, "lon": -73.81451, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81451, 40.736374 ] } }, -{ "type": "Feature", "properties": { "id": 551005, "name": "Kissena Blvd/64 Av", "direction": "N", "lat": 40.73811, "lon": -73.8147, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.8147, 40.73811 ] } }, -{ "type": "Feature", "properties": { "id": 551008, "name": "Ulmer St/26 Av", "direction": "SE", "lat": 40.774673, "lon": -73.83823, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83823, 40.774673 ] } }, -{ "type": "Feature", "properties": { "id": 551012, "name": "Linden Pl/32 Av", "direction": "NW", "lat": 40.767975, "lon": -73.83187, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83187, 40.767975 ] } }, -{ "type": "Feature", "properties": { "id": 551013, "name": "Linden Pl/32 Av", "direction": "S", "lat": 40.767593, "lon": -73.83194, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83194, 40.767593 ] } }, -{ "type": "Feature", "properties": { "id": 551014, "name": "Linden Pl/31 Rd", "direction": "NW", "lat": 40.76956, "lon": -73.83255, "routes": "Q25, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.83255, 40.76956 ] } }, -{ "type": "Feature", "properties": { "id": 551015, "name": "Linden Pl/31 Rd", "direction": "SE", "lat": 40.769184, "lon": -73.83262, "routes": "Q25, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.83262, 40.769184 ] } }, -{ "type": "Feature", "properties": { "id": 551018, "name": "Ulmer St/25 Av", "direction": "N", "lat": 40.77644, "lon": -73.83885, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83885, 40.77644 ] } }, -{ "type": "Feature", "properties": { "id": 551019, "name": "Ulmer St/25 Av", "direction": "S", "lat": 40.77641, "lon": -73.839134, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.839134, 40.77641 ] } }, -{ "type": "Feature", "properties": { "id": 551020, "name": "23 Av/129 St", "direction": "W", "lat": 40.778713, "lon": -73.84, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84, 40.778713 ] } }, -{ "type": "Feature", "properties": { "id": 551021, "name": "23 Av/129 St", "direction": "E", "lat": 40.778576, "lon": -73.839554, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.839554, 40.778576 ] } }, -{ "type": "Feature", "properties": { "id": 551022, "name": "127 St/23 Av", "direction": "N", "lat": 40.778816, "lon": -73.84148, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84148, 40.778816 ] } }, -{ "type": "Feature", "properties": { "id": 551023, "name": "127 St/22 Av", "direction": "N", "lat": 40.780357, "lon": -73.8414, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.8414, 40.780357 ] } }, -{ "type": "Feature", "properties": { "id": 551024, "name": "127 St/22 Av", "direction": "S", "lat": 40.780003, "lon": -73.84161, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84161, 40.780003 ] } }, -{ "type": "Feature", "properties": { "id": 551025, "name": "127 St/20 Av", "direction": "N", "lat": 40.781635, "lon": -73.841324, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.841324, 40.781635 ] } }, -{ "type": "Feature", "properties": { "id": 551026, "name": "127 St/20 Av", "direction": "S", "lat": 40.781548, "lon": -73.84152, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84152, 40.781548 ] } }, -{ "type": "Feature", "properties": { "id": 551029, "name": "127 St/14 Av", "direction": "N", "lat": 40.785465, "lon": -73.84105, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84105, 40.785465 ] } }, -{ "type": "Feature", "properties": { "id": 551030, "name": "127 St/11 Av", "direction": "N", "lat": 40.78809, "lon": -73.84092, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84092, 40.78809 ] } }, -{ "type": "Feature", "properties": { "id": 551031, "name": "127 St/11 Av", "direction": "S", "lat": 40.78775, "lon": -73.841125, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.841125, 40.78775 ] } }, -{ "type": "Feature", "properties": { "id": 551032, "name": "127 St/9 Av", "direction": "N", "lat": 40.789486, "lon": -73.84084, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84084, 40.789486 ] } }, -{ "type": "Feature", "properties": { "id": 551033, "name": "127 St/9 Av", "direction": "S", "lat": 40.789143, "lon": -73.841034, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.841034, 40.789143 ] } }, -{ "type": "Feature", "properties": { "id": 551034, "name": "7 Av/127 St", "direction": "W", "lat": 40.7908, "lon": -73.84107, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84107, 40.7908 ] } }, -{ "type": "Feature", "properties": { "id": 551035, "name": "7 Av/125 St", "direction": "W", "lat": 40.79084, "lon": -73.84261, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84261, 40.79084 ] } }, -{ "type": "Feature", "properties": { "id": 551036, "name": "7 Av/125 St", "direction": "E", "lat": 40.7907, "lon": -73.84247, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84247, 40.7907 ] } }, -{ "type": "Feature", "properties": { "id": 551037, "name": "College Point Blvd/7 Av", "direction": "N", "lat": 40.791, "lon": -73.84539, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84539, 40.791 ] } }, -{ "type": "Feature", "properties": { "id": 551038, "name": "College Point Blvd/Lax Av", "direction": "N", "lat": 40.792545, "lon": -73.8453, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.8453, 40.792545 ] } }, -{ "type": "Feature", "properties": { "id": 551042, "name": "119 St/9 Av", "direction": "SE", "lat": 40.789467, "lon": -73.849045, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.849045, 40.789467 ] } }, -{ "type": "Feature", "properties": { "id": 551043, "name": "9 Av/College Pl", "direction": "E", "lat": 40.789417, "lon": -73.84686, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84686, 40.789417 ] } }, -{ "type": "Feature", "properties": { "id": 551044, "name": "College Point Blvd/9 Av", "direction": "N", "lat": 40.789616, "lon": -73.84547, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84547, 40.789616 ] } }, -{ "type": "Feature", "properties": { "id": 551045, "name": "7 Av/College Point Blvd", "direction": "E", "lat": 40.790783, "lon": -73.84529, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84529, 40.790783 ] } }, -{ "type": "Feature", "properties": { "id": 551046, "name": "127 St/7 Av", "direction": "S", "lat": 40.79056, "lon": -73.840965, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.840965, 40.79056 ] } }, -{ "type": "Feature", "properties": { "id": 551047, "name": "127 St/15 Av", "direction": "S", "lat": 40.784943, "lon": -73.84132, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84132, 40.784943 ] } }, -{ "type": "Feature", "properties": { "id": 551048, "name": "23 Av/127 St", "direction": "E", "lat": 40.778572, "lon": -73.84133, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.84133, 40.778572 ] } }, -{ "type": "Feature", "properties": { "id": 551050, "name": "Main St/40 Rd", "direction": "SE", "lat": 40.759003, "lon": -73.83002, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.83002, 40.759003 ] } }, -{ "type": "Feature", "properties": { "id": 551051, "name": "Main St/Roosevelt Av", "direction": "NW", "lat": 40.759377, "lon": -73.829895, "routes": "Q34, Q25, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.829895, 40.759377 ] } }, -{ "type": "Feature", "properties": { "id": 551053, "name": "Kissena Blvd/70 Rd", "direction": "S", "lat": 40.730267, "lon": -73.81517, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81517, 40.730267 ] } }, -{ "type": "Feature", "properties": { "id": 551054, "name": "Kissena Blvd/72 Rd", "direction": "SE", "lat": 40.72795, "lon": -73.81431, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81431, 40.72795 ] } }, -{ "type": "Feature", "properties": { "id": 551055, "name": "Parsons Blvd/75 Rd", "direction": "S", "lat": 40.72561, "lon": -73.8108, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.8108, 40.72561 ] } }, -{ "type": "Feature", "properties": { "id": 551056, "name": "Parsons Blvd/76 Rd", "direction": "S", "lat": 40.72427, "lon": -73.81068, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.81068, 40.72427 ] } }, -{ "type": "Feature", "properties": { "id": 551057, "name": "Parsons Blvd/77 Rd", "direction": "S", "lat": 40.72287, "lon": -73.81016, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.81016, 40.72287 ] } }, -{ "type": "Feature", "properties": { "id": 551058, "name": "Parsons Blvd/78 Rd", "direction": "S", "lat": 40.72149, "lon": -73.80963, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80963, 40.72149 ] } }, -{ "type": "Feature", "properties": { "id": 551059, "name": "Parsons Blvd/Hoover Av", "direction": "SE", "lat": 40.714397, "lon": -73.80756, "routes": "Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.80756, 40.714397 ] } }, -{ "type": "Feature", "properties": { "id": 551060, "name": "Parsons Blvd/84 Dr", "direction": "S", "lat": 40.712753, "lon": -73.80672, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80672, 40.712753 ] } }, -{ "type": "Feature", "properties": { "id": 551061, "name": "Parsons Blvd/85 Dr", "direction": "SE", "lat": 40.709923, "lon": -73.80547, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80547, 40.709923 ] } }, -{ "type": "Feature", "properties": { "id": 551063, "name": "81 St/Myrtle Av", "direction": "N", "lat": 40.703407, "lon": -73.86726, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.86726, 40.703407 ] } }, -{ "type": "Feature", "properties": { "id": 551064, "name": "78 Av/81 St", "direction": "W", "lat": 40.705574, "lon": -73.868, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.868, 40.705574 ] } }, -{ "type": "Feature", "properties": { "id": 551065, "name": "80 St/Cooper Av", "direction": "N", "lat": 40.70983, "lon": -73.87022, "routes": "Q29, Q47, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.87022, 40.70983 ] } }, -{ "type": "Feature", "properties": { "id": 551066, "name": "80 St/Cooper Av", "direction": "S", "lat": 40.709373, "lon": -73.87033, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87033, 40.709373 ] } }, -{ "type": "Feature", "properties": { "id": 551067, "name": "80 St/68 Av", "direction": "NW", "lat": 40.711205, "lon": -73.87083, "routes": "Q54, Q29, Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.87083, 40.711205 ] } }, -{ "type": "Feature", "properties": { "id": 551069, "name": "80 St/Metropolitan Av", "direction": "N", "lat": 40.71354, "lon": -73.87145, "routes": "Q47, Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87145, 40.71354 ] } }, -{ "type": "Feature", "properties": { "id": 551070, "name": "80 St/Metropolitan Av", "direction": "S", "lat": 40.71318, "lon": -73.87164, "routes": "Q54, Q47, Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87164, 40.71318 ] } }, -{ "type": "Feature", "properties": { "id": 551071, "name": "80 St/Juniper Valley Rd", "direction": "N", "lat": 40.71585, "lon": -73.87183, "routes": "Q47, Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87183, 40.71585 ] } }, -{ "type": "Feature", "properties": { "id": 551072, "name": "80 St/Juniper Valley Rd", "direction": "S", "lat": 40.716167, "lon": -73.872246, "routes": "Q29, Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.872246, 40.716167 ] } }, -{ "type": "Feature", "properties": { "id": 551073, "name": "Dry Harbor Rd/64 Rd", "direction": "NW", "lat": 40.718586, "lon": -73.87248, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87248, 40.718586 ] } }, -{ "type": "Feature", "properties": { "id": 551074, "name": "Dry Harbor Rd/Penelope Av", "direction": "NW", "lat": 40.720284, "lon": -73.87334, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87334, 40.720284 ] } }, -{ "type": "Feature", "properties": { "id": 551075, "name": "Dry Harbor Rd/Penelope Av", "direction": "SE", "lat": 40.71991, "lon": -73.87339, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87339, 40.71991 ] } }, -{ "type": "Feature", "properties": { "id": 551076, "name": "Dry Harbor Rd/63 Av", "direction": "N", "lat": 40.722034, "lon": -73.87399, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87399, 40.722034 ] } }, -{ "type": "Feature", "properties": { "id": 551077, "name": "Dry Harbor Rd/83 St", "direction": "NE", "lat": 40.72366, "lon": -73.87381, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87381, 40.72366 ] } }, -{ "type": "Feature", "properties": { "id": 551078, "name": "Dry Harbor Rd/84 St", "direction": "NE", "lat": 40.725163, "lon": -73.87284, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87284, 40.725163 ] } }, -{ "type": "Feature", "properties": { "id": 551079, "name": "Dry Harbor Rd/Woodhaven Blvd", "direction": "NE", "lat": 40.727684, "lon": -73.87118, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87118, 40.727684 ] } }, -{ "type": "Feature", "properties": { "id": 551080, "name": "90 St/55 Av", "direction": "N", "lat": 40.7369, "lon": -73.873, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.873, 40.7369 ] } }, -{ "type": "Feature", "properties": { "id": 551081, "name": "90 St/53 Av", "direction": "NW", "lat": 40.73826, "lon": -73.873535, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.873535, 40.73826 ] } }, -{ "type": "Feature", "properties": { "id": 551082, "name": "90 St/51 Av", "direction": "N", "lat": 40.739674, "lon": -73.8741, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.8741, 40.739674 ] } }, -{ "type": "Feature", "properties": { "id": 551083, "name": "90 St/48 Av", "direction": "N", "lat": 40.741253, "lon": -73.87467, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87467, 40.741253 ] } }, -{ "type": "Feature", "properties": { "id": 551085, "name": "Hampton St/Lamont Av", "direction": "NW", "lat": 40.743557, "lon": -73.87498, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87498, 40.743557 ] } }, -{ "type": "Feature", "properties": { "id": 551086, "name": "Hampton St/Whitney Av", "direction": "NW", "lat": 40.74441, "lon": -73.8769, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.8769, 40.74441 ] } }, -{ "type": "Feature", "properties": { "id": 551087, "name": "Hampton St/Whitney Av", "direction": "SE", "lat": 40.744164, "lon": -73.876724, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.876724, 40.744164 ] } }, -{ "type": "Feature", "properties": { "id": 551088, "name": "Hampton St/Elmhurst Av", "direction": "NW", "lat": 40.745117, "lon": -73.87847, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87847, 40.745117 ] } }, -{ "type": "Feature", "properties": { "id": 551089, "name": "Hampton St/Elmhurst Av", "direction": "SE", "lat": 40.74486, "lon": -73.87822, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87822, 40.74486 ] } }, -{ "type": "Feature", "properties": { "id": 551090, "name": "Hampton St/Britton Av", "direction": "NW", "lat": 40.746002, "lon": -73.88041, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.88041, 40.746002 ] } }, -{ "type": "Feature", "properties": { "id": 551091, "name": "Hampton St/Britton Av", "direction": "SE", "lat": 40.745747, "lon": -73.880165, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.880165, 40.745747 ] } }, -{ "type": "Feature", "properties": { "id": 551092, "name": "83 St/Roosevelt Av", "direction": "N", "lat": 40.747673, "lon": -73.88289, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.88289, 40.747673 ] } }, -{ "type": "Feature", "properties": { "id": 551093, "name": "82 St/Roosevelt Av", "direction": "S", "lat": 40.747395, "lon": -73.884, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.884, 40.747395 ] } }, -{ "type": "Feature", "properties": { "id": 551095, "name": "Hampton St/Baxter Av", "direction": "SE", "lat": 40.74694, "lon": -73.88293, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.88293, 40.74694 ] } }, -{ "type": "Feature", "properties": { "id": 551096, "name": "Hampton St/43 Av", "direction": "SE", "lat": 40.743374, "lon": -73.874886, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.874886, 40.743374 ] } }, -{ "type": "Feature", "properties": { "id": 551097, "name": "92 St/48 Av", "direction": "S", "lat": 40.74181, "lon": -73.87221, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87221, 40.74181 ] } }, -{ "type": "Feature", "properties": { "id": 551098, "name": "92 St/51 Av", "direction": "S", "lat": 40.73999, "lon": -73.87148, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87148, 40.73999 ] } }, -{ "type": "Feature", "properties": { "id": 551099, "name": "92 St/53 Av", "direction": "S", "lat": 40.738625, "lon": -73.870995, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.870995, 40.738625 ] } }, -{ "type": "Feature", "properties": { "id": 551100, "name": "92 St/56 Av", "direction": "S", "lat": 40.736416, "lon": -73.87014, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87014, 40.736416 ] } }, -{ "type": "Feature", "properties": { "id": 551104, "name": "Dry Harbor Rd/85 St", "direction": "SW", "lat": 40.726997, "lon": -73.87182, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87182, 40.726997 ] } }, -{ "type": "Feature", "properties": { "id": 551105, "name": "Dry Harbor Rd/Caldwell Av", "direction": "SW", "lat": 40.725002, "lon": -73.87313, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87313, 40.725002 ] } }, -{ "type": "Feature", "properties": { "id": 551106, "name": "Dry Harbor Rd/63 Av", "direction": "S", "lat": 40.72231, "lon": -73.874306, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.874306, 40.72231 ] } }, -{ "type": "Feature", "properties": { "id": 551107, "name": "Dry Harbor Rd/Juniper Blvd", "direction": "S", "lat": 40.72063, "lon": -73.87374, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.87374, 40.72063 ] } }, -{ "type": "Feature", "properties": { "id": 551108, "name": "Dry Harbor Rd/Furmanville Av", "direction": "S", "lat": 40.718117, "lon": -73.8726, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.8726, 40.718117 ] } }, -{ "type": "Feature", "properties": { "id": 551110, "name": "80 St/68 Rd", "direction": "SE", "lat": 40.710648, "lon": -73.870766, "routes": "Q54, Q47, Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.870766, 40.710648 ] } }, -{ "type": "Feature", "properties": { "id": 551111, "name": "80 St/77 Rd", "direction": "S", "lat": 40.705963, "lon": -73.86888, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.86888, 40.705963 ] } }, -{ "type": "Feature", "properties": { "id": 551112, "name": "80 St/78 Rd", "direction": "S", "lat": 40.704784, "lon": -73.86862, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.86862, 40.704784 ] } }, -{ "type": "Feature", "properties": { "id": 551113, "name": "80 St/Myrtle Av", "direction": "S", "lat": 40.703106, "lon": -73.86835, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.86835, 40.703106 ] } }, -{ "type": "Feature", "properties": { "id": 551114, "name": "74 St - Roosevelt Av Terminal/Q33 Stand", "direction": "SW", "lat": 40.746635, "lon": -73.890854, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.890854, 40.746635 ] } }, -{ "type": "Feature", "properties": { "id": 551115, "name": "Roosevelt Av/82 St", "direction": "E", "lat": 40.7476, "lon": -73.88378, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88378, 40.7476 ] } }, -{ "type": "Feature", "properties": { "id": 551116, "name": "83 St/37 Av", "direction": "N", "lat": 40.750267, "lon": -73.88339, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88339, 40.750267 ] } }, -{ "type": "Feature", "properties": { "id": 551117, "name": "83 St/35 Av", "direction": "N", "lat": 40.752033, "lon": -73.88367, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88367, 40.752033 ] } }, -{ "type": "Feature", "properties": { "id": 551118, "name": "83 St/34 Av", "direction": "N", "lat": 40.754036, "lon": -73.88402, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88402, 40.754036 ] } }, -{ "type": "Feature", "properties": { "id": 551119, "name": "83 St/Northern Blvd", "direction": "N", "lat": 40.75557, "lon": -73.88435, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88435, 40.75557 ] } }, -{ "type": "Feature", "properties": { "id": 551120, "name": "83 St/32 Av", "direction": "N", "lat": 40.757942, "lon": -73.88477, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88477, 40.757942 ] } }, -{ "type": "Feature", "properties": { "id": 551121, "name": "83 St/31 Av", "direction": "N", "lat": 40.759483, "lon": -73.885025, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.885025, 40.759483 ] } }, -{ "type": "Feature", "properties": { "id": 551122, "name": "83 St/30 Av", "direction": "N", "lat": 40.7615, "lon": -73.88543, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88543, 40.7615 ] } }, -{ "type": "Feature", "properties": { "id": 551123, "name": "83 St/25 Av", "direction": "N", "lat": 40.763306, "lon": -73.88573, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88573, 40.763306 ] } }, -{ "type": "Feature", "properties": { "id": 551124, "name": "83 St/Astoria Blvd", "direction": "N", "lat": 40.76464, "lon": -73.88601, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88601, 40.76464 ] } }, -{ "type": "Feature", "properties": { "id": 551125, "name": "85 St/24 Av", "direction": "N", "lat": 40.765087, "lon": -73.884186, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.884186, 40.765087 ] } }, -{ "type": "Feature", "properties": { "id": 551129, "name": "23 Av/92 St", "direction": "W", "lat": 40.768055, "lon": -73.87833, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.87833, 40.768055 ] } }, -{ "type": "Feature", "properties": { "id": 551130, "name": "94 St/23 Av", "direction": "", "lat": 40.768295, "lon": -73.87641, "routes": "Q72, Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.87641, 40.768295 ] } }, -{ "type": "Feature", "properties": { "id": 551131, "name": "94 St/Ditmars Blvd", "direction": "S", "lat": 40.770077, "lon": -73.87611, "routes": "Q33, Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87611, 40.770077 ] } }, -{ "type": "Feature", "properties": { "id": 551132, "name": "23 Av/90 St", "direction": "W", "lat": 40.767857, "lon": -73.88021, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88021, 40.767857 ] } }, -{ "type": "Feature", "properties": { "id": 551133, "name": "82 St/25 Av", "direction": "S", "lat": 40.76296, "lon": -73.88682, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88682, 40.76296 ] } }, -{ "type": "Feature", "properties": { "id": 551134, "name": "82 St/30 Av", "direction": "S", "lat": 40.76112, "lon": -73.88649, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88649, 40.76112 ] } }, -{ "type": "Feature", "properties": { "id": 551135, "name": "82 St/31 Av", "direction": "S", "lat": 40.759388, "lon": -73.886154, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.886154, 40.759388 ] } }, -{ "type": "Feature", "properties": { "id": 551136, "name": "82 St/32 Av", "direction": "S", "lat": 40.75782, "lon": -73.88587, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88587, 40.75782 ] } }, -{ "type": "Feature", "properties": { "id": 551138, "name": "32 Av/Linden Pl", "direction": "E", "lat": 40.767776, "lon": -73.83166, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.83166, 40.767776 ] } }, -{ "type": "Feature", "properties": { "id": 551139, "name": "138 St/32 Av", "direction": "NW", "lat": 40.768475, "lon": -73.829735, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.829735, 40.768475 ] } }, -{ "type": "Feature", "properties": { "id": 551140, "name": "138 St/31 Rd", "direction": "N", "lat": 40.77022, "lon": -73.83044, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.83044, 40.77022 ] } }, -{ "type": "Feature", "properties": { "id": 551142, "name": "28 Rd/139 St", "direction": "E", "lat": 40.77219, "lon": -73.8293, "routes": "Q34, QM20, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.8293, 40.77219 ] } }, -{ "type": "Feature", "properties": { "id": 551143, "name": "28 Av/141 St", "direction": "E", "lat": 40.77302, "lon": -73.82762, "routes": "QM2, QM20, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.82762, 40.77302 ] } }, -{ "type": "Feature", "properties": { "id": 551144, "name": "141 St/28 Av", "direction": "S", "lat": 40.77292, "lon": -73.82797, "routes": "QM2, Q34, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.82797, 40.77292 ] } }, -{ "type": "Feature", "properties": { "id": 551145, "name": "Willets Point Blvd/149 St", "direction": "E", "lat": 40.77646, "lon": -73.81737, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.81737, 40.77646 ] } }, -{ "type": "Feature", "properties": { "id": 551146, "name": "Willets Point Blvd/149 St", "direction": "W", "lat": 40.77652, "lon": -73.81752, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.81752, 40.77652 ] } }, -{ "type": "Feature", "properties": { "id": 551148, "name": "139 St/28 Rd", "direction": "S", "lat": 40.77208, "lon": -73.829666, "routes": "QM2, QM20, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.829666, 40.77208 ] } }, -{ "type": "Feature", "properties": { "id": 551149, "name": "32 Av/138 St", "direction": "W", "lat": 40.7683, "lon": -73.82997, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.82997, 40.7683 ] } }, -{ "type": "Feature", "properties": { "id": 551150, "name": "31 Rd/138 St", "direction": "NE", "lat": 40.770336, "lon": -73.83031, "routes": "QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.83031, 40.770336 ] } }, -{ "type": "Feature", "properties": { "id": 551151, "name": "Marine Pkwy Bridge/Rockaway Point Blvd", "direction": "SE", "lat": 40.56799, "lon": -73.88177, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.88177, 40.56799 ] } }, -{ "type": "Feature", "properties": { "id": 551152, "name": "Jacob Riis Park Rd/Bath House", "direction": "E", "lat": 40.566956, "lon": -73.87017, "routes": "Q22, Q35, Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.87017, 40.566956 ] } }, -{ "type": "Feature", "properties": { "id": 551154, "name": "Beach 147 St/Neponsit Av", "direction": "NW", "lat": 40.57108, "lon": -73.86287, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.86287, 40.57108 ] } }, -{ "type": "Feature", "properties": { "id": 551155, "name": "Beach 147 St/Neponsit Av", "direction": "SE", "lat": 40.571217, "lon": -73.86338, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.86338, 40.571217 ] } }, -{ "type": "Feature", "properties": { "id": 551156, "name": "Newport Av/Beach 145 St", "direction": "E", "lat": 40.573395, "lon": -73.86216, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.86216, 40.573395 ] } }, -{ "type": "Feature", "properties": { "id": 551157, "name": "Newport Av/Beach 143 St", "direction": "E", "lat": 40.573887, "lon": -73.860504, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.860504, 40.573887 ] } }, -{ "type": "Feature", "properties": { "id": 551158, "name": "Newport Av/Beach 140 St", "direction": "E", "lat": 40.574665, "lon": -73.85822, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85822, 40.574665 ] } }, -{ "type": "Feature", "properties": { "id": 551159, "name": "Newport Av/Beach 140 St", "direction": "W", "lat": 40.574806, "lon": -73.85835, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85835, 40.574806 ] } }, -{ "type": "Feature", "properties": { "id": 551160, "name": "Newport Av/Beach 139 St", "direction": "E", "lat": 40.575035, "lon": -73.85709, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85709, 40.575035 ] } }, -{ "type": "Feature", "properties": { "id": 551161, "name": "Newport Av/Beach 137 St", "direction": "E", "lat": 40.57559, "lon": -73.85548, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85548, 40.57559 ] } }, -{ "type": "Feature", "properties": { "id": 551162, "name": "Newport Av/Beach 135 St", "direction": "E", "lat": 40.576134, "lon": -73.85382, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85382, 40.576134 ] } }, -{ "type": "Feature", "properties": { "id": 551163, "name": "Newport Av/Beach 135 St", "direction": "W", "lat": 40.576294, "lon": -73.8539, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.8539, 40.576294 ] } }, -{ "type": "Feature", "properties": { "id": 551164, "name": "Newport Av/Beach 133 St", "direction": "E", "lat": 40.576687, "lon": -73.85219, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85219, 40.576687 ] } }, -{ "type": "Feature", "properties": { "id": 551165, "name": "Newport Av/Beach 132 St", "direction": "E", "lat": 40.577, "lon": -73.85132, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85132, 40.577 ] } }, -{ "type": "Feature", "properties": { "id": 551166, "name": "Newport Av/Beach 129 St", "direction": "E", "lat": 40.5778, "lon": -73.84881, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84881, 40.5778 ] } }, -{ "type": "Feature", "properties": { "id": 551167, "name": "Newport Av/Beach 127 St", "direction": "E", "lat": 40.578423, "lon": -73.84713, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84713, 40.578423 ] } }, -{ "type": "Feature", "properties": { "id": 551168, "name": "Newport Av/Beach 125 St", "direction": "E", "lat": 40.57897, "lon": -73.845436, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.845436, 40.57897 ] } }, -{ "type": "Feature", "properties": { "id": 551169, "name": "Newport Av/Beach 123 St", "direction": "E", "lat": 40.57948, "lon": -73.84383, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84383, 40.57948 ] } }, -{ "type": "Feature", "properties": { "id": 551170, "name": "Newport Av/Beach 121 St", "direction": "E", "lat": 40.580055, "lon": -73.84218, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84218, 40.580055 ] } }, -{ "type": "Feature", "properties": { "id": 551171, "name": "Newport Av/Beach 119 St", "direction": "E", "lat": 40.580612, "lon": -73.84051, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84051, 40.580612 ] } }, -{ "type": "Feature", "properties": { "id": 551172, "name": "Newport Av/Beach 116 St", "direction": "NE", "lat": 40.58134, "lon": -73.8383, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.8383, 40.58134 ] } }, -{ "type": "Feature", "properties": { "id": 551174, "name": "Newport Av/Beach 120 St", "direction": "W", "lat": 40.58038, "lon": -73.84176, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84176, 40.58038 ] } }, -{ "type": "Feature", "properties": { "id": 551175, "name": "Newport Av/Beach 122 St", "direction": "W", "lat": 40.579807, "lon": -73.84335, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84335, 40.579807 ] } }, -{ "type": "Feature", "properties": { "id": 551176, "name": "Newport Av/Beach 124 St", "direction": "W", "lat": 40.579266, "lon": -73.84504, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84504, 40.579266 ] } }, -{ "type": "Feature", "properties": { "id": 551177, "name": "Newport Av/Beach 126 St", "direction": "W", "lat": 40.578724, "lon": -73.8467, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.8467, 40.578724 ] } }, -{ "type": "Feature", "properties": { "id": 551178, "name": "Newport Av/Beach 128 St", "direction": "W", "lat": 40.57815, "lon": -73.84841, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84841, 40.57815 ] } }, -{ "type": "Feature", "properties": { "id": 551179, "name": "Newport Av/Beach 130 St", "direction": "W", "lat": 40.577564, "lon": -73.850105, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.850105, 40.577564 ] } }, -{ "type": "Feature", "properties": { "id": 551180, "name": "Newport Av/Beach 132 St", "direction": "W", "lat": 40.577023, "lon": -73.8518, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.8518, 40.577023 ] } }, -{ "type": "Feature", "properties": { "id": 551181, "name": "Newport Av/Beach 136 St", "direction": "W", "lat": 40.575943, "lon": -73.85508, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85508, 40.575943 ] } }, -{ "type": "Feature", "properties": { "id": 551182, "name": "Newport Av/Beach 138 St", "direction": "W", "lat": 40.57537, "lon": -73.85676, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.85676, 40.57537 ] } }, -{ "type": "Feature", "properties": { "id": 551183, "name": "Newport Av/Beach 142 St", "direction": "W", "lat": 40.574253, "lon": -73.86, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.86, 40.574253 ] } }, -{ "type": "Feature", "properties": { "id": 551184, "name": "Newport Av/Beach 144 St", "direction": "W", "lat": 40.573734, "lon": -73.86163, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.86163, 40.573734 ] } }, -{ "type": "Feature", "properties": { "id": 551185, "name": "Newport Av/Beach 146 St", "direction": "W", "lat": 40.573105, "lon": -73.86345, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.86345, 40.573105 ] } }, -{ "type": "Feature", "properties": { "id": 551186, "name": "Beach 147 St/Rockaway Beach Blvd", "direction": "SE", "lat": 40.570187, "lon": -73.862785, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.862785, 40.570187 ] } }, -{ "type": "Feature", "properties": { "id": 551187, "name": "135 Av/129 St", "direction": "W", "lat": 40.668854, "lon": -73.811, "routes": "Q37, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.811, 40.668854 ] } }, -{ "type": "Feature", "properties": { "id": 551188, "name": "135 Av/127 St", "direction": "W", "lat": 40.669178, "lon": -73.81283, "routes": "Q37, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.81283, 40.669178 ] } }, -{ "type": "Feature", "properties": { "id": 551189, "name": "135 Av/125 St", "direction": "W", "lat": 40.66951, "lon": -73.81466, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.81466, 40.66951 ] } }, -{ "type": "Feature", "properties": { "id": 551190, "name": "135 Av/123 St", "direction": "W", "lat": 40.669846, "lon": -73.816475, "routes": "QM18, Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.816475, 40.669846 ] } }, -{ "type": "Feature", "properties": { "id": 551191, "name": "135 Av/122 St", "direction": "W", "lat": 40.670166, "lon": -73.818306, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.818306, 40.670166 ] } }, -{ "type": "Feature", "properties": { "id": 551196, "name": "133 Av/116 St", "direction": "W", "lat": 40.67299, "lon": -73.82327, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82327, 40.67299 ] } }, -{ "type": "Feature", "properties": { "id": 551198, "name": "114 St/Sutter Av", "direction": "N", "lat": 40.675114, "lon": -73.8252, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.8252, 40.675114 ] } }, -{ "type": "Feature", "properties": { "id": 551199, "name": "114 St/Sutter Av", "direction": "S", "lat": 40.67529, "lon": -73.82533, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82533, 40.67529 ] } }, -{ "type": "Feature", "properties": { "id": 551200, "name": "114 St/Rockaway Blvd", "direction": "N", "lat": 40.676903, "lon": -73.82464, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82464, 40.676903 ] } }, -{ "type": "Feature", "properties": { "id": 551203, "name": "111 St/109 Av", "direction": "NW", "lat": 40.68021, "lon": -73.82884, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82884, 40.68021 ] } }, -{ "type": "Feature", "properties": { "id": 551204, "name": "111 St/109 Av", "direction": "SE", "lat": 40.68017, "lon": -73.82899, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82899, 40.68017 ] } }, -{ "type": "Feature", "properties": { "id": 551205, "name": "111 St/107 Av", "direction": "NW", "lat": 40.68269, "lon": -73.83002, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83002, 40.68269 ] } }, -{ "type": "Feature", "properties": { "id": 551206, "name": "111 St/107 Av", "direction": "SE", "lat": 40.682316, "lon": -73.83003, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83003, 40.682316 ] } }, -{ "type": "Feature", "properties": { "id": 551207, "name": "111 St/Liberty Av", "direction": "NW", "lat": 40.684734, "lon": -73.831, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.831, 40.684734 ] } }, -{ "type": "Feature", "properties": { "id": 551208, "name": "111 St/Liberty Av", "direction": "SE", "lat": 40.68459, "lon": -73.83112, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83112, 40.68459 ] } }, -{ "type": "Feature", "properties": { "id": 551211, "name": "111 St/101 Av", "direction": "NW", "lat": 40.68823, "lon": -73.83273, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83273, 40.68823 ] } }, -{ "type": "Feature", "properties": { "id": 551212, "name": "111 St/101 Av", "direction": "SE", "lat": 40.688114, "lon": -73.83287, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83287, 40.688114 ] } }, -{ "type": "Feature", "properties": { "id": 551213, "name": "111 St/95 Av", "direction": "NW", "lat": 40.690765, "lon": -73.83404, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83404, 40.690765 ] } }, -{ "type": "Feature", "properties": { "id": 551214, "name": "111 St/95 Av", "direction": "SE", "lat": 40.69041, "lon": -73.83406, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83406, 40.69041 ] } }, -{ "type": "Feature", "properties": { "id": 551215, "name": "111 St/Atlantic Av", "direction": "NW", "lat": 40.692024, "lon": -73.83466, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83466, 40.692024 ] } }, -{ "type": "Feature", "properties": { "id": 551216, "name": "111 St/Atlantic Av", "direction": "SE", "lat": 40.692276, "lon": -73.83499, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83499, 40.692276 ] } }, -{ "type": "Feature", "properties": { "id": 551217, "name": "111 St/91 Av", "direction": "NW", "lat": 40.69463, "lon": -73.836, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.836, 40.69463 ] } }, -{ "type": "Feature", "properties": { "id": 551218, "name": "111 St/91 Av", "direction": "SE", "lat": 40.694286, "lon": -73.83602, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83602, 40.694286 ] } }, -{ "type": "Feature", "properties": { "id": 551219, "name": "111 St/Jamaica Av", "direction": "N", "lat": 40.696842, "lon": -73.83706, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83706, 40.696842 ] } }, -{ "type": "Feature", "properties": { "id": 551220, "name": "111 St/Jamaica Av", "direction": "SE", "lat": 40.696705, "lon": -73.8372, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.8372, 40.696705 ] } }, -{ "type": "Feature", "properties": { "id": 551221, "name": "111 St/86 Av", "direction": "NW", "lat": 40.698666, "lon": -73.837944, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.837944, 40.698666 ] } }, -{ "type": "Feature", "properties": { "id": 551222, "name": "111 St/86 Av", "direction": "SE", "lat": 40.698765, "lon": -73.83819, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83819, 40.698765 ] } }, -{ "type": "Feature", "properties": { "id": 551223, "name": "111 St/Myrtle Av", "direction": "NW", "lat": 40.70074, "lon": -73.83899, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83899, 40.70074 ] } }, -{ "type": "Feature", "properties": { "id": 551226, "name": "Park Ln South/115 St", "direction": "NE", "lat": 40.70402, "lon": -73.837036, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.837036, 40.70402 ] } }, -{ "type": "Feature", "properties": { "id": 551227, "name": "Park Ln South/115 St", "direction": "SW", "lat": 40.70393, "lon": -73.837524, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.837524, 40.70393 ] } }, -{ "type": "Feature", "properties": { "id": 551229, "name": "Park Ln South/Metropolitan Av", "direction": "SW", "lat": 40.70807, "lon": -73.83719, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83719, 40.70807 ] } }, -{ "type": "Feature", "properties": { "id": 551230, "name": "Park Ln South/Abingdon Rd", "direction": "NE", "lat": 40.709553, "lon": -73.83486, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83486, 40.709553 ] } }, -{ "type": "Feature", "properties": { "id": 551231, "name": "Union Tpke/Kew Gardens Rd", "direction": "E", "lat": 40.714035, "lon": -73.831215, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.831215, 40.714035 ] } }, -{ "type": "Feature", "properties": { "id": 551232, "name": "80 Rd/Park Ln South", "direction": "SW", "lat": 40.710846, "lon": -73.83485, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83485, 40.710846 ] } }, -{ "type": "Feature", "properties": { "id": 551233, "name": "Park Ln South/Abingdon Rd", "direction": "SW", "lat": 40.709724, "lon": -73.834854, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.834854, 40.709724 ] } }, -{ "type": "Feature", "properties": { "id": 551235, "name": "Park Ln South/Myrtle Av", "direction": "SW", "lat": 40.701202, "lon": -73.84156, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.84156, 40.701202 ] } }, -{ "type": "Feature", "properties": { "id": 551236, "name": "111 St/Rockaway Blvd", "direction": "SE", "lat": 40.677692, "lon": -73.82777, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82777, 40.677692 ] } }, -{ "type": "Feature", "properties": { "id": 551238, "name": "133 Av/115 St", "direction": "E", "lat": 40.672947, "lon": -73.82382, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82382, 40.672947 ] } }, -{ "type": "Feature", "properties": { "id": 551239, "name": "135 Av/121 St", "direction": "E", "lat": 40.67012, "lon": -73.81878, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.81878, 40.67012 ] } }, -{ "type": "Feature", "properties": { "id": 551240, "name": "135 Av/122 Pl", "direction": "E", "lat": 40.669792, "lon": -73.81696, "routes": "QM18, Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.81696, 40.669792 ] } }, -{ "type": "Feature", "properties": { "id": 551241, "name": "135 Av/124 St", "direction": "E", "lat": 40.669464, "lon": -73.81515, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.81515, 40.669464 ] } }, -{ "type": "Feature", "properties": { "id": 551242, "name": "135 Av/126 St", "direction": "E", "lat": 40.66914, "lon": -73.81334, "routes": "Q37, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.81334, 40.66914 ] } }, -{ "type": "Feature", "properties": { "id": 551243, "name": "135 Av/128 St", "direction": "E", "lat": 40.668808, "lon": -73.8115, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.8115, 40.668808 ] } }, -{ "type": "Feature", "properties": { "id": 551247, "name": "62 Dr/108 St", "direction": "W", "lat": 40.735798, "lon": -73.85088, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.85088, 40.735798 ] } }, -{ "type": "Feature", "properties": { "id": 551248, "name": "62 Dr/Yellowstone Blvd", "direction": "W", "lat": 40.73501, "lon": -73.85348, "routes": "QM42, QM12, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.85348, 40.73501 ] } }, -{ "type": "Feature", "properties": { "id": 551249, "name": "62 Dr/102 St", "direction": "W", "lat": 40.73434, "lon": -73.8557, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.8557, 40.73434 ] } }, -{ "type": "Feature", "properties": { "id": 551250, "name": "62 Dr/99 St", "direction": "W", "lat": 40.733696, "lon": -73.857895, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.857895, 40.733696 ] } }, -{ "type": "Feature", "properties": { "id": 551251, "name": "62 Dr/98 St", "direction": "W", "lat": 40.733154, "lon": -73.85973, "routes": "Q38, QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85973, 40.733154 ] } }, -{ "type": "Feature", "properties": { "id": 551252, "name": "62 Dr/97 St", "direction": "W", "lat": 40.732506, "lon": -73.86189, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86189, 40.732506 ] } }, -{ "type": "Feature", "properties": { "id": 551253, "name": "63 Dr/Queens Blvd", "direction": "SW", "lat": 40.72949, "lon": -73.86286, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86286, 40.72949 ] } }, -{ "type": "Feature", "properties": { "id": 551255, "name": "63 Dr/Queens Blvd", "direction": "NE", "lat": 40.72983, "lon": -73.86243, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86243, 40.72983 ] } }, -{ "type": "Feature", "properties": { "id": 551257, "name": "63 Dr/Booth St", "direction": "SW", "lat": 40.728615, "lon": -73.86339, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86339, 40.728615 ] } }, -{ "type": "Feature", "properties": { "id": 551258, "name": "63 Dr/Austin St", "direction": "SW", "lat": 40.727222, "lon": -73.86433, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86433, 40.727222 ] } }, -{ "type": "Feature", "properties": { "id": 551259, "name": "63 Dr/Austin St", "direction": "NE", "lat": 40.727314, "lon": -73.86407, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86407, 40.727314 ] } }, -{ "type": "Feature", "properties": { "id": 551260, "name": "63 Dr/Haring St", "direction": "SW", "lat": 40.72549, "lon": -73.865425, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.865425, 40.72549 ] } }, -{ "type": "Feature", "properties": { "id": 551261, "name": "63 Dr/Carlton St", "direction": "SW", "lat": 40.724197, "lon": -73.86625, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86625, 40.724197 ] } }, -{ "type": "Feature", "properties": { "id": 551262, "name": "63 Dr/Haring St", "direction": "NE", "lat": 40.72543, "lon": -73.86528, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86528, 40.72543 ] } }, -{ "type": "Feature", "properties": { "id": 551263, "name": "63 Dr/Woodhaven Blvd", "direction": "SW", "lat": 40.72283, "lon": -73.86748, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86748, 40.72283 ] } }, -{ "type": "Feature", "properties": { "id": 551264, "name": "Penelope Av/84 Pl", "direction": "SW", "lat": 40.722015, "lon": -73.86924, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86924, 40.722015 ] } }, -{ "type": "Feature", "properties": { "id": 551265, "name": "Penelope Av/83 Pl", "direction": "SW", "lat": 40.72127, "lon": -73.87085, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87085, 40.72127 ] } }, -{ "type": "Feature", "properties": { "id": 551266, "name": "Penelope Av/82 Pl", "direction": "SW", "lat": 40.720657, "lon": -73.87219, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87219, 40.720657 ] } }, -{ "type": "Feature", "properties": { "id": 551267, "name": "Penelope Av/Dry Harbor Rd", "direction": "SW", "lat": 40.72012, "lon": -73.87331, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87331, 40.72012 ] } }, -{ "type": "Feature", "properties": { "id": 551268, "name": "Penelope Av/Dry Harbor Rd", "direction": "NE", "lat": 40.720108, "lon": -73.873116, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.873116, 40.720108 ] } }, -{ "type": "Feature", "properties": { "id": 551269, "name": "Penelope Av/80 St", "direction": "SW", "lat": 40.719543, "lon": -73.87458, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87458, 40.719543 ] } }, -{ "type": "Feature", "properties": { "id": 551270, "name": "Penelope Av/78 St", "direction": "SW", "lat": 40.718765, "lon": -73.87625, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87625, 40.718765 ] } }, -{ "type": "Feature", "properties": { "id": 551271, "name": "Furmanville Av/77 Pl", "direction": "W", "lat": 40.717377, "lon": -73.876625, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.876625, 40.717377 ] } }, -{ "type": "Feature", "properties": { "id": 551272, "name": "Furmanville Av/75 Pl", "direction": "W", "lat": 40.717075, "lon": -73.87901, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87901, 40.717075 ] } }, -{ "type": "Feature", "properties": { "id": 551273, "name": "Juniper Valley Rd/74 St", "direction": "W", "lat": 40.715355, "lon": -73.88007, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88007, 40.715355 ] } }, -{ "type": "Feature", "properties": { "id": 551274, "name": "Juniper Valley Rd/Pleasantview St", "direction": "W", "lat": 40.71492, "lon": -73.88224, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88224, 40.71492 ] } }, -{ "type": "Feature", "properties": { "id": 551275, "name": "Juniper Valley Rd/71 St", "direction": "W", "lat": 40.714806, "lon": -73.88399, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88399, 40.714806 ] } }, -{ "type": "Feature", "properties": { "id": 551277, "name": "69 St/Metropolitan Av", "direction": "S", "lat": 40.71237, "lon": -73.88654, "routes": "Q67, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88654, 40.71237 ] } }, -{ "type": "Feature", "properties": { "id": 551278, "name": "69 St/Metropolitan Av", "direction": "N", "lat": 40.71239, "lon": -73.886314, "routes": "Q67, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.886314, 40.71239 ] } }, -{ "type": "Feature", "properties": { "id": 551282, "name": "Eliot Av/Fresh Pond Rd", "direction": "NE", "lat": 40.7146, "lon": -73.90095, "routes": "QM24, QM34, Q38, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.90095, 40.7146 ] } }, -{ "type": "Feature", "properties": { "id": 551283, "name": "Eliot Av/64 St", "direction": "NE", "lat": 40.715893, "lon": -73.898415, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.898415, 40.715893 ] } }, -{ "type": "Feature", "properties": { "id": 551284, "name": "Eliot Av/67 St", "direction": "NE", "lat": 40.718266, "lon": -73.89352, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.89352, 40.718266 ] } }, -{ "type": "Feature", "properties": { "id": 551285, "name": "Eliot Av/67 St", "direction": "SW", "lat": 40.718372, "lon": -73.89365, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.89365, 40.718372 ] } }, -{ "type": "Feature", "properties": { "id": 551286, "name": "Eliot Av/69 St", "direction": "NE", "lat": 40.719543, "lon": -73.89078, "routes": "QM34, QM25, QM24, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.89078, 40.719543 ] } }, -{ "type": "Feature", "properties": { "id": 551287, "name": "Eliot Av/69 St", "direction": "SW", "lat": 40.719383, "lon": -73.8915, "routes": "QM24, Q38, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.8915, 40.719383 ] } }, -{ "type": "Feature", "properties": { "id": 551288, "name": "Eliot Av/69 Ln", "direction": "NE", "lat": 40.72045, "lon": -73.88892, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88892, 40.72045 ] } }, -{ "type": "Feature", "properties": { "id": 551289, "name": "Eliot Av/69 Ln", "direction": "SW", "lat": 40.720673, "lon": -73.88878, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88878, 40.720673 ] } }, -{ "type": "Feature", "properties": { "id": 551290, "name": "Eliot Av/71 St", "direction": "NE", "lat": 40.72119, "lon": -73.88733, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88733, 40.72119 ] } }, -{ "type": "Feature", "properties": { "id": 551291, "name": "Eliot Av/71 St", "direction": "SW", "lat": 40.72142, "lon": -73.88718, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88718, 40.72142 ] } }, -{ "type": "Feature", "properties": { "id": 551292, "name": "Eliot Av/74 St", "direction": "NE", "lat": 40.721886, "lon": -73.885765, "routes": "QM24, QM25, QM34, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.885765, 40.721886 ] } }, -{ "type": "Feature", "properties": { "id": 551293, "name": "Eliot Av/74 St", "direction": "SW", "lat": 40.722202, "lon": -73.885506, "routes": "QM25, Q38, QM24, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.885506, 40.722202 ] } }, -{ "type": "Feature", "properties": { "id": 551294, "name": "Eliot Av/76 St", "direction": "NE", "lat": 40.723034, "lon": -73.88331, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88331, 40.723034 ] } }, -{ "type": "Feature", "properties": { "id": 551295, "name": "Eliot Av/76 St", "direction": "SW", "lat": 40.722916, "lon": -73.88396, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88396, 40.722916 ] } }, -{ "type": "Feature", "properties": { "id": 551296, "name": "Eliot Av/77 Pl", "direction": "NE", "lat": 40.72376, "lon": -73.881714, "routes": "QM34, QM25, Q38, QM24" }, "geometry": { "type": "Point", "coordinates": [ -73.881714, 40.72376 ] } }, -{ "type": "Feature", "properties": { "id": 551297, "name": "Eliot Av/78 St", "direction": "NE", "lat": 40.72428, "lon": -73.88065, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88065, 40.72428 ] } }, -{ "type": "Feature", "properties": { "id": 551298, "name": "Eliot Av/78 St", "direction": "SW", "lat": 40.724396, "lon": -73.88076, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88076, 40.724396 ] } }, -{ "type": "Feature", "properties": { "id": 551299, "name": "Eliot Av/80 St", "direction": "NE", "lat": 40.724865, "lon": -73.879295, "routes": "Q38, QM24, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.879295, 40.724865 ] } }, -{ "type": "Feature", "properties": { "id": 551300, "name": "Eliot Av/80 St", "direction": "SW", "lat": 40.72519, "lon": -73.87908, "routes": "Q38, QM34, QM25, QM24" }, "geometry": { "type": "Point", "coordinates": [ -73.87908, 40.72519 ] } }, -{ "type": "Feature", "properties": { "id": 551301, "name": "Eliot Av/82 St", "direction": "NE", "lat": 40.725662, "lon": -73.87761, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87761, 40.725662 ] } }, -{ "type": "Feature", "properties": { "id": 551302, "name": "Eliot Av/82 St", "direction": "SW", "lat": 40.725914, "lon": -73.87749, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87749, 40.725914 ] } }, -{ "type": "Feature", "properties": { "id": 551303, "name": "Eliot Av/83 Pl", "direction": "NE", "lat": 40.726555, "lon": -73.875755, "routes": "Q38, QM25, QM24, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.875755, 40.726555 ] } }, -{ "type": "Feature", "properties": { "id": 551304, "name": "Eliot Av/85 St", "direction": "NE", "lat": 40.728012, "lon": -73.87298, "routes": "QM24, Q38, QM25, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.87298, 40.728012 ] } }, -{ "type": "Feature", "properties": { "id": 551305, "name": "Eliot Av/85 St", "direction": "SW", "lat": 40.72812, "lon": -73.873146, "routes": "QM24, QM34, Q38, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.873146, 40.72812 ] } }, -{ "type": "Feature", "properties": { "id": 551306, "name": "Eliot Av/Woodhaven Blvd", "direction": "NE", "lat": 40.728996, "lon": -73.87166, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87166, 40.728996 ] } }, -{ "type": "Feature", "properties": { "id": 551310, "name": "57 Av/Junction Blvd", "direction": "E", "lat": 40.736675, "lon": -73.865616, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.865616, 40.736675 ] } }, -{ "type": "Feature", "properties": { "id": 551311, "name": "57 Av/Junction Blvd", "direction": "W", "lat": 40.736668, "lon": -73.86605, "routes": "QM11, QM10, QM40, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86605, 40.736668 ] } }, -{ "type": "Feature", "properties": { "id": 551312, "name": "98 St/57 Av", "direction": "NW", "lat": 40.73783, "lon": -73.86227, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86227, 40.73783 ] } }, -{ "type": "Feature", "properties": { "id": 551313, "name": "Christie Av/98 St", "direction": "NE", "lat": 40.74075, "lon": -73.86329, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86329, 40.74075 ] } }, -{ "type": "Feature", "properties": { "id": 551314, "name": "99 St/Christie Av", "direction": "SE", "lat": 40.74143, "lon": -73.861855, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.861855, 40.74143 ] } }, -{ "type": "Feature", "properties": { "id": 551315, "name": "99 St/55 Av", "direction": "SE", "lat": 40.73945, "lon": -73.86071, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86071, 40.73945 ] } }, -{ "type": "Feature", "properties": { "id": 551316, "name": "99 St/57 Av", "direction": "SE", "lat": 40.73824, "lon": -73.8601, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.8601, 40.73824 ] } }, -{ "type": "Feature", "properties": { "id": 551317, "name": "60 Av/99 St", "direction": "E", "lat": 40.736423, "lon": -73.85882, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.85882, 40.736423 ] } }, -{ "type": "Feature", "properties": { "id": 551319, "name": "99 St/60 Av", "direction": "NW", "lat": 40.736546, "lon": -73.859, "routes": "QM11, QM10, QM40, Q38, QM10, QM11, QM40" }, "geometry": { "type": "Point", "coordinates": [ -73.859, 40.736546 ] } }, -{ "type": "Feature", "properties": { "id": 551321, "name": "99 St/58 Av", "direction": "NW", "lat": 40.73786, "lon": -73.8597, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.8597, 40.73786 ] } }, -{ "type": "Feature", "properties": { "id": 551322, "name": "Christie Av/99 St", "direction": "SW", "lat": 40.74157, "lon": -73.86207, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86207, 40.74157 ] } }, -{ "type": "Feature", "properties": { "id": 551325, "name": "57 Av/97 St", "direction": "W", "lat": 40.737194, "lon": -73.86422, "routes": "Q38, QM40, QM40, QM10, QM11, QM10, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86422, 40.737194 ] } }, -{ "type": "Feature", "properties": { "id": 551328, "name": "Eliot Av/83 Pl", "direction": "SW", "lat": 40.726894, "lon": -73.87541, "routes": "QM24, Q38, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.87541, 40.726894 ] } }, -{ "type": "Feature", "properties": { "id": 551329, "name": "Eliot Av/77 St", "direction": "SW", "lat": 40.72365, "lon": -73.882355, "routes": "Q38, QM24, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.882355, 40.72365 ] } }, -{ "type": "Feature", "properties": { "id": 551330, "name": "Eliot Av/Mt Olivet Cres", "direction": "SW", "lat": 40.71566, "lon": -73.89922, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.89922, 40.71566 ] } }, -{ "type": "Feature", "properties": { "id": 551334, "name": "Metropolitan Av/Rentar Plaza", "direction": "E", "lat": 40.712276, "lon": -73.892845, "routes": "Q38, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.892845, 40.712276 ] } }, -{ "type": "Feature", "properties": { "id": 551335, "name": "69 St/66 Rd", "direction": "N", "lat": 40.71421, "lon": -73.88692, "routes": "Q67, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88692, 40.71421 ] } }, -{ "type": "Feature", "properties": { "id": 551336, "name": "Juniper Valley Rd/70 St", "direction": "E", "lat": 40.714657, "lon": -73.88488, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88488, 40.714657 ] } }, -{ "type": "Feature", "properties": { "id": 551337, "name": "Juniper Valley Rd/73 Pl", "direction": "E", "lat": 40.714973, "lon": -73.881294, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.881294, 40.714973 ] } }, -{ "type": "Feature", "properties": { "id": 551338, "name": "Juniper Valley Rd/75 St", "direction": "E", "lat": 40.715405, "lon": -73.879395, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.879395, 40.715405 ] } }, -{ "type": "Feature", "properties": { "id": 551339, "name": "75 Pl/65 Dr", "direction": "N", "lat": 40.71618, "lon": -73.87899, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87899, 40.71618 ] } }, -{ "type": "Feature", "properties": { "id": 551340, "name": "Furmanville Av/77 St", "direction": "E", "lat": 40.717213, "lon": -73.87707, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87707, 40.717213 ] } }, -{ "type": "Feature", "properties": { "id": 551341, "name": "Furmanville Av/78 St", "direction": "E", "lat": 40.71739, "lon": -73.87552, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87552, 40.71739 ] } }, -{ "type": "Feature", "properties": { "id": 551342, "name": "Penelope Av/79 St", "direction": "NE", "lat": 40.718925, "lon": -73.87564, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87564, 40.718925 ] } }, -{ "type": "Feature", "properties": { "id": 551343, "name": "Penelope Av/83 St", "direction": "NE", "lat": 40.720955, "lon": -73.87128, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.87128, 40.720955 ] } }, -{ "type": "Feature", "properties": { "id": 551344, "name": "Penelope Av/84 St", "direction": "NE", "lat": 40.721558, "lon": -73.86996, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86996, 40.721558 ] } }, -{ "type": "Feature", "properties": { "id": 551346, "name": "63 Dr/Woodhaven Blvd", "direction": "NE", "lat": 40.722748, "lon": -73.86738, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86738, 40.722748 ] } }, -{ "type": "Feature", "properties": { "id": 551347, "name": "63 Dr/Fichett St", "direction": "NE", "lat": 40.723717, "lon": -73.866356, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.866356, 40.723717 ] } }, -{ "type": "Feature", "properties": { "id": 551351, "name": "63 Rd/99 St", "direction": "E", "lat": 40.73251, "lon": -73.85683, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.85683, 40.73251 ] } }, -{ "type": "Feature", "properties": { "id": 551352, "name": "63 Rd/102 St", "direction": "E", "lat": 40.732788, "lon": -73.854836, "routes": "Q38, QM10, QM40, QM11, QM10, QM11, QM40" }, "geometry": { "type": "Point", "coordinates": [ -73.854836, 40.732788 ] } }, -{ "type": "Feature", "properties": { "id": 551354, "name": "63 Rd/Yellowstone Blvd", "direction": "E", "lat": 40.73366, "lon": -73.85228, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.85228, 40.73366 ] } }, -{ "type": "Feature", "properties": { "id": 551356, "name": "63 Rd/108 St", "direction": "E", "lat": 40.734238, "lon": -73.850365, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.850365, 40.734238 ] } }, -{ "type": "Feature", "properties": { "id": 551359, "name": "23 St/43 Av", "direction": "NE", "lat": 40.74959, "lon": -73.94372, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.94372, 40.74959 ] } }, -{ "type": "Feature", "properties": { "id": 551363, "name": "Thomson Av/30 Pl", "direction": "E", "lat": 40.745007, "lon": -73.93618, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93618, 40.745007 ] } }, -{ "type": "Feature", "properties": { "id": 551364, "name": "Thomson Av/31 Pl", "direction": "E", "lat": 40.74481, "lon": -73.934685, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.934685, 40.74481 ] } }, -{ "type": "Feature", "properties": { "id": 551365, "name": "Van Dam St/47 Av", "direction": "S", "lat": 40.743053, "lon": -73.934074, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.934074, 40.743053 ] } }, -{ "type": "Feature", "properties": { "id": 551366, "name": "Van Dam St/47 Av", "direction": "NE", "lat": 40.743, "lon": -73.93384, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93384, 40.743 ] } }, -{ "type": "Feature", "properties": { "id": 551367, "name": "48 Av/Van Dam St", "direction": "E", "lat": 40.740967, "lon": -73.93415, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93415, 40.740967 ] } }, -{ "type": "Feature", "properties": { "id": 551368, "name": "48 Av/Van Dam St", "direction": "W", "lat": 40.7411, "lon": -73.93419, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93419, 40.7411 ] } }, -{ "type": "Feature", "properties": { "id": 551369, "name": "48 Av/33 St", "direction": "E", "lat": 40.740795, "lon": -73.93267, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93267, 40.740795 ] } }, -{ "type": "Feature", "properties": { "id": 551370, "name": "48 Av/35 St", "direction": "E", "lat": 40.740597, "lon": -73.93077, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93077, 40.740597 ] } }, -{ "type": "Feature", "properties": { "id": 551371, "name": "48 Av/37 St", "direction": "E", "lat": 40.74035, "lon": -73.92858, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92858, 40.74035 ] } }, -{ "type": "Feature", "properties": { "id": 551372, "name": "48 Av/39 St", "direction": "E", "lat": 40.74012, "lon": -73.92673, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92673, 40.74012 ] } }, -{ "type": "Feature", "properties": { "id": 551373, "name": "48 Av/Greenpoint Av", "direction": "E", "lat": 40.739872, "lon": -73.92473, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92473, 40.739872 ] } }, -{ "type": "Feature", "properties": { "id": 551374, "name": "48 Av/Greenpoint Av", "direction": "W", "lat": 40.739983, "lon": -73.92465, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92465, 40.739983 ] } }, -{ "type": "Feature", "properties": { "id": 551375, "name": "48 Av/43 St", "direction": "E", "lat": 40.739594, "lon": -73.92206, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92206, 40.739594 ] } }, -{ "type": "Feature", "properties": { "id": 551376, "name": "48 Av/45 St", "direction": "E", "lat": 40.73936, "lon": -73.92024, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92024, 40.73936 ] } }, -{ "type": "Feature", "properties": { "id": 551377, "name": "48 Av/47 St", "direction": "E", "lat": 40.73917, "lon": -73.91837, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91837, 40.73917 ] } }, -{ "type": "Feature", "properties": { "id": 551380, "name": "Laurel Hill Blvd/48 St", "direction": "E", "lat": 40.73515, "lon": -73.91797, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91797, 40.73515 ] } }, -{ "type": "Feature", "properties": { "id": 551382, "name": "Laurel Hill Blvd/58 St", "direction": "E", "lat": 40.736366, "lon": -73.90957, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90957, 40.736366 ] } }, -{ "type": "Feature", "properties": { "id": 551383, "name": "Laurel Hill Blvd/58 St", "direction": "W", "lat": 40.736366, "lon": -73.90989, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90989, 40.736366 ] } }, -{ "type": "Feature", "properties": { "id": 551384, "name": "Laurel Hill Blvd/58 St", "direction": "W", "lat": 40.735844, "lon": -73.9138, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.9138, 40.735844 ] } }, -{ "type": "Feature", "properties": { "id": 551385, "name": "58 St/53 Av", "direction": "SW", "lat": 40.734547, "lon": -73.910225, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.910225, 40.734547 ] } }, -{ "type": "Feature", "properties": { "id": 551386, "name": "58 St/53 Av", "direction": "NE", "lat": 40.734444, "lon": -73.9101, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.9101, 40.734444 ] } }, -{ "type": "Feature", "properties": { "id": 551387, "name": "58 St/Borden Av", "direction": "S", "lat": 40.72966, "lon": -73.91211, "routes": "Q39, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.91211, 40.72966 ] } }, -{ "type": "Feature", "properties": { "id": 551388, "name": "58 St/Borden Av", "direction": "NE", "lat": 40.729343, "lon": -73.91182, "routes": "Q67, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91182, 40.729343 ] } }, -{ "type": "Feature", "properties": { "id": 551389, "name": "58 St/55 Dr", "direction": "S", "lat": 40.72627, "lon": -73.91233, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91233, 40.72627 ] } }, -{ "type": "Feature", "properties": { "id": 551390, "name": "58 St/55 Dr", "direction": "N", "lat": 40.726463, "lon": -73.91208, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91208, 40.726463 ] } }, -{ "type": "Feature", "properties": { "id": 551391, "name": "58 St/56 Dr", "direction": "S", "lat": 40.72416, "lon": -73.91259, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91259, 40.72416 ] } }, -{ "type": "Feature", "properties": { "id": 551398, "name": "61 St/Flushing Av", "direction": "SE", "lat": 40.72082, "lon": -73.904, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.904, 40.72082 ] } }, -{ "type": "Feature", "properties": { "id": 551399, "name": "61 St/Flushing Av", "direction": "NW", "lat": 40.72102, "lon": -73.90401, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90401, 40.72102 ] } }, -{ "type": "Feature", "properties": { "id": 551400, "name": "61 St/59 Av", "direction": "S", "lat": 40.719425, "lon": -73.903435, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.903435, 40.719425 ] } }, -{ "type": "Feature", "properties": { "id": 551401, "name": "61 St/59 Av", "direction": "N", "lat": 40.719257, "lon": -73.903175, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.903175, 40.719257 ] } }, -{ "type": "Feature", "properties": { "id": 551402, "name": "Eliot Av/Metropolitan Av", "direction": "SW", "lat": 40.712982, "lon": -73.90476, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90476, 40.712982 ] } }, -{ "type": "Feature", "properties": { "id": 551403, "name": "Forest Av/Harman St", "direction": "SE", "lat": 40.712513, "lon": -73.90598, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90598, 40.712513 ] } }, -{ "type": "Feature", "properties": { "id": 551404, "name": "Forest Av/Bleecker St", "direction": "SE", "lat": 40.71068, "lon": -73.90511, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90511, 40.71068 ] } }, -{ "type": "Feature", "properties": { "id": 551405, "name": "Forest Av/Bleecker St", "direction": "NW", "lat": 40.710907, "lon": -73.90509, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90509, 40.710907 ] } }, -{ "type": "Feature", "properties": { "id": 551406, "name": "Forest Av/Grove St", "direction": "SE", "lat": 40.70903, "lon": -73.90436, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90436, 40.70903 ] } }, -{ "type": "Feature", "properties": { "id": 551407, "name": "Forest Av/Grove St", "direction": "NW", "lat": 40.709312, "lon": -73.90432, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90432, 40.709312 ] } }, -{ "type": "Feature", "properties": { "id": 551408, "name": "Forest Av/Gates Av", "direction": "SE", "lat": 40.708004, "lon": -73.90382, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90382, 40.708004 ] } }, -{ "type": "Feature", "properties": { "id": 551409, "name": "Forest Av/Gates Av", "direction": "NW", "lat": 40.707935, "lon": -73.90362, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90362, 40.707935 ] } }, -{ "type": "Feature", "properties": { "id": 551410, "name": "Forest Av/68 Rd", "direction": "SE", "lat": 40.703075, "lon": -73.90131, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90131, 40.703075 ] } }, -{ "type": "Feature", "properties": { "id": 551411, "name": "Forest Av/68 Rd", "direction": "NW", "lat": 40.703217, "lon": -73.90124, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90124, 40.703217 ] } }, -{ "type": "Feature", "properties": { "id": 551412, "name": "Forest Av/69 Av", "direction": "SE", "lat": 40.701675, "lon": -73.90073, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90073, 40.701675 ] } }, -{ "type": "Feature", "properties": { "id": 551413, "name": "Forest Av/69 Av", "direction": "NW", "lat": 40.70193, "lon": -73.900665, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.900665, 40.70193 ] } }, -{ "type": "Feature", "properties": { "id": 551414, "name": "Forest Av/Myrtle Av", "direction": "S", "lat": 40.700653, "lon": -73.90028, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90028, 40.700653 ] } }, -{ "type": "Feature", "properties": { "id": 551415, "name": "Forest Av/Myrtle Av", "direction": "NW", "lat": 40.700428, "lon": -73.89994, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.89994, 40.700428 ] } }, -{ "type": "Feature", "properties": { "id": 551416, "name": "Forest Av/Stephen St", "direction": "SE", "lat": 40.69996, "lon": -73.899414, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.899414, 40.69996 ] } }, -{ "type": "Feature", "properties": { "id": 551417, "name": "Forest Av/Summerfield St", "direction": "SE", "lat": 40.69912, "lon": -73.89796, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.89796, 40.69912 ] } }, -{ "type": "Feature", "properties": { "id": 551418, "name": "Forest Av/Summerfield St", "direction": "NW", "lat": 40.699364, "lon": -73.89819, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.89819, 40.699364 ] } }, -{ "type": "Feature", "properties": { "id": 551419, "name": "75 Av/60 Ln", "direction": "E", "lat": 40.69856, "lon": -73.895035, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.895035, 40.69856 ] } }, -{ "type": "Feature", "properties": { "id": 551420, "name": "60 Ln/St Felix Av", "direction": "N", "lat": 40.69699, "lon": -73.89455, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.89455, 40.69699 ] } }, -{ "type": "Feature", "properties": { "id": 551421, "name": "60 Ln/75 Av", "direction": "N", "lat": 40.69854, "lon": -73.894775, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.894775, 40.69854 ] } }, -{ "type": "Feature", "properties": { "id": 551422, "name": "Forest Av/67 Av", "direction": "NW", "lat": 40.70471, "lon": -73.90184, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90184, 40.70471 ] } }, -{ "type": "Feature", "properties": { "id": 551423, "name": "Forest Av/Metropolitan Av", "direction": "NW", "lat": 40.712837, "lon": -73.905945, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.905945, 40.712837 ] } }, -{ "type": "Feature", "properties": { "id": 551424, "name": "Eliot Av/60 Pl", "direction": "NE", "lat": 40.71323, "lon": -73.90396, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90396, 40.71323 ] } }, -{ "type": "Feature", "properties": { "id": 551425, "name": "Eliot Av/60 Ln", "direction": "E", "lat": 40.713985, "lon": -73.90235, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.90235, 40.713985 ] } }, -{ "type": "Feature", "properties": { "id": 551430, "name": "48 Av/48 St", "direction": "W", "lat": 40.739227, "lon": -73.918015, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.918015, 40.739227 ] } }, -{ "type": "Feature", "properties": { "id": 551431, "name": "48 Av/46 St", "direction": "W", "lat": 40.73941, "lon": -73.919655, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.919655, 40.73941 ] } }, -{ "type": "Feature", "properties": { "id": 551432, "name": "48 Av/44 St", "direction": "W", "lat": 40.739624, "lon": -73.92147, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92147, 40.739624 ] } }, -{ "type": "Feature", "properties": { "id": 551433, "name": "48 Av/39 Pl", "direction": "W", "lat": 40.740147, "lon": -73.92613, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.92613, 40.740147 ] } }, -{ "type": "Feature", "properties": { "id": 551434, "name": "48 Av/38 St", "direction": "W", "lat": 40.74039, "lon": -73.927956, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.927956, 40.74039 ] } }, -{ "type": "Feature", "properties": { "id": 551435, "name": "48 Av/36 St", "direction": "W", "lat": 40.740585, "lon": -73.929794, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.929794, 40.740585 ] } }, -{ "type": "Feature", "properties": { "id": 551436, "name": "48 Av/34 St", "direction": "W", "lat": 40.740803, "lon": -73.931656, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.931656, 40.740803 ] } }, -{ "type": "Feature", "properties": { "id": 551437, "name": "Thomson Av/Skillman Av", "direction": "W", "lat": 40.745274, "lon": -73.93703, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93703, 40.745274 ] } }, -{ "type": "Feature", "properties": { "id": 551441, "name": "23 St/Queens Plaza South", "direction": "NE", "lat": 40.75117, "lon": -73.94227, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.94227, 40.75117 ] } }, -{ "type": "Feature", "properties": { "id": 551449, "name": "142 St/Rockaway Blvd", "direction": "N", "lat": 40.674377, "lon": -73.7988, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.7988, 40.674377 ] } }, -{ "type": "Feature", "properties": { "id": 551450, "name": "142 St/Rockaway Blvd", "direction": "S", "lat": 40.67431, "lon": -73.798996, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.798996, 40.67431 ] } }, -{ "type": "Feature", "properties": { "id": 551451, "name": "142 St/120 Av", "direction": "N", "lat": 40.676434, "lon": -73.79917, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79917, 40.676434 ] } }, -{ "type": "Feature", "properties": { "id": 551452, "name": "142 St/Foch Blvd", "direction": "N", "lat": 40.67866, "lon": -73.79959, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79959, 40.67866 ] } }, -{ "type": "Feature", "properties": { "id": 551453, "name": "142 St/Foch Blvd", "direction": "S", "lat": 40.67853, "lon": -73.79976, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79976, 40.67853 ] } }, -{ "type": "Feature", "properties": { "id": 551454, "name": "142 St/116 Av", "direction": "NW", "lat": 40.68078, "lon": -73.79996, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79996, 40.68078 ] } }, -{ "type": "Feature", "properties": { "id": 551455, "name": "142 St/116 Av", "direction": "S", "lat": 40.68043, "lon": -73.80012, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80012, 40.68043 ] } }, -{ "type": "Feature", "properties": { "id": 551456, "name": "142 St/115 Av", "direction": "NW", "lat": 40.68233, "lon": -73.80071, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80071, 40.68233 ] } }, -{ "type": "Feature", "properties": { "id": 551457, "name": "142 St/115 Av", "direction": "SE", "lat": 40.68221, "lon": -73.80084, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80084, 40.68221 ] } }, -{ "type": "Feature", "properties": { "id": 551458, "name": "142 St/Linden Blvd", "direction": "NW", "lat": 40.684074, "lon": -73.80155, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80155, 40.684074 ] } }, -{ "type": "Feature", "properties": { "id": 551459, "name": "142 St/Linden Blvd", "direction": "SE", "lat": 40.683964, "lon": -73.8017, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.8017, 40.683964 ] } }, -{ "type": "Feature", "properties": { "id": 551460, "name": "142 St/111 Av", "direction": "NW", "lat": 40.68582, "lon": -73.802414, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.802414, 40.68582 ] } }, -{ "type": "Feature", "properties": { "id": 551461, "name": "142 St/111 Av", "direction": "SE", "lat": 40.6857, "lon": -73.80255, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80255, 40.6857 ] } }, -{ "type": "Feature", "properties": { "id": 551462, "name": "142 St/Glassboro Av", "direction": "NW", "lat": 40.686825, "lon": -73.80307, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80307, 40.686825 ] } }, -{ "type": "Feature", "properties": { "id": 551463, "name": "142 St/Glassboro Av", "direction": "SE", "lat": 40.68683, "lon": -73.80334, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80334, 40.68683 ] } }, -{ "type": "Feature", "properties": { "id": 551464, "name": "142 St/Lakewood Av", "direction": "W", "lat": 40.68824, "lon": -73.80472, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80472, 40.68824 ] } }, -{ "type": "Feature", "properties": { "id": 551465, "name": "Lakewood Av/Pinegrove St", "direction": "NE", "lat": 40.68913, "lon": -73.80391, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80391, 40.68913 ] } }, -{ "type": "Feature", "properties": { "id": 551466, "name": "Lakewood Av/Princeton St", "direction": "NE", "lat": 40.690792, "lon": -73.80252, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80252, 40.690792 ] } }, -{ "type": "Feature", "properties": { "id": 551467, "name": "Lakewood Av/Princeton St", "direction": "SW", "lat": 40.6908, "lon": -73.802734, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.802734, 40.6908 ] } }, -{ "type": "Feature", "properties": { "id": 551468, "name": "Lakewood Av/Liverpool St", "direction": "NE", "lat": 40.69179, "lon": -73.80157, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80157, 40.69179 ] } }, -{ "type": "Feature", "properties": { "id": 551469, "name": "Lakewood Av/Liverpool St", "direction": "SW", "lat": 40.691635, "lon": -73.80194, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80194, 40.691635 ] } }, -{ "type": "Feature", "properties": { "id": 551470, "name": "Lakewood Av/Sutphin Blvd", "direction": "NE", "lat": 40.69348, "lon": -73.80022, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80022, 40.69348 ] } }, -{ "type": "Feature", "properties": { "id": 551471, "name": "Lakewood Av/Sutphin Blvd", "direction": "SW", "lat": 40.693523, "lon": -73.80038, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80038, 40.693523 ] } }, -{ "type": "Feature", "properties": { "id": 551473, "name": "88 Av/Sutphin Blvd", "direction": "E", "lat": 40.704865, "lon": -73.80904, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80904, 40.704865 ] } }, -{ "type": "Feature", "properties": { "id": 551474, "name": "Sutphin Blvd/88 Av", "direction": "SE", "lat": 40.70492, "lon": -73.8094, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.8094, 40.70492 ] } }, -{ "type": "Feature", "properties": { "id": 551475, "name": "Lakewood Av/Remington St", "direction": "SW", "lat": 40.68873, "lon": -73.80448, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.80448, 40.68873 ] } }, -{ "type": "Feature", "properties": { "id": 551476, "name": "142 St/120 Av", "direction": "S", "lat": 40.676323, "lon": -73.79935, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79935, 40.676323 ] } }, -{ "type": "Feature", "properties": { "id": 551477, "name": "143 St/Rockaway Blvd", "direction": "S", "lat": 40.67366, "lon": -73.7958, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.7958, 40.67366 ] } }, -{ "type": "Feature", "properties": { "id": 551478, "name": "143 St/Sutter Av", "direction": "S", "lat": 40.67223, "lon": -73.79588, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79588, 40.67223 ] } }, -{ "type": "Feature", "properties": { "id": 551479, "name": "143 St/130 Av", "direction": "S", "lat": 40.670715, "lon": -73.79614, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79614, 40.670715 ] } }, -{ "type": "Feature", "properties": { "id": 551482, "name": "164 Av/92 St", "direction": "W", "lat": 40.650757, "lon": -73.83869, "routes": "Q21, Q41, Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.83869, 40.650757 ] } }, -{ "type": "Feature", "properties": { "id": 551483, "name": "164 Av/89 St", "direction": "W", "lat": 40.65033, "lon": -73.84176, "routes": "Q41, Q41, Q21, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84176, 40.65033 ] } }, -{ "type": "Feature", "properties": { "id": 551484, "name": "164 Av/87 St", "direction": "W", "lat": 40.650055, "lon": -73.84355, "routes": "Q41, Q41, Q21, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84355, 40.650055 ] } }, -{ "type": "Feature", "properties": { "id": 551485, "name": "164 Av/84 St", "direction": "W", "lat": 40.6497, "lon": -73.84605, "routes": "Q41, Q21, Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84605, 40.6497 ] } }, -{ "type": "Feature", "properties": { "id": 551486, "name": "84 St/163 Av", "direction": "N", "lat": 40.65175, "lon": -73.84664, "routes": "Q21, Q21, Q41, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84664, 40.65175 ] } }, -{ "type": "Feature", "properties": { "id": 551488, "name": "84 St/161 Av", "direction": "N", "lat": 40.654465, "lon": -73.84732, "routes": "Q21, Q41, Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84732, 40.654465 ] } }, -{ "type": "Feature", "properties": { "id": 551489, "name": "160 Av/84 St", "direction": "E", "lat": 40.65628, "lon": -73.847694, "routes": "Q41, Q21, Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.847694, 40.65628 ] } }, -{ "type": "Feature", "properties": { "id": 551490, "name": "160 Av/86 St", "direction": "E", "lat": 40.656555, "lon": -73.845825, "routes": "Q41, Q21, Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.845825, 40.656555 ] } }, -{ "type": "Feature", "properties": { "id": 551491, "name": "160 Av/89 St", "direction": "E", "lat": 40.65694, "lon": -73.84306, "routes": "Q41, Q21, Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84306, 40.65694 ] } }, -{ "type": "Feature", "properties": { "id": 551492, "name": "160 Av/92 St", "direction": "E", "lat": 40.657356, "lon": -73.84029, "routes": "Q41, Q21, Q41, Q21, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84029, 40.657356 ] } }, -{ "type": "Feature", "properties": { "id": 551495, "name": "109 Av/108 St", "direction": "W", "lat": 40.679638, "lon": -73.83164, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.83164, 40.679638 ] } }, -{ "type": "Feature", "properties": { "id": 551512, "name": "128 St/107 Av", "direction": "NW", "lat": 40.686405, "lon": -73.8157, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.8157, 40.686405 ] } }, -{ "type": "Feature", "properties": { "id": 551513, "name": "128 St/Liberty Av", "direction": "NW", "lat": 40.68891, "lon": -73.81694, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81694, 40.68891 ] } }, -{ "type": "Feature", "properties": { "id": 551514, "name": "127 St/103 Av", "direction": "NW", "lat": 40.69005, "lon": -73.81815, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81815, 40.69005 ] } }, -{ "type": "Feature", "properties": { "id": 551515, "name": "127 St/103 Av", "direction": "SE", "lat": 40.689793, "lon": -73.81821, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81821, 40.689793 ] } }, -{ "type": "Feature", "properties": { "id": 551516, "name": "127 St/101 Av", "direction": "NW", "lat": 40.691833, "lon": -73.81903, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81903, 40.691833 ] } }, -{ "type": "Feature", "properties": { "id": 551517, "name": "127 St/101 Av", "direction": "SE", "lat": 40.691986, "lon": -73.8193, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.8193, 40.691986 ] } }, -{ "type": "Feature", "properties": { "id": 551519, "name": "127 St/95 Av", "direction": "NW", "lat": 40.694252, "lon": -73.82024, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82024, 40.694252 ] } }, -{ "type": "Feature", "properties": { "id": 551520, "name": "127 St/95 Av", "direction": "SE", "lat": 40.694218, "lon": -73.82037, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82037, 40.694218 ] } }, -{ "type": "Feature", "properties": { "id": 551528, "name": "165 St Terminal/Q41 Stand", "direction": "SE", "lat": 40.707, "lon": -73.79547, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.79547, 40.707 ] } }, -{ "type": "Feature", "properties": { "id": 551531, "name": "127 St/Liberty Av", "direction": "SE", "lat": 40.688885, "lon": -73.81777, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81777, 40.688885 ] } }, -{ "type": "Feature", "properties": { "id": 551532, "name": "127 St/107 Av", "direction": "SE", "lat": 40.686302, "lon": -73.81679, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81679, 40.686302 ] } }, -{ "type": "Feature", "properties": { "id": 551533, "name": "127 St/109 Av", "direction": "SE", "lat": 40.684227, "lon": -73.81575, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81575, 40.684227 ] } }, -{ "type": "Feature", "properties": { "id": 551540, "name": "109 Av/Rockaway Blvd", "direction": "W", "lat": 40.678967, "lon": -73.83404, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.83404, 40.678967 ] } }, -{ "type": "Feature", "properties": { "id": 551544, "name": "80 St/58 Av", "direction": "NW", "lat": 40.72692, "lon": -73.880615, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.880615, 40.72692 ] } }, -{ "type": "Feature", "properties": { "id": 551545, "name": "80 St/58 Av", "direction": "SE", "lat": 40.727154, "lon": -73.88101, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88101, 40.727154 ] } }, -{ "type": "Feature", "properties": { "id": 551546, "name": "80 St/57 Av", "direction": "NW", "lat": 40.729134, "lon": -73.88238, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88238, 40.729134 ] } }, -{ "type": "Feature", "properties": { "id": 551547, "name": "80 St/57 Av", "direction": "SE", "lat": 40.729122, "lon": -73.882645, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.882645, 40.729122 ] } }, -{ "type": "Feature", "properties": { "id": 551548, "name": "80 St/54 Av", "direction": "NW", "lat": 40.730885, "lon": -73.883766, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.883766, 40.730885 ] } }, -{ "type": "Feature", "properties": { "id": 551549, "name": "80 St/54 Av", "direction": "SE", "lat": 40.730755, "lon": -73.883934, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.883934, 40.730755 ] } }, -{ "type": "Feature", "properties": { "id": 551550, "name": "80 St/Grand Av", "direction": "NW", "lat": 40.73189, "lon": -73.88459, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88459, 40.73189 ] } }, -{ "type": "Feature", "properties": { "id": 551551, "name": "80 St/Grand Av", "direction": "SE", "lat": 40.731743, "lon": -73.88469, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88469, 40.731743 ] } }, -{ "type": "Feature", "properties": { "id": 551552, "name": "79 St/Grand Av", "direction": "NW", "lat": 40.731133, "lon": -73.88558, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88558, 40.731133 ] } }, -{ "type": "Feature", "properties": { "id": 551553, "name": "79 St/Grand Av", "direction": "SE", "lat": 40.731094, "lon": -73.885796, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.885796, 40.731094 ] } }, -{ "type": "Feature", "properties": { "id": 551554, "name": "79 St/Elks Rd", "direction": "N", "lat": 40.733147, "lon": -73.88638, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88638, 40.733147 ] } }, -{ "type": "Feature", "properties": { "id": 551555, "name": "79 St/Calamus Av", "direction": "NW", "lat": 40.733986, "lon": -73.8867, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.8867, 40.733986 ] } }, -{ "type": "Feature", "properties": { "id": 551556, "name": "79 St/Calamus Av", "direction": "SE", "lat": 40.733994, "lon": -73.88696, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88696, 40.733994 ] } }, -{ "type": "Feature", "properties": { "id": 551557, "name": "Calamus Av/74 St", "direction": "W", "lat": 40.734608, "lon": -73.88834, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88834, 40.734608 ] } }, -{ "type": "Feature", "properties": { "id": 551558, "name": "Calamus Av/74 St", "direction": "E", "lat": 40.734474, "lon": -73.88868, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88868, 40.734474 ] } }, -{ "type": "Feature", "properties": { "id": 551561, "name": "Calamus Av/71 St", "direction": "W", "lat": 40.73465, "lon": -73.89305, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89305, 40.73465 ] } }, -{ "type": "Feature", "properties": { "id": 551562, "name": "Calamus Av/71 St", "direction": "E", "lat": 40.73458, "lon": -73.89343, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89343, 40.73458 ] } }, -{ "type": "Feature", "properties": { "id": 551563, "name": "Calamus Av/69 Pl", "direction": "W", "lat": 40.735092, "lon": -73.89489, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89489, 40.735092 ] } }, -{ "type": "Feature", "properties": { "id": 551564, "name": "Calamus Av/69 Pl", "direction": "E", "lat": 40.73497, "lon": -73.89527, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89527, 40.73497 ] } }, -{ "type": "Feature", "properties": { "id": 551565, "name": "69 St/49 Av", "direction": "N", "lat": 40.73783, "lon": -73.89579, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89579, 40.73783 ] } }, -{ "type": "Feature", "properties": { "id": 551567, "name": "69 St/48 Av", "direction": "S", "lat": 40.738266, "lon": -73.896034, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.896034, 40.738266 ] } }, -{ "type": "Feature", "properties": { "id": 551568, "name": "69 St/Queens Blvd", "direction": "N", "lat": 40.739864, "lon": -73.89574, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89574, 40.739864 ] } }, -{ "type": "Feature", "properties": { "id": 551570, "name": "69 St/Queens Blvd", "direction": "S", "lat": 40.74073, "lon": -73.89595, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89595, 40.74073 ] } }, -{ "type": "Feature", "properties": { "id": 551571, "name": "69 St/Queens Blvd", "direction": "S", "lat": 40.739895, "lon": -73.89603, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89603, 40.739895 ] } }, -{ "type": "Feature", "properties": { "id": 551572, "name": "69 St/Woodside Av", "direction": "N", "lat": 40.742847, "lon": -73.8956, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.8956, 40.742847 ] } }, -{ "type": "Feature", "properties": { "id": 551573, "name": "69 St/Woodside Av", "direction": "S", "lat": 40.742924, "lon": -73.89577, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89577, 40.742924 ] } }, -{ "type": "Feature", "properties": { "id": 551574, "name": "69 St/Roosevelt Av", "direction": "N", "lat": 40.74619, "lon": -73.89621, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89621, 40.74619 ] } }, -{ "type": "Feature", "properties": { "id": 551575, "name": "69 St/Roosevelt Av", "direction": "S", "lat": 40.746227, "lon": -73.8964, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.8964, 40.746227 ] } }, -{ "type": "Feature", "properties": { "id": 551576, "name": "74 St/Roosevelt Av Station", "direction": "SW", "lat": 40.746544, "lon": -73.890686, "routes": "Q70+" }, "geometry": { "type": "Point", "coordinates": [ -73.890686, 40.746544 ] } }, -{ "type": "Feature", "properties": { "id": 551577, "name": "79 St/Ankener Av", "direction": "SE", "lat": 40.73212, "lon": -73.88614, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88614, 40.73212 ] } }, -{ "type": "Feature", "properties": { "id": 551578, "name": "Queens Blvd/78 Av", "direction": "NW", "lat": 40.715614, "lon": -73.83241, "routes": "Q60, X68, X63, X64, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.83241, 40.715614 ] } }, -{ "type": "Feature", "properties": { "id": 551580, "name": "Broadway/Roosevelt Av", "direction": "NW", "lat": 40.74664, "lon": -73.89118, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89118, 40.74664 ] } }, -{ "type": "Feature", "properties": { "id": 551583, "name": "74 St/Northern Blvd", "direction": "N", "lat": 40.75502, "lon": -73.89277, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89277, 40.75502 ] } }, -{ "type": "Feature", "properties": { "id": 551584, "name": "74 St/32 Av", "direction": "N", "lat": 40.757042, "lon": -73.89308, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89308, 40.757042 ] } }, -{ "type": "Feature", "properties": { "id": 551585, "name": "74 St/31 Av", "direction": "N", "lat": 40.75837, "lon": -73.89341, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89341, 40.75837 ] } }, -{ "type": "Feature", "properties": { "id": 551586, "name": "31 Av/76 St", "direction": "E", "lat": 40.758583, "lon": -73.89141, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89141, 40.758583 ] } }, -{ "type": "Feature", "properties": { "id": 551589, "name": "77 St/30 Av", "direction": "N", "lat": 40.760895, "lon": -73.89097, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89097, 40.760895 ] } }, -{ "type": "Feature", "properties": { "id": 551590, "name": "77 St/30 Av", "direction": "S", "lat": 40.76065, "lon": -73.891106, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.891106, 40.76065 ] } }, -{ "type": "Feature", "properties": { "id": 551591, "name": "77 St/25 Av", "direction": "N", "lat": 40.762463, "lon": -73.89128, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89128, 40.762463 ] } }, -{ "type": "Feature", "properties": { "id": 551593, "name": "25 Av/79 St", "direction": "E", "lat": 40.7627, "lon": -73.88931, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88931, 40.7627 ] } }, -{ "type": "Feature", "properties": { "id": 551594, "name": "80 St/Astoria Blvd", "direction": "N", "lat": 40.76517, "lon": -73.88892, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.88892, 40.76517 ] } }, -{ "type": "Feature", "properties": { "id": 551595, "name": "80 St/Astoria Blvd", "direction": "S", "lat": 40.76518, "lon": -73.889114, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.889114, 40.76518 ] } }, -{ "type": "Feature", "properties": { "id": 551596, "name": "Ditmars Blvd/Marine Terminal Rd", "direction": "N", "lat": 40.768257, "lon": -73.887924, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.887924, 40.768257 ] } }, -{ "type": "Feature", "properties": { "id": 551602, "name": "80 St/25 Av", "direction": "S", "lat": 40.76298, "lon": -73.888695, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.888695, 40.76298 ] } }, -{ "type": "Feature", "properties": { "id": 551603, "name": "31 Av/77 St", "direction": "W", "lat": 40.758823, "lon": -73.89084, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89084, 40.758823 ] } }, -{ "type": "Feature", "properties": { "id": 551604, "name": "31 Av/75 St", "direction": "W", "lat": 40.75865, "lon": -73.89238, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89238, 40.75865 ] } }, -{ "type": "Feature", "properties": { "id": 551605, "name": "73 St/31 Av", "direction": "S", "lat": 40.75826, "lon": -73.89448, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89448, 40.75826 ] } }, -{ "type": "Feature", "properties": { "id": 551606, "name": "73 St/32 Av", "direction": "S", "lat": 40.75673, "lon": -73.89416, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89416, 40.75673 ] } }, -{ "type": "Feature", "properties": { "id": 551607, "name": "73 St/Northern Blvd", "direction": "S", "lat": 40.75454, "lon": -73.89377, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89377, 40.75454 ] } }, -{ "type": "Feature", "properties": { "id": 551608, "name": "73 St/34 Av", "direction": "S", "lat": 40.752716, "lon": -73.893456, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.893456, 40.752716 ] } }, -{ "type": "Feature", "properties": { "id": 551609, "name": "Beach 116 St/Rockaway Beach Blvd", "direction": "NW", "lat": 40.58034, "lon": -73.83735, "routes": "Q53+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.83735, 40.58034 ] } }, -{ "type": "Feature", "properties": { "id": 551614, "name": "Queens Plaza South/28 St", "direction": "SE", "lat": 40.749855, "lon": -73.93919, "routes": "Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.93919, 40.749855 ] } }, -{ "type": "Feature", "properties": { "id": 551617, "name": "Queens Blvd/48 St", "direction": "E", "lat": 40.742733, "lon": -73.916725, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.916725, 40.742733 ] } }, -{ "type": "Feature", "properties": { "id": 551618, "name": "Queens Blvd/52 St", "direction": "E", "lat": 40.742252, "lon": -73.91273, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.91273, 40.742252 ] } }, -{ "type": "Feature", "properties": { "id": 551619, "name": "Queens Blvd/52 St", "direction": "W", "lat": 40.74276, "lon": -73.91294, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.91294, 40.74276 ] } }, -{ "type": "Feature", "properties": { "id": 551621, "name": "Queens Blvd/56 St", "direction": "E", "lat": 40.74185, "lon": -73.90942, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.90942, 40.74185 ] } }, -{ "type": "Feature", "properties": { "id": 551622, "name": "Queens Blvd/58 St", "direction": "E", "lat": 40.74161, "lon": -73.90736, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.90736, 40.74161 ] } }, -{ "type": "Feature", "properties": { "id": 551624, "name": "Queens Blvd/60 St", "direction": "E", "lat": 40.741287, "lon": -73.904434, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.904434, 40.741287 ] } }, -{ "type": "Feature", "properties": { "id": 551625, "name": "Queens Blvd/60 St", "direction": "W", "lat": 40.741783, "lon": -73.90467, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.90467, 40.741783 ] } }, -{ "type": "Feature", "properties": { "id": 551626, "name": "Queens Blvd/61 St", "direction": "E", "lat": 40.741043, "lon": -73.9024, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.9024, 40.741043 ] } }, -{ "type": "Feature", "properties": { "id": 551627, "name": "Queens Blvd/63 St", "direction": "W", "lat": 40.74156, "lon": -73.902695, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.902695, 40.74156 ] } }, -{ "type": "Feature", "properties": { "id": 551628, "name": "Queens Blvd/65 Pl", "direction": "E", "lat": 40.740734, "lon": -73.89981, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.89981, 40.740734 ] } }, -{ "type": "Feature", "properties": { "id": 551629, "name": "Queens Blvd/65 Pl", "direction": "W", "lat": 40.741222, "lon": -73.89975, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.89975, 40.741222 ] } }, -{ "type": "Feature", "properties": { "id": 551630, "name": "Queens Blvd/69 St", "direction": "E", "lat": 40.74001, "lon": -73.89566, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.89566, 40.74001 ] } }, -{ "type": "Feature", "properties": { "id": 551631, "name": "Queens Blvd/69 St", "direction": "W", "lat": 40.74052, "lon": -73.895676, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.895676, 40.74052 ] } }, -{ "type": "Feature", "properties": { "id": 551633, "name": "Queens Blvd/70 St", "direction": "W", "lat": 40.74017, "lon": -73.89402, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.89402, 40.74017 ] } }, -{ "type": "Feature", "properties": { "id": 551634, "name": "Queens Blvd/72 St", "direction": "E", "lat": 40.739326, "lon": -73.89207, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.89207, 40.739326 ] } }, -{ "type": "Feature", "properties": { "id": 551638, "name": "Queens Blvd/51 Av", "direction": "E", "lat": 40.73754, "lon": -73.88267, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.88267, 40.73754 ] } }, -{ "type": "Feature", "properties": { "id": 551640, "name": "Queens Blvd/Goldsmith St", "direction": "E", "lat": 40.737064, "lon": -73.8802, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.8802, 40.737064 ] } }, -{ "type": "Feature", "properties": { "id": 551641, "name": "Queens Blvd/Grand Av", "direction": "E", "lat": 40.73649, "lon": -73.87771, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.87771, 40.73649 ] } }, -{ "type": "Feature", "properties": { "id": 551642, "name": "Queens Blvd/56 Av", "direction": "NW", "lat": 40.73505, "lon": -73.8745, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.8745, 40.73505 ] } }, -{ "type": "Feature", "properties": { "id": 551644, "name": "Queens Blvd/63 Av", "direction": "E", "lat": 40.730656, "lon": -73.86455, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.86455, 40.730656 ] } }, -{ "type": "Feature", "properties": { "id": 551645, "name": "Queens Blvd/63 Dr", "direction": "E", "lat": 40.729816, "lon": -73.862206, "routes": "QM18, Q60, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.862206, 40.729816 ] } }, -{ "type": "Feature", "properties": { "id": 551646, "name": "Queens Blvd/63 Dr", "direction": "W", "lat": 40.73014, "lon": -73.86153, "routes": "QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.86153, 40.73014 ] } }, -{ "type": "Feature", "properties": { "id": 551649, "name": "Queens Blvd/66 Av", "direction": "E", "lat": 40.72747, "lon": -73.85583, "routes": "QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.85583, 40.72747 ] } }, -{ "type": "Feature", "properties": { "id": 551651, "name": "Queens Blvd/67 Av", "direction": "SE", "lat": 40.726715, "lon": -73.85372, "routes": "Q60, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.85372, 40.726715 ] } }, -{ "type": "Feature", "properties": { "id": 551652, "name": "Queens Blvd/67 Av", "direction": "W", "lat": 40.727283, "lon": -73.85369, "routes": "Q60, QM18, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.85369, 40.727283 ] } }, -{ "type": "Feature", "properties": { "id": 551653, "name": "Queens Blvd/67 Dr", "direction": "SE", "lat": 40.72577, "lon": -73.85165, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.85165, 40.72577 ] } }, -{ "type": "Feature", "properties": { "id": 551654, "name": "Queens Blvd/68 Dr", "direction": "SE", "lat": 40.72419, "lon": -73.84999, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.84999, 40.72419 ] } }, -{ "type": "Feature", "properties": { "id": 551655, "name": "Queens Blvd/68 Dr", "direction": "NW", "lat": 40.724636, "lon": -73.84961, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.84961, 40.724636 ] } }, -{ "type": "Feature", "properties": { "id": 551656, "name": "Queens Blvd/Yellowstone Blvd", "direction": "SE", "lat": 40.72273, "lon": -73.84755, "routes": "Q60, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.84755, 40.72273 ] } }, -{ "type": "Feature", "properties": { "id": 551657, "name": "Queens Blvd/71 Av", "direction": "SE", "lat": 40.72115, "lon": -73.843895, "routes": "Q60, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.843895, 40.72115 ] } }, -{ "type": "Feature", "properties": { "id": 551658, "name": "Queens Blvd/72 Av", "direction": "SE", "lat": 40.720184, "lon": -73.841774, "routes": "QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.841774, 40.720184 ] } }, -{ "type": "Feature", "properties": { "id": 551659, "name": "Queens Blvd/72 Av", "direction": "W", "lat": 40.720863, "lon": -73.84188, "routes": "QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.84188, 40.720863 ] } }, -{ "type": "Feature", "properties": { "id": 551660, "name": "Queens Blvd/Ascan Av", "direction": "SE", "lat": 40.71928, "lon": -73.83973, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.83973, 40.71928 ] } }, -{ "type": "Feature", "properties": { "id": 551661, "name": "Queens Blvd/75 Av", "direction": "SE", "lat": 40.718513, "lon": -73.83798, "routes": "QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.83798, 40.718513 ] } }, -{ "type": "Feature", "properties": { "id": 551662, "name": "Queens Blvd/75 Av", "direction": "NW", "lat": 40.71905, "lon": -73.83779, "routes": "Q60, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.83779, 40.71905 ] } }, -{ "type": "Feature", "properties": { "id": 551663, "name": "Queens Blvd/76 Av", "direction": "SE", "lat": 40.717472, "lon": -73.8359, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.8359, 40.717472 ] } }, -{ "type": "Feature", "properties": { "id": 551664, "name": "Queens Blvd/77 Av", "direction": "SE", "lat": 40.71587, "lon": -73.83364, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.83364, 40.71587 ] } }, -{ "type": "Feature", "properties": { "id": 551666, "name": "Queens Blvd/Union Tpke", "direction": "W", "lat": 40.714123, "lon": -73.83011, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.83011, 40.714123 ] } }, -{ "type": "Feature", "properties": { "id": 551667, "name": "Queens Blvd/82 Av", "direction": "E", "lat": 40.71269, "lon": -73.827515, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.827515, 40.71269 ] } }, -{ "type": "Feature", "properties": { "id": 551668, "name": "Queens Blvd/82 Av", "direction": "NW", "lat": 40.712975, "lon": -73.827286, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.827286, 40.712975 ] } }, -{ "type": "Feature", "properties": { "id": 551669, "name": "Queens Blvd/ 83 Av", "direction": "SE", "lat": 40.71184, "lon": -73.82548, "routes": "Q60, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.82548, 40.71184 ] } }, -{ "type": "Feature", "properties": { "id": 551670, "name": "Queens Blvd/ Main St", "direction": "SE", "lat": 40.708862, "lon": -73.818954, "routes": "QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.818954, 40.708862 ] } }, -{ "type": "Feature", "properties": { "id": 551671, "name": "Queens Blvd/Main St", "direction": "NW", "lat": 40.709755, "lon": -73.819885, "routes": "QM21, X68, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.819885, 40.709755 ] } }, -{ "type": "Feature", "properties": { "id": 551676, "name": "Queens Blvd/Hillside Av", "direction": "SE", "lat": 40.70441, "lon": -73.81565, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.81565, 40.70441 ] } }, -{ "type": "Feature", "properties": { "id": 551678, "name": "Queens Blvd/Jamaica Av", "direction": "SE", "lat": 40.702705, "lon": -73.81448, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.81448, 40.702705 ] } }, -{ "type": "Feature", "properties": { "id": 551679, "name": "Queens Blvd/Jamaica Av", "direction": "NW", "lat": 40.702747, "lon": -73.8143, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.8143, 40.702747 ] } }, -{ "type": "Feature", "properties": { "id": 551684, "name": "108 Av/Sutphin Blvd", "direction": "NE", "lat": 40.69296, "lon": -73.799, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.799, 40.69296 ] } }, -{ "type": "Feature", "properties": { "id": 551686, "name": "108 Av/157 St", "direction": "NE", "lat": 40.694675, "lon": -73.79565, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.79565, 40.694675 ] } }, -{ "type": "Feature", "properties": { "id": 551687, "name": "157 St/109 Av", "direction": "SE", "lat": 40.693356, "lon": -73.794556, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.794556, 40.693356 ] } }, -{ "type": "Feature", "properties": { "id": 551688, "name": "109 Av/157 St", "direction": "SW", "lat": 40.693176, "lon": -73.79456, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.79456, 40.693176 ] } }, -{ "type": "Feature", "properties": { "id": 551691, "name": "Queens Blvd/Hoover Av", "direction": "NW", "lat": 40.712234, "lon": -73.82557, "routes": "X68, QM18, X64, Q60, QM21, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.82557, 40.712234 ] } }, -{ "type": "Feature", "properties": { "id": 551692, "name": "Queens Blvd/76 Rd", "direction": "NW", "lat": 40.717426, "lon": -73.834816, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.834816, 40.717426 ] } }, -{ "type": "Feature", "properties": { "id": 551693, "name": "Queens Blvd/72 Dr", "direction": "NW", "lat": 40.71991, "lon": -73.8398, "routes": "QM11, Q60, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.8398, 40.71991 ] } }, -{ "type": "Feature", "properties": { "id": 551694, "name": "Queens Blvd/108 St", "direction": "NW", "lat": 40.721832, "lon": -73.84406, "routes": "QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.84406, 40.721832 ] } }, -{ "type": "Feature", "properties": { "id": 551695, "name": "Queens Blvd/70 Av", "direction": "NW", "lat": 40.72268, "lon": -73.846016, "routes": "QM11, QM11, QM18, Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.846016, 40.72268 ] } }, -{ "type": "Feature", "properties": { "id": 551699, "name": "Queens Blvd/67 Rd", "direction": "NW", "lat": 40.7267, "lon": -73.85224, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.85224, 40.7267 ] } }, -{ "type": "Feature", "properties": { "id": 551700, "name": "Queens Blvd/65 Av", "direction": "W", "lat": 40.728886, "lon": -73.85814, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.85814, 40.728886 ] } }, -{ "type": "Feature", "properties": { "id": 551702, "name": "Queens Blvd/Van Loon St", "direction": "W", "lat": 40.73747, "lon": -73.87951, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.87951, 40.73747 ] } }, -{ "type": "Feature", "properties": { "id": 551703, "name": "Queens Blvd/Cornish Av", "direction": "W", "lat": 40.738285, "lon": -73.88375, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.88375, 40.738285 ] } }, -{ "type": "Feature", "properties": { "id": 551705, "name": "Queens Blvd/74 St", "direction": "W", "lat": 40.739372, "lon": -73.889534, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.889534, 40.739372 ] } }, -{ "type": "Feature", "properties": { "id": 551706, "name": "Queens Blvd/55 St", "direction": "W", "lat": 40.74247, "lon": -73.91028, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.91028, 40.74247 ] } }, -{ "type": "Feature", "properties": { "id": 551709, "name": "164 St/Hillside Av", "direction": "NW", "lat": 40.709072, "lon": -73.79901, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.79901, 40.709072 ] } }, -{ "type": "Feature", "properties": { "id": 551710, "name": "164 St/Hillside Av", "direction": "SE", "lat": 40.708923, "lon": -73.79913, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.79913, 40.708923 ] } }, -{ "type": "Feature", "properties": { "id": 551711, "name": "164 St/Highland Av", "direction": "NW", "lat": 40.71044, "lon": -73.79984, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.79984, 40.71044 ] } }, -{ "type": "Feature", "properties": { "id": 551712, "name": "164 St/Highland Av", "direction": "SE", "lat": 40.710293, "lon": -73.79997, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.79997, 40.710293 ] } }, -{ "type": "Feature", "properties": { "id": 551713, "name": "164 St/85 Av", "direction": "NW", "lat": 40.7127, "lon": -73.80126, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80126, 40.7127 ] } }, -{ "type": "Feature", "properties": { "id": 551714, "name": "164 St/84 Av", "direction": "NW", "lat": 40.715004, "lon": -73.80266, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80266, 40.715004 ] } }, -{ "type": "Feature", "properties": { "id": 551717, "name": "164 St/82 Rd", "direction": "N", "lat": 40.71801, "lon": -73.80344, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80344, 40.71801 ] } }, -{ "type": "Feature", "properties": { "id": 551718, "name": "164 St/Goethals Av", "direction": "N", "lat": 40.719727, "lon": -73.80393, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80393, 40.719727 ] } }, -{ "type": "Feature", "properties": { "id": 551719, "name": "164 St/Goethals Av", "direction": "S", "lat": 40.718952, "lon": -73.804016, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.804016, 40.718952 ] } }, -{ "type": "Feature", "properties": { "id": 551720, "name": "164 St/Union Tpke", "direction": "N", "lat": 40.72177, "lon": -73.80436, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80436, 40.72177 ] } }, -{ "type": "Feature", "properties": { "id": 551721, "name": "164 St/Union Tpke", "direction": "S", "lat": 40.721233, "lon": -73.80464, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80464, 40.721233 ] } }, -{ "type": "Feature", "properties": { "id": 551722, "name": "164 St/78 Av", "direction": "N", "lat": 40.7231, "lon": -73.8045, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.8045, 40.7231 ] } }, -{ "type": "Feature", "properties": { "id": 551723, "name": "164 St/77 Av", "direction": "N", "lat": 40.724556, "lon": -73.80463, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80463, 40.724556 ] } }, -{ "type": "Feature", "properties": { "id": 551724, "name": "164 St/76 Av", "direction": "N", "lat": 40.72593, "lon": -73.80478, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80478, 40.72593 ] } }, -{ "type": "Feature", "properties": { "id": 551725, "name": "164 St/75 Av", "direction": "N", "lat": 40.727272, "lon": -73.80492, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80492, 40.727272 ] } }, -{ "type": "Feature", "properties": { "id": 551726, "name": "164 St/72 Av", "direction": "N", "lat": 40.728687, "lon": -73.80505, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80505, 40.728687 ] } }, -{ "type": "Feature", "properties": { "id": 551728, "name": "164 St/71 Av", "direction": "S", "lat": 40.730328, "lon": -73.80535, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80535, 40.730328 ] } }, -{ "type": "Feature", "properties": { "id": 551729, "name": "164 St/Jewel Av", "direction": "N", "lat": 40.732033, "lon": -73.80492, "routes": "QM44, QM4, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80492, 40.732033 ] } }, -{ "type": "Feature", "properties": { "id": 551730, "name": "164 St/Jewel Av", "direction": "S", "lat": 40.73186, "lon": -73.80528, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80528, 40.73186 ] } }, -{ "type": "Feature", "properties": { "id": 551732, "name": "164 St/69 Av", "direction": "S", "lat": 40.732994, "lon": -73.8052, "routes": "QM4, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.8052, 40.732994 ] } }, -{ "type": "Feature", "properties": { "id": 551733, "name": "164 St/67 Av", "direction": "N", "lat": 40.73513, "lon": -73.80469, "routes": "Q65, QM4, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.80469, 40.73513 ] } }, -{ "type": "Feature", "properties": { "id": 551734, "name": "164 St/67 Av", "direction": "S", "lat": 40.734833, "lon": -73.80506, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80506, 40.734833 ] } }, -{ "type": "Feature", "properties": { "id": 551735, "name": "164 St/65 Av", "direction": "N", "lat": 40.73694, "lon": -73.804535, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.804535, 40.73694 ] } }, -{ "type": "Feature", "properties": { "id": 551736, "name": "164 St/65 Av", "direction": "S", "lat": 40.73665, "lon": -73.804924, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.804924, 40.73665 ] } }, -{ "type": "Feature", "properties": { "id": 551737, "name": "164 St/Horace Harding Expwy", "direction": "N", "lat": 40.73888, "lon": -73.80451, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80451, 40.73888 ] } }, -{ "type": "Feature", "properties": { "id": 551738, "name": "164 St/Horace Harding Expwy", "direction": "S", "lat": 40.73798, "lon": -73.804825, "routes": "QM44, QM4, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.804825, 40.73798 ] } }, -{ "type": "Feature", "properties": { "id": 551739, "name": "164 St/Booth Memorial Av", "direction": "N", "lat": 40.742123, "lon": -73.80428, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80428, 40.742123 ] } }, -{ "type": "Feature", "properties": { "id": 551740, "name": "164 St/Metcalf Av", "direction": "N", "lat": 40.747383, "lon": -73.80281, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80281, 40.747383 ] } }, -{ "type": "Feature", "properties": { "id": 551741, "name": "164 St/Metcalf Av", "direction": "S", "lat": 40.74711, "lon": -73.80326, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80326, 40.74711 ] } }, -{ "type": "Feature", "properties": { "id": 551742, "name": "164 St/Lithonia Av", "direction": "N", "lat": 40.74926, "lon": -73.80267, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80267, 40.74926 ] } }, -{ "type": "Feature", "properties": { "id": 551743, "name": "Pidgeon Meadow Rd/46 Av", "direction": "N", "lat": 40.75345, "lon": -73.80424, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80424, 40.75345 ] } }, -{ "type": "Feature", "properties": { "id": 551744, "name": "45 Av/162 St", "direction": "W", "lat": 40.75651, "lon": -73.804726, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.804726, 40.75651 ] } }, -{ "type": "Feature", "properties": { "id": 551745, "name": "45 Av/162 St", "direction": "E", "lat": 40.75638, "lon": -73.80464, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80464, 40.75638 ] } }, -{ "type": "Feature", "properties": { "id": 551748, "name": "45 Av/158 St", "direction": "W", "lat": 40.756805, "lon": -73.80845, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80845, 40.756805 ] } }, -{ "type": "Feature", "properties": { "id": 551749, "name": "45 Av/158 St", "direction": "E", "lat": 40.75664, "lon": -73.808044, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.808044, 40.75664 ] } }, -{ "type": "Feature", "properties": { "id": 551750, "name": "45 Av/156 St", "direction": "W", "lat": 40.756916, "lon": -73.810036, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.810036, 40.756916 ] } }, -{ "type": "Feature", "properties": { "id": 551751, "name": "45 Av/156 St", "direction": "E", "lat": 40.756783, "lon": -73.80994, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80994, 40.756783 ] } }, -{ "type": "Feature", "properties": { "id": 551752, "name": "45 Av/149 St", "direction": "W", "lat": 40.75609, "lon": -73.81329, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.81329, 40.75609 ] } }, -{ "type": "Feature", "properties": { "id": 551753, "name": "45 Av/149 St", "direction": "E", "lat": 40.756077, "lon": -73.81281, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.81281, 40.756077 ] } }, -{ "type": "Feature", "properties": { "id": 551754, "name": "45 Av/Parsons Blvd", "direction": "SW", "lat": 40.7556, "lon": -73.815865, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.815865, 40.7556 ] } }, -{ "type": "Feature", "properties": { "id": 551757, "name": "Bowne St/45 Av", "direction": "NW", "lat": 40.754025, "lon": -73.81848, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.81848, 40.754025 ] } }, -{ "type": "Feature", "properties": { "id": 551758, "name": "Bowne St/Cherry Av", "direction": "NW", "lat": 40.755703, "lon": -73.820366, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.820366, 40.755703 ] } }, -{ "type": "Feature", "properties": { "id": 551761, "name": "Northern Blvd/Main St", "direction": "E", "lat": 40.762756, "lon": -73.83224, "routes": "Q19, Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.83224, 40.762756 ] } }, -{ "type": "Feature", "properties": { "id": 551762, "name": "Northern Blvd/Collins Pl", "direction": "W", "lat": 40.763042, "lon": -73.8351, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.8351, 40.763042 ] } }, -{ "type": "Feature", "properties": { "id": 551763, "name": "College Point Blvd/Whitestone Expwy", "direction": "NW", "lat": 40.767117, "lon": -73.83915, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.83915, 40.767117 ] } }, -{ "type": "Feature", "properties": { "id": 551764, "name": "College Point Blvd/31 Av", "direction": "NW", "lat": 40.7695, "lon": -73.841675, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.841675, 40.7695 ] } }, -{ "type": "Feature", "properties": { "id": 551765, "name": "College Point Blvd/31 Av", "direction": "SE", "lat": 40.76924, "lon": -73.84182, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84182, 40.76924 ] } }, -{ "type": "Feature", "properties": { "id": 551766, "name": "College Point Blvd/123 St", "direction": "NW", "lat": 40.77356, "lon": -73.84595, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84595, 40.77356 ] } }, -{ "type": "Feature", "properties": { "id": 551767, "name": "College Point Blvd/26 Av", "direction": "N", "lat": 40.774647, "lon": -73.846504, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.846504, 40.774647 ] } }, -{ "type": "Feature", "properties": { "id": 551768, "name": "College Point Blvd/26 Av", "direction": "S", "lat": 40.774574, "lon": -73.84686, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84686, 40.774574 ] } }, -{ "type": "Feature", "properties": { "id": 551769, "name": "College Point Blvd/25 Rd", "direction": "N", "lat": 40.775875, "lon": -73.84617, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84617, 40.775875 ] } }, -{ "type": "Feature", "properties": { "id": 551770, "name": "College Point Blvd/25 Rd", "direction": "S", "lat": 40.775826, "lon": -73.84648, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84648, 40.775826 ] } }, -{ "type": "Feature", "properties": { "id": 551771, "name": "College Point Blvd/23 Av", "direction": "N", "lat": 40.77878, "lon": -73.846, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.846, 40.77878 ] } }, -{ "type": "Feature", "properties": { "id": 551772, "name": "College Point Blvd/23 Av", "direction": "S", "lat": 40.778496, "lon": -73.84622, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84622, 40.778496 ] } }, -{ "type": "Feature", "properties": { "id": 551776, "name": "College Point Blvd/20 Av", "direction": "S", "lat": 40.781563, "lon": -73.84605, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84605, 40.781563 ] } }, -{ "type": "Feature", "properties": { "id": 551784, "name": "110 St/14 Av", "direction": "S", "lat": 40.785316, "lon": -73.85696, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.85696, 40.785316 ] } }, -{ "type": "Feature", "properties": { "id": 551785, "name": "110 St/15 Av", "direction": "S", "lat": 40.78389, "lon": -73.85688, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.85688, 40.78389 ] } }, -{ "type": "Feature", "properties": { "id": 551786, "name": "15 Av/112 St", "direction": "E", "lat": 40.78381, "lon": -73.85474, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.85474, 40.78381 ] } }, -{ "type": "Feature", "properties": { "id": 551787, "name": "15 Av/114 St", "direction": "E", "lat": 40.783875, "lon": -73.85296, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.85296, 40.783875 ] } }, -{ "type": "Feature", "properties": { "id": 551788, "name": "15 Av/118 St", "direction": "E", "lat": 40.784016, "lon": -73.84965, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84965, 40.784016 ] } }, -{ "type": "Feature", "properties": { "id": 551789, "name": "15 Av/119 St", "direction": "E", "lat": 40.784054, "lon": -73.84831, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84831, 40.784054 ] } }, -{ "type": "Feature", "properties": { "id": 551793, "name": "Northern Blvd/College Point Blvd", "direction": "E", "lat": 40.76255, "lon": -73.8352, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.8352, 40.76255 ] } }, -{ "type": "Feature", "properties": { "id": 551794, "name": "Bowne St/Sanford Av", "direction": "SE", "lat": 40.758045, "lon": -73.82323, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.82323, 40.758045 ] } }, -{ "type": "Feature", "properties": { "id": 551795, "name": "Bowne St/Beech Av", "direction": "SE", "lat": 40.755886, "lon": -73.82081, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.82081, 40.755886 ] } }, -{ "type": "Feature", "properties": { "id": 551796, "name": "45 Av/Bowne St", "direction": "NE", "lat": 40.753918, "lon": -73.81818, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.81818, 40.753918 ] } }, -{ "type": "Feature", "properties": { "id": 551797, "name": "45 Av/Parsons Blvd", "direction": "NE", "lat": 40.75556, "lon": -73.81566, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.81566, 40.75556 ] } }, -{ "type": "Feature", "properties": { "id": 551798, "name": "46 Av/162 St", "direction": "SE", "lat": 40.753384, "lon": -73.80449, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80449, 40.753384 ] } }, -{ "type": "Feature", "properties": { "id": 551799, "name": "Pidgeon Meadow Rd/Laburnum Av", "direction": "SE", "lat": 40.751408, "lon": -73.80382, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80382, 40.751408 ] } }, -{ "type": "Feature", "properties": { "id": 551800, "name": "164 St/Oak Av", "direction": "S", "lat": 40.74966, "lon": -73.80305, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80305, 40.74966 ] } }, -{ "type": "Feature", "properties": { "id": 551801, "name": "164 St/Booth Memorial Av", "direction": "S", "lat": 40.742275, "lon": -73.80457, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80457, 40.742275 ] } }, -{ "type": "Feature", "properties": { "id": 551802, "name": "164 St/59 Av", "direction": "S", "lat": 40.74027, "lon": -73.80469, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80469, 40.74027 ] } }, -{ "type": "Feature", "properties": { "id": 551803, "name": "164 St/73 Av", "direction": "S", "lat": 40.727673, "lon": -73.80533, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80533, 40.727673 ] } }, -{ "type": "Feature", "properties": { "id": 551804, "name": "164 St/75 Rd", "direction": "S", "lat": 40.726307, "lon": -73.80521, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80521, 40.726307 ] } }, -{ "type": "Feature", "properties": { "id": 551805, "name": "164 St/76 Rd", "direction": "S", "lat": 40.72443, "lon": -73.805016, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.805016, 40.72443 ] } }, -{ "type": "Feature", "properties": { "id": 551806, "name": "164 St/77 Rd", "direction": "S", "lat": 40.723507, "lon": -73.80492, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80492, 40.723507 ] } }, -{ "type": "Feature", "properties": { "id": 551807, "name": "164 St/Queens General Hospital", "direction": "S", "lat": 40.717503, "lon": -73.80369, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80369, 40.717503 ] } }, -{ "type": "Feature", "properties": { "id": 551808, "name": "164 St/84 Dr", "direction": "SE", "lat": 40.713795, "lon": -73.80215, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80215, 40.713795 ] } }, -{ "type": "Feature", "properties": { "id": 551809, "name": "164 St/86 Av", "direction": "SE", "lat": 40.711613, "lon": -73.80079, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80079, 40.711613 ] } }, -{ "type": "Feature", "properties": { "id": 551810, "name": "Queens Blvd/70 Rd", "direction": "NW", "lat": 40.722095, "lon": -73.84469, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.84469, 40.722095 ] } }, -{ "type": "Feature", "properties": { "id": 551811, "name": "Jewel Av/108 St", "direction": "E", "lat": 40.723648, "lon": -73.844536, "routes": "QM4, QM44, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.844536, 40.723648 ] } }, -{ "type": "Feature", "properties": { "id": 551812, "name": "Jewel Av/110 St", "direction": "E", "lat": 40.72433, "lon": -73.84231, "routes": "QM4, Q64, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.84231, 40.72433 ] } }, -{ "type": "Feature", "properties": { "id": 551813, "name": "Jewel Av/112 St", "direction": "E", "lat": 40.72498, "lon": -73.84008, "routes": "QM44, QM4, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.84008, 40.72498 ] } }, -{ "type": "Feature", "properties": { "id": 551816, "name": "Jewel Av/Park Dr East", "direction": "E", "lat": 40.72792, "lon": -73.83139, "routes": "QM4, QM44, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.83139, 40.72792 ] } }, -{ "type": "Feature", "properties": { "id": 551817, "name": "Jewel Av/Park Dr East", "direction": "W", "lat": 40.72811, "lon": -73.831635, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.831635, 40.72811 ] } }, -{ "type": "Feature", "properties": { "id": 551818, "name": "Jewel Av/136 St", "direction": "E", "lat": 40.728306, "lon": -73.829155, "routes": "QM44, Q64, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.829155, 40.728306 ] } }, -{ "type": "Feature", "properties": { "id": 551819, "name": "Jewel Av/136 St", "direction": "W", "lat": 40.728302, "lon": -73.82965, "routes": "QM44, Q64, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.82965, 40.728302 ] } }, -{ "type": "Feature", "properties": { "id": 551820, "name": "Jewel Av/138 St", "direction": "E", "lat": 40.728886, "lon": -73.827286, "routes": "QM44, QM4, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.827286, 40.728886 ] } }, -{ "type": "Feature", "properties": { "id": 551821, "name": "Jewel Av/138 St", "direction": "W", "lat": 40.728893, "lon": -73.82782, "routes": "QM44, QM4, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.82782, 40.728893 ] } }, -{ "type": "Feature", "properties": { "id": 551822, "name": "Jewel Av/140 St", "direction": "E", "lat": 40.72952, "lon": -73.82497, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.82497, 40.72952 ] } }, -{ "type": "Feature", "properties": { "id": 551823, "name": "Jewel Av/140 St", "direction": "W", "lat": 40.729492, "lon": -73.82574, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.82574, 40.729492 ] } }, -{ "type": "Feature", "properties": { "id": 551824, "name": "Jewel Av/Main St", "direction": "E", "lat": 40.730057, "lon": -73.82313, "routes": "QM44, QM4, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.82313, 40.730057 ] } }, -{ "type": "Feature", "properties": { "id": 551825, "name": "Jewel Av/Main St", "direction": "W", "lat": 40.730022, "lon": -73.82378, "routes": "Q64, QM44, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.82378, 40.730022 ] } }, -{ "type": "Feature", "properties": { "id": 551826, "name": "Jewel Av/147 St", "direction": "E", "lat": 40.73061, "lon": -73.82127, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.82127, 40.73061 ] } }, -{ "type": "Feature", "properties": { "id": 551827, "name": "Jewel Av/147 St", "direction": "W", "lat": 40.730637, "lon": -73.82175, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.82175, 40.730637 ] } }, -{ "type": "Feature", "properties": { "id": 551828, "name": "Jewel Av/150 St", "direction": "E", "lat": 40.73128, "lon": -73.819016, "routes": "QM4, QM44, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.819016, 40.73128 ] } }, -{ "type": "Feature", "properties": { "id": 551829, "name": "Jewel Av/150 St", "direction": "W", "lat": 40.73139, "lon": -73.81921, "routes": "QM44, QM4, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.81921, 40.73139 ] } }, -{ "type": "Feature", "properties": { "id": 551830, "name": "Jewel Av/152 St", "direction": "E", "lat": 40.731754, "lon": -73.81735, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.81735, 40.731754 ] } }, -{ "type": "Feature", "properties": { "id": 551831, "name": "Jewel Av/152 St", "direction": "W", "lat": 40.731808, "lon": -73.81779, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.81779, 40.731808 ] } }, -{ "type": "Feature", "properties": { "id": 551832, "name": "Jewel Av/Kissena Blvd", "direction": "E", "lat": 40.731934, "lon": -73.81465, "routes": "Q64, QM4, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.81465, 40.731934 ] } }, -{ "type": "Feature", "properties": { "id": 551833, "name": "Jewel Av/Kissena Blvd", "direction": "E", "lat": 40.73204, "lon": -73.812614, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.812614, 40.73204 ] } }, -{ "type": "Feature", "properties": { "id": 551834, "name": "Jewel Av/Kissena Blvd", "direction": "W", "lat": 40.732136, "lon": -73.81525, "routes": "QM44, QM4, Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.81525, 40.732136 ] } }, -{ "type": "Feature", "properties": { "id": 551836, "name": "Parsons Blvd/Jewel Av", "direction": "S", "lat": 40.732155, "lon": -73.810936, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.810936, 40.732155 ] } }, -{ "type": "Feature", "properties": { "id": 551837, "name": "Parsons Blvd/71 Av", "direction": "S", "lat": 40.730392, "lon": -73.81099, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.81099, 40.730392 ] } }, -{ "type": "Feature", "properties": { "id": 551838, "name": "71 Av/162 St", "direction": "E", "lat": 40.73038, "lon": -73.80695, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.80695, 40.73038 ] } }, -{ "type": "Feature", "properties": { "id": 551839, "name": "71 Av/164 St", "direction": "E", "lat": 40.730423, "lon": -73.80535, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.80535, 40.730423 ] } }, -{ "type": "Feature", "properties": { "id": 551840, "name": "Jewel Av/164 St", "direction": "W", "lat": 40.731842, "lon": -73.80538, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.80538, 40.731842 ] } }, -{ "type": "Feature", "properties": { "id": 551841, "name": "Jewel Av/161 St", "direction": "W", "lat": 40.732105, "lon": -73.80814, "routes": "Q64, QM44, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.80814, 40.732105 ] } }, -{ "type": "Feature", "properties": { "id": 551843, "name": "Jewel Av/Parsons Blvd", "direction": "W", "lat": 40.732468, "lon": -73.811066, "routes": "Q64, QM4, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.811066, 40.732468 ] } }, -{ "type": "Feature", "properties": { "id": 551844, "name": "Jewel Av/Parsons Blvd", "direction": "W", "lat": 40.732235, "lon": -73.812836, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.812836, 40.732235 ] } }, -{ "type": "Feature", "properties": { "id": 551845, "name": "Jewel Av/Parsons Blvd", "direction": "E", "lat": 40.732227, "lon": -73.8105, "routes": "QM4, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.8105, 40.732227 ] } }, -{ "type": "Feature", "properties": { "id": 551847, "name": "69 Rd/112 St", "direction": "W", "lat": 40.725655, "lon": -73.84095, "routes": "QM44, Q64, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.84095, 40.725655 ] } }, -{ "type": "Feature", "properties": { "id": 551848, "name": "69 Rd/110 St", "direction": "W", "lat": 40.725006, "lon": -73.84317, "routes": "Q64, QM44, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.84317, 40.725006 ] } }, -{ "type": "Feature", "properties": { "id": 551849, "name": "108 St/Queens Blvd", "direction": "S", "lat": 40.721783, "lon": -73.84395, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84395, 40.721783 ] } }, -{ "type": "Feature", "properties": { "id": 551851, "name": "35 Av/Crescent St", "direction": "SE", "lat": 40.7598, "lon": -73.93215, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.93215, 40.7598 ] } }, -{ "type": "Feature", "properties": { "id": 551852, "name": "35 Av/31 St", "direction": "SE", "lat": 40.75803, "lon": -73.9284, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.9284, 40.75803 ] } }, -{ "type": "Feature", "properties": { "id": 551853, "name": "35 Av/31 St", "direction": "NW", "lat": 40.75828, "lon": -73.92862, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.92862, 40.75828 ] } }, -{ "type": "Feature", "properties": { "id": 551855, "name": "35 Av/35 St", "direction": "NW", "lat": 40.756767, "lon": -73.92541, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.92541, 40.756767 ] } }, -{ "type": "Feature", "properties": { "id": 551856, "name": "Northern Blvd/Woodside Av", "direction": "E", "lat": 40.752922, "lon": -73.9097, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.9097, 40.752922 ] } }, -{ "type": "Feature", "properties": { "id": 551857, "name": "35 Av/Steinway St", "direction": "SE", "lat": 40.755043, "lon": -73.922005, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.922005, 40.755043 ] } }, -{ "type": "Feature", "properties": { "id": 551858, "name": "35 Av/Steinway St", "direction": "NW", "lat": 40.75529, "lon": -73.92223, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.92223, 40.75529 ] } }, -{ "type": "Feature", "properties": { "id": 551859, "name": "Northern Blvd/42 Pl", "direction": "E", "lat": 40.753258, "lon": -73.920204, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.920204, 40.753258 ] } }, -{ "type": "Feature", "properties": { "id": 551860, "name": "Northern Blvd/48 St", "direction": "E", "lat": 40.753487, "lon": -73.914246, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.914246, 40.753487 ] } }, -{ "type": "Feature", "properties": { "id": 551861, "name": "Northern Blvd/54 St", "direction": "E", "lat": 40.75318, "lon": -73.90716, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.90716, 40.75318 ] } }, -{ "type": "Feature", "properties": { "id": 551864, "name": "Northern Blvd/60 St", "direction": "E", "lat": 40.753685, "lon": -73.90228, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.90228, 40.753685 ] } }, -{ "type": "Feature", "properties": { "id": 551867, "name": "Northern Blvd/69 St", "direction": "E", "lat": 40.754227, "lon": -73.89735, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.89735, 40.754227 ] } }, -{ "type": "Feature", "properties": { "id": 551868, "name": "Northern Blvd/72 St", "direction": "E", "lat": 40.75451, "lon": -73.89447, "routes": "QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89447, 40.75451 ] } }, -{ "type": "Feature", "properties": { "id": 551870, "name": "Northern Blvd/74 St", "direction": "E", "lat": 40.754696, "lon": -73.89265, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.89265, 40.754696 ] } }, -{ "type": "Feature", "properties": { "id": 551871, "name": "Northern Blvd/74 St", "direction": "W", "lat": 40.754913, "lon": -73.89303, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.89303, 40.754913 ] } }, -{ "type": "Feature", "properties": { "id": 551874, "name": "Northern Blvd/78 St", "direction": "E", "lat": 40.755093, "lon": -73.88891, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.88891, 40.755093 ] } }, -{ "type": "Feature", "properties": { "id": 551875, "name": "Northern Blvd/78 St", "direction": "W", "lat": 40.75529, "lon": -73.889305, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.889305, 40.75529 ] } }, -{ "type": "Feature", "properties": { "id": 551878, "name": "Northern Blvd/82 St", "direction": "E", "lat": 40.755558, "lon": -73.88489, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.88489, 40.755558 ] } }, -{ "type": "Feature", "properties": { "id": 551879, "name": "Northern Blvd/82 St", "direction": "W", "lat": 40.755707, "lon": -73.88526, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.88526, 40.755707 ] } }, -{ "type": "Feature", "properties": { "id": 551881, "name": "Northern Blvd/85 St", "direction": "E", "lat": 40.755764, "lon": -73.882416, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.882416, 40.755764 ] } }, -{ "type": "Feature", "properties": { "id": 551882, "name": "Northern Blvd/87 St", "direction": "E", "lat": 40.755962, "lon": -73.88051, "routes": "QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.88051, 40.755962 ] } }, -{ "type": "Feature", "properties": { "id": 551885, "name": "Northern Blvd/93 St", "direction": "E", "lat": 40.75656, "lon": -73.87493, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.87493, 40.75656 ] } }, -{ "type": "Feature", "properties": { "id": 551886, "name": "Northern Blvd/Junction Blvd", "direction": "E", "lat": 40.7568, "lon": -73.87315, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.87315, 40.7568 ] } }, -{ "type": "Feature", "properties": { "id": 551887, "name": "Northern Blvd/Junction Blvd", "direction": "W", "lat": 40.756874, "lon": -73.874176, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.874176, 40.756874 ] } }, -{ "type": "Feature", "properties": { "id": 551888, "name": "Northern Blvd/97 St", "direction": "E", "lat": 40.75696, "lon": -73.87113, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.87113, 40.75696 ] } }, -{ "type": "Feature", "properties": { "id": 551890, "name": "Northern Blvd/101 St", "direction": "E", "lat": 40.757362, "lon": -73.86729, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.86729, 40.757362 ] } }, -{ "type": "Feature", "properties": { "id": 551892, "name": "Northern Blvd/105 St", "direction": "E", "lat": 40.757637, "lon": -73.863495, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.863495, 40.757637 ] } }, -{ "type": "Feature", "properties": { "id": 551893, "name": "Northern Blvd/108 St", "direction": "E", "lat": 40.757774, "lon": -73.86051, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.86051, 40.757774 ] } }, -{ "type": "Feature", "properties": { "id": 551894, "name": "Northern Blvd/108 St", "direction": "W", "lat": 40.757942, "lon": -73.861435, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.861435, 40.757942 ] } }, -{ "type": "Feature", "properties": { "id": 551897, "name": "Northern Blvd/114 St", "direction": "E", "lat": 40.75818, "lon": -73.85581, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.85581, 40.75818 ] } }, -{ "type": "Feature", "properties": { "id": 551898, "name": "Northern Blvd/114 St", "direction": "W", "lat": 40.75842, "lon": -73.85595, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.85595, 40.75842 ] } }, -{ "type": "Feature", "properties": { "id": 551901, "name": "Northern Blvd/127 Pl", "direction": "E", "lat": 40.761936, "lon": -73.84295, "routes": "Q19, Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.84295, 40.761936 ] } }, -{ "type": "Feature", "properties": { "id": 551903, "name": "Main St/39 Av", "direction": "NW", "lat": 40.760113, "lon": -73.830284, "routes": "Q50, Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.830284, 40.760113 ] } }, -{ "type": "Feature", "properties": { "id": 551907, "name": "Northern Blvd/102 St", "direction": "W", "lat": 40.757664, "lon": -73.866776, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.866776, 40.757664 ] } }, -{ "type": "Feature", "properties": { "id": 551909, "name": "Northern Blvd/98 St", "direction": "W", "lat": 40.757256, "lon": -73.870636, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.870636, 40.757256 ] } }, -{ "type": "Feature", "properties": { "id": 551911, "name": "Northern Blvd/92 St", "direction": "W", "lat": 40.756657, "lon": -73.8763, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.8763, 40.756657 ] } }, -{ "type": "Feature", "properties": { "id": 551912, "name": "Northern Blvd/90 St", "direction": "W", "lat": 40.756477, "lon": -73.878136, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.878136, 40.756477 ] } }, -{ "type": "Feature", "properties": { "id": 551914, "name": "Northern Blvd/86 St", "direction": "W", "lat": 40.756077, "lon": -73.881905, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.881905, 40.756077 ] } }, -{ "type": "Feature", "properties": { "id": 551916, "name": "Northern Blvd/70 St", "direction": "W", "lat": 40.75451, "lon": -73.89674, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.89674, 40.75451 ] } }, -{ "type": "Feature", "properties": { "id": 551919, "name": "Northern Blvd/Newtown Rd", "direction": "W", "lat": 40.75322, "lon": -73.91125, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.91125, 40.75322 ] } }, -{ "type": "Feature", "properties": { "id": 551920, "name": "Northern Blvd/49 St", "direction": "W", "lat": 40.753662, "lon": -73.913895, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.913895, 40.753662 ] } }, -{ "type": "Feature", "properties": { "id": 551922, "name": "35 Av/24 St", "direction": "NW", "lat": 40.760353, "lon": -73.933, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.933, 40.760353 ] } }, -{ "type": "Feature", "properties": { "id": 551923, "name": "21 St/44 Dr", "direction": "S", "lat": 40.74801, "lon": -73.94756, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94756, 40.74801 ] } }, -{ "type": "Feature", "properties": { "id": 551926, "name": "21 St/Jackson Av", "direction": "S", "lat": 40.744778, "lon": -73.94854, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.94854, 40.744778 ] } }, -{ "type": "Feature", "properties": { "id": 551927, "name": "21 St/Jackson Av", "direction": "N", "lat": 40.744522, "lon": -73.94846, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94846, 40.744522 ] } }, -{ "type": "Feature", "properties": { "id": 551928, "name": "49 Av/21 St", "direction": "E", "lat": 40.74237, "lon": -73.94875, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94875, 40.74237 ] } }, -{ "type": "Feature", "properties": { "id": 551930, "name": "49 Av/25 St", "direction": "E", "lat": 40.74159, "lon": -73.944786, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.944786, 40.74159 ] } }, -{ "type": "Feature", "properties": { "id": 551931, "name": "49 Av/25 St", "direction": "W", "lat": 40.74177, "lon": -73.944374, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.944374, 40.74177 ] } }, -{ "type": "Feature", "properties": { "id": 551932, "name": "27 St/49 Av", "direction": "S", "lat": 40.741062, "lon": -73.94247, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94247, 40.741062 ] } }, -{ "type": "Feature", "properties": { "id": 551933, "name": "27 St/49 Av", "direction": "N", "lat": 40.741047, "lon": -73.9422, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9422, 40.741047 ] } }, -{ "type": "Feature", "properties": { "id": 551934, "name": "27 St/Borden Av", "direction": "S", "lat": 40.739246, "lon": -73.9431, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9431, 40.739246 ] } }, -{ "type": "Feature", "properties": { "id": 551935, "name": "27 St/Borden Av", "direction": "N", "lat": 40.739254, "lon": -73.94279, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94279, 40.739254 ] } }, -{ "type": "Feature", "properties": { "id": 551936, "name": "Borden Av/Review Av", "direction": "E", "lat": 40.7386, "lon": -73.94075, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94075, 40.7386 ] } }, -{ "type": "Feature", "properties": { "id": 551937, "name": "Borden Av/Review Av", "direction": "W", "lat": 40.738808, "lon": -73.94103, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94103, 40.738808 ] } }, -{ "type": "Feature", "properties": { "id": 551938, "name": "Borden Av/Van Dam St", "direction": "E", "lat": 40.737396, "lon": -73.935, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.935, 40.737396 ] } }, -{ "type": "Feature", "properties": { "id": 551939, "name": "Borden Av/Van Dam St", "direction": "W", "lat": 40.737988, "lon": -73.93523, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.93523, 40.737988 ] } }, -{ "type": "Feature", "properties": { "id": 551940, "name": "Borden Av/Greenpoint Av", "direction": "E", "lat": 40.736725, "lon": -73.931496, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.931496, 40.736725 ] } }, -{ "type": "Feature", "properties": { "id": 551944, "name": "55 Av/48 St", "direction": "E", "lat": 40.728725, "lon": -73.91938, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.91938, 40.728725 ] } }, -{ "type": "Feature", "properties": { "id": 551945, "name": "55 Av/50 St", "direction": "E", "lat": 40.728416, "lon": -73.9178, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9178, 40.728416 ] } }, -{ "type": "Feature", "properties": { "id": 551946, "name": "55 Av/50 St", "direction": "W", "lat": 40.728607, "lon": -73.91774, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.91774, 40.728607 ] } }, -{ "type": "Feature", "properties": { "id": 551947, "name": "55 Av/58 St", "direction": "E", "lat": 40.72753, "lon": -73.91233, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.91233, 40.72753 ] } }, -{ "type": "Feature", "properties": { "id": 551949, "name": "Maurice Av/Queens Midtown Expwy", "direction": "NE", "lat": 40.727814, "lon": -73.9065, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9065, 40.727814 ] } }, -{ "type": "Feature", "properties": { "id": 551950, "name": "53 Dr/63 St", "direction": "SE", "lat": 40.729347, "lon": -73.9028, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9028, 40.729347 ] } }, -{ "type": "Feature", "properties": { "id": 551951, "name": "Queens Midtown Expwy/Hamilton Pl", "direction": "E", "lat": 40.725323, "lon": -73.899185, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.899185, 40.725323 ] } }, -{ "type": "Feature", "properties": { "id": 551952, "name": "Queens Midtown Expwy/Grand Av", "direction": "E", "lat": 40.72507, "lon": -73.89616, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89616, 40.72507 ] } }, -{ "type": "Feature", "properties": { "id": 551953, "name": "69 St/58 Av", "direction": "S", "lat": 40.724358, "lon": -73.89457, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89457, 40.724358 ] } }, -{ "type": "Feature", "properties": { "id": 551955, "name": "69 St/Caldwell Av", "direction": "SE", "lat": 40.723106, "lon": -73.89414, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89414, 40.723106 ] } }, -{ "type": "Feature", "properties": { "id": 551956, "name": "69 St/Caldwell Av", "direction": "N", "lat": 40.723473, "lon": -73.89403, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89403, 40.723473 ] } }, -{ "type": "Feature", "properties": { "id": 551957, "name": "69 St/59 Dr", "direction": "SE", "lat": 40.72191, "lon": -73.89325, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89325, 40.72191 ] } }, -{ "type": "Feature", "properties": { "id": 551958, "name": "69 St/59 Dr", "direction": "NW", "lat": 40.72221, "lon": -73.89319, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89319, 40.72221 ] } }, -{ "type": "Feature", "properties": { "id": 551959, "name": "69 St/60 Rd", "direction": "SE", "lat": 40.720695, "lon": -73.8923, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.8923, 40.720695 ] } }, -{ "type": "Feature", "properties": { "id": 551960, "name": "69 St/60 Rd", "direction": "NW", "lat": 40.721043, "lon": -73.892204, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.892204, 40.721043 ] } }, -{ "type": "Feature", "properties": { "id": 551961, "name": "69 St/Eliot Av", "direction": "SE", "lat": 40.719334, "lon": -73.89118, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89118, 40.719334 ] } }, -{ "type": "Feature", "properties": { "id": 551962, "name": "69 St/Eliot Av", "direction": "NW", "lat": 40.719666, "lon": -73.89117, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89117, 40.719666 ] } }, -{ "type": "Feature", "properties": { "id": 551963, "name": "69 St/61 Dr", "direction": "SE", "lat": 40.718056, "lon": -73.89014, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89014, 40.718056 ] } }, -{ "type": "Feature", "properties": { "id": 551964, "name": "69 St/62 Rd", "direction": "SE", "lat": 40.71693, "lon": -73.889015, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.889015, 40.71693 ] } }, -{ "type": "Feature", "properties": { "id": 551965, "name": "69 St/Juniper Valley Rd", "direction": "S", "lat": 40.714645, "lon": -73.88726, "routes": "Q67, Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.88726, 40.714645 ] } }, -{ "type": "Feature", "properties": { "id": 551969, "name": "69 St/62 Dr", "direction": "NW", "lat": 40.71665, "lon": -73.888374, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.888374, 40.71665 ] } }, -{ "type": "Feature", "properties": { "id": 551970, "name": "69 St/62 Av", "direction": "NW", "lat": 40.71779, "lon": -73.8895, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.8895, 40.71779 ] } }, -{ "type": "Feature", "properties": { "id": 551973, "name": "53 Dr/64 St", "direction": "W", "lat": 40.728764, "lon": -73.90106, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.90106, 40.728764 ] } }, -{ "type": "Feature", "properties": { "id": 551974, "name": "53 Dr/62 St", "direction": "NW", "lat": 40.729767, "lon": -73.90324, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.90324, 40.729767 ] } }, -{ "type": "Feature", "properties": { "id": 551975, "name": "Maurice Av/54 Av", "direction": "SW", "lat": 40.728752, "lon": -73.90567, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.90567, 40.728752 ] } }, -{ "type": "Feature", "properties": { "id": 551976, "name": "Maurice Av/Borden Av", "direction": "SW", "lat": 40.728016, "lon": -73.90673, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.90673, 40.728016 ] } }, -{ "type": "Feature", "properties": { "id": 551977, "name": "48 St/55 Av", "direction": "N", "lat": 40.728985, "lon": -73.91927, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.91927, 40.728985 ] } }, -{ "type": "Feature", "properties": { "id": 551978, "name": "48 St/54 Av", "direction": "NW", "lat": 40.73079, "lon": -73.91903, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.91903, 40.73079 ] } }, -{ "type": "Feature", "properties": { "id": 551980, "name": "Borden Av/43 St", "direction": "W", "lat": 40.735794, "lon": -73.92326, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.92326, 40.735794 ] } }, -{ "type": "Feature", "properties": { "id": 551981, "name": "Borden Av/41 St", "direction": "W", "lat": 40.736237, "lon": -73.9251, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9251, 40.736237 ] } }, -{ "type": "Feature", "properties": { "id": 551982, "name": "Borden Av/39 Pl", "direction": "W", "lat": 40.736603, "lon": -73.92686, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.92686, 40.736603 ] } }, -{ "type": "Feature", "properties": { "id": 551983, "name": "Borden Av/38 St", "direction": "W", "lat": 40.73681, "lon": -73.9287, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9287, 40.73681 ] } }, -{ "type": "Feature", "properties": { "id": 551984, "name": "Borden Av/31 St", "direction": "W", "lat": 40.738224, "lon": -73.937, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.937, 40.738224 ] } }, -{ "type": "Feature", "properties": { "id": 551986, "name": "21 St/46 Av", "direction": "N", "lat": 40.74612, "lon": -73.94786, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94786, 40.74612 ] } }, -{ "type": "Feature", "properties": { "id": 551987, "name": "Junction Blvd/Queens Blvd", "direction": "NW", "lat": 40.730827, "lon": -73.86271, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86271, 40.730827 ] } }, -{ "type": "Feature", "properties": { "id": 551989, "name": "Junction Blvd/Horace Harding Expwy", "direction": "NW", "lat": 40.7345, "lon": -73.86462, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86462, 40.7345 ] } }, -{ "type": "Feature", "properties": { "id": 551990, "name": "Junction Blvd/57 Av", "direction": "NW", "lat": 40.736835, "lon": -73.86579, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86579, 40.736835 ] } }, -{ "type": "Feature", "properties": { "id": 551991, "name": "Junction Blvd/57 Av", "direction": "SE", "lat": 40.736515, "lon": -73.86585, "routes": "QM11, QM10, QM40, Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86585, 40.736515 ] } }, -{ "type": "Feature", "properties": { "id": 551992, "name": "Junction Blvd/55 Av", "direction": "N", "lat": 40.738434, "lon": -73.866425, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.866425, 40.738434 ] } }, -{ "type": "Feature", "properties": { "id": 551993, "name": "Junction Blvd/55 Av", "direction": "S", "lat": 40.73809, "lon": -73.86657, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86657, 40.73809 ] } }, -{ "type": "Feature", "properties": { "id": 551994, "name": "Junction Blvd/Corona Av", "direction": "N", "lat": 40.74266, "lon": -73.86741, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86741, 40.74266 ] } }, -{ "type": "Feature", "properties": { "id": 551995, "name": "Junction Blvd/Corona Av", "direction": "S", "lat": 40.74182, "lon": -73.86763, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86763, 40.74182 ] } }, -{ "type": "Feature", "properties": { "id": 551996, "name": "Junction Blvd/46 Av", "direction": "N", "lat": 40.7442, "lon": -73.86756, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86756, 40.7442 ] } }, -{ "type": "Feature", "properties": { "id": 551997, "name": "Junction Blvd/43 Av", "direction": "N", "lat": 40.745827, "lon": -73.86798, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86798, 40.745827 ] } }, -{ "type": "Feature", "properties": { "id": 551998, "name": "Junction Blvd/43 Av", "direction": "S", "lat": 40.745438, "lon": -73.86813, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86813, 40.745438 ] } }, -{ "type": "Feature", "properties": { "id": 551999, "name": "Junction Blvd/41 Av", "direction": "N", "lat": 40.747753, "lon": -73.868416, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.868416, 40.747753 ] } }, -{ "type": "Feature", "properties": { "id": 552000, "name": "Junction Blvd/41 Av", "direction": "S", "lat": 40.747414, "lon": -73.86863, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86863, 40.747414 ] } }, -{ "type": "Feature", "properties": { "id": 552001, "name": "Junction Blvd/Roosevelt Av", "direction": "NW", "lat": 40.749565, "lon": -73.869576, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.869576, 40.749565 ] } }, -{ "type": "Feature", "properties": { "id": 552002, "name": "Junction Blvd/Roosevelt Av", "direction": "SE", "lat": 40.74887, "lon": -73.86931, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86931, 40.74887 ] } }, -{ "type": "Feature", "properties": { "id": 552003, "name": "Junction Blvd/37 Av", "direction": "NW", "lat": 40.751797, "lon": -73.87085, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87085, 40.751797 ] } }, -{ "type": "Feature", "properties": { "id": 552004, "name": "Junction Blvd/37 Av", "direction": "SE", "lat": 40.751312, "lon": -73.87084, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87084, 40.751312 ] } }, -{ "type": "Feature", "properties": { "id": 552005, "name": "Junction Blvd/35 Av", "direction": "NW", "lat": 40.75355, "lon": -73.87179, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87179, 40.75355 ] } }, -{ "type": "Feature", "properties": { "id": 552006, "name": "Junction Blvd/35 Av", "direction": "SE", "lat": 40.753155, "lon": -73.8718, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.8718, 40.753155 ] } }, -{ "type": "Feature", "properties": { "id": 552007, "name": "Junction Blvd/34 Av", "direction": "NW", "lat": 40.755272, "lon": -73.872696, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.872696, 40.755272 ] } }, -{ "type": "Feature", "properties": { "id": 552009, "name": "Junction Blvd/Northern Blvd", "direction": "NW", "lat": 40.75716, "lon": -73.873764, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.873764, 40.75716 ] } }, -{ "type": "Feature", "properties": { "id": 552010, "name": "94 St/32 Av", "direction": "N", "lat": 40.758785, "lon": -73.87449, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87449, 40.758785 ] } }, -{ "type": "Feature", "properties": { "id": 552011, "name": "94 St/31 Av", "direction": "N", "lat": 40.76058, "lon": -73.87473, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87473, 40.76058 ] } }, -{ "type": "Feature", "properties": { "id": 552012, "name": "94 St/30 Av", "direction": "N", "lat": 40.761436, "lon": -73.87488, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87488, 40.761436 ] } }, -{ "type": "Feature", "properties": { "id": 552013, "name": "94 St/Astoria Blvd", "direction": "N", "lat": 40.76327, "lon": -73.87526, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87526, 40.76327 ] } }, -{ "type": "Feature", "properties": { "id": 552014, "name": "94 St/25 Av", "direction": "N", "lat": 40.764393, "lon": -73.87544, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87544, 40.764393 ] } }, -{ "type": "Feature", "properties": { "id": 552015, "name": "94 St/24 Av", "direction": "N", "lat": 40.766205, "lon": -73.87579, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87579, 40.766205 ] } }, -{ "type": "Feature", "properties": { "id": 552017, "name": "95 St/Ditmars Blvd", "direction": "N", "lat": 40.7703, "lon": -73.875496, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.875496, 40.7703 ] } }, -{ "type": "Feature", "properties": { "id": 552018, "name": "94 St/24 Av", "direction": "S", "lat": 40.76595, "lon": -73.87594, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87594, 40.76595 ] } }, -{ "type": "Feature", "properties": { "id": 552019, "name": "94 St/25 Av", "direction": "S", "lat": 40.76412, "lon": -73.875656, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.875656, 40.76412 ] } }, -{ "type": "Feature", "properties": { "id": 552020, "name": "94 St/Astoria Blvd", "direction": "S", "lat": 40.762604, "lon": -73.87529, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87529, 40.762604 ] } }, -{ "type": "Feature", "properties": { "id": 552021, "name": "94 St/30 Av", "direction": "S", "lat": 40.761147, "lon": -73.87511, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87511, 40.761147 ] } }, -{ "type": "Feature", "properties": { "id": 552022, "name": "94 St/31 Av", "direction": "S", "lat": 40.760265, "lon": -73.87491, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87491, 40.760265 ] } }, -{ "type": "Feature", "properties": { "id": 552023, "name": "Junction Blvd/32 Av", "direction": "S", "lat": 40.758266, "lon": -73.87457, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87457, 40.758266 ] } }, -{ "type": "Feature", "properties": { "id": 552024, "name": "Junction Blvd/Northern Blvd", "direction": "SE", "lat": 40.75696, "lon": -73.873825, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.873825, 40.75696 ] } }, -{ "type": "Feature", "properties": { "id": 552025, "name": "Junction Blvd/45 Av", "direction": "S", "lat": 40.744553, "lon": -73.867935, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.867935, 40.744553 ] } }, -{ "type": "Feature", "properties": { "id": 552026, "name": "Junction Blvd/53 Av", "direction": "S", "lat": 40.73945, "lon": -73.86708, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86708, 40.73945 ] } }, -{ "type": "Feature", "properties": { "id": 552027, "name": "97 St/62 Dr", "direction": "SE", "lat": 40.73234, "lon": -73.86168, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86168, 40.73234 ] } }, -{ "type": "Feature", "properties": { "id": 552028, "name": "Jackson Av/Queens Blvd", "direction": "", "lat": 40.74882, "lon": -73.93771, "routes": "Q101, Q96, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93771, 40.74882 ] } }, -{ "type": "Feature", "properties": { "id": 552029, "name": "Northern Blvd/41 Av", "direction": "NE", "lat": 40.749863, "lon": -73.93587, "routes": "Q101, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93587, 40.749863 ] } }, -{ "type": "Feature", "properties": { "id": 552031, "name": "Northern Blvd/39 Av", "direction": "E", "lat": 40.75189, "lon": -73.93163, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.93163, 40.75189 ] } }, -{ "type": "Feature", "properties": { "id": 552032, "name": "Northern Blvd/34 St", "direction": "E", "lat": 40.751896, "lon": -73.92991, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.92991, 40.751896 ] } }, -{ "type": "Feature", "properties": { "id": 552033, "name": "Northern Blvd/34 St", "direction": "W", "lat": 40.752148, "lon": -73.93025, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.93025, 40.752148 ] } }, -{ "type": "Feature", "properties": { "id": 552034, "name": "Northern Blvd/37 St", "direction": "E", "lat": 40.75194, "lon": -73.92662, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.92662, 40.75194 ] } }, -{ "type": "Feature", "properties": { "id": 552035, "name": "Northern Blvd/37 St", "direction": "W", "lat": 40.752224, "lon": -73.92667, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.92667, 40.752224 ] } }, -{ "type": "Feature", "properties": { "id": 552036, "name": "Steinway St/Northern Blvd", "direction": "NE", "lat": 40.75274, "lon": -73.924034, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.924034, 40.75274 ] } }, -{ "type": "Feature", "properties": { "id": 552037, "name": "Steinway St/Northern Blvd", "direction": "SW", "lat": 40.75267, "lon": -73.92434, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.92434, 40.75267 ] } }, -{ "type": "Feature", "properties": { "id": 552040, "name": "Steinway St/35 Av", "direction": "NE", "lat": 40.75503, "lon": -73.922104, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.922104, 40.75503 ] } }, -{ "type": "Feature", "properties": { "id": 552041, "name": "Steinway St/35 Av", "direction": "SW", "lat": 40.75505, "lon": -73.92235, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.92235, 40.75505 ] } }, -{ "type": "Feature", "properties": { "id": 552042, "name": "Steinway St/34 Av", "direction": "NE", "lat": 40.756786, "lon": -73.92066, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.92066, 40.756786 ] } }, -{ "type": "Feature", "properties": { "id": 552043, "name": "Steinway St/34 Av", "direction": "SW", "lat": 40.75659, "lon": -73.92106, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.92106, 40.75659 ] } }, -{ "type": "Feature", "properties": { "id": 552044, "name": "Steinway St/Broadway", "direction": "NE", "lat": 40.75927, "lon": -73.918724, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.918724, 40.75927 ] } }, -{ "type": "Feature", "properties": { "id": 552045, "name": "Steinway St/Broadway", "direction": "SW", "lat": 40.758747, "lon": -73.91931, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91931, 40.758747 ] } }, -{ "type": "Feature", "properties": { "id": 552046, "name": "Steinway St/31 Av", "direction": "NE", "lat": 40.761486, "lon": -73.91687, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91687, 40.761486 ] } }, -{ "type": "Feature", "properties": { "id": 552047, "name": "Steinway St/31 Av", "direction": "SW", "lat": 40.76124, "lon": -73.91732, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91732, 40.76124 ] } }, -{ "type": "Feature", "properties": { "id": 552048, "name": "Steinway St/30 Av", "direction": "NE", "lat": 40.764008, "lon": -73.91477, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91477, 40.764008 ] } }, -{ "type": "Feature", "properties": { "id": 552049, "name": "Steinway St/30 Av", "direction": "SW", "lat": 40.76382, "lon": -73.91521, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91521, 40.76382 ] } }, -{ "type": "Feature", "properties": { "id": 552050, "name": "Steinway St/28 Av", "direction": "NE", "lat": 40.7656, "lon": -73.91349, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91349, 40.7656 ] } }, -{ "type": "Feature", "properties": { "id": 552051, "name": "Steinway St/28 Av", "direction": "SW", "lat": 40.765423, "lon": -73.913895, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.913895, 40.765423 ] } }, -{ "type": "Feature", "properties": { "id": 552052, "name": "Steinway St/25 Av", "direction": "NE", "lat": 40.768097, "lon": -73.91149, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91149, 40.768097 ] } }, -{ "type": "Feature", "properties": { "id": 552053, "name": "Steinway St/25 Av", "direction": "SW", "lat": 40.767895, "lon": -73.91187, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.91187, 40.767895 ] } }, -{ "type": "Feature", "properties": { "id": 552054, "name": "Steinway St/23 Rd", "direction": "NE", "lat": 40.769962, "lon": -73.90945, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.90945, 40.769962 ] } }, -{ "type": "Feature", "properties": { "id": 552055, "name": "Steinway St/Astoria Blvd", "direction": "SW", "lat": 40.76956, "lon": -73.910225, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.910225, 40.76956 ] } }, -{ "type": "Feature", "properties": { "id": 552056, "name": "Steinway St/23 Av", "direction": "NE", "lat": 40.77118, "lon": -73.90802, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.90802, 40.77118 ] } }, -{ "type": "Feature", "properties": { "id": 552057, "name": "Steinway St/23 Av", "direction": "SW", "lat": 40.77106, "lon": -73.90845, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.90845, 40.77106 ] } }, -{ "type": "Feature", "properties": { "id": 552058, "name": "Steinway St/Ditmars Blvd", "direction": "NE", "lat": 40.772964, "lon": -73.90582, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.90582, 40.772964 ] } }, -{ "type": "Feature", "properties": { "id": 552059, "name": "Steinway St/Ditmars Blvd", "direction": "SW", "lat": 40.77283, "lon": -73.906296, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.906296, 40.77283 ] } }, -{ "type": "Feature", "properties": { "id": 552060, "name": "Steinway St/21 Av", "direction": "NE", "lat": 40.774757, "lon": -73.90356, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.90356, 40.774757 ] } }, -{ "type": "Feature", "properties": { "id": 552061, "name": "Steinway St/21 Av", "direction": "SW", "lat": 40.774624, "lon": -73.90411, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.90411, 40.774624 ] } }, -{ "type": "Feature", "properties": { "id": 552062, "name": "Steinway St/20 Av", "direction": "NE", "lat": 40.77634, "lon": -73.901665, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.901665, 40.77634 ] } }, -{ "type": "Feature", "properties": { "id": 552063, "name": "20 Av/42 St", "direction": "SE", "lat": 40.775333, "lon": -73.90012, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.90012, 40.775333 ] } }, -{ "type": "Feature", "properties": { "id": 552064, "name": "20 Av/45 St", "direction": "SE", "lat": 40.774307, "lon": -73.898735, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.898735, 40.774307 ] } }, -{ "type": "Feature", "properties": { "id": 552065, "name": "20 Av/45 St", "direction": "NW", "lat": 40.774605, "lon": -73.89886, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.89886, 40.774605 ] } }, -{ "type": "Feature", "properties": { "id": 552066, "name": "20 Av/47 St", "direction": "SE", "lat": 40.773273, "lon": -73.89732, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.89732, 40.773273 ] } }, -{ "type": "Feature", "properties": { "id": 552067, "name": "20 Av/47 St", "direction": "NW", "lat": 40.773586, "lon": -73.89745, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.89745, 40.773586 ] } }, -{ "type": "Feature", "properties": { "id": 552068, "name": "49 St/20 Av", "direction": "NE", "lat": 40.77258, "lon": -73.89566, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.89566, 40.77258 ] } }, -{ "type": "Feature", "properties": { "id": 552069, "name": "Hazen St/19 Av", "direction": "SW", "lat": 40.773575, "lon": -73.89329, "routes": "Q100, Q101, Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.89329, 40.773575 ] } }, -{ "type": "Feature", "properties": { "id": 552070, "name": "20 Av/49 St", "direction": "NW", "lat": 40.772408, "lon": -73.89576, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.89576, 40.772408 ] } }, -{ "type": "Feature", "properties": { "id": 552071, "name": "20 Av/Steinway St", "direction": "NW", "lat": 40.776436, "lon": -73.901474, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.901474, 40.776436 ] } }, -{ "type": "Feature", "properties": { "id": 552072, "name": "Steinway St/20 Rd", "direction": "SW", "lat": 40.775284, "lon": -73.903244, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.903244, 40.775284 ] } }, -{ "type": "Feature", "properties": { "id": 552073, "name": "Northern Blvd/39 Av", "direction": "W", "lat": 40.75214, "lon": -73.932144, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.932144, 40.75214 ] } }, -{ "type": "Feature", "properties": { "id": 552077, "name": "Rikers Island Rdwy/Rikers Island", "direction": "W", "lat": 40.787426, "lon": -73.88446, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.88446, 40.787426 ] } }, -{ "type": "Feature", "properties": { "id": 552078, "name": "Vernon Blvd/36 Av", "direction": "NE", "lat": 40.76186, "lon": -73.94242, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94242, 40.76186 ] } }, -{ "type": "Feature", "properties": { "id": 552080, "name": "Vernon Blvd/37 Av", "direction": "NE", "lat": 40.760822, "lon": -73.94303, "routes": "Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94303, 40.760822 ] } }, -{ "type": "Feature", "properties": { "id": 552081, "name": "Vernon Blvd/38 Av", "direction": "SW", "lat": 40.759293, "lon": -73.94435, "routes": "Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94435, 40.759293 ] } }, -{ "type": "Feature", "properties": { "id": 552082, "name": "Vernon Blvd/38 Av", "direction": "NE", "lat": 40.759415, "lon": -73.943954, "routes": "Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.943954, 40.759415 ] } }, -{ "type": "Feature", "properties": { "id": 552085, "name": "41 Av/Vernon Blvd", "direction": "SE", "lat": 40.756344, "lon": -73.947205, "routes": "Q102, Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.947205, 40.756344 ] } }, -{ "type": "Feature", "properties": { "id": 552086, "name": "41 Av/Vernon Blvd", "direction": "NW", "lat": 40.756474, "lon": -73.94687, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94687, 40.756474 ] } }, -{ "type": "Feature", "properties": { "id": 552087, "name": "41 Av/10 St", "direction": "SE", "lat": 40.75552, "lon": -73.94558, "routes": "Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94558, 40.75552 ] } }, -{ "type": "Feature", "properties": { "id": 552088, "name": "41 Av/10 St", "direction": "NW", "lat": 40.755676, "lon": -73.94545, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94545, 40.755676 ] } }, -{ "type": "Feature", "properties": { "id": 552089, "name": "41 Av/12 St", "direction": "SE", "lat": 40.754833, "lon": -73.9443, "routes": "Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.9443, 40.754833 ] } }, -{ "type": "Feature", "properties": { "id": 552090, "name": "41 Av/12 St", "direction": "NW", "lat": 40.755028, "lon": -73.94418, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94418, 40.755028 ] } }, -{ "type": "Feature", "properties": { "id": 552091, "name": "41 Av/21 St", "direction": "SE", "lat": 40.754044, "lon": -73.942696, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.942696, 40.754044 ] } }, -{ "type": "Feature", "properties": { "id": 552094, "name": "31 St/Northern Blvd", "direction": "SW", "lat": 40.751812, "lon": -73.93381, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93381, 40.751812 ] } }, -{ "type": "Feature", "properties": { "id": 552095, "name": "31 St/39 Av", "direction": "", "lat": 40.752674, "lon": -73.93282, "routes": "Q108, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93282, 40.752674 ] } }, -{ "type": "Feature", "properties": { "id": 552096, "name": "31 St/39 Av", "direction": "SW", "lat": 40.752853, "lon": -73.93289, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93289, 40.752853 ] } }, -{ "type": "Feature", "properties": { "id": 552097, "name": "31 St/38 Av", "direction": "NE", "lat": 40.753666, "lon": -73.93205, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93205, 40.753666 ] } }, -{ "type": "Feature", "properties": { "id": 552098, "name": "31 St/38 Av", "direction": "SW", "lat": 40.754036, "lon": -73.93197, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93197, 40.754036 ] } }, -{ "type": "Feature", "properties": { "id": 552099, "name": "31 St/37 Av", "direction": "NE", "lat": 40.754887, "lon": -73.93106, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93106, 40.754887 ] } }, -{ "type": "Feature", "properties": { "id": 552100, "name": "31 St/37 Av", "direction": "SW", "lat": 40.755215, "lon": -73.93102, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93102, 40.755215 ] } }, -{ "type": "Feature", "properties": { "id": 552101, "name": "31 St/36 Av", "direction": "NE", "lat": 40.756424, "lon": -73.92974, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92974, 40.756424 ] } }, -{ "type": "Feature", "properties": { "id": 552102, "name": "31 St/36 Av", "direction": "SW", "lat": 40.756836, "lon": -73.92972, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92972, 40.756836 ] } }, -{ "type": "Feature", "properties": { "id": 552103, "name": "31 St/35 Av", "direction": "NE", "lat": 40.757942, "lon": -73.92857, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92857, 40.757942 ] } }, -{ "type": "Feature", "properties": { "id": 552104, "name": "31 St/35 Av", "direction": "SW", "lat": 40.75832, "lon": -73.92851, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92851, 40.75832 ] } }, -{ "type": "Feature", "properties": { "id": 552105, "name": "31 St/34 Av", "direction": "NE", "lat": 40.75956, "lon": -73.92725, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92725, 40.75956 ] } }, -{ "type": "Feature", "properties": { "id": 552106, "name": "31 St/34 Av", "direction": "SW", "lat": 40.75994, "lon": -73.927185, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.927185, 40.75994 ] } }, -{ "type": "Feature", "properties": { "id": 552107, "name": "31 St/Broadway", "direction": "NE", "lat": 40.761803, "lon": -73.92543, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92543, 40.761803 ] } }, -{ "type": "Feature", "properties": { "id": 552108, "name": "31 St/Broadway", "direction": "SW", "lat": 40.762196, "lon": -73.925354, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.925354, 40.762196 ] } }, -{ "type": "Feature", "properties": { "id": 552109, "name": "31 St/31 Av", "direction": "NE", "lat": 40.76422, "lon": -73.92351, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92351, 40.76422 ] } }, -{ "type": "Feature", "properties": { "id": 552110, "name": "31 St/31 Av", "direction": "SW", "lat": 40.76454, "lon": -73.92346, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92346, 40.76454 ] } }, -{ "type": "Feature", "properties": { "id": 552111, "name": "31 St/30 Dr", "direction": "NE", "lat": 40.765224, "lon": -73.922745, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.922745, 40.765224 ] } }, -{ "type": "Feature", "properties": { "id": 552115, "name": "Astoria Blvd/27 Av", "direction": "W", "lat": 40.772385, "lon": -73.92644, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.92644, 40.772385 ] } }, -{ "type": "Feature", "properties": { "id": 552116, "name": "Astoria Blvd/14 St", "direction": "W", "lat": 40.772266, "lon": -73.92882, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.92882, 40.772266 ] } }, -{ "type": "Feature", "properties": { "id": 552117, "name": "Astoria Blvd/14 St", "direction": "E", "lat": 40.772137, "lon": -73.92865, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.92865, 40.772137 ] } }, -{ "type": "Feature", "properties": { "id": 552118, "name": "Astoria Blvd/12 St", "direction": "W", "lat": 40.77221, "lon": -73.93026, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.93026, 40.77221 ] } }, -{ "type": "Feature", "properties": { "id": 552119, "name": "Astoria Blvd/8 St", "direction": "W", "lat": 40.772728, "lon": -73.93248, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.93248, 40.772728 ] } }, -{ "type": "Feature", "properties": { "id": 552124, "name": "30 Av/30 St", "direction": "SE", "lat": 40.767178, "lon": -73.922134, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.922134, 40.767178 ] } }, -{ "type": "Feature", "properties": { "id": 552125, "name": "31 St/30 Dr", "direction": "SW", "lat": 40.76542, "lon": -73.92276, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.92276, 40.76542 ] } }, -{ "type": "Feature", "properties": { "id": 552128, "name": "Vernon Blvd/50 Av", "direction": "N", "lat": 40.742622, "lon": -73.95392, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95392, 40.742622 ] } }, -{ "type": "Feature", "properties": { "id": 552130, "name": "Vernon Blvd/49 Av", "direction": "N", "lat": 40.74359, "lon": -73.95366, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95366, 40.74359 ] } }, -{ "type": "Feature", "properties": { "id": 552131, "name": "Vernon Blvd/49 Av", "direction": "S", "lat": 40.743275, "lon": -73.95404, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95404, 40.743275 ] } }, -{ "type": "Feature", "properties": { "id": 552132, "name": "Vernon Blvd/47 Rd", "direction": "N", "lat": 40.744923, "lon": -73.95326, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95326, 40.744923 ] } }, -{ "type": "Feature", "properties": { "id": 552134, "name": "Vernon Blvd/46 Av", "direction": "N", "lat": 40.74705, "lon": -73.952545, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.952545, 40.74705 ] } }, -{ "type": "Feature", "properties": { "id": 552135, "name": "Vernon Blvd/44 Dr", "direction": "N", "lat": 40.749214, "lon": -73.952126, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.952126, 40.749214 ] } }, -{ "type": "Feature", "properties": { "id": 552136, "name": "Vernon Blvd/44 Dr", "direction": "S", "lat": 40.74891, "lon": -73.95233, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95233, 40.74891 ] } }, -{ "type": "Feature", "properties": { "id": 552137, "name": "Vernon Blvd/44 Av", "direction": "N", "lat": 40.750828, "lon": -73.95211, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95211, 40.750828 ] } }, -{ "type": "Feature", "properties": { "id": 552139, "name": "Vernon Blvd/43 Rd", "direction": "NE", "lat": 40.75227, "lon": -73.950935, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.950935, 40.75227 ] } }, -{ "type": "Feature", "properties": { "id": 552140, "name": "Vernon Blvd/43 Rd", "direction": "SW", "lat": 40.752563, "lon": -73.95105, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95105, 40.752563 ] } }, -{ "type": "Feature", "properties": { "id": 552143, "name": "40 Av/12 St", "direction": "NW", "lat": 40.756104, "lon": -73.94258, "routes": "Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94258, 40.756104 ] } }, -{ "type": "Feature", "properties": { "id": 552144, "name": "40 Av/12 St", "direction": "SE", "lat": 40.756092, "lon": -73.943054, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.943054, 40.756092 ] } }, -{ "type": "Feature", "properties": { "id": 552146, "name": "40 Av/10 St", "direction": "SE", "lat": 40.75695, "lon": -73.944595, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.944595, 40.75695 ] } }, -{ "type": "Feature", "properties": { "id": 552147, "name": "40 Av/Vernon Blvd", "direction": "NW", "lat": 40.75782, "lon": -73.94561, "routes": "Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.94561, 40.75782 ] } }, -{ "type": "Feature", "properties": { "id": 552148, "name": "40 Av/Vernon Blvd", "direction": "SE", "lat": 40.757664, "lon": -73.94573, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94573, 40.757664 ] } }, -{ "type": "Feature", "properties": { "id": 552149, "name": "Vernon Blvd/35 Av", "direction": "NE", "lat": 40.763863, "lon": -73.94119, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94119, 40.763863 ] } }, -{ "type": "Feature", "properties": { "id": 552150, "name": "Vernon Blvd/35 Av", "direction": "SW", "lat": 40.76361, "lon": -73.941605, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.941605, 40.76361 ] } }, -{ "type": "Feature", "properties": { "id": 552151, "name": "Vernon Blvd/34 Av", "direction": "NE", "lat": 40.765663, "lon": -73.94002, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94002, 40.765663 ] } }, -{ "type": "Feature", "properties": { "id": 552153, "name": "Vernon Blvd/33 Rd", "direction": "E", "lat": 40.76689, "lon": -73.93822, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.93822, 40.76689 ] } }, -{ "type": "Feature", "properties": { "id": 552154, "name": "Vernon Blvd/33 Rd", "direction": "W", "lat": 40.766846, "lon": -73.938965, "routes": "Q103, Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.938965, 40.766846 ] } }, -{ "type": "Feature", "properties": { "id": 552155, "name": "Vernon Blvd/Broadway", "direction": "E", "lat": 40.767555, "lon": -73.93622, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.93622, 40.767555 ] } }, -{ "type": "Feature", "properties": { "id": 552156, "name": "Vernon Blvd/Broadway", "direction": "W", "lat": 40.767727, "lon": -73.9365, "routes": "Q104, Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.9365, 40.767727 ] } }, -{ "type": "Feature", "properties": { "id": 552157, "name": "Vernon Blvd/31 Av", "direction": "NE", "lat": 40.76964, "lon": -73.93491, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.93491, 40.76964 ] } }, -{ "type": "Feature", "properties": { "id": 552158, "name": "Vernon Blvd/31 Av", "direction": "SW", "lat": 40.769485, "lon": -73.93552, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.93552, 40.769485 ] } }, -{ "type": "Feature", "properties": { "id": 552159, "name": "Vernon Blvd/30 Rd", "direction": "N", "lat": 40.771164, "lon": -73.934074, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.934074, 40.771164 ] } }, -{ "type": "Feature", "properties": { "id": 552160, "name": "Vernon Blvd/30 Rd", "direction": "S", "lat": 40.771515, "lon": -73.93419, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.93419, 40.771515 ] } }, -{ "type": "Feature", "properties": { "id": 552161, "name": "Vernon Blvd/46 Rd", "direction": "S", "lat": 40.74613, "lon": -73.953094, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.953094, 40.74613 ] } }, -{ "type": "Feature", "properties": { "id": 552162, "name": "Vernon Blvd/Borden Av", "direction": "S", "lat": 40.741436, "lon": -73.95464, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95464, 40.741436 ] } }, -{ "type": "Feature", "properties": { "id": 552163, "name": "11 St/34 Av", "direction": "NE", "lat": 40.764854, "lon": -73.93757, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93757, 40.764854 ] } }, -{ "type": "Feature", "properties": { "id": 552165, "name": "Broadway/11 St", "direction": "SE", "lat": 40.767418, "lon": -73.93579, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93579, 40.767418 ] } }, -{ "type": "Feature", "properties": { "id": 552166, "name": "Broadway/14 St", "direction": "SE", "lat": 40.766193, "lon": -73.93363, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93363, 40.766193 ] } }, -{ "type": "Feature", "properties": { "id": 552167, "name": "Broadway/14 St", "direction": "NW", "lat": 40.76649, "lon": -73.93374, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93374, 40.76649 ] } }, -{ "type": "Feature", "properties": { "id": 552169, "name": "Broadway/21 St", "direction": "SE", "lat": 40.765087, "lon": -73.931595, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.931595, 40.765087 ] } }, -{ "type": "Feature", "properties": { "id": 552170, "name": "Broadway/21 St", "direction": "NW", "lat": 40.765404, "lon": -73.93182, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93182, 40.765404 ] } }, -{ "type": "Feature", "properties": { "id": 552171, "name": "Broadway/23 St", "direction": "SE", "lat": 40.764347, "lon": -73.93023, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93023, 40.764347 ] } }, -{ "type": "Feature", "properties": { "id": 552172, "name": "Broadway/23 St", "direction": "NW", "lat": 40.76464, "lon": -73.93048, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93048, 40.76464 ] } }, -{ "type": "Feature", "properties": { "id": 552173, "name": "Broadway/Crescent St", "direction": "SE", "lat": 40.763454, "lon": -73.928696, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.928696, 40.763454 ] } }, -{ "type": "Feature", "properties": { "id": 552174, "name": "Broadway/Crescent St", "direction": "NW", "lat": 40.763584, "lon": -73.92852, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.92852, 40.763584 ] } }, -{ "type": "Feature", "properties": { "id": 552175, "name": "Broadway/29 St", "direction": "SE", "lat": 40.76274, "lon": -73.92727, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.92727, 40.76274 ] } }, -{ "type": "Feature", "properties": { "id": 552176, "name": "Broadway/29 St", "direction": "NW", "lat": 40.76289, "lon": -73.927055, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.927055, 40.76289 ] } }, -{ "type": "Feature", "properties": { "id": 552177, "name": "Broadway/31 St", "direction": "SE", "lat": 40.76183, "lon": -73.92521, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.92521, 40.76183 ] } }, -{ "type": "Feature", "properties": { "id": 552178, "name": "Broadway/31 St", "direction": "NW", "lat": 40.76219, "lon": -73.925545, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.925545, 40.76219 ] } }, -{ "type": "Feature", "properties": { "id": 552179, "name": "Broadway/33 St", "direction": "SE", "lat": 40.761105, "lon": -73.923645, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.923645, 40.761105 ] } }, -{ "type": "Feature", "properties": { "id": 552180, "name": "Broadway/33 St", "direction": "NW", "lat": 40.76142, "lon": -73.923935, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.923935, 40.76142 ] } }, -{ "type": "Feature", "properties": { "id": 552181, "name": "Broadway/35 St", "direction": "SE", "lat": 40.76036, "lon": -73.92205, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.92205, 40.76036 ] } }, -{ "type": "Feature", "properties": { "id": 552182, "name": "Broadway/35 St", "direction": "NW", "lat": 40.76067, "lon": -73.922295, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.922295, 40.76067 ] } }, -{ "type": "Feature", "properties": { "id": 552183, "name": "Broadway/37 St", "direction": "SE", "lat": 40.75961, "lon": -73.92048, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.92048, 40.75961 ] } }, -{ "type": "Feature", "properties": { "id": 552184, "name": "Broadway/37 St", "direction": "NW", "lat": 40.759888, "lon": -73.920685, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.920685, 40.759888 ] } }, -{ "type": "Feature", "properties": { "id": 552185, "name": "Broadway/Steinway St", "direction": "SE", "lat": 40.75881, "lon": -73.91873, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91873, 40.75881 ] } }, -{ "type": "Feature", "properties": { "id": 552186, "name": "Broadway/Steinway St", "direction": "NW", "lat": 40.759212, "lon": -73.91929, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91929, 40.759212 ] } }, -{ "type": "Feature", "properties": { "id": 552187, "name": "Broadway/42 St", "direction": "SE", "lat": 40.75812, "lon": -73.91728, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91728, 40.75812 ] } }, -{ "type": "Feature", "properties": { "id": 552188, "name": "Broadway/42 St", "direction": "NW", "lat": 40.7584, "lon": -73.9175, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.9175, 40.7584 ] } }, -{ "type": "Feature", "properties": { "id": 552189, "name": "Broadway/44 St", "direction": "SE", "lat": 40.75735, "lon": -73.91567, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91567, 40.75735 ] } }, -{ "type": "Feature", "properties": { "id": 552190, "name": "Broadway/44 St", "direction": "NW", "lat": 40.757656, "lon": -73.91588, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91588, 40.757656 ] } }, -{ "type": "Feature", "properties": { "id": 552191, "name": "Broadway/46 St", "direction": "SE", "lat": 40.75658, "lon": -73.9141, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.9141, 40.75658 ] } }, -{ "type": "Feature", "properties": { "id": 552192, "name": "Broadway/46 St", "direction": "NW", "lat": 40.756897, "lon": -73.91428, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91428, 40.756897 ] } }, -{ "type": "Feature", "properties": { "id": 552195, "name": "48 St/Northern Blvd", "direction": "N", "lat": 40.75352, "lon": -73.91462, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91462, 40.75352 ] } }, -{ "type": "Feature", "properties": { "id": 552197, "name": "48 St/Barnett Av", "direction": "N", "lat": 40.751984, "lon": -73.91496, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91496, 40.751984 ] } }, -{ "type": "Feature", "properties": { "id": 552198, "name": "48 St/39 Av", "direction": "S", "lat": 40.74934, "lon": -73.91571, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91571, 40.74934 ] } }, -{ "type": "Feature", "properties": { "id": 552199, "name": "48 St/39 Av", "direction": "N", "lat": 40.74933, "lon": -73.91547, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91547, 40.74933 ] } }, -{ "type": "Feature", "properties": { "id": 552200, "name": "48 St/Skillman Av", "direction": "S", "lat": 40.746204, "lon": -73.916336, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.916336, 40.746204 ] } }, -{ "type": "Feature", "properties": { "id": 552201, "name": "48 St/Skillman Av", "direction": "N", "lat": 40.746548, "lon": -73.91605, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91605, 40.746548 ] } }, -{ "type": "Feature", "properties": { "id": 552203, "name": "48 St/43 Av", "direction": "N", "lat": 40.74487, "lon": -73.91636, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91636, 40.74487 ] } }, -{ "type": "Feature", "properties": { "id": 552204, "name": "48 St/Queens Blvd", "direction": "S", "lat": 40.74332, "lon": -73.91691, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91691, 40.74332 ] } }, -{ "type": "Feature", "properties": { "id": 552205, "name": "47 St/Queens Blvd", "direction": "N", "lat": 40.743385, "lon": -73.91764, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91764, 40.743385 ] } }, -{ "type": "Feature", "properties": { "id": 552207, "name": "34 Av/Vernon Blvd", "direction": "E", "lat": 40.765427, "lon": -73.94012, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.94012, 40.765427 ] } }, -{ "type": "Feature", "properties": { "id": 552208, "name": "88 Av /Parsons Blvd", "direction": "E", "lat": 40.706715, "lon": -73.80234, "routes": "Q112, Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.80234, 40.706715 ] } }, -{ "type": "Feature", "properties": { "id": 552209, "name": "Jamaica Av /165 St", "direction": "W", "lat": 40.705486, "lon": -73.79516, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.79516, 40.705486 ] } }, -{ "type": "Feature", "properties": { "id": 552210, "name": "Jamaica Av /172 St", "direction": "E", "lat": 40.707645, "lon": -73.7874, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.7874, 40.707645 ] } }, -{ "type": "Feature", "properties": { "id": 552212, "name": "Jamaica Av /177 St", "direction": "E", "lat": 40.70782, "lon": -73.78357, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.78357, 40.70782 ] } }, -{ "type": "Feature", "properties": { "id": 552213, "name": "Jamaica Av /179 Pl", "direction": "E", "lat": 40.70813, "lon": -73.78147, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.78147, 40.70813 ] } }, -{ "type": "Feature", "properties": { "id": 552214, "name": "Jamaica Av /181 St", "direction": "E", "lat": 40.708534, "lon": -73.77942, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.77942, 40.708534 ] } }, -{ "type": "Feature", "properties": { "id": 552215, "name": "Jamaica Av /181 St", "direction": "W", "lat": 40.708714, "lon": -73.77998, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.77998, 40.708714 ] } }, -{ "type": "Feature", "properties": { "id": 552216, "name": "Jamaica Av /183 St", "direction": "E", "lat": 40.708866, "lon": -73.776764, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.776764, 40.708866 ] } }, -{ "type": "Feature", "properties": { "id": 552217, "name": "Jamaica Av/183 St", "direction": "W", "lat": 40.70906, "lon": -73.777725, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.777725, 40.70906 ] } }, -{ "type": "Feature", "properties": { "id": 552218, "name": "Jamaica Av /184 Pl", "direction": "E", "lat": 40.7094, "lon": -73.77455, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.77455, 40.7094 ] } }, -{ "type": "Feature", "properties": { "id": 552219, "name": "Jamaica Av /184 Pl", "direction": "W", "lat": 40.709476, "lon": -73.775246, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.775246, 40.709476 ] } }, -{ "type": "Feature", "properties": { "id": 552220, "name": "Jamaica Av /186 St", "direction": "E", "lat": 40.70977, "lon": -73.773224, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.773224, 40.70977 ] } }, -{ "type": "Feature", "properties": { "id": 552221, "name": "Jamaica Av /186 St", "direction": "W", "lat": 40.709988, "lon": -73.773476, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.773476, 40.709988 ] } }, -{ "type": "Feature", "properties": { "id": 552222, "name": "179 Pl /Hillside Av", "direction": "NW", "lat": 40.71252, "lon": -73.78332, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.78332, 40.71252 ] } }, -{ "type": "Feature", "properties": { "id": 552223, "name": "179 Pl /Hillside Av", "direction": "NW", "lat": 40.712475, "lon": -73.7833, "routes": "Q110, Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.7833, 40.712475 ] } }, -{ "type": "Feature", "properties": { "id": 552224, "name": "Jamaica Av /188 St", "direction": "NE", "lat": 40.710884, "lon": -73.77031, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.77031, 40.710884 ] } }, -{ "type": "Feature", "properties": { "id": 552225, "name": "Jamaica Av/188 St", "direction": "SW", "lat": 40.710827, "lon": -73.77096, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.77096, 40.710827 ] } }, -{ "type": "Feature", "properties": { "id": 552226, "name": "Jamaica Av /190 St", "direction": "NE", "lat": 40.71184, "lon": -73.76934, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76934, 40.71184 ] } }, -{ "type": "Feature", "properties": { "id": 552227, "name": "Jamaica Av /201 St", "direction": "W", "lat": 40.713642, "lon": -73.75853, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.75853, 40.713642 ] } }, -{ "type": "Feature", "properties": { "id": 552228, "name": "Jamaica Av /193 St", "direction": "E", "lat": 40.713066, "lon": -73.76704, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76704, 40.713066 ] } }, -{ "type": "Feature", "properties": { "id": 552229, "name": "Jamaica Av/193 St", "direction": "W", "lat": 40.71327, "lon": -73.76735, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76735, 40.71327 ] } }, -{ "type": "Feature", "properties": { "id": 552230, "name": "Jamaica Av /195 Pl", "direction": "E", "lat": 40.713192, "lon": -73.76452, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76452, 40.713192 ] } }, -{ "type": "Feature", "properties": { "id": 552231, "name": "Jamaica Av /195 Pl", "direction": "W", "lat": 40.713448, "lon": -73.76521, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76521, 40.713448 ] } }, -{ "type": "Feature", "properties": { "id": 552232, "name": "Jamaica Av /Woodhull Av", "direction": "E", "lat": 40.713284, "lon": -73.76269, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76269, 40.713284 ] } }, -{ "type": "Feature", "properties": { "id": 552234, "name": "Jamaica Av /202 St", "direction": "E", "lat": 40.71338, "lon": -73.75685, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.75685, 40.71338 ] } }, -{ "type": "Feature", "properties": { "id": 552235, "name": "Jamaica Av /204 St", "direction": "E", "lat": 40.71339, "lon": -73.75587, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.75587, 40.71339 ] } }, -{ "type": "Feature", "properties": { "id": 552236, "name": "Jamaica Av /204 St", "direction": "W", "lat": 40.71366, "lon": -73.75645, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.75645, 40.71366 ] } }, -{ "type": "Feature", "properties": { "id": 552237, "name": "Jamaica Av /Francis Lewis Blvd", "direction": "E", "lat": 40.71385, "lon": -73.753654, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.753654, 40.71385 ] } }, -{ "type": "Feature", "properties": { "id": 552238, "name": "Jamaica Av/Francis Lewis Blvd", "direction": "W", "lat": 40.71392, "lon": -73.75448, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.75448, 40.71392 ] } }, -{ "type": "Feature", "properties": { "id": 552239, "name": "Jamaica Av /208 St", "direction": "E", "lat": 40.714317, "lon": -73.75194, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.75194, 40.714317 ] } }, -{ "type": "Feature", "properties": { "id": 552240, "name": "Jamaica Av /208 St", "direction": "W", "lat": 40.714436, "lon": -73.752625, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.752625, 40.714436 ] } }, -{ "type": "Feature", "properties": { "id": 552241, "name": "Jamaica Av /210 St", "direction": "E", "lat": 40.714706, "lon": -73.7505, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.7505, 40.714706 ] } }, -{ "type": "Feature", "properties": { "id": 552242, "name": "Jamaica Av/210 St", "direction": "W", "lat": 40.714977, "lon": -73.750755, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.750755, 40.714977 ] } }, -{ "type": "Feature", "properties": { "id": 552243, "name": "Jamaica Av/Hollis Court Blvd", "direction": "E", "lat": 40.7152, "lon": -73.74862, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.74862, 40.7152 ] } }, -{ "type": "Feature", "properties": { "id": 552244, "name": "Jamaica Av/Hollis Court Blvd", "direction": "W", "lat": 40.71544, "lon": -73.74877, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.74877, 40.71544 ] } }, -{ "type": "Feature", "properties": { "id": 552245, "name": "Jamaica Av /212 St", "direction": "E", "lat": 40.715706, "lon": -73.74628, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.74628, 40.715706 ] } }, -{ "type": "Feature", "properties": { "id": 552248, "name": "Hempstead Av /99 Av", "direction": "E", "lat": 40.71472, "lon": -73.74117, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.74117, 40.71472 ] } }, -{ "type": "Feature", "properties": { "id": 552249, "name": "Hempstead Av/217 Ln", "direction": "E", "lat": 40.714035, "lon": -73.73875, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.73875, 40.714035 ] } }, -{ "type": "Feature", "properties": { "id": 552250, "name": "Hempstead Av /217 Ln", "direction": "W", "lat": 40.714336, "lon": -73.73876, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.73876, 40.714336 ] } }, -{ "type": "Feature", "properties": { "id": 552252, "name": "Hempstead Av /Springfield Blvd", "direction": "W", "lat": 40.71376, "lon": -73.736786, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.736786, 40.71376 ] } }, -{ "type": "Feature", "properties": { "id": 552253, "name": "Jamaica Av /191 St", "direction": "SW", "lat": 40.712494, "lon": -73.76904, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76904, 40.712494 ] } }, -{ "type": "Feature", "properties": { "id": 552255, "name": "Jamaica Av/179 St", "direction": "W", "lat": 40.708183, "lon": -73.78261, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.78261, 40.708183 ] } }, -{ "type": "Feature", "properties": { "id": 552256, "name": "Jamaica Av /176 St", "direction": "W", "lat": 40.708088, "lon": -73.78472, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.78472, 40.708088 ] } }, -{ "type": "Feature", "properties": { "id": 552257, "name": "Jamaica Av/173 St", "direction": "W", "lat": 40.708008, "lon": -73.787, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.787, 40.708008 ] } }, -{ "type": "Feature", "properties": { "id": 552258, "name": "Jamaica Av /171 St", "direction": "W", "lat": 40.70765, "lon": -73.78855, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.78855, 40.70765 ] } }, -{ "type": "Feature", "properties": { "id": 552259, "name": "Peninsula Blvd/Rockaway Tpke", "direction": "E", "lat": 40.628456, "lon": -73.73696, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73696, 40.628456 ] } }, -{ "type": "Feature", "properties": { "id": 552260, "name": "Peninsula Blvd/Rockaway Tpke", "direction": "W", "lat": 40.628548, "lon": -73.73718, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73718, 40.628548 ] } }, -{ "type": "Feature", "properties": { "id": 552261, "name": "Peninsula Blvd/Arlington Rd", "direction": "E", "lat": 40.63005, "lon": -73.732025, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.732025, 40.63005 ] } }, -{ "type": "Feature", "properties": { "id": 552262, "name": "Peninsula Blvd/Arlington Pl", "direction": "W", "lat": 40.629837, "lon": -73.73318, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73318, 40.629837 ] } }, -{ "type": "Feature", "properties": { "id": 552263, "name": "Peninsula Blvd/Cedarhurst Av", "direction": "E", "lat": 40.630623, "lon": -73.73025, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73025, 40.630623 ] } }, -{ "type": "Feature", "properties": { "id": 552264, "name": "Peninsula Blvd/Cedarhurst Av", "direction": "W", "lat": 40.630707, "lon": -73.73047, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73047, 40.630707 ] } }, -{ "type": "Feature", "properties": { "id": 552265, "name": "Peninsula Blvd/Church Av", "direction": "E", "lat": 40.63221, "lon": -73.72524, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.72524, 40.63221 ] } }, -{ "type": "Feature", "properties": { "id": 552266, "name": "Peninsula Blvd/Church Av", "direction": "W", "lat": 40.632206, "lon": -73.72573, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.72573, 40.632206 ] } }, -{ "type": "Feature", "properties": { "id": 552267, "name": "Peninsula Blvd/Howard Av", "direction": "NE", "lat": 40.63395, "lon": -73.7225, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.7225, 40.63395 ] } }, -{ "type": "Feature", "properties": { "id": 552268, "name": "Peninsula Blvd/Howard Av", "direction": "SW", "lat": 40.633797, "lon": -73.72289, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.72289, 40.633797 ] } }, -{ "type": "Feature", "properties": { "id": 552269, "name": "Peninsula Blvd/Longacre Av", "direction": "NE", "lat": 40.635986, "lon": -73.71986, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.71986, 40.635986 ] } }, -{ "type": "Feature", "properties": { "id": 552270, "name": "Peninsula Blvd/Longacre Av", "direction": "SW", "lat": 40.63599, "lon": -73.7201, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.7201, 40.63599 ] } }, -{ "type": "Feature", "properties": { "id": 552271, "name": "Peninsula Blvd/Woodmere Blvd", "direction": "NE", "lat": 40.6379, "lon": -73.71742, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.71742, 40.6379 ] } }, -{ "type": "Feature", "properties": { "id": 552272, "name": "Peninsula Blvd/Woodmere Blvd", "direction": "SW", "lat": 40.63784, "lon": -73.71787, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.71787, 40.63784 ] } }, -{ "type": "Feature", "properties": { "id": 552273, "name": "Peninsula Blvd/Lafayette Dr", "direction": "E", "lat": 40.64128, "lon": -73.710594, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.710594, 40.64128 ] } }, -{ "type": "Feature", "properties": { "id": 552274, "name": "Peninsula Blvd/Lafayette Dr", "direction": "W", "lat": 40.64139, "lon": -73.71096, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.71096, 40.64139 ] } }, -{ "type": "Feature", "properties": { "id": 552275, "name": "Mill Rd /Peninsula Blvd", "direction": "NW", "lat": 40.643993, "lon": -73.70433, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.70433, 40.643993 ] } }, -{ "type": "Feature", "properties": { "id": 552276, "name": "Mill Rd /Peninsula Blvd", "direction": "SE", "lat": 40.643845, "lon": -73.70444, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.70444, 40.643845 ] } }, -{ "type": "Feature", "properties": { "id": 552277, "name": "Brookfield Rd /Fraser Pl", "direction": "W", "lat": 40.650227, "lon": -73.70967, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.70967, 40.650227 ] } }, -{ "type": "Feature", "properties": { "id": 552278, "name": "Rosedale Rd /Hungry Harbor Rd", "direction": "NW", "lat": 40.651215, "lon": -73.71301, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.71301, 40.651215 ] } }, -{ "type": "Feature", "properties": { "id": 552279, "name": "Rosedale Rd /Hungry Harbor Rd", "direction": "SE", "lat": 40.6509, "lon": -73.71277, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.71277, 40.6509 ] } }, -{ "type": "Feature", "properties": { "id": 552280, "name": "Rosedale Rd /Longview Av", "direction": "W", "lat": 40.651848, "lon": -73.717995, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.717995, 40.651848 ] } }, -{ "type": "Feature", "properties": { "id": 552281, "name": "Rosedale Rd /Longview Av", "direction": "E", "lat": 40.651714, "lon": -73.71805, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.71805, 40.651714 ] } }, -{ "type": "Feature", "properties": { "id": 552282, "name": "Rosedale Rd /Park Ln", "direction": "NW", "lat": 40.65263, "lon": -73.72248, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.72248, 40.65263 ] } }, -{ "type": "Feature", "properties": { "id": 552283, "name": "Rosedale Rd /Park Ln", "direction": "E", "lat": 40.652534, "lon": -73.72263, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.72263, 40.652534 ] } }, -{ "type": "Feature", "properties": { "id": 552284, "name": "Francis Lewis Blvd/147 Dr", "direction": "NW", "lat": 40.655773, "lon": -73.72706, "routes": "Q111, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.72706, 40.655773 ] } }, -{ "type": "Feature", "properties": { "id": 552285, "name": "Francis Lewis Blvd/148 Av", "direction": "SE", "lat": 40.65505, "lon": -73.72657, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.72657, 40.65505 ] } }, -{ "type": "Feature", "properties": { "id": 552287, "name": "147 Av/Francis Lewis Blvd", "direction": "W", "lat": 40.65751, "lon": -73.72866, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.72866, 40.65751 ] } }, -{ "type": "Feature", "properties": { "id": 552288, "name": "147 Av/Francis Lewis Blvd", "direction": "E", "lat": 40.65737, "lon": -73.728455, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.728455, 40.65737 ] } }, -{ "type": "Feature", "properties": { "id": 552289, "name": "147 Av /258 St", "direction": "W", "lat": 40.657555, "lon": -73.73089, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73089, 40.657555 ] } }, -{ "type": "Feature", "properties": { "id": 552290, "name": "147 Av /258 St", "direction": "E", "lat": 40.657417, "lon": -73.730446, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.730446, 40.657417 ] } }, -{ "type": "Feature", "properties": { "id": 552291, "name": "147 Av /256 St", "direction": "W", "lat": 40.657623, "lon": -73.7331, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.7331, 40.657623 ] } }, -{ "type": "Feature", "properties": { "id": 552292, "name": "147 Av /256 St", "direction": "E", "lat": 40.657482, "lon": -73.73276, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73276, 40.657482 ] } }, -{ "type": "Feature", "properties": { "id": 552293, "name": "147 Av /253 St", "direction": "W", "lat": 40.657585, "lon": -73.73587, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73587, 40.657585 ] } }, -{ "type": "Feature", "properties": { "id": 552294, "name": "147 Av /253 St", "direction": "E", "lat": 40.65729, "lon": -73.73639, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73639, 40.65729 ] } }, -{ "type": "Feature", "properties": { "id": 552295, "name": "147 Av /249 St", "direction": "W", "lat": 40.65742, "lon": -73.73892, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73892, 40.65742 ] } }, -{ "type": "Feature", "properties": { "id": 552296, "name": "147 Av /249 St", "direction": "E", "lat": 40.657272, "lon": -73.73849, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.73849, 40.657272 ] } }, -{ "type": "Feature", "properties": { "id": 552297, "name": "147 Av /Huxley St", "direction": "W", "lat": 40.657436, "lon": -73.74176, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.74176, 40.657436 ] } }, -{ "type": "Feature", "properties": { "id": 552298, "name": "147 Av /Huxley St", "direction": "E", "lat": 40.657314, "lon": -73.74156, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.74156, 40.657314 ] } }, -{ "type": "Feature", "properties": { "id": 552299, "name": "147 Av /Edgewood Av", "direction": "W", "lat": 40.657368, "lon": -73.743256, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.743256, 40.657368 ] } }, -{ "type": "Feature", "properties": { "id": 552300, "name": "147 Av /Brookville Blvd", "direction": "W", "lat": 40.6575, "lon": -73.74496, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.74496, 40.6575 ] } }, -{ "type": "Feature", "properties": { "id": 552301, "name": "147 Av /Brookville Blvd", "direction": "E", "lat": 40.657364, "lon": -73.74481, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.74481, 40.657364 ] } }, -{ "type": "Feature", "properties": { "id": 552302, "name": "147 Av /232 St", "direction": "W", "lat": 40.65774, "lon": -73.7492, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.7492, 40.65774 ] } }, -{ "type": "Feature", "properties": { "id": 552303, "name": "147 Av /230 Pl", "direction": "W", "lat": 40.657978, "lon": -73.75117, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.75117, 40.657978 ] } }, -{ "type": "Feature", "properties": { "id": 552304, "name": "147 Av /228 St", "direction": "W", "lat": 40.658356, "lon": -73.75413, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.75413, 40.658356 ] } }, -{ "type": "Feature", "properties": { "id": 552305, "name": "147 Av /228 St", "direction": "E", "lat": 40.65814, "lon": -73.753784, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.753784, 40.65814 ] } }, -{ "type": "Feature", "properties": { "id": 552306, "name": "147 Av /225 St", "direction": "W", "lat": 40.658978, "lon": -73.75648, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.75648, 40.658978 ] } }, -{ "type": "Feature", "properties": { "id": 552307, "name": "147 Av /225 St", "direction": "E", "lat": 40.65883, "lon": -73.75643, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.75643, 40.65883 ] } }, -{ "type": "Feature", "properties": { "id": 552308, "name": "147 Av /222 St", "direction": "W", "lat": 40.659412, "lon": -73.759514, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.759514, 40.659412 ] } }, -{ "type": "Feature", "properties": { "id": 552309, "name": "147 Av /184 St", "direction": "W", "lat": 40.65983, "lon": -73.76383, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.76383, 40.65983 ] } }, -{ "type": "Feature", "properties": { "id": 552310, "name": "147 Av /182 St", "direction": "W", "lat": 40.660057, "lon": -73.76549, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.76549, 40.660057 ] } }, -{ "type": "Feature", "properties": { "id": 552311, "name": "147 Av /182 St", "direction": "E", "lat": 40.65991, "lon": -73.76545, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.76545, 40.65991 ] } }, -{ "type": "Feature", "properties": { "id": 552312, "name": "147 Av /Guy R Brewer Blvd", "direction": "W", "lat": 40.660427, "lon": -73.76786, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.76786, 40.660427 ] } }, -{ "type": "Feature", "properties": { "id": 552313, "name": "147 Av /Guy R Brewer Blvd", "direction": "E", "lat": 40.660255, "lon": -73.76771, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.76771, 40.660255 ] } }, -{ "type": "Feature", "properties": { "id": 552314, "name": "Guy R Brewer Blvd/146 Dr", "direction": "N", "lat": 40.66167, "lon": -73.768074, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.768074, 40.66167 ] } }, -{ "type": "Feature", "properties": { "id": 552315, "name": "Guy R Brewer Blvd/Farmers Blvd", "direction": "N", "lat": 40.66397, "lon": -73.76846, "routes": "Q111, Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.76846, 40.66397 ] } }, -{ "type": "Feature", "properties": { "id": 552316, "name": "Guy R Brewer Blvd/145 Rd", "direction": "NW", "lat": 40.66641, "lon": -73.77021, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.77021, 40.66641 ] } }, -{ "type": "Feature", "properties": { "id": 552317, "name": "Guy R Brewer Blvd/145 Av", "direction": "SE", "lat": 40.665787, "lon": -73.76998, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.76998, 40.665787 ] } }, -{ "type": "Feature", "properties": { "id": 552318, "name": "Guy R Brewer Blvd/144 Av", "direction": "NW", "lat": 40.66937, "lon": -73.77249, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.77249, 40.66937 ] } }, -{ "type": "Feature", "properties": { "id": 552319, "name": "Guy R Brewer Blvd/144 Av", "direction": "SE", "lat": 40.668728, "lon": -73.77224, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.77224, 40.668728 ] } }, -{ "type": "Feature", "properties": { "id": 552320, "name": "Guy R Brewer Blvd/140 Av", "direction": "NW", "lat": 40.670902, "lon": -73.77369, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.77369, 40.670902 ] } }, -{ "type": "Feature", "properties": { "id": 552321, "name": "Guy R Brewer Blvd/140 Av", "direction": "SE", "lat": 40.670563, "lon": -73.77365, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.77365, 40.670563 ] } }, -{ "type": "Feature", "properties": { "id": 552322, "name": "Guy R Brewer Blvd/137 Av", "direction": "NW", "lat": 40.67219, "lon": -73.774506, "routes": "QM21, Q111, QM21, Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.774506, 40.67219 ] } }, -{ "type": "Feature", "properties": { "id": 552323, "name": "Guy R Brewer Blvd/137 Av", "direction": "SE", "lat": 40.671623, "lon": -73.77449, "routes": "Q113, Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.77449, 40.671623 ] } }, -{ "type": "Feature", "properties": { "id": 552324, "name": "Guy R Brewer Blvd/134 Av", "direction": "NW", "lat": 40.673634, "lon": -73.77564, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.77564, 40.673634 ] } }, -{ "type": "Feature", "properties": { "id": 552325, "name": "Guy R Brewer Blvd/134 Av", "direction": "SE", "lat": 40.67324, "lon": -73.77574, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.77574, 40.67324 ] } }, -{ "type": "Feature", "properties": { "id": 552326, "name": "Guy R Brewer Blvd/132 Av", "direction": "NW", "lat": 40.67464, "lon": -73.77642, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.77642, 40.67464 ] } }, -{ "type": "Feature", "properties": { "id": 552327, "name": "Guy R Brewer Blvd/132 Av", "direction": "SE", "lat": 40.6744, "lon": -73.77661, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.77661, 40.6744 ] } }, -{ "type": "Feature", "properties": { "id": 552328, "name": "Guy R Brewer Blvd/130 Av", "direction": "NW", "lat": 40.676758, "lon": -73.77801, "routes": "QM21, Q114, QM21, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.77801, 40.676758 ] } }, -{ "type": "Feature", "properties": { "id": 552329, "name": "Guy R Brewer Blvd/130 Av", "direction": "SE", "lat": 40.67644, "lon": -73.77816, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.77816, 40.67644 ] } }, -{ "type": "Feature", "properties": { "id": 552330, "name": "Guy R Brewer Blvd/Baisley Blvd", "direction": "NW", "lat": 40.678566, "lon": -73.77953, "routes": "Q113, Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.77953, 40.678566 ] } }, -{ "type": "Feature", "properties": { "id": 552331, "name": "Guy R Brewer Blvd/Baisley Blvd", "direction": "S", "lat": 40.6782, "lon": -73.779495, "routes": "Q114, Q111, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.779495, 40.6782 ] } }, -{ "type": "Feature", "properties": { "id": 552332, "name": "Guy R Brewer Blvd/120 Av", "direction": "NW", "lat": 40.68113, "lon": -73.78105, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.78105, 40.68113 ] } }, -{ "type": "Feature", "properties": { "id": 552333, "name": "Guy R Brewer Blvd/120 Av", "direction": "SE", "lat": 40.68039, "lon": -73.78084, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.78084, 40.68039 ] } }, -{ "type": "Feature", "properties": { "id": 552334, "name": "Guy R Brewer Blvd/119 Av", "direction": "NW", "lat": 40.682755, "lon": -73.78201, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.78201, 40.682755 ] } }, -{ "type": "Feature", "properties": { "id": 552335, "name": "Guy R Brewer Blvd/119 Av", "direction": "SE", "lat": 40.682274, "lon": -73.78193, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.78193, 40.682274 ] } }, -{ "type": "Feature", "properties": { "id": 552336, "name": "Guy R Brewer Blvd/Foch Blvd", "direction": "NW", "lat": 40.684467, "lon": -73.783005, "routes": "Q113, Q111, QM21, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.783005, 40.684467 ] } }, -{ "type": "Feature", "properties": { "id": 552337, "name": "Guy R Brewer Blvd/Foch Blvd", "direction": "SE", "lat": 40.684143, "lon": -73.78303, "routes": "QM21, Q114, Q113, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.78303, 40.684143 ] } }, -{ "type": "Feature", "properties": { "id": 552338, "name": "Guy R Brewer Blvd/116 Av", "direction": "NW", "lat": 40.686836, "lon": -73.7844, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.7844, 40.686836 ] } }, -{ "type": "Feature", "properties": { "id": 552339, "name": "Guy R Brewer Blvd/116 Av", "direction": "SE", "lat": 40.686256, "lon": -73.78429, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.78429, 40.686256 ] } }, -{ "type": "Feature", "properties": { "id": 552340, "name": "Guy R Brewer Blvd/115 Av", "direction": "NW", "lat": 40.687714, "lon": -73.784935, "routes": "Q111, Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.784935, 40.687714 ] } }, -{ "type": "Feature", "properties": { "id": 552341, "name": "Guy R Brewer Blvd/115 Av", "direction": "SE", "lat": 40.687576, "lon": -73.78506, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.78506, 40.687576 ] } }, -{ "type": "Feature", "properties": { "id": 552342, "name": "Guy R Brewer Blvd/Sayres Av", "direction": "NW", "lat": 40.689514, "lon": -73.78598, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.78598, 40.689514 ] } }, -{ "type": "Feature", "properties": { "id": 552343, "name": "Guy R Brewer Blvd/Mathias Av", "direction": "NW", "lat": 40.691006, "lon": -73.787056, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.787056, 40.691006 ] } }, -{ "type": "Feature", "properties": { "id": 552344, "name": "Guy R Brewer Blvd/110 Rd", "direction": "NW", "lat": 40.692562, "lon": -73.788185, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.788185, 40.692562 ] } }, -{ "type": "Feature", "properties": { "id": 552345, "name": "Guy R Brewer Blvd/Brinkerhoff Av", "direction": "NW", "lat": 40.69359, "lon": -73.78893, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.78893, 40.69359 ] } }, -{ "type": "Feature", "properties": { "id": 552346, "name": "Guy R Brewer Blvd/Brinkerhoff Av", "direction": "SE", "lat": 40.693264, "lon": -73.788925, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.788925, 40.693264 ] } }, -{ "type": "Feature", "properties": { "id": 552347, "name": "Guy R Brewer Blvd/109 Av", "direction": "NW", "lat": 40.695168, "lon": -73.79009, "routes": "Q111, Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.79009, 40.695168 ] } }, -{ "type": "Feature", "properties": { "id": 552348, "name": "Guy R Brewer Blvd/109 Av", "direction": "SE", "lat": 40.69483, "lon": -73.79007, "routes": "Q114, Q113, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.79007, 40.69483 ] } }, -{ "type": "Feature", "properties": { "id": 552349, "name": "Guy R Brewer Blvd/108 Av", "direction": "NW", "lat": 40.696774, "lon": -73.79126, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.79126, 40.696774 ] } }, -{ "type": "Feature", "properties": { "id": 552350, "name": "Guy R Brewer Blvd/108 Av", "direction": "SE", "lat": 40.696434, "lon": -73.79123, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.79123, 40.696434 ] } }, -{ "type": "Feature", "properties": { "id": 552351, "name": "Guy R Brewer Blvd/107 Av", "direction": "NW", "lat": 40.69834, "lon": -73.79242, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.79242, 40.69834 ] } }, -{ "type": "Feature", "properties": { "id": 552352, "name": "Guy R Brewer Blvd/107 Av", "direction": "SE", "lat": 40.698006, "lon": -73.79241, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.79241, 40.698006 ] } }, -{ "type": "Feature", "properties": { "id": 552353, "name": "Guy R Brewer Blvd/Tuskegee Airmen Way", "direction": "NW", "lat": 40.699963, "lon": -73.79362, "routes": "Q114, Q112, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.79362, 40.699963 ] } }, -{ "type": "Feature", "properties": { "id": 552354, "name": "Guy R Brewer Blvd/Tuskegee Airmen Way", "direction": "SE", "lat": 40.6996, "lon": -73.79359, "routes": "Q111, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.79359, 40.6996 ] } }, -{ "type": "Feature", "properties": { "id": 552355, "name": "Guy R Brewer Blvd/Liberty Av", "direction": "NW", "lat": 40.700928, "lon": -73.7943, "routes": "Q114, Q111, Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.7943, 40.700928 ] } }, -{ "type": "Feature", "properties": { "id": 552356, "name": "Guy R Brewer Blvd/Liberty Av", "direction": "SE", "lat": 40.701424, "lon": -73.7949, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.7949, 40.701424 ] } }, -{ "type": "Feature", "properties": { "id": 552357, "name": "Guy R Brewer Blvd/Archer Av", "direction": "NW", "lat": 40.703194, "lon": -73.79586, "routes": "Q112, Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.79586, 40.703194 ] } }, -{ "type": "Feature", "properties": { "id": 552358, "name": "Guy R Brewer Blvd/Archer Av", "direction": "SE", "lat": 40.7031, "lon": -73.796104, "routes": "Q112, Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.796104, 40.7031 ] } }, -{ "type": "Feature", "properties": { "id": 552363, "name": "Parsons Blvd /88 Av", "direction": "SE", "lat": 40.706814, "lon": -73.80235, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.80235, 40.706814 ] } }, -{ "type": "Feature", "properties": { "id": 552364, "name": "Parsons Blvd/89 Av", "direction": "SE", "lat": 40.705864, "lon": -73.80177, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.80177, 40.705864 ] } }, -{ "type": "Feature", "properties": { "id": 552365, "name": "Parsons Blvd/88 Av", "direction": "SE", "lat": 40.70643, "lon": -73.80224, "routes": "Q65, Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.80224, 40.70643 ] } }, -{ "type": "Feature", "properties": { "id": 552366, "name": "Guy R Brewer Blvd/Claude Av", "direction": "SE", "lat": 40.69128, "lon": -73.787476, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.787476, 40.69128 ] } }, -{ "type": "Feature", "properties": { "id": 552367, "name": "Guy R Brewer Blvd/Linden Blvd", "direction": "SE", "lat": 40.68875, "lon": -73.78575, "routes": "Q111, Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.78575, 40.68875 ] } }, -{ "type": "Feature", "properties": { "id": 552368, "name": "Guy R Brewer Blvd/Farmers Blvd", "direction": "SE", "lat": 40.66411, "lon": -73.768715, "routes": "Q113, Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.768715, 40.66411 ] } }, -{ "type": "Feature", "properties": { "id": 552369, "name": "Guy R Brewer Blvd/146 Dr", "direction": "S", "lat": 40.66187, "lon": -73.768295, "routes": "Q114, Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.768295, 40.66187 ] } }, -{ "type": "Feature", "properties": { "id": 552370, "name": "147 Av /Springfield Ln", "direction": "E", "lat": 40.65929, "lon": -73.75957, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.75957, 40.65929 ] } }, -{ "type": "Feature", "properties": { "id": 552371, "name": "147 Av /230 St", "direction": "E", "lat": 40.65792, "lon": -73.75183, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.75183, 40.65792 ] } }, -{ "type": "Feature", "properties": { "id": 552372, "name": "147 Av /231 St", "direction": "E", "lat": 40.65768, "lon": -73.7498, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.7498, 40.65768 ] } }, -{ "type": "Feature", "properties": { "id": 552373, "name": "147 Av /235 St", "direction": "E", "lat": 40.6574, "lon": -73.74593, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.74593, 40.6574 ] } }, -{ "type": "Feature", "properties": { "id": 552374, "name": "147 Av /Edgewood St", "direction": "E", "lat": 40.657227, "lon": -73.74307, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.74307, 40.657227 ] } }, -{ "type": "Feature", "properties": { "id": 552376, "name": "Brookfield Rd /Holiday Ct", "direction": "E", "lat": 40.64997, "lon": -73.70876, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.70876, 40.64997 ] } }, -{ "type": "Feature", "properties": { "id": 552377, "name": "Liberty Av /102 St", "direction": "E", "lat": 40.68132, "lon": -73.83882, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83882, 40.68132 ] } }, -{ "type": "Feature", "properties": { "id": 552378, "name": "Liberty Av /104 St", "direction": "NE", "lat": 40.68203, "lon": -73.836716, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.836716, 40.68203 ] } }, -{ "type": "Feature", "properties": { "id": 552379, "name": "Liberty Av /106 St", "direction": "NE", "lat": 40.682903, "lon": -73.83507, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83507, 40.682903 ] } }, -{ "type": "Feature", "properties": { "id": 552380, "name": "Liberty Av /108 St", "direction": "NE", "lat": 40.683697, "lon": -73.83349, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83349, 40.683697 ] } }, -{ "type": "Feature", "properties": { "id": 552381, "name": "Liberty Av /110 St", "direction": "E", "lat": 40.68437, "lon": -73.83184, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83184, 40.68437 ] } }, -{ "type": "Feature", "properties": { "id": 552382, "name": "Liberty Av /111 St", "direction": "E", "lat": 40.684772, "lon": -73.83084, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83084, 40.684772 ] } }, -{ "type": "Feature", "properties": { "id": 552383, "name": "Liberty Av /111 St", "direction": "W", "lat": 40.684734, "lon": -73.83137, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83137, 40.684734 ] } }, -{ "type": "Feature", "properties": { "id": 552384, "name": "Liberty Av /113 St", "direction": "E", "lat": 40.685432, "lon": -73.829185, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.829185, 40.685432 ] } }, -{ "type": "Feature", "properties": { "id": 552385, "name": "Liberty Av /113 St", "direction": "W", "lat": 40.6854, "lon": -73.829704, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.829704, 40.6854 ] } }, -{ "type": "Feature", "properties": { "id": 552386, "name": "Liberty Av /116 St", "direction": "E", "lat": 40.685806, "lon": -73.826614, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.826614, 40.685806 ] } }, -{ "type": "Feature", "properties": { "id": 552388, "name": "Liberty Av /Lefferts Blvd", "direction": "W", "lat": 40.68613, "lon": -73.82499, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.82499, 40.68613 ] } }, -{ "type": "Feature", "properties": { "id": 552389, "name": "Liberty Av /121 St", "direction": "NE", "lat": 40.686916, "lon": -73.82216, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.82216, 40.686916 ] } }, -{ "type": "Feature", "properties": { "id": 552390, "name": "Liberty Av /121 St", "direction": "SW", "lat": 40.687035, "lon": -73.82247, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.82247, 40.687035 ] } }, -{ "type": "Feature", "properties": { "id": 552391, "name": "Liberty Av /123 St", "direction": "E", "lat": 40.687553, "lon": -73.82054, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.82054, 40.687553 ] } }, -{ "type": "Feature", "properties": { "id": 552392, "name": "Liberty Av /126 St", "direction": "E", "lat": 40.688274, "lon": -73.81873, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81873, 40.688274 ] } }, -{ "type": "Feature", "properties": { "id": 552393, "name": "Liberty Av /128 St", "direction": "E", "lat": 40.68884, "lon": -73.81722, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81722, 40.68884 ] } }, -{ "type": "Feature", "properties": { "id": 552394, "name": "Liberty Av /130 St", "direction": "NE", "lat": 40.689487, "lon": -73.81561, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81561, 40.689487 ] } }, -{ "type": "Feature", "properties": { "id": 552395, "name": "Liberty Av /132 St", "direction": "NE", "lat": 40.690422, "lon": -73.81413, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81413, 40.690422 ] } }, -{ "type": "Feature", "properties": { "id": 552396, "name": "Liberty Av /132 St", "direction": "SW", "lat": 40.690765, "lon": -73.81402, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81402, 40.690765 ] } }, -{ "type": "Feature", "properties": { "id": 552397, "name": "Liberty Av /134 St", "direction": "NE", "lat": 40.69124, "lon": -73.81287, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81287, 40.69124 ] } }, -{ "type": "Feature", "properties": { "id": 552398, "name": "Liberty Av /134 St", "direction": "W", "lat": 40.69157, "lon": -73.81254, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81254, 40.69157 ] } }, -{ "type": "Feature", "properties": { "id": 552399, "name": "Waltham St /105 Av", "direction": "SE", "lat": 40.69497, "lon": -73.804794, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.804794, 40.69497 ] } }, -{ "type": "Feature", "properties": { "id": 552400, "name": "Waltham St/Tuskegee Airmen Way", "direction": "SE", "lat": 40.69388, "lon": -73.80321, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.80321, 40.69388 ] } }, -{ "type": "Feature", "properties": { "id": 552401, "name": "Tuskegee Airmen Way/Sutphin Blvd", "direction": "NE", "lat": 40.694363, "lon": -73.80218, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.80218, 40.694363 ] } }, -{ "type": "Feature", "properties": { "id": 552402, "name": "Tuskegee Airmen Way/Sutphin Blvd", "direction": "SW", "lat": 40.694763, "lon": -73.80203, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.80203, 40.694763 ] } }, -{ "type": "Feature", "properties": { "id": 552403, "name": "Tuskegee Airmen Way/153 St", "direction": "NE", "lat": 40.69591, "lon": -73.8003, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.8003, 40.69591 ] } }, -{ "type": "Feature", "properties": { "id": 552404, "name": "Tuskegee Airmen Way/154 St", "direction": "SW", "lat": 40.69647, "lon": -73.79991, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.79991, 40.69647 ] } }, -{ "type": "Feature", "properties": { "id": 552405, "name": "Tuskegee Airmen Way/155 St", "direction": "NE", "lat": 40.69694, "lon": -73.79894, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.79894, 40.69694 ] } }, -{ "type": "Feature", "properties": { "id": 552406, "name": "Tuskegee Airmen Way/156 St", "direction": "SW", "lat": 40.697556, "lon": -73.798615, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.798615, 40.697556 ] } }, -{ "type": "Feature", "properties": { "id": 552407, "name": "Tuskegee Airmen Way/157 St", "direction": "NE", "lat": 40.6983, "lon": -73.797165, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.797165, 40.6983 ] } }, -{ "type": "Feature", "properties": { "id": 552408, "name": "Tuskegee Airmen Way /160 St", "direction": "E", "lat": 40.699055, "lon": -73.79539, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.79539, 40.699055 ] } }, -{ "type": "Feature", "properties": { "id": 552409, "name": "Archer Av/160 St", "direction": "E", "lat": 40.702663, "lon": -73.798485, "routes": "Q113, Q114, Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.798485, 40.702663 ] } }, -{ "type": "Feature", "properties": { "id": 552410, "name": "Tuskegee Airmen Way/Guy R Brewer Blvd", "direction": "SW", "lat": 40.69967, "lon": -73.794044, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.794044, 40.69967 ] } }, -{ "type": "Feature", "properties": { "id": 552411, "name": "Tuskegee Airmen Way/159 St", "direction": "SW", "lat": 40.698868, "lon": -73.79639, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.79639, 40.698868 ] } }, -{ "type": "Feature", "properties": { "id": 552412, "name": "Tuskegee Airmen Way/150 St", "direction": "SW", "lat": 40.695557, "lon": -73.8011, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.8011, 40.695557 ] } }, -{ "type": "Feature", "properties": { "id": 552413, "name": "Waltham St /106 Av", "direction": "NW", "lat": 40.69435, "lon": -73.80351, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.80351, 40.69435 ] } }, -{ "type": "Feature", "properties": { "id": 552414, "name": "Waltham St /Liberty Av", "direction": "NW", "lat": 40.69541, "lon": -73.80507, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.80507, 40.69541 ] } }, -{ "type": "Feature", "properties": { "id": 552415, "name": "Liberty Av /127 St", "direction": "W", "lat": 40.68878, "lon": -73.81797, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.81797, 40.68878 ] } }, -{ "type": "Feature", "properties": { "id": 552416, "name": "Liberty Av /125 St", "direction": "W", "lat": 40.688286, "lon": -73.8192, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.8192, 40.688286 ] } }, -{ "type": "Feature", "properties": { "id": 552417, "name": "Liberty Av /124 St", "direction": "W", "lat": 40.687824, "lon": -73.82044, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.82044, 40.687824 ] } }, -{ "type": "Feature", "properties": { "id": 552418, "name": "Liberty Av /117 St", "direction": "W", "lat": 40.685986, "lon": -73.82618, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.82618, 40.685986 ] } }, -{ "type": "Feature", "properties": { "id": 552419, "name": "Liberty Av /115 St", "direction": "W", "lat": 40.6858, "lon": -73.82799, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.82799, 40.6858 ] } }, -{ "type": "Feature", "properties": { "id": 552420, "name": "Liberty Av /109 St", "direction": "W", "lat": 40.68412, "lon": -73.83302, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83302, 40.68412 ] } }, -{ "type": "Feature", "properties": { "id": 552421, "name": "Liberty Av /107 St", "direction": "SW", "lat": 40.683403, "lon": -73.83461, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83461, 40.683403 ] } }, -{ "type": "Feature", "properties": { "id": 552422, "name": "Liberty Av /105 St", "direction": "SW", "lat": 40.682396, "lon": -73.83639, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83639, 40.682396 ] } }, -{ "type": "Feature", "properties": { "id": 552423, "name": "Liberty Av /103 St", "direction": "W", "lat": 40.681686, "lon": -73.83804, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83804, 40.681686 ] } }, -{ "type": "Feature", "properties": { "id": 552424, "name": "Liberty Av /101 St", "direction": "W", "lat": 40.681393, "lon": -73.83936, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.83936, 40.681393 ] } }, -{ "type": "Feature", "properties": { "id": 552426, "name": "Seagirt Blvd/Beach 19 St", "direction": "E", "lat": 40.59498, "lon": -73.75329, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75329, 40.59498 ] } }, -{ "type": "Feature", "properties": { "id": 552427, "name": "Seagirt Blvd/Beach 17 St", "direction": "E", "lat": 40.59498, "lon": -73.751335, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.751335, 40.59498 ] } }, -{ "type": "Feature", "properties": { "id": 552429, "name": "Seagirt Av/Beach 9 St", "direction": "E", "lat": 40.59602, "lon": -73.74417, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74417, 40.59602 ] } }, -{ "type": "Feature", "properties": { "id": 552430, "name": "Beach 9 St /Seagirt Blvd", "direction": "N", "lat": 40.59677, "lon": -73.74415, "routes": "Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.74415, 40.59677 ] } }, -{ "type": "Feature", "properties": { "id": 552431, "name": "Beach 9 St /Jarvis Av", "direction": "N", "lat": 40.59808, "lon": -73.74449, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74449, 40.59808 ] } }, -{ "type": "Feature", "properties": { "id": 552432, "name": "Beach 9 St /Lanett Av", "direction": "N", "lat": 40.59927, "lon": -73.74473, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74473, 40.59927 ] } }, -{ "type": "Feature", "properties": { "id": 552433, "name": "Beach 9 St /Caffery Av", "direction": "N", "lat": 40.60193, "lon": -73.74529, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74529, 40.60193 ] } }, -{ "type": "Feature", "properties": { "id": 552434, "name": "Seagirt Blvd/Beach 17 St", "direction": "W", "lat": 40.595318, "lon": -73.75147, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75147, 40.595318 ] } }, -{ "type": "Feature", "properties": { "id": 552435, "name": "Seagirt Blvd/Beach 14 St", "direction": "W", "lat": 40.595448, "lon": -73.74844, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74844, 40.595448 ] } }, -{ "type": "Feature", "properties": { "id": 552436, "name": "Beach 9 St /Seagirt Blvd", "direction": "S", "lat": 40.59675, "lon": -73.74434, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74434, 40.59675 ] } }, -{ "type": "Feature", "properties": { "id": 552437, "name": "Beach 9 St /Caffery Av", "direction": "S", "lat": 40.60182, "lon": -73.74547, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74547, 40.60182 ] } }, -{ "type": "Feature", "properties": { "id": 552439, "name": "Beach 9 St /Cornaga Av", "direction": "S", "lat": 40.603245, "lon": -73.745834, "routes": "Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.745834, 40.603245 ] } }, -{ "type": "Feature", "properties": { "id": 552440, "name": "Cornaga Av /Rose St", "direction": "W", "lat": 40.603394, "lon": -73.746376, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.746376, 40.603394 ] } }, -{ "type": "Feature", "properties": { "id": 552441, "name": "Cornaga Av /Neilson St", "direction": "W", "lat": 40.60311, "lon": -73.74778, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74778, 40.60311 ] } }, -{ "type": "Feature", "properties": { "id": 552442, "name": "Cornaga Av /Mott Av", "direction": "W", "lat": 40.60269, "lon": -73.7497, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.7497, 40.60269 ] } }, -{ "type": "Feature", "properties": { "id": 552443, "name": "Cornaga Av /Mott Av", "direction": "E", "lat": 40.602665, "lon": -73.74921, "routes": "Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.74921, 40.602665 ] } }, -{ "type": "Feature", "properties": { "id": 552445, "name": "Mott Av /Central Av", "direction": "NW", "lat": 40.60427, "lon": -73.75272, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75272, 40.60427 ] } }, -{ "type": "Feature", "properties": { "id": 552446, "name": "Mott Av /Redfern Av", "direction": "NW", "lat": 40.605156, "lon": -73.75459, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75459, 40.605156 ] } }, -{ "type": "Feature", "properties": { "id": 552448, "name": "Beach Channel Dr /Nameoke St", "direction": "N", "lat": 40.60805, "lon": -73.75405, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75405, 40.60805 ] } }, -{ "type": "Feature", "properties": { "id": 552449, "name": "Beach Channel Dr /Hassock St", "direction": "N", "lat": 40.60969, "lon": -73.75358, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75358, 40.60969 ] } }, -{ "type": "Feature", "properties": { "id": 552450, "name": "Beach Channel Dr /Hassock St", "direction": "S", "lat": 40.609634, "lon": -73.75378, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75378, 40.609634 ] } }, -{ "type": "Feature", "properties": { "id": 552451, "name": "Sheridan Blvd/Carvel Pl", "direction": "N", "lat": 40.61218, "lon": -73.75306, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75306, 40.61218 ] } }, -{ "type": "Feature", "properties": { "id": 552452, "name": "Sheridan Blvd/Carvel Pl", "direction": "S", "lat": 40.612194, "lon": -73.75326, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75326, 40.612194 ] } }, -{ "type": "Feature", "properties": { "id": 552453, "name": "Bayview Av /Sheridan Blvd", "direction": "E", "lat": 40.614414, "lon": -73.752464, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.752464, 40.614414 ] } }, -{ "type": "Feature", "properties": { "id": 552454, "name": "Bayview Av /St. George Pl", "direction": "E", "lat": 40.614105, "lon": -73.750694, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.750694, 40.614105 ] } }, -{ "type": "Feature", "properties": { "id": 552455, "name": "Bayview Av /Monroe St", "direction": "E", "lat": 40.61386, "lon": -73.74857, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74857, 40.61386 ] } }, -{ "type": "Feature", "properties": { "id": 552456, "name": "Bayview Av /Doughty Blvd", "direction": "E", "lat": 40.61392, "lon": -73.74612, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74612, 40.61392 ] } }, -{ "type": "Feature", "properties": { "id": 552457, "name": "Bayview Av /Doughty Blvd", "direction": "W", "lat": 40.61405, "lon": -73.7463, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.7463, 40.61405 ] } }, -{ "type": "Feature", "properties": { "id": 552463, "name": "Mott Av /Lawrence Av", "direction": "E", "lat": 40.618313, "lon": -73.7371, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.7371, 40.618313 ] } }, -{ "type": "Feature", "properties": { "id": 552464, "name": "Mott Av /Lawrence Av", "direction": "W", "lat": 40.618446, "lon": -73.737175, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.737175, 40.618446 ] } }, -{ "type": "Feature", "properties": { "id": 552465, "name": "Mott Av /Allen St", "direction": "E", "lat": 40.61868, "lon": -73.73495, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73495, 40.61868 ] } }, -{ "type": "Feature", "properties": { "id": 552466, "name": "Mott Av /Rockaway Tpke", "direction": "E", "lat": 40.61947, "lon": -73.73236, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73236, 40.61947 ] } }, -{ "type": "Feature", "properties": { "id": 552467, "name": "Mott Av /Rockaway Tpke", "direction": "W", "lat": 40.61956, "lon": -73.73259, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73259, 40.61956 ] } }, -{ "type": "Feature", "properties": { "id": 552468, "name": "Rockaway Tpke /Pacific St", "direction": "NW", "lat": 40.62106, "lon": -73.73314, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73314, 40.62106 ] } }, -{ "type": "Feature", "properties": { "id": 552469, "name": "Rockaway Tpke /Livingston Pl", "direction": "NW", "lat": 40.622524, "lon": -73.73406, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73406, 40.622524 ] } }, -{ "type": "Feature", "properties": { "id": 552470, "name": "Rockaway Tpke /W Broadway", "direction": "NW", "lat": 40.6238, "lon": -73.73484, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73484, 40.6238 ] } }, -{ "type": "Feature", "properties": { "id": 552471, "name": "Rockaway Tpke/Rugby Rd", "direction": "N", "lat": 40.626614, "lon": -73.736404, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.736404, 40.626614 ] } }, -{ "type": "Feature", "properties": { "id": 552472, "name": "Rockaway Tpke/Peninsula Blvd", "direction": "N", "lat": 40.628407, "lon": -73.73711, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73711, 40.628407 ] } }, -{ "type": "Feature", "properties": { "id": 552473, "name": "Rockaway Tpke/Peninsula Blvd", "direction": "S", "lat": 40.628242, "lon": -73.73726, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73726, 40.628242 ] } }, -{ "type": "Feature", "properties": { "id": 552474, "name": "Rockaway Tpke/Reyem Dr", "direction": "NW", "lat": 40.63196, "lon": -73.73849, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73849, 40.63196 ] } }, -{ "type": "Feature", "properties": { "id": 552475, "name": "Rockaway Tpke/5 Towns Shopping Center", "direction": "NW", "lat": 40.63748, "lon": -73.740654, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.740654, 40.63748 ] } }, -{ "type": "Feature", "properties": { "id": 552476, "name": "Rockaway Tpke/Brookville Blvd", "direction": "NW", "lat": 40.640633, "lon": -73.74312, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74312, 40.640633 ] } }, -{ "type": "Feature", "properties": { "id": 552481, "name": "Rockaway Blvd/Brookville Blvd", "direction": "SE", "lat": 40.639732, "lon": -73.74267, "routes": "Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.74267, 40.639732 ] } }, -{ "type": "Feature", "properties": { "id": 552482, "name": "Rockaway Tpke/Meyer Av", "direction": "S", "lat": 40.6359, "lon": -73.740395, "routes": "Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.740395, 40.6359 ] } }, -{ "type": "Feature", "properties": { "id": 552483, "name": "Rockaway Tpke/Costco", "direction": "S", "lat": 40.63207, "lon": -73.738914, "routes": "Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.738914, 40.63207 ] } }, -{ "type": "Feature", "properties": { "id": 552484, "name": "Rockaway Tpke/Buena Vista Av", "direction": "SE", "lat": 40.625347, "lon": -73.73605, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73605, 40.625347 ] } }, -{ "type": "Feature", "properties": { "id": 552485, "name": "Rockaway Tpke /Burnside Av", "direction": "SE", "lat": 40.624027, "lon": -73.7352, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.7352, 40.624027 ] } }, -{ "type": "Feature", "properties": { "id": 552486, "name": "Rockaway Tpke/Pearl St", "direction": "SE", "lat": 40.62242, "lon": -73.73421, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73421, 40.62242 ] } }, -{ "type": "Feature", "properties": { "id": 552487, "name": "Rockaway Tpke/Pacific Av", "direction": "SE", "lat": 40.620697, "lon": -73.73313, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73313, 40.620697 ] } }, -{ "type": "Feature", "properties": { "id": 552488, "name": "Mott Av /Bernard St", "direction": "W", "lat": 40.618755, "lon": -73.73523, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.73523, 40.618755 ] } }, -{ "type": "Feature", "properties": { "id": 552495, "name": "Bayview Av/Jeanette Av", "direction": "W", "lat": 40.61406, "lon": -73.74939, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74939, 40.61406 ] } }, -{ "type": "Feature", "properties": { "id": 552496, "name": "Sheridan Blvd/Bayview Av", "direction": "S", "lat": 40.614365, "lon": -73.75279, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75279, 40.614365 ] } }, -{ "type": "Feature", "properties": { "id": 552500, "name": "Mott Av /Beach 20 St", "direction": "SE", "lat": 40.60406, "lon": -73.75268, "routes": "Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.75268, 40.60406 ] } }, -{ "type": "Feature", "properties": { "id": 552501, "name": "Beach 9 St /Meeham Av", "direction": "S", "lat": 40.59801, "lon": -73.74467, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.74467, 40.59801 ] } }, -{ "type": "Feature", "properties": { "id": 552502, "name": "Seagirt Blvd/Beach 20 St", "direction": "W", "lat": 40.595383, "lon": -73.754745, "routes": "Q114, Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.754745, 40.595383 ] } }, -{ "type": "Feature", "properties": { "id": 552503, "name": "Whitestone Expwy/Linden Pl", "direction": "SW", "lat": 40.771584, "lon": -73.83375, "routes": "QM20, QM2, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.83375, 40.771584 ] } }, -{ "type": "Feature", "properties": { "id": 552504, "name": "Whitestone Expwy/Linden Pl", "direction": "NE", "lat": 40.77109, "lon": -73.832985, "routes": "QM2, QM32, QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.832985, 40.77109 ] } }, -{ "type": "Feature", "properties": { "id": 552505, "name": "Whitestone Expwy/20 Av", "direction": "N", "lat": 40.781918, "lon": -73.824455, "routes": "Q50, QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.824455, 40.781918 ] } }, -{ "type": "Feature", "properties": { "id": 552506, "name": "Whitestone Expwy/20 Av", "direction": "SW", "lat": 40.781506, "lon": -73.825905, "routes": "QM2, QM32, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.825905, 40.781506 ] } }, -{ "type": "Feature", "properties": { "id": 552507, "name": "Union Tpke/Main St", "direction": "E", "lat": 40.71765, "lon": -73.81679, "routes": "QM35, QM7, QM1, QM36, QM6, QM31, QM8, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.81679, 40.71765 ] } }, -{ "type": "Feature", "properties": { "id": 552508, "name": "Union Tpke/Main St", "direction": "W", "lat": 40.717575, "lon": -73.818375, "routes": "QM31, QM35, QM7, QM36, QM8, QM1, QM5, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.818375, 40.717575 ] } }, -{ "type": "Feature", "properties": { "id": 552510, "name": "Union Tpke/Parsons Blvd", "direction": "E", "lat": 40.719788, "lon": -73.80911, "routes": "QM8, QM31, QM35, QM1, QM36, QM5, QM6, QM7" }, "geometry": { "type": "Point", "coordinates": [ -73.80911, 40.719788 ] } }, -{ "type": "Feature", "properties": { "id": 552511, "name": "Union Tpke/Parsons Blvd", "direction": "W", "lat": 40.7201, "lon": -73.80898, "routes": "QM5, QM7, QM6, QM8, QM31, QM35, QM36, QM1" }, "geometry": { "type": "Point", "coordinates": [ -73.80898, 40.7201 ] } }, -{ "type": "Feature", "properties": { "id": 552515, "name": "Northern Blvd/89 St", "direction": "E", "lat": 40.75616, "lon": -73.878654, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.878654, 40.75616 ] } }, -{ "type": "Feature", "properties": { "id": 552519, "name": "Union Tpke/Utopia Pkwy", "direction": "E", "lat": 40.725758, "lon": -73.79141, "routes": "QM8, QM6, QM1, QM7, QM36, QM5, QM35, QM31" }, "geometry": { "type": "Point", "coordinates": [ -73.79141, 40.725758 ] } }, -{ "type": "Feature", "properties": { "id": 552520, "name": "Union Tpke/Utopia Pkwy", "direction": "W", "lat": 40.725883, "lon": -73.79208, "routes": "QM36, QM6, QM35, QM5, QM31, QM1, QM8, QM7" }, "geometry": { "type": "Point", "coordinates": [ -73.79208, 40.725883 ] } }, -{ "type": "Feature", "properties": { "id": 552521, "name": "Union Tpke/Chevy Chase St", "direction": "E", "lat": 40.728394, "lon": -73.783325, "routes": "QM5, QM35, QM6, QM1, QM31, QM36, QM7, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.783325, 40.728394 ] } }, -{ "type": "Feature", "properties": { "id": 552547, "name": "Ditmars Blvd/37 St", "direction": "NW", "lat": 40.77403, "lon": -73.907585, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.907585, 40.77403 ] } }, -{ "type": "Feature", "properties": { "id": 552548, "name": "160 St/Cross Island Pkwy", "direction": "N", "lat": 40.786682, "lon": -73.80234, "routes": "QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.80234, 40.786682 ] } }, -{ "type": "Feature", "properties": { "id": 552549, "name": "166 St/9 Av", "direction": "SW", "lat": 40.792862, "lon": -73.79776, "routes": "QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.79776, 40.792862 ] } }, -{ "type": "Feature", "properties": { "id": 552551, "name": "176 St/ 137 Av", "direction": "S", "lat": 40.673607, "lon": -73.7654, "routes": "QM21, QM21" }, "geometry": { "type": "Point", "coordinates": [ -73.7654, 40.673607 ] } }, -{ "type": "Feature", "properties": { "id": 552553, "name": "18 Av/212 St", "direction": "NE", "lat": 40.783028, "lon": -73.779755, "routes": "QM32, QM2, QM2, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.779755, 40.783028 ] } }, -{ "type": "Feature", "properties": { "id": 552665, "name": "212 St/15 Av", "direction": "N", "lat": 40.785408, "lon": -73.78151, "routes": "QM2, QM32, QM2, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.78151, 40.785408 ] } }, -{ "type": "Feature", "properties": { "id": 552667, "name": "26 Av/203 St", "direction": "E", "lat": 40.774906, "lon": -73.788704, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.788704, 40.774906 ] } }, -{ "type": "Feature", "properties": { "id": 552668, "name": "26 Av/204 St", "direction": "W", "lat": 40.775124, "lon": -73.78847, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.78847, 40.775124 ] } }, -{ "type": "Feature", "properties": { "id": 552669, "name": "260 St/Little Neck Pkwy", "direction": "W", "lat": 40.752266, "lon": -73.72097, "routes": "QM5, QM35, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.72097, 40.752266 ] } }, -{ "type": "Feature", "properties": { "id": 552671, "name": "31 Rd/138 St", "direction": "SW", "lat": 40.770206, "lon": -73.830734, "routes": "QM20, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.830734, 40.770206 ] } }, -{ "type": "Feature", "properties": { "id": 552672, "name": "57 Av/99 St", "direction": "W", "lat": 40.738384, "lon": -73.86031, "routes": "QM10, QM11, QM10, QM40, QM11, QM40" }, "geometry": { "type": "Point", "coordinates": [ -73.86031, 40.738384 ] } }, -{ "type": "Feature", "properties": { "id": 552678, "name": "69 Rd/108 St", "direction": "W", "lat": 40.72434, "lon": -73.84543, "routes": "QM44, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.84543, 40.72434 ] } }, -{ "type": "Feature", "properties": { "id": 552679, "name": "69 Rd/Queens Blvd", "direction": "W", "lat": 40.72357, "lon": -73.84798, "routes": "QM4, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.84798, 40.72357 ] } }, -{ "type": "Feature", "properties": { "id": 552708, "name": "Cornaga Av/Beach 20 St", "direction": "W", "lat": 40.602352, "lon": -73.75355, "routes": "QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.75355, 40.602352 ] } }, -{ "type": "Feature", "properties": { "id": 552709, "name": "Cross Island Pkwy/160 St", "direction": "W", "lat": 40.786587, "lon": -73.802635, "routes": "QM2, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.802635, 40.786587 ] } }, -{ "type": "Feature", "properties": { "id": 552712, "name": "Douglaston Pkwy/61 Av", "direction": "NE", "lat": 40.755695, "lon": -73.73933, "routes": "QM8, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.73933, 40.755695 ] } }, -{ "type": "Feature", "properties": { "id": 552713, "name": "Douglaston Pkwy/61 Av", "direction": "SW", "lat": 40.755898, "lon": -73.739395, "routes": "QM35, QM5, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.739395, 40.755898 ] } }, -{ "type": "Feature", "properties": { "id": 552715, "name": "Douglaston Pkwy/65 Av", "direction": "SE", "lat": 40.75277, "lon": -73.74161, "routes": "QM5, QM35, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.74161, 40.75277 ] } }, -{ "type": "Feature", "properties": { "id": 552806, "name": "Hoyt Av/23 St", "direction": "NW", "lat": 40.774723, "lon": -73.92235, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.92235, 40.774723 ] } }, -{ "type": "Feature", "properties": { "id": 552807, "name": "Hoyt Av/Crescent St", "direction": "NW", "lat": 40.77359, "lon": -73.92106, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.92106, 40.77359 ] } }, -{ "type": "Feature", "properties": { "id": 552821, "name": "Jewel Av/Queens Blvd", "direction": "E", "lat": 40.723038, "lon": -73.84671, "routes": "QM4, QM44" }, "geometry": { "type": "Point", "coordinates": [ -73.84671, 40.723038 ] } }, -{ "type": "Feature", "properties": { "id": 552822, "name": "Kew Gardens Rd/Mowbray St", "direction": "SE", "lat": 40.710983, "lon": -73.828285, "routes": "QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.828285, 40.710983 ] } }, -{ "type": "Feature", "properties": { "id": 552824, "name": "Lakeville Rd/L I Jewish Hospital", "direction": "S", "lat": 40.75555, "lon": -73.704346, "routes": "QM36, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.704346, 40.75555 ] } }, -{ "type": "Feature", "properties": { "id": 552825, "name": "Lakeville Rd/L I Jewish Hospital", "direction": "N", "lat": 40.755573, "lon": -73.704025, "routes": "QM36, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.704025, 40.755573 ] } }, -{ "type": "Feature", "properties": { "id": 552827, "name": "Little Neck Pkwy/61 Av", "direction": "N", "lat": 40.758736, "lon": -73.72234, "routes": "QM5, QM8, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.72234, 40.758736 ] } }, -{ "type": "Feature", "properties": { "id": 552832, "name": "Linden Pl/Whitestone Expwy", "direction": "N", "lat": 40.77211, "lon": -73.83364, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83364, 40.77211 ] } }, -{ "type": "Feature", "properties": { "id": 552838, "name": "28 Av/Ulmer St", "direction": "W", "lat": 40.772892, "lon": -73.837006, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.837006, 40.772892 ] } }, -{ "type": "Feature", "properties": { "id": 552896, "name": "North Shore Towers/Building Entrance", "direction": "E", "lat": 40.75722, "lon": -73.71488, "routes": "QM6, QM36, QM36" }, "geometry": { "type": "Point", "coordinates": [ -73.71488, 40.75722 ] } }, -{ "type": "Feature", "properties": { "id": 552903, "name": "Northern Blvd/Douglaston Pkwy", "direction": "E", "lat": 40.765297, "lon": -73.74388, "routes": "QM3" }, "geometry": { "type": "Point", "coordinates": [ -73.74388, 40.765297 ] } }, -{ "type": "Feature", "properties": { "id": 552907, "name": "Powells Cove Blvd/162 St", "direction": "E", "lat": 40.79409, "lon": -73.7994, "routes": "QM2, QM32" }, "geometry": { "type": "Point", "coordinates": [ -73.7994, 40.79409 ] } }, -{ "type": "Feature", "properties": { "id": 552908, "name": "Rockaway Beach Blvd/Beach 147 St", "direction": "E", "lat": 40.57, "lon": -73.86212, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.86212, 40.57 ] } }, -{ "type": "Feature", "properties": { "id": 552909, "name": "Rockaway Blvd/134 Av", "direction": "NW", "lat": 40.670265, "lon": -73.783104, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.783104, 40.670265 ] } }, -{ "type": "Feature", "properties": { "id": 552923, "name": "West Alley Rd/233 St", "direction": "W", "lat": 40.751686, "lon": -73.74559, "routes": "QM8, QM35, QM5" }, "geometry": { "type": "Point", "coordinates": [ -73.74559, 40.751686 ] } }, -{ "type": "Feature", "properties": { "id": 552924, "name": "Whitestone Expwy/14 Av", "direction": "N", "lat": 40.786747, "lon": -73.82342, "routes": "QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.82342, 40.786747 ] } }, -{ "type": "Feature", "properties": { "id": 552925, "name": "Whitestone Expwy/14 Av", "direction": "S", "lat": 40.786602, "lon": -73.82459, "routes": "QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.82459, 40.786602 ] } }, -{ "type": "Feature", "properties": { "id": 552926, "name": "Whitestone Expwy/25 Rd", "direction": "NE", "lat": 40.775932, "lon": -73.827705, "routes": "QM32, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.827705, 40.775932 ] } }, -{ "type": "Feature", "properties": { "id": 552927, "name": "Willets Point Blvd/154 St", "direction": "W", "lat": 40.77825, "lon": -73.80905, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.80905, 40.77825 ] } }, -{ "type": "Feature", "properties": { "id": 552928, "name": "Willets Point Blvd/154 St", "direction": "E", "lat": 40.77805, "lon": -73.80928, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.80928, 40.77805 ] } }, -{ "type": "Feature", "properties": { "id": 552929, "name": "Willets Point Blvd/19 Av", "direction": "SW", "lat": 40.78169, "lon": -73.801025, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.801025, 40.78169 ] } }, -{ "type": "Feature", "properties": { "id": 552931, "name": "Willets Point Blvd/Francis Lewis Blvd", "direction": "SW", "lat": 40.78041, "lon": -73.802414, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.802414, 40.78041 ] } }, -{ "type": "Feature", "properties": { "id": 552932, "name": "Yellowstone Blvd/62 Rd", "direction": "SE", "lat": 40.73553, "lon": -73.85364, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85364, 40.73553 ] } }, -{ "type": "Feature", "properties": { "id": 552933, "name": "Yellowstone Blvd/63 Dr", "direction": "SE", "lat": 40.73283, "lon": -73.85224, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.85224, 40.73283 ] } }, -{ "type": "Feature", "properties": { "id": 552934, "name": "Yellowstone Blvd/64 Rd", "direction": "NW", "lat": 40.73176, "lon": -73.85149, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85149, 40.73176 ] } }, -{ "type": "Feature", "properties": { "id": 552935, "name": "Yellowstone Blvd/65 Av", "direction": "SE", "lat": 40.730827, "lon": -73.85119, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85119, 40.730827 ] } }, -{ "type": "Feature", "properties": { "id": 552936, "name": "Yellowstone Blvd/67 Av", "direction": "N", "lat": 40.728622, "lon": -73.849106, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.849106, 40.728622 ] } }, -{ "type": "Feature", "properties": { "id": 552937, "name": "Yellowstone Blvd/67 Av", "direction": "S", "lat": 40.728355, "lon": -73.849335, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.849335, 40.728355 ] } }, -{ "type": "Feature", "properties": { "id": 552938, "name": "Yellowstone Blvd/68 Av", "direction": "NW", "lat": 40.72653, "lon": -73.84848, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.84848, 40.72653 ] } }, -{ "type": "Feature", "properties": { "id": 552939, "name": "Yellowstone Blvd/68 Av", "direction": "SE", "lat": 40.72627, "lon": -73.84858, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.84858, 40.72627 ] } }, -{ "type": "Feature", "properties": { "id": 552940, "name": "Yellowstone Blvd/68 Rd", "direction": "NE", "lat": 40.71525, "lon": -73.85838, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.85838, 40.71525 ] } }, -{ "type": "Feature", "properties": { "id": 552941, "name": "Yellowstone Blvd/69 Av", "direction": "NW", "lat": 40.724754, "lon": -73.84684, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.84684, 40.724754 ] } }, -{ "type": "Feature", "properties": { "id": 552942, "name": "Yellowstone Blvd/69 Av", "direction": "SE", "lat": 40.724472, "lon": -73.84692, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.84692, 40.724472 ] } }, -{ "type": "Feature", "properties": { "id": 552943, "name": "Yellowstone Blvd/Alderton St", "direction": "SW", "lat": 40.715187, "lon": -73.85874, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85874, 40.715187 ] } }, -{ "type": "Feature", "properties": { "id": 552944, "name": "Yellowstone Blvd/Burns St", "direction": "W", "lat": 40.722046, "lon": -73.85371, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.85371, 40.722046 ] } }, -{ "type": "Feature", "properties": { "id": 552945, "name": "Yellowstone Blvd/Clyde St", "direction": "E", "lat": 40.721653, "lon": -73.85426, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.85426, 40.721653 ] } }, -{ "type": "Feature", "properties": { "id": 552946, "name": "Yellowstone Blvd/Gerard Pl", "direction": "E", "lat": 40.72254, "lon": -73.849304, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.849304, 40.72254 ] } }, -{ "type": "Feature", "properties": { "id": 552947, "name": "Yellowstone Blvd/Groton St", "direction": "SW", "lat": 40.71901, "lon": -73.85631, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.85631, 40.71901 ] } }, -{ "type": "Feature", "properties": { "id": 552948, "name": "Yellowstone Blvd/Groton St", "direction": "NE", "lat": 40.719135, "lon": -73.856, "routes": "QM12, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.856, 40.719135 ] } }, -{ "type": "Feature", "properties": { "id": 552949, "name": "Yellowstone Blvd/Juno St", "direction": "NE", "lat": 40.716972, "lon": -73.85736, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85736, 40.716972 ] } }, -{ "type": "Feature", "properties": { "id": 552950, "name": "Yellowstone Blvd/Kessel St", "direction": "SW", "lat": 40.716595, "lon": -73.857864, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.857864, 40.716595 ] } }, -{ "type": "Feature", "properties": { "id": 552951, "name": "Yellowstone Blvd/Queens Blvd", "direction": "W", "lat": 40.722874, "lon": -73.84824, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.84824, 40.722874 ] } }, -{ "type": "Feature", "properties": { "id": 552952, "name": "58 St/37 Av", "direction": "NE", "lat": 40.750237, "lon": -73.90415, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.90415, 40.750237 ] } }, -{ "type": "Feature", "properties": { "id": 552953, "name": "92 St/31 Av", "direction": "S", "lat": 40.760113, "lon": -73.87684, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87684, 40.760113 ] } }, -{ "type": "Feature", "properties": { "id": 552954, "name": "21 St/31 Av", "direction": "SW", "lat": 40.76728, "lon": -73.93005, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.93005, 40.76728 ] } }, -{ "type": "Feature", "properties": { "id": 552956, "name": "Ditmars Blvd/21 St", "direction": "NW", "lat": 40.780453, "lon": -73.91663, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.91663, 40.780453 ] } }, -{ "type": "Feature", "properties": { "id": 552958, "name": "Broadway/78 St", "direction": "SE", "lat": 40.74469, "lon": -73.88681, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.88681, 40.74469 ] } }, -{ "type": "Feature", "properties": { "id": 552960, "name": "Newport Av/Beach 118 St", "direction": "W", "lat": 40.580933, "lon": -73.84011, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.84011, 40.580933 ] } }, -{ "type": "Feature", "properties": { "id": 552961, "name": "Rockaway Beach Blvd/Beach 149 St", "direction": "W", "lat": 40.56935, "lon": -73.86467, "routes": "Q35, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.86467, 40.56935 ] } }, -{ "type": "Feature", "properties": { "id": 552963, "name": "Ditmars Blvd/77 St", "direction": "E", "lat": 40.76861, "lon": -73.892265, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.892265, 40.76861 ] } }, -{ "type": "Feature", "properties": { "id": 552964, "name": "99 St/Lewis Av", "direction": "NW", "lat": 40.739826, "lon": -73.860725, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.860725, 40.739826 ] } }, -{ "type": "Feature", "properties": { "id": 552965, "name": "College Point Blvd/123 St", "direction": "SE", "lat": 40.77281, "lon": -73.84553, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84553, 40.77281 ] } }, -{ "type": "Feature", "properties": { "id": 552966, "name": "63 Rd/Queens Blvd", "direction": "NE", "lat": 40.730373, "lon": -73.86195, "routes": "QM40, Q38, QM10, QM11, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86195, 40.730373 ] } }, -{ "type": "Feature", "properties": { "id": 552968, "name": "48 St/Northern Blvd", "direction": "S", "lat": 40.7524, "lon": -73.91511, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91511, 40.7524 ] } }, -{ "type": "Feature", "properties": { "id": 552970, "name": "Cross Bay Blvd/Doxey Pl", "direction": "S", "lat": 40.674934, "lon": -73.84344, "routes": "Q41, Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84344, 40.674934 ] } }, -{ "type": "Feature", "properties": { "id": 552972, "name": "Ditmars Blvd/72 St", "direction": "W", "lat": 40.76823, "lon": -73.89734, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89734, 40.76823 ] } }, -{ "type": "Feature", "properties": { "id": 552979, "name": "College Point Blvd/Whitestone Expwy", "direction": "SE", "lat": 40.76692, "lon": -73.83936, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.83936, 40.76692 ] } }, -{ "type": "Feature", "properties": { "id": 552981, "name": "Northern Blvd/126 Pl", "direction": "NE", "lat": 40.761147, "lon": -73.844635, "routes": "Q19, Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.844635, 40.761147 ] } }, -{ "type": "Feature", "properties": { "id": 552982, "name": "Cohancy St /99 Pl", "direction": "S", "lat": 40.669044, "lon": -73.83486, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83486, 40.669044 ] } }, -{ "type": "Feature", "properties": { "id": 552983, "name": "Rockaway Blvd/144 Rd", "direction": "NW", "lat": 40.664852, "lon": -73.77803, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.77803, 40.664852 ] } }, -{ "type": "Feature", "properties": { "id": 552984, "name": "Bell Blvd/23 Av", "direction": "SW", "lat": 40.782513, "lon": -73.776695, "routes": "QM32, QM32, QM2, QM2" }, "geometry": { "type": "Point", "coordinates": [ -73.776695, 40.782513 ] } }, -{ "type": "Feature", "properties": { "id": 552985, "name": "27 Av/4 St", "direction": "W", "lat": 40.774784, "lon": -73.933235, "routes": "Q19, Q18, Q102, Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.933235, 40.774784 ] } }, -{ "type": "Feature", "properties": { "id": 552986, "name": "27 Av/4 St", "direction": "E", "lat": 40.774567, "lon": -73.93325, "routes": "Q18, Q103, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93325, 40.774567 ] } }, -{ "type": "Feature", "properties": { "id": 552987, "name": "8 St/Astoria Blvd", "direction": "SW", "lat": 40.772926, "lon": -73.93275, "routes": "Q102, Q18, Q19, Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.93275, 40.772926 ] } }, -{ "type": "Feature", "properties": { "id": 552988, "name": "8 St/Astoria Blvd", "direction": "NE", "lat": 40.772808, "lon": -73.93255, "routes": "Q102, Q103, Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.93255, 40.772808 ] } }, -{ "type": "Feature", "properties": { "id": 552989, "name": "8 St/27 Av", "direction": "NE", "lat": 40.774128, "lon": -73.9318, "routes": "Q102, Q18, Q19, Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.9318, 40.774128 ] } }, -{ "type": "Feature", "properties": { "id": 552991, "name": "Fresh Pond Rd/Eliot Av", "direction": "S", "lat": 40.71387, "lon": -73.901085, "routes": "Q38, QM24, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.901085, 40.71387 ] } }, -{ "type": "Feature", "properties": { "id": 552992, "name": "Cross Bay Blvd/157 Av", "direction": "S", "lat": 40.662228, "lon": -73.8408, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.8408, 40.662228 ] } }, -{ "type": "Feature", "properties": { "id": 552993, "name": "Hoffman Dr/Woodhaven Blvd", "direction": "E", "lat": 40.73315, "lon": -73.87108, "routes": "Q11, Q21, Q38, Q52+, Q29, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.87108, 40.73315 ] } }, -{ "type": "Feature", "properties": { "id": 552994, "name": "57 Av/92 St", "direction": "W", "lat": 40.735542, "lon": -73.86988, "routes": "QM40, QM10, Q38, QM11, Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.86988, 40.735542 ] } }, -{ "type": "Feature", "properties": { "id": 552995, "name": "59 Av/94 St", "direction": "E", "lat": 40.73476, "lon": -73.866936, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.866936, 40.73476 ] } }, -{ "type": "Feature", "properties": { "id": 552997, "name": "Beach Channel Dr/Beach 51 St", "direction": "W", "lat": 40.595398, "lon": -73.78149, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.78149, 40.595398 ] } }, -{ "type": "Feature", "properties": { "id": 552998, "name": "Rockaway Beach Blvd/Beach 115 St", "direction": "E", "lat": 40.579937, "lon": -73.83646, "routes": "QM16, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.83646, 40.579937 ] } }, -{ "type": "Feature", "properties": { "id": 552999, "name": "74 St - Roosevelt Av Terminal/Q49 Stop", "direction": "SW", "lat": 40.74659, "lon": -73.89075, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.89075, 40.74659 ] } }, -{ "type": "Feature", "properties": { "id": 553002, "name": "69 St/58 Av", "direction": "N", "lat": 40.724545, "lon": -73.89433, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89433, 40.724545 ] } }, -{ "type": "Feature", "properties": { "id": 553007, "name": "23 St/43 Av", "direction": "SW", "lat": 40.749634, "lon": -73.9439, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.9439, 40.749634 ] } }, -{ "type": "Feature", "properties": { "id": 553013, "name": "Broadway/75 St", "direction": "W", "lat": 40.746212, "lon": -73.89011, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.89011, 40.746212 ] } }, -{ "type": "Feature", "properties": { "id": 553014, "name": "Broadway/75 St", "direction": "E", "lat": 40.746086, "lon": -73.89009, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.89009, 40.746086 ] } }, -{ "type": "Feature", "properties": { "id": 553020, "name": "Jamaica Av /175 St", "direction": "E", "lat": 40.707825, "lon": -73.785515, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.785515, 40.707825 ] } }, -{ "type": "Feature", "properties": { "id": 553021, "name": "Merrick Blvd/233 St", "direction": "W", "lat": 40.67495, "lon": -73.736664, "routes": "Q5, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.736664, 40.67495 ] } }, -{ "type": "Feature", "properties": { "id": 553024, "name": "Northern Blvd/Broadway", "direction": "W", "lat": 40.753395, "lon": -73.90739, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.90739, 40.753395 ] } }, -{ "type": "Feature", "properties": { "id": 553025, "name": "89 St/31 Av", "direction": "N", "lat": 40.760128, "lon": -73.87942, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87942, 40.760128 ] } }, -{ "type": "Feature", "properties": { "id": 553026, "name": "21 St/24 Av", "direction": "NE", "lat": 40.776688, "lon": -73.9213, "routes": "Q100, Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.9213, 40.776688 ] } }, -{ "type": "Feature", "properties": { "id": 553027, "name": "Cross Bay Blvd/E 16 Rd", "direction": "N", "lat": 40.60152, "lon": -73.82009, "routes": "Q53+, Q52+, QM16, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.82009, 40.60152 ] } }, -{ "type": "Feature", "properties": { "id": 553028, "name": "21 St/Hoyt Av N", "direction": "NE", "lat": 40.775475, "lon": -73.92281, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.92281, 40.775475 ] } }, -{ "type": "Feature", "properties": { "id": 553029, "name": "Rockaway Beach Blvd/Beach 102 St", "direction": "W", "lat": 40.583862, "lon": -73.82356, "routes": "Q22, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.82356, 40.583862 ] } }, -{ "type": "Feature", "properties": { "id": 553031, "name": "Beach Channel Dr/Beach 44 St", "direction": "W", "lat": 40.595768, "lon": -73.775894, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.775894, 40.595768 ] } }, -{ "type": "Feature", "properties": { "id": 553033, "name": "Queens Plaza South/24 St", "direction": "SE", "lat": 40.75078, "lon": -73.94134, "routes": "Q69, Q66, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.94134, 40.75078 ] } }, -{ "type": "Feature", "properties": { "id": 553034, "name": "Queens Plaza South/27 St", "direction": "SE", "lat": 40.749992, "lon": -73.939514, "routes": "Q96, Q102, Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.939514, 40.749992 ] } }, -{ "type": "Feature", "properties": { "id": 553036, "name": "Jamaica Av/160 St", "direction": "E", "lat": 40.703674, "lon": -73.79928, "routes": "Q112, Q56, Q110, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.79928, 40.703674 ] } }, -{ "type": "Feature", "properties": { "id": 553037, "name": "Queens Blvd/Ireland St", "direction": "E", "lat": 40.73821, "lon": -73.886246, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.886246, 40.73821 ] } }, -{ "type": "Feature", "properties": { "id": 553038, "name": "Jamaica Av/93 Av", "direction": "W", "lat": 40.713615, "lon": -73.76084, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76084, 40.713615 ] } }, -{ "type": "Feature", "properties": { "id": 553039, "name": "65 Pl/Laurel Hill Blvd", "direction": "S", "lat": 40.740265, "lon": -73.89977, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89977, 40.740265 ] } }, -{ "type": "Feature", "properties": { "id": 553040, "name": "21 St/Broadway", "direction": "NE", "lat": 40.765446, "lon": -73.93139, "routes": "Q69, Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.93139, 40.765446 ] } }, -{ "type": "Feature", "properties": { "id": 553042, "name": "164 St/Pidgeon Meadow Road", "direction": "NW", "lat": 40.75076, "lon": -73.803, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.803, 40.75076 ] } }, -{ "type": "Feature", "properties": { "id": 553044, "name": "109 Av/Rockaway Blvd", "direction": "E", "lat": 40.678913, "lon": -73.8338, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.8338, 40.678913 ] } }, -{ "type": "Feature", "properties": { "id": 553045, "name": "109 Av/110 St", "direction": "E", "lat": 40.679955, "lon": -73.83009, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.83009, 40.679955 ] } }, -{ "type": "Feature", "properties": { "id": 553046, "name": "69 Av/Juno St", "direction": "NE", "lat": 40.715607, "lon": -73.85286, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85286, 40.715607 ] } }, -{ "type": "Feature", "properties": { "id": 553047, "name": "Rockaway Beach Blvd/Beach 129 St", "direction": "E", "lat": 40.57601, "lon": -73.84777, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.84777, 40.57601 ] } }, -{ "type": "Feature", "properties": { "id": 553048, "name": "164 St/84 Av", "direction": "S", "lat": 40.715137, "lon": -73.80291, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80291, 40.715137 ] } }, -{ "type": "Feature", "properties": { "id": 553049, "name": "27 Av/2 St", "direction": "W", "lat": 40.77536, "lon": -73.93513, "routes": "Q103, Q102, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.93513, 40.77536 ] } }, -{ "type": "Feature", "properties": { "id": 553050, "name": "27 Av/2 St", "direction": "E", "lat": 40.775143, "lon": -73.93493, "routes": "Q18, Q102, Q103, Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.93493, 40.775143 ] } }, -{ "type": "Feature", "properties": { "id": 553051, "name": "Rust St/57 Dr", "direction": "SE", "lat": 40.722, "lon": -73.91337, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91337, 40.722 ] } }, -{ "type": "Feature", "properties": { "id": 553052, "name": "Rust St/58 Rd", "direction": "NW", "lat": 40.72022, "lon": -73.91173, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91173, 40.72022 ] } }, -{ "type": "Feature", "properties": { "id": 553054, "name": "Thomson Av/Van Dam St", "direction": "W", "lat": 40.744865, "lon": -73.93373, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.93373, 40.744865 ] } }, -{ "type": "Feature", "properties": { "id": 553058, "name": "Parsons Blvd/Village Rd", "direction": "S", "lat": 40.7173, "lon": -73.80836, "routes": "Q25, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.80836, 40.7173 ] } }, -{ "type": "Feature", "properties": { "id": 553059, "name": "74 St/37 Av", "direction": "N", "lat": 40.748745, "lon": -73.89174, "routes": "Q49, Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89174, 40.748745 ] } }, -{ "type": "Feature", "properties": { "id": 553060, "name": "44 Dr/21 St", "direction": "W", "lat": 40.74817, "lon": -73.94722, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.94722, 40.74817 ] } }, -{ "type": "Feature", "properties": { "id": 553061, "name": "35 Av/76 St", "direction": "E", "lat": 40.75119, "lon": -73.89012, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.89012, 40.75119 ] } }, -{ "type": "Feature", "properties": { "id": 553062, "name": "35 Av/76 St", "direction": "W", "lat": 40.75126, "lon": -73.89049, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.89049, 40.75126 ] } }, -{ "type": "Feature", "properties": { "id": 553063, "name": "35 Av/78 St", "direction": "E", "lat": 40.751385, "lon": -73.888275, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.888275, 40.751385 ] } }, -{ "type": "Feature", "properties": { "id": 553064, "name": "35 Av/78 St", "direction": "W", "lat": 40.751453, "lon": -73.88867, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.88867, 40.751453 ] } }, -{ "type": "Feature", "properties": { "id": 553065, "name": "89 St/32 Av", "direction": "N", "lat": 40.758266, "lon": -73.879135, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.879135, 40.758266 ] } }, -{ "type": "Feature", "properties": { "id": 553066, "name": "89 St/30 Av", "direction": "N", "lat": 40.762104, "lon": -73.87986, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87986, 40.762104 ] } }, -{ "type": "Feature", "properties": { "id": 553067, "name": "92 St/30 Av", "direction": "S", "lat": 40.761517, "lon": -73.877045, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.877045, 40.761517 ] } }, -{ "type": "Feature", "properties": { "id": 553068, "name": "92 St/32 Av", "direction": "S", "lat": 40.758812, "lon": -73.87656, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87656, 40.758812 ] } }, -{ "type": "Feature", "properties": { "id": 553069, "name": "90 St/Northern Blvd", "direction": "S", "lat": 40.75619, "lon": -73.877975, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.877975, 40.75619 ] } }, -{ "type": "Feature", "properties": { "id": 553070, "name": "90 St/35 Av", "direction": "S", "lat": 40.75269, "lon": -73.87731, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87731, 40.75269 ] } }, -{ "type": "Feature", "properties": { "id": 553074, "name": "21 St/25 Rd", "direction": "NE", "lat": 40.774162, "lon": -73.9243, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.9243, 40.774162 ] } }, -{ "type": "Feature", "properties": { "id": 553075, "name": "21 St/23 Dr", "direction": "NE", "lat": 40.77775, "lon": -73.92006, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.92006, 40.77775 ] } }, -{ "type": "Feature", "properties": { "id": 553076, "name": "21 St/23 Av", "direction": "NE", "lat": 40.77874, "lon": -73.91884, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.91884, 40.77874 ] } }, -{ "type": "Feature", "properties": { "id": 553077, "name": "21 St/Ditmars Blvd", "direction": "NE", "lat": 40.780365, "lon": -73.916885, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.916885, 40.780365 ] } }, -{ "type": "Feature", "properties": { "id": 553078, "name": "Ditmars Blvd/24 St", "direction": "SE", "lat": 40.77915, "lon": -73.915085, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.915085, 40.77915 ] } }, -{ "type": "Feature", "properties": { "id": 553079, "name": "Ditmars Blvd/26 St", "direction": "SE", "lat": 40.77819, "lon": -73.913666, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.913666, 40.77819 ] } }, -{ "type": "Feature", "properties": { "id": 553080, "name": "Ditmars Blvd/28 St", "direction": "SE", "lat": 40.777206, "lon": -73.912384, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.912384, 40.777206 ] } }, -{ "type": "Feature", "properties": { "id": 553082, "name": "Ditmars Blvd/42 St", "direction": "SE", "lat": 40.7717, "lon": -73.90454, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.90454, 40.7717 ] } }, -{ "type": "Feature", "properties": { "id": 553083, "name": "Ditmars Blvd/45 St", "direction": "SE", "lat": 40.770706, "lon": -73.903145, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.903145, 40.770706 ] } }, -{ "type": "Feature", "properties": { "id": 553084, "name": "Ditmars Blvd/47 St", "direction": "SE", "lat": 40.76971, "lon": -73.9017, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.9017, 40.76971 ] } }, -{ "type": "Feature", "properties": { "id": 553085, "name": "Ditmars Blvd/49 St", "direction": "SE", "lat": 40.768677, "lon": -73.90029, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.90029, 40.768677 ] } }, -{ "type": "Feature", "properties": { "id": 553086, "name": "Ditmars Blvd/71 St", "direction": "E", "lat": 40.768032, "lon": -73.89783, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89783, 40.768032 ] } }, -{ "type": "Feature", "properties": { "id": 553087, "name": "Ditmars Blvd/73 St", "direction": "E", "lat": 40.76825, "lon": -73.89602, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89602, 40.76825 ] } }, -{ "type": "Feature", "properties": { "id": 553089, "name": "157 Av/86 St", "direction": "W", "lat": 40.66171, "lon": -73.84706, "routes": "Q41, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84706, 40.66171 ] } }, -{ "type": "Feature", "properties": { "id": 553090, "name": "Ditmars Blvd/81 St", "direction": "E", "lat": 40.768837, "lon": -73.88891, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.88891, 40.768837 ] } }, -{ "type": "Feature", "properties": { "id": 553093, "name": "Ditmars Blvd/Hazen St", "direction": "NW", "lat": 40.768513, "lon": -73.899704, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.899704, 40.768513 ] } }, -{ "type": "Feature", "properties": { "id": 553094, "name": "Ditmars Blvd/47 St", "direction": "NW", "lat": 40.769997, "lon": -73.90184, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.90184, 40.769997 ] } }, -{ "type": "Feature", "properties": { "id": 553098, "name": "Ditmars Blvd/35 St", "direction": "NW", "lat": 40.775043, "lon": -73.90899, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.90899, 40.775043 ] } }, -{ "type": "Feature", "properties": { "id": 553099, "name": "Ditmars Blvd/27 St", "direction": "NW", "lat": 40.778, "lon": -73.91314, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.91314, 40.778 ] } }, -{ "type": "Feature", "properties": { "id": 553100, "name": "Ditmars Blvd/Crescent St", "direction": "NW", "lat": 40.77895, "lon": -73.91447, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.91447, 40.77895 ] } }, -{ "type": "Feature", "properties": { "id": 553101, "name": "21 St/22 Dr", "direction": "SW", "lat": 40.779266, "lon": -73.91844, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.91844, 40.779266 ] } }, -{ "type": "Feature", "properties": { "id": 553102, "name": "21 St/24 Av", "direction": "SW", "lat": 40.77679, "lon": -73.92147, "routes": "Q69, Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.92147, 40.77679 ] } }, -{ "type": "Feature", "properties": { "id": 553106, "name": "Rockaway Beach Blvd/Beach 112 St", "direction": "E", "lat": 40.58081, "lon": -73.83348, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.83348, 40.58081 ] } }, -{ "type": "Feature", "properties": { "id": 553109, "name": "35 Av/88 St", "direction": "W", "lat": 40.752434, "lon": -73.87928, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87928, 40.752434 ] } }, -{ "type": "Feature", "properties": { "id": 553110, "name": "90 St/34 Av", "direction": "S", "lat": 40.754715, "lon": -73.877716, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.877716, 40.754715 ] } }, -{ "type": "Feature", "properties": { "id": 553111, "name": "90 St/32 Av", "direction": "S", "lat": 40.75836, "lon": -73.87837, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87837, 40.75836 ] } }, -{ "type": "Feature", "properties": { "id": 553112, "name": "92 St/Astoria Blvd", "direction": "S", "lat": 40.762955, "lon": -73.87729, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.87729, 40.762955 ] } }, -{ "type": "Feature", "properties": { "id": 553113, "name": "Jacob Riis Park Rd/Bath House Stop #1", "direction": "E", "lat": 40.56649, "lon": -73.87148, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.87148, 40.56649 ] } }, -{ "type": "Feature", "properties": { "id": 553114, "name": "35 Av/86 St", "direction": "W", "lat": 40.752228, "lon": -73.88118, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.88118, 40.752228 ] } }, -{ "type": "Feature", "properties": { "id": 553116, "name": "78 St/Astoria Blvd", "direction": "N", "lat": 40.76683, "lon": -73.89114, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.89114, 40.76683 ] } }, -{ "type": "Feature", "properties": { "id": 553117, "name": "Sanford Av/Kissena Blvd", "direction": "E", "lat": 40.75715, "lon": -73.826775, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.826775, 40.75715 ] } }, -{ "type": "Feature", "properties": { "id": 553118, "name": "108 St/49 Av", "direction": "SE", "lat": 40.745182, "lon": -73.85599, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.85599, 40.745182 ] } }, -{ "type": "Feature", "properties": { "id": 553120, "name": "101 Av /Brisbin St", "direction": "E", "lat": 40.694977, "lon": -73.80817, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.80817, 40.694977 ] } }, -{ "type": "Feature", "properties": { "id": 553122, "name": "Junction Blvd/Horace Harding Expwy", "direction": "SE", "lat": 40.733612, "lon": -73.864365, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.864365, 40.733612 ] } }, -{ "type": "Feature", "properties": { "id": 553124, "name": "Jamaica Av/197 St", "direction": "W", "lat": 40.713528, "lon": -73.76307, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.76307, 40.713528 ] } }, -{ "type": "Feature", "properties": { "id": 553125, "name": "21 St/23 Dr", "direction": "SW", "lat": 40.77764, "lon": -73.92043, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.92043, 40.77764 ] } }, -{ "type": "Feature", "properties": { "id": 553126, "name": "Parsons Blvd/Jamaica Av", "direction": "NW", "lat": 40.703617, "lon": -73.80022, "routes": "Q34, Q25, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80022, 40.703617 ] } }, -{ "type": "Feature", "properties": { "id": 553127, "name": "Parsons Blvd/Jamaica Av", "direction": "SE", "lat": 40.703426, "lon": -73.80035, "routes": "Q34, Q25, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80035, 40.703426 ] } }, -{ "type": "Feature", "properties": { "id": 553130, "name": "28 Av/Ulmer St", "direction": "E", "lat": 40.772766, "lon": -73.83663, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83663, 40.772766 ] } }, -{ "type": "Feature", "properties": { "id": 553131, "name": "Jamaica Av /148 St", "direction": "E", "lat": 40.701714, "lon": -73.80642, "routes": "Q09, Q08, Q41, Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.80642, 40.701714 ] } }, -{ "type": "Feature", "properties": { "id": 553132, "name": "Jamaica Av /153 St", "direction": "E", "lat": 40.702744, "lon": -73.802086, "routes": "Q08, Q09, Q06, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.802086, 40.702744 ] } }, -{ "type": "Feature", "properties": { "id": 553133, "name": "Jamaica Av /162 St", "direction": "E", "lat": 40.704315, "lon": -73.7975, "routes": "Q41, Q06, Q08, Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.7975, 40.704315 ] } }, -{ "type": "Feature", "properties": { "id": 553134, "name": "Jamaica Av /165 St", "direction": "E", "lat": 40.705288, "lon": -73.79522, "routes": "Q08, Q09, Q06, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.79522, 40.705288 ] } }, -{ "type": "Feature", "properties": { "id": 553135, "name": "157 Av/Cohancy St", "direction": "W", "lat": 40.663326, "lon": -73.835686, "routes": "QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.835686, 40.663326 ] } }, -{ "type": "Feature", "properties": { "id": 553136, "name": "157 Av/99 St", "direction": "E", "lat": 40.663277, "lon": -73.83524, "routes": "QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.83524, 40.663277 ] } }, -{ "type": "Feature", "properties": { "id": 553137, "name": "102 St/157 Av", "direction": "N", "lat": 40.663963, "lon": -73.83233, "routes": "QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.83233, 40.663963 ] } }, -{ "type": "Feature", "properties": { "id": 553139, "name": "Sutphin Blvd/94 Av", "direction": "SE", "lat": 40.69914, "lon": -73.807076, "routes": "Q65, Q34, Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.807076, 40.69914 ] } }, -{ "type": "Feature", "properties": { "id": 553141, "name": "Woodhaven Blvd/Metropolitan Av", "direction": "S", "lat": 40.71208, "lon": -73.859985, "routes": "Q52+, QM15, Q11, BM5, Q21, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.859985, 40.71208 ] } }, -{ "type": "Feature", "properties": { "id": 553146, "name": "134 St/150 Av", "direction": "S", "lat": 40.663795, "lon": -73.80661, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.80661, 40.663795 ] } }, -{ "type": "Feature", "properties": { "id": 553147, "name": "104 St /Rau Ct", "direction": "S", "lat": 40.654133, "lon": -73.82814, "routes": "Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.82814, 40.654133 ] } }, -{ "type": "Feature", "properties": { "id": 553148, "name": "164 St/Horace Harding Expwy", "direction": "N", "lat": 40.73805, "lon": -73.8045, "routes": "QM44, QM4" }, "geometry": { "type": "Point", "coordinates": [ -73.8045, 40.73805 ] } }, -{ "type": "Feature", "properties": { "id": 553151, "name": "Rockaway Blvd/140 St", "direction": "E", "lat": 40.674175, "lon": -73.80036, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.80036, 40.674175 ] } }, -{ "type": "Feature", "properties": { "id": 553154, "name": "35 Av/35 St", "direction": "SE", "lat": 40.756676, "lon": -73.92549, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.92549, 40.756676 ] } }, -{ "type": "Feature", "properties": { "id": 553156, "name": "Lefferts Blvd/Cuthbert Rd", "direction": "NE", "lat": 40.70822, "lon": -73.83069, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83069, 40.70822 ] } }, -{ "type": "Feature", "properties": { "id": 553159, "name": "Jamaica Av /162 St", "direction": "W", "lat": 40.70454, "lon": -73.79764, "routes": "Q08, Q09, Q41, Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79764, 40.70454 ] } }, -{ "type": "Feature", "properties": { "id": 553160, "name": "Woodhaven Blvd/101 Av", "direction": "SE", "lat": 40.684017, "lon": -73.84625, "routes": "Q21, Q11, QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.84625, 40.684017 ] } }, -{ "type": "Feature", "properties": { "id": 553163, "name": "Linden Pl/35 Av", "direction": "N", "lat": 40.764915, "lon": -73.83063, "routes": "Q34, Q25, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.83063, 40.764915 ] } }, -{ "type": "Feature", "properties": { "id": 553164, "name": "Linden Pl/35 Av", "direction": "S", "lat": 40.764797, "lon": -73.830795, "routes": "Q25, Q34, Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.830795, 40.764797 ] } }, -{ "type": "Feature", "properties": { "id": 553165, "name": "Astoria Blvd/31 Dr", "direction": "W", "lat": 40.76071, "lon": -73.86144, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.86144, 40.76071 ] } }, -{ "type": "Feature", "properties": { "id": 553166, "name": "Astoria Blvd/108 St", "direction": "E", "lat": 40.760204, "lon": -73.86085, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.86085, 40.760204 ] } }, -{ "type": "Feature", "properties": { "id": 553168, "name": "Austin St/70 Rd", "direction": "E", "lat": 40.7204, "lon": -73.84582, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84582, 40.7204 ] } }, -{ "type": "Feature", "properties": { "id": 553169, "name": "71 Av/Loubet St", "direction": "SW", "lat": 40.71263, "lon": -73.84973, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.84973, 40.71263 ] } }, -{ "type": "Feature", "properties": { "id": 553170, "name": "Astoria Blvd/Humphreys St", "direction": "W", "lat": 40.761658, "lon": -73.866325, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.866325, 40.761658 ] } }, -{ "type": "Feature", "properties": { "id": 553171, "name": "44 Dr/21 St", "direction": "E", "lat": 40.74795, "lon": -73.94718, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94718, 40.74795 ] } }, -{ "type": "Feature", "properties": { "id": 553173, "name": "44 Dr/Jackson Av", "direction": "E", "lat": 40.747234, "lon": -73.94301, "routes": "Q67, Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.94301, 40.747234 ] } }, -{ "type": "Feature", "properties": { "id": 553174, "name": "Jackson Av/Dutch Kills St", "direction": "E", "lat": 40.747726, "lon": -73.94028, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.94028, 40.747726 ] } }, -{ "type": "Feature", "properties": { "id": 553176, "name": "Hamilton Pl/Jay Av", "direction": "SE", "lat": 40.72647, "lon": -73.9005, "routes": "Q18, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9005, 40.72647 ] } }, -{ "type": "Feature", "properties": { "id": 553177, "name": "Linden Pl/Whitestone Expwy", "direction": "S", "lat": 40.77167, "lon": -73.83362, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.83362, 40.77167 ] } }, -{ "type": "Feature", "properties": { "id": 553178, "name": "Woodhaven Blvd/Booth St", "direction": "NE", "lat": 40.731613, "lon": -73.87119, "routes": "QM12, QM11, QM40, QM42, QM10" }, "geometry": { "type": "Point", "coordinates": [ -73.87119, 40.731613 ] } }, -{ "type": "Feature", "properties": { "id": 553179, "name": "Horace Harding Expwy/Little Neck Pkwy", "direction": "E", "lat": 40.763832, "lon": -73.724075, "routes": "QM5, QM8, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.724075, 40.763832 ] } }, -{ "type": "Feature", "properties": { "id": 553180, "name": "Woodhaven Blvd/97 Av", "direction": "SE", "lat": 40.685658, "lon": -73.847046, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.847046, 40.685658 ] } }, -{ "type": "Feature", "properties": { "id": 553183, "name": "Otis Av/Calloway St", "direction": "SW", "lat": 40.736916, "lon": -73.85625, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.85625, 40.736916 ] } }, -{ "type": "Feature", "properties": { "id": 553187, "name": "41 Av/Queens Plaza North", "direction": "NW", "lat": 40.74994, "lon": -73.93649, "routes": "Q101, Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.93649, 40.74994 ] } }, -{ "type": "Feature", "properties": { "id": 553188, "name": "23 Av/86 St", "direction": "W", "lat": 40.76737, "lon": -73.88356, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.88356, 40.76737 ] } }, -{ "type": "Feature", "properties": { "id": 553189, "name": "23 Av/85 St", "direction": "W", "lat": 40.767082, "lon": -73.8849, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.8849, 40.767082 ] } }, -{ "type": "Feature", "properties": { "id": 553190, "name": "Cross Bay Blvd/158 Av", "direction": "N", "lat": 40.660767, "lon": -73.840065, "routes": "QM17, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.840065, 40.660767 ] } }, -{ "type": "Feature", "properties": { "id": 553191, "name": "20 Av/31 St", "direction": "SE", "lat": 40.779488, "lon": -73.90611, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.90611, 40.779488 ] } }, -{ "type": "Feature", "properties": { "id": 553193, "name": "Jackson Av/42 Rd", "direction": "W", "lat": 40.748405, "lon": -73.93904, "routes": "Q100, Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.93904, 40.748405 ] } }, -{ "type": "Feature", "properties": { "id": 553197, "name": "80 St/Eliot Av", "direction": "SE", "lat": 40.724846, "lon": -73.879196, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.879196, 40.724846 ] } }, -{ "type": "Feature", "properties": { "id": 553198, "name": "80 St/Juniper Blvd North", "direction": "SE", "lat": 40.72141, "lon": -73.87646, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.87646, 40.72141 ] } }, -{ "type": "Feature", "properties": { "id": 553199, "name": "80 St/Penelope Av", "direction": "SE", "lat": 40.719242, "lon": -73.8747, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.8747, 40.719242 ] } }, -{ "type": "Feature", "properties": { "id": 553200, "name": "80 St/Furmanville Av", "direction": "E", "lat": 40.717915, "lon": -73.872925, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.872925, 40.717915 ] } }, -{ "type": "Feature", "properties": { "id": 553201, "name": "Cooper Av/81 St", "direction": "SE", "lat": 40.709343, "lon": -73.86967, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.86967, 40.709343 ] } }, -{ "type": "Feature", "properties": { "id": 553202, "name": "80 St/Furmanville Av", "direction": "W", "lat": 40.718037, "lon": -73.87269, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.87269, 40.718037 ] } }, -{ "type": "Feature", "properties": { "id": 553203, "name": "80 St/Penelope Av", "direction": "NW", "lat": 40.719555, "lon": -73.87468, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.87468, 40.719555 ] } }, -{ "type": "Feature", "properties": { "id": 553204, "name": "80 St/Juniper Blvd North", "direction": "NW", "lat": 40.721447, "lon": -73.8762, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.8762, 40.721447 ] } }, -{ "type": "Feature", "properties": { "id": 553205, "name": "80 St/Eliot Av", "direction": "NW", "lat": 40.725185, "lon": -73.879196, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.879196, 40.725185 ] } }, -{ "type": "Feature", "properties": { "id": 553210, "name": "108 St/63 Rd", "direction": "NW", "lat": 40.734474, "lon": -73.850266, "routes": "QM40, QM11, QM40, QM10, QM10, QM11" }, "geometry": { "type": "Point", "coordinates": [ -73.850266, 40.734474 ] } }, -{ "type": "Feature", "properties": { "id": 553211, "name": "Queens Midtown Expwy/Grand Av", "direction": "W", "lat": 40.725773, "lon": -73.896286, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.896286, 40.725773 ] } }, -{ "type": "Feature", "properties": { "id": 553212, "name": "Queens Midtown Expwy/Hull Av", "direction": "W", "lat": 40.7262, "lon": -73.89926, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.89926, 40.7262 ] } }, -{ "type": "Feature", "properties": { "id": 553213, "name": "Broadway/Whitney Av", "direction": "NW", "lat": 40.74145, "lon": -73.88031, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.88031, 40.74145 ] } }, -{ "type": "Feature", "properties": { "id": 553214, "name": "Broadway/Whitney Av", "direction": "SE", "lat": 40.741417, "lon": -73.88047, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.88047, 40.741417 ] } }, -{ "type": "Feature", "properties": { "id": 553215, "name": "Union Tpke/Grenfell St", "direction": "NE", "lat": 40.712296, "lon": -73.83457, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83457, 40.712296 ] } }, -{ "type": "Feature", "properties": { "id": 553217, "name": "130 St/133 Av", "direction": "N", "lat": 40.669975, "lon": -73.80935, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.80935, 40.669975 ] } }, -{ "type": "Feature", "properties": { "id": 553218, "name": "130 St/Sutter Av", "direction": "N", "lat": 40.67234, "lon": -73.80862, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.80862, 40.67234 ] } }, -{ "type": "Feature", "properties": { "id": 553220, "name": "130 St/133 Av", "direction": "S", "lat": 40.670437, "lon": -73.809395, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.809395, 40.670437 ] } }, -{ "type": "Feature", "properties": { "id": 553221, "name": "130 St /135 Av", "direction": "S", "lat": 40.66844, "lon": -73.81, "routes": "QM18, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.81, 40.66844 ] } }, -{ "type": "Feature", "properties": { "id": 553222, "name": "43 Av/104 St", "direction": "W", "lat": 40.74783, "lon": -73.86092, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86092, 40.74783 ] } }, -{ "type": "Feature", "properties": { "id": 553224, "name": "138 St / 31 Rd", "direction": "S", "lat": 40.770054, "lon": -73.83054, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.83054, 40.770054 ] } }, -{ "type": "Feature", "properties": { "id": 553225, "name": "Cross Bay Blvd/Wildlife Refuge", "direction": "SE", "lat": 40.61738, "lon": -73.824, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.824, 40.61738 ] } }, -{ "type": "Feature", "properties": { "id": 553228, "name": "21 St/21 Av", "direction": "NE", "lat": 40.782375, "lon": -73.9144, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.9144, 40.782375 ] } }, -{ "type": "Feature", "properties": { "id": 553229, "name": "21 St/21 Av", "direction": "SW", "lat": 40.78226, "lon": -73.91478, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.91478, 40.78226 ] } }, -{ "type": "Feature", "properties": { "id": 553233, "name": "Guy R Brewer Blvd/47 Av", "direction": "N", "lat": 40.660206, "lon": -73.76784, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.76784, 40.660206 ] } }, -{ "type": "Feature", "properties": { "id": 553234, "name": "Guy R Brewer Blvd/147 Av", "direction": "S", "lat": 40.66025, "lon": -73.76803, "routes": "Q113, Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.76803, 40.66025 ] } }, -{ "type": "Feature", "properties": { "id": 553235, "name": "Metropolitan Av/Alderton St", "direction": "W", "lat": 40.711662, "lon": -73.85845, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.85845, 40.711662 ] } }, -{ "type": "Feature", "properties": { "id": 553236, "name": "Parsons Blvd/88 Av", "direction": "NW", "lat": 40.707283, "lon": -73.802414, "routes": "Q25, Q34, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.802414, 40.707283 ] } }, -{ "type": "Feature", "properties": { "id": 553238, "name": "Aqueduct Racetrack / Resorts Casino", "direction": "NE", "lat": 40.676575, "lon": -73.83086, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.83086, 40.676575 ] } }, -{ "type": "Feature", "properties": { "id": 553239, "name": "Aqueduct Racetrack / Resorts Casino", "direction": "NE", "lat": 40.67665, "lon": -73.8308, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.8308, 40.67665 ] } }, -{ "type": "Feature", "properties": { "id": 553240, "name": "133 Av/ Lefferts Blvd", "direction": "W", "lat": 40.672455, "lon": -73.82048, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.82048, 40.672455 ] } }, -{ "type": "Feature", "properties": { "id": 553243, "name": "Rockaway Beach Blvd/Beach 67 St", "direction": "W", "lat": 40.590225, "lon": -73.79613, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.79613, 40.590225 ] } }, -{ "type": "Feature", "properties": { "id": 553246, "name": "135 Av/142 St", "direction": "E", "lat": 40.66818, "lon": -73.79684, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79684, 40.66818 ] } }, -{ "type": "Feature", "properties": { "id": 553248, "name": "143 St/130 Av", "direction": "N", "lat": 40.67107, "lon": -73.7959, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.7959, 40.67107 ] } }, -{ "type": "Feature", "properties": { "id": 553249, "name": "143 St/Sutter Av", "direction": "N", "lat": 40.67261, "lon": -73.79567, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79567, 40.67261 ] } }, -{ "type": "Feature", "properties": { "id": 553250, "name": "143 St/135 Av", "direction": "S", "lat": 40.668438, "lon": -73.79635, "routes": "Q40" }, "geometry": { "type": "Point", "coordinates": [ -73.79635, 40.668438 ] } }, -{ "type": "Feature", "properties": { "id": 553253, "name": "Maurice Av/Maspeth Av", "direction": "NE", "lat": 40.72344, "lon": -73.91224, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91224, 40.72344 ] } }, -{ "type": "Feature", "properties": { "id": 553254, "name": "74 St/34 Av", "direction": "N", "lat": 40.753143, "lon": -73.89243, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89243, 40.753143 ] } }, -{ "type": "Feature", "properties": { "id": 553259, "name": "109 Av/124 St", "direction": "W", "lat": 40.683456, "lon": -73.818245, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.818245, 40.683456 ] } }, -{ "type": "Feature", "properties": { "id": 553260, "name": "109 Av/121 St", "direction": "W", "lat": 40.682796, "lon": -73.82054, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82054, 40.682796 ] } }, -{ "type": "Feature", "properties": { "id": 553261, "name": "109 Av/Lefferts Blvd", "direction": "W", "lat": 40.682346, "lon": -73.82214, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82214, 40.682346 ] } }, -{ "type": "Feature", "properties": { "id": 553262, "name": "109 Av/116 St", "direction": "W", "lat": 40.681545, "lon": -73.82499, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82499, 40.681545 ] } }, -{ "type": "Feature", "properties": { "id": 553263, "name": "109 Av/113 St", "direction": "W", "lat": 40.68092, "lon": -73.82711, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82711, 40.68092 ] } }, -{ "type": "Feature", "properties": { "id": 553264, "name": "109 Av/111 St", "direction": "W", "lat": 40.68034, "lon": -73.82918, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82918, 40.68034 ] } }, -{ "type": "Feature", "properties": { "id": 553265, "name": "109 Av/111 St", "direction": "E", "lat": 40.680355, "lon": -73.82876, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82876, 40.680355 ] } }, -{ "type": "Feature", "properties": { "id": 553266, "name": "109 Av/113 St", "direction": "E", "lat": 40.680836, "lon": -73.827065, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.827065, 40.680836 ] } }, -{ "type": "Feature", "properties": { "id": 553267, "name": "109 Av/116 St", "direction": "E", "lat": 40.6815, "lon": -73.82481, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82481, 40.6815 ] } }, -{ "type": "Feature", "properties": { "id": 553268, "name": "109 Av/Lefferts Blvd", "direction": "E", "lat": 40.682205, "lon": -73.822266, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.822266, 40.682205 ] } }, -{ "type": "Feature", "properties": { "id": 553269, "name": "109 Av/121 St", "direction": "E", "lat": 40.682762, "lon": -73.82033, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.82033, 40.682762 ] } }, -{ "type": "Feature", "properties": { "id": 553270, "name": "109 Av/124 St", "direction": "E", "lat": 40.683517, "lon": -73.81768, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81768, 40.683517 ] } }, -{ "type": "Feature", "properties": { "id": 553271, "name": "128 St/109 Av", "direction": "NW", "lat": 40.68447, "lon": -73.81476, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81476, 40.68447 ] } }, -{ "type": "Feature", "properties": { "id": 553272, "name": "Beach Channel Dr/Nameoke St", "direction": "S", "lat": 40.60827, "lon": -73.75417, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75417, 40.60827 ] } }, -{ "type": "Feature", "properties": { "id": 553275, "name": "63 Dr/Queens Blvd", "direction": "SW", "lat": 40.73003, "lon": -73.86123, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.86123, 40.73003 ] } }, -{ "type": "Feature", "properties": { "id": 553276, "name": "S Conduit Av/130 St", "direction": "E", "lat": 40.666267, "lon": -73.81026, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.81026, 40.666267 ] } }, -{ "type": "Feature", "properties": { "id": 553278, "name": "Sutphin Blvd/Archer Av", "direction": "N", "lat": 40.701168, "lon": -73.807755, "routes": "Q08, Q09, Q40, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.807755, 40.701168 ] } }, -{ "type": "Feature", "properties": { "id": 553288, "name": "58 St/39 Av", "direction": "SW", "lat": 40.74807, "lon": -73.905396, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.905396, 40.74807 ] } }, -{ "type": "Feature", "properties": { "id": 553290, "name": "Rust St/57 Dr", "direction": "NW", "lat": 40.72157, "lon": -73.91286, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.91286, 40.72157 ] } }, -{ "type": "Feature", "properties": { "id": 553292, "name": "Poppenhusen Av/119 St", "direction": "SW", "lat": 40.791977, "lon": -73.850685, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.850685, 40.791977 ] } }, -{ "type": "Feature", "properties": { "id": 553295, "name": "Jamaica Av/153 St", "direction": "W", "lat": 40.702763, "lon": -73.802605, "routes": "Q25, Q65, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.802605, 40.702763 ] } }, -{ "type": "Feature", "properties": { "id": 553296, "name": "157 Av/Cross Bay Blvd", "direction": "E", "lat": 40.66247, "lon": -73.84091, "routes": "QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.84091, 40.66247 ] } }, -{ "type": "Feature", "properties": { "id": 553297, "name": "Liberty Av/95 St", "direction": "E", "lat": 40.680363, "lon": -73.84404, "routes": "Q07, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84404, 40.680363 ] } }, -{ "type": "Feature", "properties": { "id": 553299, "name": "Liberty Av /Lefferts Blvd", "direction": "E", "lat": 40.68626, "lon": -73.823975, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.823975, 40.68626 ] } }, -{ "type": "Feature", "properties": { "id": 553300, "name": "College Point Blvd/Nypd Academy Entrance", "direction": "SE", "lat": 40.7711, "lon": -73.843735, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.843735, 40.7711 ] } }, -{ "type": "Feature", "properties": { "id": 553301, "name": "College Point Blvd/Nypd Academy Entrance", "direction": "NW", "lat": 40.7715, "lon": -73.84376, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84376, 40.7715 ] } }, -{ "type": "Feature", "properties": { "id": 553305, "name": "Queens Blvd/58 St", "direction": "W", "lat": 40.742157, "lon": -73.90759, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.90759, 40.742157 ] } }, -{ "type": "Feature", "properties": { "id": 553306, "name": "Vernon Blvd/34 Av", "direction": "SW", "lat": 40.765766, "lon": -73.94025, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.94025, 40.765766 ] } }, -{ "type": "Feature", "properties": { "id": 553307, "name": "Lefferts Blvd/115 Av", "direction": "SE", "lat": 40.676853, "lon": -73.81963, "routes": "Q10, QM18" }, "geometry": { "type": "Point", "coordinates": [ -73.81963, 40.676853 ] } }, -{ "type": "Feature", "properties": { "id": 553310, "name": "Jamaica Av /93 Av", "direction": "E", "lat": 40.713345, "lon": -73.760544, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.760544, 40.713345 ] } }, -{ "type": "Feature", "properties": { "id": 553315, "name": "Broadway/48 St", "direction": "SE", "lat": 40.756, "lon": -73.91274, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91274, 40.756 ] } }, -{ "type": "Feature", "properties": { "id": 553316, "name": "49 St/Northern Blvd", "direction": "SW", "lat": 40.75371, "lon": -73.91345, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91345, 40.75371 ] } }, -{ "type": "Feature", "properties": { "id": 553317, "name": "Broadway/48 St", "direction": "NW", "lat": 40.756134, "lon": -73.912735, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.912735, 40.756134 ] } }, -{ "type": "Feature", "properties": { "id": 553332, "name": "Roosevelt Av/61 St", "direction": "E", "lat": 40.745674, "lon": -73.90211, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.90211, 40.745674 ] } }, -{ "type": "Feature", "properties": { "id": 553333, "name": "Queens Blvd/59 Av", "direction": "W", "lat": 40.734077, "lon": -73.871254, "routes": "Q11, Q53+, Q52+, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.871254, 40.734077 ] } }, -{ "type": "Feature", "properties": { "id": 553334, "name": "Rockaway Beach Blvd/Beach 67 St", "direction": "E", "lat": 40.59024, "lon": -73.7958, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.7958, 40.59024 ] } }, -{ "type": "Feature", "properties": { "id": 553335, "name": "Arverne Blvd/Beach 59 St", "direction": "E", "lat": 40.592995, "lon": -73.78937, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.78937, 40.592995 ] } }, -{ "type": "Feature", "properties": { "id": 553336, "name": "Beach 54 St/Beach Channel Dr", "direction": "N", "lat": 40.59477, "lon": -73.78443, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.78443, 40.59477 ] } }, -{ "type": "Feature", "properties": { "id": 553338, "name": "Beach 59 St/Rockaway Fwy", "direction": "S", "lat": 40.592636, "lon": -73.78909, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.78909, 40.592636 ] } }, -{ "type": "Feature", "properties": { "id": 553340, "name": "Park Ln South/Metropolitan Av", "direction": "NE", "lat": 40.708096, "lon": -73.836975, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.836975, 40.708096 ] } }, -{ "type": "Feature", "properties": { "id": 553341, "name": "71 Av/Metropolitan Av", "direction": "SW", "lat": 40.71034, "lon": -73.8511, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.8511, 40.71034 ] } }, -{ "type": "Feature", "properties": { "id": 553342, "name": "Metropolitan Av/71 Rd", "direction": "W", "lat": 40.710438, "lon": -73.85005, "routes": "QM42, QM12" }, "geometry": { "type": "Point", "coordinates": [ -73.85005, 40.710438 ] } }, -{ "type": "Feature", "properties": { "id": 553346, "name": "Woodhaven Blvd/101 Av", "direction": "NW", "lat": 40.684372, "lon": -73.846016, "routes": "Q52+, Q53+, Q11, QM15, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.846016, 40.684372 ] } }, -{ "type": "Feature", "properties": { "id": 553347, "name": "Woodhaven Blvd/91 Av", "direction": "NW", "lat": 40.690025, "lon": -73.85004, "routes": "Q52+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.85004, 40.690025 ] } }, -{ "type": "Feature", "properties": { "id": 553348, "name": "Woodhaven Blvd/Jamaica Av", "direction": "NW", "lat": 40.693825, "lon": -73.85205, "routes": "Q52+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.85205, 40.693825 ] } }, -{ "type": "Feature", "properties": { "id": 553349, "name": "Woodhaven Blvd/Jamaica Av", "direction": "NW", "lat": 40.69365, "lon": -73.851944, "routes": "Q21, QM15, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.851944, 40.69365 ] } }, -{ "type": "Feature", "properties": { "id": 553350, "name": "Woodhaven Blvd/89 Av", "direction": "NW", "lat": 40.691467, "lon": -73.85084, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.85084, 40.691467 ] } }, -{ "type": "Feature", "properties": { "id": 553351, "name": "Woodhaven Blvd/85 Rd", "direction": "N", "lat": 40.696037, "lon": -73.8527, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.8527, 40.696037 ] } }, -{ "type": "Feature", "properties": { "id": 553352, "name": "Cross Bay Blvd/Rockaway Blvd", "direction": "N", "lat": 40.680553, "lon": -73.84449, "routes": "QM15, Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.84449, 40.680553 ] } }, -{ "type": "Feature", "properties": { "id": 553353, "name": "Woodhaven Blvd/Jamaica Av", "direction": "SE", "lat": 40.69372, "lon": -73.85238, "routes": "QM15, Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.85238, 40.69372 ] } }, -{ "type": "Feature", "properties": { "id": 553354, "name": "Woodhaven Blvd/Jamaica Av", "direction": "SE", "lat": 40.69348, "lon": -73.852234, "routes": "Q52+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.852234, 40.69348 ] } }, -{ "type": "Feature", "properties": { "id": 553355, "name": "Woodhaven Blvd/85 Rd", "direction": "S", "lat": 40.696083, "lon": -73.85294, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.85294, 40.696083 ] } }, -{ "type": "Feature", "properties": { "id": 553357, "name": "Woodhaven Blvd/89 Av", "direction": "SE", "lat": 40.69117, "lon": -73.85095, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.85095, 40.69117 ] } }, -{ "type": "Feature", "properties": { "id": 553358, "name": "Woodhaven Blvd/91 Av", "direction": "SE", "lat": 40.68992, "lon": -73.85024, "routes": "Q52+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.85024, 40.68992 ] } }, -{ "type": "Feature", "properties": { "id": 553359, "name": "Woodhaven Blvd/101 Av", "direction": "SE", "lat": 40.68436, "lon": -73.846245, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.846245, 40.68436 ] } }, -{ "type": "Feature", "properties": { "id": 553360, "name": "Cross Bay Blvd/Pitkin Av", "direction": "S", "lat": 40.672085, "lon": -73.84335, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.84335, 40.672085 ] } }, -{ "type": "Feature", "properties": { "id": 553361, "name": "Cross Bay Blvd/Pitkin Av", "direction": "N", "lat": 40.672062, "lon": -73.84296, "routes": "Q52+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.84296, 40.672062 ] } }, -{ "type": "Feature", "properties": { "id": 553362, "name": "Rockaway Beach Blvd/Beach 84 St", "direction": "W", "lat": 40.58783, "lon": -73.80969, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.80969, 40.58783 ] } }, -{ "type": "Feature", "properties": { "id": 553363, "name": "Woodhaven Blvd/Yellowstone Blvd", "direction": "S", "lat": 40.714146, "lon": -73.85989, "routes": "Q11, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.85989, 40.714146 ] } }, -{ "type": "Feature", "properties": { "id": 553364, "name": "Cross Bay Blvd/Noel Rd", "direction": "N", "lat": 40.60796, "lon": -73.81912, "routes": "QM17, Q52+, QM16, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.81912, 40.60796 ] } }, -{ "type": "Feature", "properties": { "id": 553365, "name": "Rockaway Beach Blvd/Beach 92 St", "direction": "E", "lat": 40.586597, "lon": -73.81496, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.81496, 40.586597 ] } }, -{ "type": "Feature", "properties": { "id": 553366, "name": "Rockaway Beach Blvd/Beach 75 St", "direction": "E", "lat": 40.58867, "lon": -73.80261, "routes": "Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.80261, 40.58867 ] } }, -{ "type": "Feature", "properties": { "id": 553367, "name": "Rockaway Beach Blvd/Beach 73 St", "direction": "W", "lat": 40.589092, "lon": -73.801544, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.801544, 40.589092 ] } }, -{ "type": "Feature", "properties": { "id": 553368, "name": "Rockaway Beach Blvd/Beach 92 St", "direction": "W", "lat": 40.58662, "lon": -73.81532, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.81532, 40.58662 ] } }, -{ "type": "Feature", "properties": { "id": 553369, "name": "Rockaway Beach Blvd/Cross Bay Pkwy", "direction": "SW", "lat": 40.58567, "lon": -73.817474, "routes": "Q22, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.817474, 40.58567 ] } }, -{ "type": "Feature", "properties": { "id": 553371, "name": "Rockaway Beach Blvd/Beach 102 St", "direction": "E", "lat": 40.583553, "lon": -73.82374, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.82374, 40.583553 ] } }, -{ "type": "Feature", "properties": { "id": 553372, "name": "Rockaway Beach Blvd/Cross Bay Pkwy", "direction": "NE", "lat": 40.585598, "lon": -73.817345, "routes": "Q22, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.817345, 40.585598 ] } }, -{ "type": "Feature", "properties": { "id": 553373, "name": "Woodhaven Blvd/Myrtle Av", "direction": "S", "lat": 40.702435, "lon": -73.85548, "routes": "Q52+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.85548, 40.702435 ] } }, -{ "type": "Feature", "properties": { "id": 553375, "name": "Woodhaven Blvd/Everton St", "direction": "NW", "lat": 40.723236, "lon": -73.86795, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.86795, 40.723236 ] } }, -{ "type": "Feature", "properties": { "id": 553376, "name": "Cross Bay Blvd/157 Av", "direction": "N", "lat": 40.66245, "lon": -73.84051, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.84051, 40.66245 ] } }, -{ "type": "Feature", "properties": { "id": 553377, "name": "Cross Bay Blvd/Wildlife Refuge", "direction": "NW", "lat": 40.61772, "lon": -73.82379, "routes": "Q52+, Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.82379, 40.61772 ] } }, -{ "type": "Feature", "properties": { "id": 553378, "name": "Woodhaven Blvd/Polo Pl", "direction": "N", "lat": 40.712456, "lon": -73.859535, "routes": "Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.859535, 40.712456 ] } }, -{ "type": "Feature", "properties": { "id": 553383, "name": "Union Tpke/Crescent Apartments", "direction": "W", "lat": 40.707054, "lon": -73.85428, "routes": "QM12, Q23, QM42" }, "geometry": { "type": "Point", "coordinates": [ -73.85428, 40.707054 ] } }, -{ "type": "Feature", "properties": { "id": 553386, "name": "Seagirt Blvd/Camp Rd", "direction": "E", "lat": 40.595737, "lon": -73.75944, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75944, 40.595737 ] } }, -{ "type": "Feature", "properties": { "id": 553388, "name": "Beach 116 St/Newport Av", "direction": "SE", "lat": 40.5812, "lon": -73.8382, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.8382, 40.5812 ] } }, -{ "type": "Feature", "properties": { "id": 553389, "name": "Beach Channel Dr/Rockaway Ferry", "direction": "W", "lat": 40.583755, "lon": -73.832344, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.832344, 40.583755 ] } }, -{ "type": "Feature", "properties": { "id": 553391, "name": "Seagirt Blvd/Fernside Pl", "direction": "W", "lat": 40.59569, "lon": -73.75838, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.75838, 40.59569 ] } }, -{ "type": "Feature", "properties": { "id": 553403, "name": "134 St/149 Av", "direction": "S", "lat": 40.66546, "lon": -73.80606, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.80606, 40.66546 ] } }, -{ "type": "Feature", "properties": { "id": 553406, "name": "69 St/47 Av", "direction": "N", "lat": 40.739017, "lon": -73.895805, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.895805, 40.739017 ] } }, -{ "type": "Feature", "properties": { "id": 553410, "name": "Queens Blvd/65 Rd", "direction": "E", "lat": 40.7284, "lon": -73.85833, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.85833, 40.7284 ] } }, -{ "type": "Feature", "properties": { "id": 553411, "name": "134 St /155 Av", "direction": "S", "lat": 40.660973, "lon": -73.8075, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.8075, 40.660973 ] } }, -{ "type": "Feature", "properties": { "id": 553412, "name": "Astoria Blvd/Bulova Corporate Center", "direction": "W", "lat": 40.763763, "lon": -73.892876, "routes": "Q47, Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.892876, 40.763763 ] } }, -{ "type": "Feature", "properties": { "id": 553424, "name": "Queens Blvd/Reeder St", "direction": "W", "lat": 40.73724, "lon": -73.878265, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.878265, 40.73724 ] } }, -{ "type": "Feature", "properties": { "id": 553429, "name": "101 Av /113 St", "direction": "E", "lat": 40.688496, "lon": -73.83107, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.83107, 40.688496 ] } }, -{ "type": "Feature", "properties": { "id": 553437, "name": "Belmont Park Racetrack/Ubs Arena", "direction": "S", "lat": 40.713078, "lon": -73.72774, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.72774, 40.713078 ] } }, -{ "type": "Feature", "properties": { "id": 553438, "name": "Whitestone Expwy/25 Av", "direction": "SW", "lat": 40.776646, "lon": -73.82867, "routes": "Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82867, 40.776646 ] } }, -{ "type": "Feature", "properties": { "id": 553449, "name": "Mott Av/Beach 22 St", "direction": "SE", "lat": 40.604782, "lon": -73.75407, "routes": "Q114" }, "geometry": { "type": "Point", "coordinates": [ -73.75407, 40.604782 ] } }, -{ "type": "Feature", "properties": { "id": 553456, "name": "Roosevelt Av/61 St", "direction": "E", "lat": 40.745705, "lon": -73.90199, "routes": "Q70+" }, "geometry": { "type": "Point", "coordinates": [ -73.90199, 40.745705 ] } }, -{ "type": "Feature", "properties": { "id": 801007, "name": "Brooklyn Bridge Park Rd/Joralemon St", "direction": "W", "lat": 40.693, "lon": -74.00051, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00051, 40.693 ] } }, -{ "type": "Feature", "properties": { "id": 801012, "name": "Williamsburg Bridge Plaza/Lane 1", "direction": "E", "lat": 40.70965, "lon": -73.95952, "routes": "B60, B39" }, "geometry": { "type": "Point", "coordinates": [ -73.95952, 40.70965 ] } }, -{ "type": "Feature", "properties": { "id": 801020, "name": "Cropsey Av/V A Hospital", "direction": "SE", "lat": 40.609135, "lon": -74.02389, "routes": "B70" }, "geometry": { "type": "Point", "coordinates": [ -74.02389, 40.609135 ] } }, -{ "type": "Feature", "properties": { "id": 801026, "name": "Livingston St/Court St", "direction": "E", "lat": 40.69144, "lon": -73.991196, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.991196, 40.69144 ] } }, -{ "type": "Feature", "properties": { "id": 801031, "name": "Meeker Av/Stewart Av", "direction": "NE", "lat": 40.726635, "lon": -73.934326, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.934326, 40.726635 ] } }, -{ "type": "Feature", "properties": { "id": 801038, "name": "Stillwell Av/Surf Av", "direction": "N", "lat": 40.575687, "lon": -73.98116, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.98116, 40.575687 ] } }, -{ "type": "Feature", "properties": { "id": 801039, "name": "Kings Plaza B9 Terminal", "direction": "NW", "lat": 40.608307, "lon": -73.92062, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -73.92062, 40.608307 ] } }, -{ "type": "Feature", "properties": { "id": 801040, "name": "Broadway/Halsey St", "direction": "SE", "lat": 40.6858, "lon": -73.91574, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.91574, 40.6858 ] } }, -{ "type": "Feature", "properties": { "id": 801042, "name": "Shore Rd/3 Av", "direction": "SE", "lat": 40.612312, "lon": -74.03598, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.03598, 40.612312 ] } }, -{ "type": "Feature", "properties": { "id": 801044, "name": "Mcdonald Av/Cortelyou Rd", "direction": "S", "lat": 40.63819, "lon": -73.97894, "routes": "B69, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97894, 40.63819 ] } }, -{ "type": "Feature", "properties": { "id": 801047, "name": "Sands St/Pearl St", "direction": "E", "lat": 40.699913, "lon": -73.987656, "routes": "B69" }, "geometry": { "type": "Point", "coordinates": [ -73.987656, 40.699913 ] } }, -{ "type": "Feature", "properties": { "id": 801049, "name": "Shore Rd/Mackay Pl", "direction": "NE", "lat": 40.63707, "lon": -74.03609, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -74.03609, 40.63707 ] } }, -{ "type": "Feature", "properties": { "id": 801063, "name": "Van Sinderen Av/Fulton St", "direction": "S", "lat": 40.678608, "lon": -73.90366, "routes": "Q56" }, "geometry": { "type": "Point", "coordinates": [ -73.90366, 40.678608 ] } }, -{ "type": "Feature", "properties": { "id": 801064, "name": "Van Sinderen Av/Fulton St", "direction": "S", "lat": 40.67814, "lon": -73.90357, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.90357, 40.67814 ] } }, -{ "type": "Feature", "properties": { "id": 801067, "name": "Greenpoint Av/Manhattan Av", "direction": "E", "lat": 40.730087, "lon": -73.954575, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.954575, 40.730087 ] } }, -{ "type": "Feature", "properties": { "id": 801068, "name": "Seneca Av/Cornelia St", "direction": "NW", "lat": 40.700848, "lon": -73.90436, "routes": "B38, B38" }, "geometry": { "type": "Point", "coordinates": [ -73.90436, 40.700848 ] } }, -{ "type": "Feature", "properties": { "id": 801069, "name": "4 Av/86 St", "direction": "SW", "lat": 40.622646, "lon": -74.028534, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.028534, 40.622646 ] } }, -{ "type": "Feature", "properties": { "id": 801071, "name": "Front St/York St", "direction": "E", "lat": 40.70257, "lon": -73.99201, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.99201, 40.70257 ] } }, -{ "type": "Feature", "properties": { "id": 801074, "name": "Stillwell/Terminal", "direction": "E", "lat": 40.576862, "lon": -73.981026, "routes": "B74, B68" }, "geometry": { "type": "Point", "coordinates": [ -73.981026, 40.576862 ] } }, -{ "type": "Feature", "properties": { "id": 801076, "name": "Glenwood Rd/E 94 St", "direction": "NE", "lat": 40.643467, "lon": -73.904785, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.904785, 40.643467 ] } }, -{ "type": "Feature", "properties": { "id": 801077, "name": "Glenwood Rd/E 96 St", "direction": "NE", "lat": 40.644855, "lon": -73.90264, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90264, 40.644855 ] } }, -{ "type": "Feature", "properties": { "id": 801078, "name": "Flatlands Av/Rockaway Pkwy", "direction": "SW", "lat": 40.64359, "lon": -73.90098, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90098, 40.64359 ] } }, -{ "type": "Feature", "properties": { "id": 801079, "name": "Flatlands Av/E 94 St", "direction": "SW", "lat": 40.642056, "lon": -73.903275, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.903275, 40.642056 ] } }, -{ "type": "Feature", "properties": { "id": 801080, "name": "Flatlands Av/E 92 St", "direction": "SW", "lat": 40.64101, "lon": -73.904945, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.904945, 40.64101 ] } }, -{ "type": "Feature", "properties": { "id": 801081, "name": "W 17 St/Neptune Av", "direction": "S", "lat": 40.578785, "lon": -73.985275, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.985275, 40.578785 ] } }, -{ "type": "Feature", "properties": { "id": 801090, "name": "Nassau Av/Morgan St", "direction": "E", "lat": 40.726006, "lon": -73.93956, "routes": "B48" }, "geometry": { "type": "Point", "coordinates": [ -73.93956, 40.726006 ] } }, -{ "type": "Feature", "properties": { "id": 801092, "name": "Avenue Z/E 15 St", "direction": "W", "lat": 40.587994, "lon": -73.95467, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.95467, 40.587994 ] } }, -{ "type": "Feature", "properties": { "id": 801094, "name": "Utica Av/Avenue H", "direction": "N", "lat": 40.63278, "lon": -73.92829, "routes": "B46+, B46" }, "geometry": { "type": "Point", "coordinates": [ -73.92829, 40.63278 ] } }, -{ "type": "Feature", "properties": { "id": 801095, "name": "Saratoga Av/Park Pl", "direction": "S", "lat": 40.6717, "lon": -73.91698, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91698, 40.6717 ] } }, -{ "type": "Feature", "properties": { "id": 801096, "name": "131 St/Metropolitan Av", "direction": "N", "lat": 40.703278, "lon": -73.821396, "routes": "Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.821396, 40.703278 ] } }, -{ "type": "Feature", "properties": { "id": 801098, "name": "Seneca Av/Palmetto St", "direction": "NW", "lat": 40.702763, "lon": -73.90753, "routes": "M90" }, "geometry": { "type": "Point", "coordinates": [ -73.90753, 40.702763 ] } }, -{ "type": "Feature", "properties": { "id": 801101, "name": "Myrtle Av/Broadway", "direction": "W", "lat": 40.696983, "lon": -73.93555, "routes": "M90" }, "geometry": { "type": "Point", "coordinates": [ -73.93555, 40.696983 ] } }, -{ "type": "Feature", "properties": { "id": 801117, "name": "Palmetto St/Wyckoff Av", "direction": "NE", "lat": 40.6993, "lon": -73.911224, "routes": "B52" }, "geometry": { "type": "Point", "coordinates": [ -73.911224, 40.6993 ] } }, -{ "type": "Feature", "properties": { "id": 801118, "name": "Gates Av/Wyckoff Av", "direction": "NE", "lat": 40.700092, "lon": -73.91155, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.91155, 40.700092 ] } }, -{ "type": "Feature", "properties": { "id": 801128, "name": "Flatbush Av/Pacific St", "direction": "SE", "lat": 40.683163, "lon": -73.97687, "routes": "Q90" }, "geometry": { "type": "Point", "coordinates": [ -73.97687, 40.683163 ] } }, -{ "type": "Feature", "properties": { "id": 801129, "name": "Flatbush Av/Ocean Av", "direction": "SE", "lat": 40.662807, "lon": -73.96229, "routes": "Q90" }, "geometry": { "type": "Point", "coordinates": [ -73.96229, 40.662807 ] } }, -{ "type": "Feature", "properties": { "id": 801134, "name": "Jay St/Myrtle Plaza", "direction": "N", "lat": 40.69449, "lon": -73.98712, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.98712, 40.69449 ] } }, -{ "type": "Feature", "properties": { "id": 801136, "name": "Prospect Park West/18 St", "direction": "NE", "lat": 40.657574, "lon": -73.98295, "routes": "B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98295, 40.657574 ] } }, -{ "type": "Feature", "properties": { "id": 801143, "name": "Mackenzie Loop (Last Stop)", "direction": "E", "lat": 40.578106, "lon": -73.94064, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.94064, 40.578106 ] } }, -{ "type": "Feature", "properties": { "id": 801144, "name": "Flatbush Av/Avenue U", "direction": "NW", "lat": 40.60921, "lon": -73.92152, "routes": "B41, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.92152, 40.60921 ] } }, -{ "type": "Feature", "properties": { "id": 801153, "name": "Drew St/Linden Blvd", "direction": "S", "lat": 40.66925, "lon": -73.86094, "routes": "B15, B15" }, "geometry": { "type": "Point", "coordinates": [ -73.86094, 40.66925 ] } }, -{ "type": "Feature", "properties": { "id": 801154, "name": "Drew St/Linden Blvd", "direction": "S", "lat": 40.66921, "lon": -73.8609, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.8609, 40.66921 ] } }, -{ "type": "Feature", "properties": { "id": 801155, "name": "Clinton St/Lorraine St", "direction": "NE", "lat": 40.674046, "lon": -74.00213, "routes": "B61, B57" }, "geometry": { "type": "Point", "coordinates": [ -74.00213, 40.674046 ] } }, -{ "type": "Feature", "properties": { "id": 801156, "name": "Mill St/Clinton St", "direction": "E", "lat": 40.674953, "lon": -74.00117, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.00117, 40.674953 ] } }, -{ "type": "Feature", "properties": { "id": 801157, "name": "Flushing Av/Clermont Av", "direction": "E", "lat": 40.69781, "lon": -73.970924, "routes": "B69, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.970924, 40.69781 ] } }, -{ "type": "Feature", "properties": { "id": 801161, "name": "Fulton St/Alabama Av", "direction": "E", "lat": 40.67682, "lon": -73.89966, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.89966, 40.67682 ] } }, -{ "type": "Feature", "properties": { "id": 801162, "name": "Broadway/Myrtle Av", "direction": "SE", "lat": 40.69726, "lon": -73.93589, "routes": "M90" }, "geometry": { "type": "Point", "coordinates": [ -73.93589, 40.69726 ] } }, -{ "type": "Feature", "properties": { "id": 801163, "name": "Bedford Av/Gates Av", "direction": "N", "lat": 40.68551, "lon": -73.954254, "routes": "B44+, B44" }, "geometry": { "type": "Point", "coordinates": [ -73.954254, 40.68551 ] } }, -{ "type": "Feature", "properties": { "id": 801164, "name": "Franklin St/Green St", "direction": "S", "lat": 40.733532, "lon": -73.958244, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.958244, 40.733532 ] } }, -{ "type": "Feature", "properties": { "id": 801165, "name": "Franklin St/India St", "direction": "S", "lat": 40.731842, "lon": -73.95799, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95799, 40.731842 ] } }, -{ "type": "Feature", "properties": { "id": 801168, "name": "Gateway Center Terminal/Gateway Dr", "direction": "SE", "lat": 40.652695, "lon": -73.87689, "routes": "B83, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.87689, 40.652695 ] } }, -{ "type": "Feature", "properties": { "id": 801170, "name": "Erskine St/Gateway Dr", "direction": "SE", "lat": 40.652634, "lon": -73.86655, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.86655, 40.652634 ] } }, -{ "type": "Feature", "properties": { "id": 801171, "name": "Gateway Dr/Erskine St", "direction": "SW", "lat": 40.65287, "lon": -73.867, "routes": "B83" }, "geometry": { "type": "Point", "coordinates": [ -73.867, 40.65287 ] } }, -{ "type": "Feature", "properties": { "id": 801172, "name": "4 Av/Dean St", "direction": "SW", "lat": 40.68353, "lon": -73.97907, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.97907, 40.68353 ] } }, -{ "type": "Feature", "properties": { "id": 801173, "name": "3 Av/8 St", "direction": "NE", "lat": 40.671947, "lon": -73.9905, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.9905, 40.671947 ] } }, -{ "type": "Feature", "properties": { "id": 801175, "name": "Atlantic Av/South Portland Av", "direction": "W", "lat": 40.683056, "lon": -73.9735, "routes": "B45" }, "geometry": { "type": "Point", "coordinates": [ -73.9735, 40.683056 ] } }, -{ "type": "Feature", "properties": { "id": 801177, "name": "Alabama Av/Fulton St", "direction": "N", "lat": 40.676746, "lon": -73.89994, "routes": "B25, B12" }, "geometry": { "type": "Point", "coordinates": [ -73.89994, 40.676746 ] } }, -{ "type": "Feature", "properties": { "id": 801179, "name": "Bushwick Av/Grand St", "direction": "NW", "lat": 40.71204, "lon": -73.94067, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.94067, 40.71204 ] } }, -{ "type": "Feature", "properties": { "id": 801191, "name": "Glenwood Rd/E 102 St", "direction": "SW", "lat": 40.64754, "lon": -73.898636, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.898636, 40.64754 ] } }, -{ "type": "Feature", "properties": { "id": 801192, "name": "Cropsey Av/Bay 37 St", "direction": "NW", "lat": 40.593773, "lon": -73.99436, "routes": "B82+, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.99436, 40.593773 ] } }, -{ "type": "Feature", "properties": { "id": 801194, "name": "Kings Hwy/Avenue K", "direction": "SW", "lat": 40.625633, "lon": -73.9337, "routes": "B7, B82+" }, "geometry": { "type": "Point", "coordinates": [ -73.9337, 40.625633 ] } }, -{ "type": "Feature", "properties": { "id": 801198, "name": "Nassau Av/Manhattan Av", "direction": "E", "lat": 40.723667, "lon": -73.9509, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9509, 40.723667 ] } }, -{ "type": "Feature", "properties": { "id": 801208, "name": "Atlantic Av/4 Av", "direction": "SE", "lat": 40.684025, "lon": -73.97764, "routes": "Q90" }, "geometry": { "type": "Point", "coordinates": [ -73.97764, 40.684025 ] } }, -{ "type": "Feature", "properties": { "id": 801209, "name": "Flushing Av/North Elliot Pl", "direction": "W", "lat": 40.698147, "lon": -73.97774, "routes": "B69, B57" }, "geometry": { "type": "Point", "coordinates": [ -73.97774, 40.698147 ] } }, -{ "type": "Feature", "properties": { "id": 801217, "name": "Franklin Av/Fulton St", "direction": "S", "lat": 40.68045, "lon": -73.95563, "routes": "B101" }, "geometry": { "type": "Point", "coordinates": [ -73.95563, 40.68045 ] } }, -{ "type": "Feature", "properties": { "id": 801218, "name": "Franklin Av/Fulton St", "direction": "S", "lat": 40.68076, "lon": -73.955605, "routes": "B101" }, "geometry": { "type": "Point", "coordinates": [ -73.955605, 40.68076 ] } }, -{ "type": "Feature", "properties": { "id": 801219, "name": "Franklin Av/Prospect Pl", "direction": "S", "lat": 40.674644, "lon": -73.95657, "routes": "B101" }, "geometry": { "type": "Point", "coordinates": [ -73.95657, 40.674644 ] } }, -{ "type": "Feature", "properties": { "id": 802002, "name": "Hugh Grant Circle/Metropolitan Av", "direction": "SW", "lat": 40.833515, "lon": -73.86139, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.86139, 40.833515 ] } }, -{ "type": "Feature", "properties": { "id": 802008, "name": "Bainbridge Av/E 206 St", "direction": "N", "lat": 40.874805, "lon": -73.87939, "routes": "BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.87939, 40.874805 ] } }, -{ "type": "Feature", "properties": { "id": 802009, "name": "E 241 St/Cranford Av", "direction": "NW", "lat": 40.903267, "lon": -73.849915, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.849915, 40.903267 ] } }, -{ "type": "Feature", "properties": { "id": 802021, "name": "Bainbridge Av/E 206 St", "direction": "S", "lat": 40.874443, "lon": -73.87938, "routes": "BX38, BX38, BX28, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.87938, 40.874443 ] } }, -{ "type": "Feature", "properties": { "id": 802024, "name": "Bay Plaza Blvd/Bartow Av", "direction": "SW", "lat": 40.867348, "lon": -73.82457, "routes": "BX25, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.82457, 40.867348 ] } }, -{ "type": "Feature", "properties": { "id": 802025, "name": "Bay Plaza Blvd/J C Penny", "direction": "NE", "lat": 40.86599, "lon": -73.8273, "routes": "BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.8273, 40.86599 ] } }, -{ "type": "Feature", "properties": { "id": 802031, "name": "179 St/Broadway", "direction": "W", "lat": 40.848904, "lon": -73.93686, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.93686, 40.848904 ] } }, -{ "type": "Feature", "properties": { "id": 802060, "name": "Lane Av/Benson Av", "direction": "N", "lat": 40.840286, "lon": -73.84325, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.84325, 40.840286 ] } }, -{ "type": "Feature", "properties": { "id": 802062, "name": "Valentine Av/Fordham Rd", "direction": "SW", "lat": 40.862503, "lon": -73.8958, "routes": "BX34" }, "geometry": { "type": "Point", "coordinates": [ -73.8958, 40.862503 ] } }, -{ "type": "Feature", "properties": { "id": 802065, "name": "Tremont Av/Lane Av", "direction": "N", "lat": 40.840267, "lon": -73.84322, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.84322, 40.840267 ] } }, -{ "type": "Feature", "properties": { "id": 802078, "name": "Bay Plaza Blvd/Co-Op City Blvd", "direction": "SE", "lat": 40.866043, "lon": -73.82672, "routes": "BX12, BX12, BX12, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.82672, 40.866043 ] } }, -{ "type": "Feature", "properties": { "id": 802079, "name": "Crotona Av/Tremont Av", "direction": "NE", "lat": 40.84551, "lon": -73.89098, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89098, 40.84551 ] } }, -{ "type": "Feature", "properties": { "id": 802080, "name": "Crotona Av/Tremont Av", "direction": "SW", "lat": 40.84532, "lon": -73.89125, "routes": "BX17" }, "geometry": { "type": "Point", "coordinates": [ -73.89125, 40.84532 ] } }, -{ "type": "Feature", "properties": { "id": 802088, "name": "E 161 St/Sherman Av", "direction": "E", "lat": 40.826088, "lon": -73.9202, "routes": "BX13, BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.9202, 40.826088 ] } }, -{ "type": "Feature", "properties": { "id": 802089, "name": "Halleck St/Spofford Av", "direction": "S", "lat": 40.81514, "lon": -73.88187, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.88187, 40.81514 ] } }, -{ "type": "Feature", "properties": { "id": 802091, "name": "Prospect Av/Westchester Av", "direction": "S", "lat": 40.81938, "lon": -73.901825, "routes": "BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.901825, 40.81938 ] } }, -{ "type": "Feature", "properties": { "id": 802102, "name": "Walnut Av/E 133 St", "direction": "NE", "lat": 40.79965, "lon": -73.9116, "routes": "BX33" }, "geometry": { "type": "Point", "coordinates": [ -73.9116, 40.79965 ] } }, -{ "type": "Feature", "properties": { "id": 802103, "name": "Hutchinson River Pkwy/Lafayette Av", "direction": "S", "lat": 40.82507, "lon": -73.836685, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.836685, 40.82507 ] } }, -{ "type": "Feature", "properties": { "id": 802104, "name": "E 233 St/Webster Av", "direction": "W", "lat": 40.895393, "lon": -73.86342, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.86342, 40.895393 ] } }, -{ "type": "Feature", "properties": { "id": 802110, "name": "E 163 St/Intervale Av", "direction": "W", "lat": 40.821064, "lon": -73.89677, "routes": "BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.89677, 40.821064 ] } }, -{ "type": "Feature", "properties": { "id": 802111, "name": "Halleck St/Spofford Av", "direction": "N", "lat": 40.81439, "lon": -73.881454, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.881454, 40.81439 ] } }, -{ "type": "Feature", "properties": { "id": 802117, "name": "E 161 St/River Av", "direction": "SW", "lat": 40.827545, "lon": -73.92623, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92623, 40.827545 ] } }, -{ "type": "Feature", "properties": { "id": 802118, "name": "Research Av/Ampere Av", "direction": "N", "lat": 40.84601, "lon": -73.81925, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.81925, 40.84601 ] } }, -{ "type": "Feature", "properties": { "id": 802125, "name": "Bay Plaza Blvd/Bartow Av", "direction": "SW", "lat": 40.86682, "lon": -73.82505, "routes": "BX25, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.82505, 40.86682 ] } }, -{ "type": "Feature", "properties": { "id": 802131, "name": "White Plains Rd/East Gun Hill Rd", "direction": "NE", "lat": 40.877403, "lon": -73.86607, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.86607, 40.877403 ] } }, -{ "type": "Feature", "properties": { "id": 802137, "name": "Hugh Grant Circle/Cross Bronx Expwy Service Rd", "direction": "NE", "lat": 40.832718, "lon": -73.86049, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.86049, 40.832718 ] } }, -{ "type": "Feature", "properties": { "id": 802139, "name": "White Plains Rd/Story Av", "direction": "N", "lat": 40.82439, "lon": -73.858734, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.858734, 40.82439 ] } }, -{ "type": "Feature", "properties": { "id": 802141, "name": "White Plains Rd/Story Av", "direction": "SE", "lat": 40.824104, "lon": -73.85885, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.85885, 40.824104 ] } }, -{ "type": "Feature", "properties": { "id": 802146, "name": "E 161 St/Sherman Av", "direction": "W", "lat": 40.826347, "lon": -73.920715, "routes": "BX6+, BX13, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.920715, 40.826347 ] } }, -{ "type": "Feature", "properties": { "id": 802147, "name": "Bay Plaza Bl/Opp Staples", "direction": "E", "lat": 40.867245, "lon": -73.829185, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.829185, 40.867245 ] } }, -{ "type": "Feature", "properties": { "id": 802149, "name": "River Av/E 157 St", "direction": "SW", "lat": 40.825928, "lon": -73.927086, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.927086, 40.825928 ] } }, -{ "type": "Feature", "properties": { "id": 802150, "name": "River Av/E 151 St", "direction": "S", "lat": 40.822693, "lon": -73.928856, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.928856, 40.822693 ] } }, -{ "type": "Feature", "properties": { "id": 802151, "name": "Marconi St /911 Call Center", "direction": "NE", "lat": 40.85499, "lon": -73.83761, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.83761, 40.85499 ] } }, -{ "type": "Feature", "properties": { "id": 802153, "name": "Asch Loop/Adler Pl", "direction": "W", "lat": 40.871082, "lon": -73.82851, "routes": "BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82851, 40.871082 ] } }, -{ "type": "Feature", "properties": { "id": 802156, "name": "River Av/E 157 St", "direction": "NE", "lat": 40.82598, "lon": -73.92697, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.92697, 40.82598 ] } }, -{ "type": "Feature", "properties": { "id": 802158, "name": "Westchester Av/Bruckner Blvd", "direction": "S", "lat": 40.852867, "lon": -73.82681, "routes": "BX5, BX5, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82681, 40.852867 ] } }, -{ "type": "Feature", "properties": { "id": 802159, "name": "Charles Crimi Rd/Subway Overpass", "direction": "N", "lat": 40.852924, "lon": -73.825935, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.825935, 40.852924 ] } }, -{ "type": "Feature", "properties": { "id": 802161, "name": "Webster Av/East Tremont Av", "direction": "SW", "lat": 40.84762, "lon": -73.901024, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.901024, 40.84762 ] } }, -{ "type": "Feature", "properties": { "id": 802165, "name": "E 170 St/Grand Concourse", "direction": "W", "lat": 40.83873, "lon": -73.91349, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91349, 40.83873 ] } }, -{ "type": "Feature", "properties": { "id": 802166, "name": "Asch Loop/Adler Pl", "direction": "E", "lat": 40.870956, "lon": -73.82837, "routes": "BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.82837, 40.870956 ] } }, -{ "type": "Feature", "properties": { "id": 802167, "name": "Parking Ramp/Access Rd", "direction": "NE", "lat": 40.86512, "lon": -73.828094, "routes": "BX5, BX5, BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.828094, 40.86512 ] } }, -{ "type": "Feature", "properties": { "id": 802168, "name": "Parking Ramp/Access Rd", "direction": "NE", "lat": 40.86545, "lon": -73.82781, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82781, 40.86545 ] } }, -{ "type": "Feature", "properties": { "id": 802169, "name": "Charles Cimi Pl/Wilkinson Av", "direction": "N", "lat": 40.851997, "lon": -73.82623, "routes": "BX5" }, "geometry": { "type": "Point", "coordinates": [ -73.82623, 40.851997 ] } }, -{ "type": "Feature", "properties": { "id": 802173, "name": "3 Av/149 St", "direction": "NE", "lat": 40.81591, "lon": -73.917816, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.917816, 40.81591 ] } }, -{ "type": "Feature", "properties": { "id": 802179, "name": "W 170 St/Edward L Grant Hwy", "direction": "E", "lat": 40.84026, "lon": -73.92117, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.92117, 40.84026 ] } }, -{ "type": "Feature", "properties": { "id": 802180, "name": "Edward L Grant Hwy/W 170 St", "direction": "S", "lat": 40.840073, "lon": -73.92145, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.92145, 40.840073 ] } }, -{ "type": "Feature", "properties": { "id": 802185, "name": "W 168 St/Ogden Av", "direction": "E", "lat": 40.83845, "lon": -73.926094, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.926094, 40.83845 ] } }, -{ "type": "Feature", "properties": { "id": 802186, "name": "University Av/ W 175 St", "direction": "SW", "lat": 40.847652, "lon": -73.91956, "routes": "BX36, BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.91956, 40.847652 ] } }, -{ "type": "Feature", "properties": { "id": 802187, "name": "Bergen Av/E 149 St", "direction": "NE", "lat": 40.815804, "lon": -73.9165, "routes": "BX4" }, "geometry": { "type": "Point", "coordinates": [ -73.9165, 40.815804 ] } }, -{ "type": "Feature", "properties": { "id": 802188, "name": "Broadway/W 184 St", "direction": "NE", "lat": 40.852192, "lon": -73.934654, "routes": "M100, BX7" }, "geometry": { "type": "Point", "coordinates": [ -73.934654, 40.852192 ] } }, -{ "type": "Feature", "properties": { "id": 802189, "name": "W 170 St/Plaza Dr", "direction": "E", "lat": 40.840374, "lon": -73.9182, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.9182, 40.840374 ] } }, -{ "type": "Feature", "properties": { "id": 803002, "name": "South St/Whitehall St", "direction": "W", "lat": 40.70161, "lon": -74.01222, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -74.01222, 40.70161 ] } }, -{ "type": "Feature", "properties": { "id": 803003, "name": "146 St/Lenox Av", "direction": "SE", "lat": 40.821205, "lon": -73.93604, "routes": "M7, M1" }, "geometry": { "type": "Point", "coordinates": [ -73.93604, 40.821205 ] } }, -{ "type": "Feature", "properties": { "id": 803006, "name": "Broadway/W 179 St", "direction": "NE", "lat": 40.84901, "lon": -73.93689, "routes": "BX3" }, "geometry": { "type": "Point", "coordinates": [ -73.93689, 40.84901 ] } }, -{ "type": "Feature", "properties": { "id": 803008, "name": "W 58 St/Broadway", "direction": "SE", "lat": 40.76709, "lon": -73.98184, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -73.98184, 40.76709 ] } }, -{ "type": "Feature", "properties": { "id": 803011, "name": "W 179 St/Broadway", "direction": "W", "lat": 40.848866, "lon": -73.93676, "routes": "BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.93676, 40.848866 ] } }, -{ "type": "Feature", "properties": { "id": 803019, "name": "South St/Whitehall St", "direction": "W", "lat": 40.701534, "lon": -74.01248, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -74.01248, 40.701534 ] } }, -{ "type": "Feature", "properties": { "id": 803021, "name": "Hell Gate Circle/Central Rd", "direction": "NW", "lat": 40.789986, "lon": -73.92576, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92576, 40.789986 ] } }, -{ "type": "Feature", "properties": { "id": 803024, "name": "W 146 St/Malcolm X Bl", "direction": "SE", "lat": 40.821198, "lon": -73.93612, "routes": "M102" }, "geometry": { "type": "Point", "coordinates": [ -73.93612, 40.821198 ] } }, -{ "type": "Feature", "properties": { "id": 803026, "name": "Sunken Garden Loop/Charles Gay Center", "direction": "SE", "lat": 40.785492, "lon": -73.93133, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.93133, 40.785492 ] } }, -{ "type": "Feature", "properties": { "id": 803028, "name": "Hell Gate Circle/Sunken Garden Loop", "direction": "SE", "lat": 40.785378, "lon": -73.92912, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92912, 40.785378 ] } }, -{ "type": "Feature", "properties": { "id": 803029, "name": "Hell Gate Circle/Opp Odyssey House", "direction": "E", "lat": 40.784565, "lon": -73.92763, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92763, 40.784565 ] } }, -{ "type": "Feature", "properties": { "id": 803030, "name": "Hell Gate Circle/Field 61", "direction": "N", "lat": 40.785973, "lon": -73.925606, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.925606, 40.785973 ] } }, -{ "type": "Feature", "properties": { "id": 803033, "name": "Water St/Hanover Sq", "direction": "NE", "lat": 40.70363, "lon": -74.00954, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.00954, 40.70363 ] } }, -{ "type": "Feature", "properties": { "id": 803034, "name": "Sunken Garden Loop/Charles Gay Center", "direction": "SE", "lat": 40.785522, "lon": -73.931404, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.931404, 40.785522 ] } }, -{ "type": "Feature", "properties": { "id": 803035, "name": "E 37 St/ 3 Av", "direction": "W", "lat": 40.747585, "lon": -73.97657, "routes": "X63, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.97657, 40.747585 ] } }, -{ "type": "Feature", "properties": { "id": 803036, "name": "1 Av / 23 St", "direction": "NE", "lat": 40.73711, "lon": -73.9783, "routes": "X64, X68, X63, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.9783, 40.73711 ] } }, -{ "type": "Feature", "properties": { "id": 803037, "name": "5 Av/ W 52 St", "direction": "SW", "lat": 40.75953, "lon": -73.97656, "routes": "X63, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.97656, 40.75953 ] } }, -{ "type": "Feature", "properties": { "id": 803038, "name": "5 Av / W 45 St", "direction": "SW", "lat": 40.755306, "lon": -73.979645, "routes": "X63, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.979645, 40.755306 ] } }, -{ "type": "Feature", "properties": { "id": 803039, "name": "5 Av / W 37 St", "direction": "SW", "lat": 40.75024, "lon": -73.98333, "routes": "X63, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.98333, 40.75024 ] } }, -{ "type": "Feature", "properties": { "id": 803040, "name": "5 Av / 32 St", "direction": "SW", "lat": 40.74707, "lon": -73.98566, "routes": "X63, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.98566, 40.74707 ] } }, -{ "type": "Feature", "properties": { "id": 803054, "name": "E 126 St/2 Av", "direction": "NW", "lat": 40.80315, "lon": -73.93227, "routes": "M15+, M15" }, "geometry": { "type": "Point", "coordinates": [ -73.93227, 40.80315 ] } }, -{ "type": "Feature", "properties": { "id": 803055, "name": "12 Av/42 St", "direction": "SE", "lat": 40.76215, "lon": -74.00144, "routes": "M50, M42" }, "geometry": { "type": "Point", "coordinates": [ -74.00144, 40.76215 ] } }, -{ "type": "Feature", "properties": { "id": 803056, "name": "W 66 St/Freedom Pl", "direction": "SE", "lat": 40.77649, "lon": -73.98872, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.98872, 40.77649 ] } }, -{ "type": "Feature", "properties": { "id": 803057, "name": "W 66 St/West End Av", "direction": "NW", "lat": 40.775906, "lon": -73.98681, "routes": "M66" }, "geometry": { "type": "Point", "coordinates": [ -73.98681, 40.775906 ] } }, -{ "type": "Feature", "properties": { "id": 803058, "name": "E 72 St/York Av", "direction": "SE", "lat": 40.766956, "lon": -73.95414, "routes": "M72" }, "geometry": { "type": "Point", "coordinates": [ -73.95414, 40.766956 ] } }, -{ "type": "Feature", "properties": { "id": 803059, "name": "Pleasant Av/E 120 St", "direction": "NW", "lat": 40.797615, "lon": -73.93101, "routes": "M116" }, "geometry": { "type": "Point", "coordinates": [ -73.93101, 40.797615 ] } }, -{ "type": "Feature", "properties": { "id": 803061, "name": "W 205 St/Paul Av", "direction": "SE", "lat": 40.87707, "lon": -73.89007, "routes": "BX25, BX22, BX26, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.89007, 40.87707 ] } }, -{ "type": "Feature", "properties": { "id": 803062, "name": "Riverside Dr West/157-10 Riverside Dr", "direction": "N", "lat": 40.836205, "lon": -73.94848, "routes": "BX6, BX6+" }, "geometry": { "type": "Point", "coordinates": [ -73.94848, 40.836205 ] } }, -{ "type": "Feature", "properties": { "id": 803066, "name": "E 105 St/Fdr Dr", "direction": "NW", "lat": 40.788216, "lon": -73.93842, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.93842, 40.788216 ] } }, -{ "type": "Feature", "properties": { "id": 803067, "name": "Margaret Corbin Dr/Cloisters", "direction": "N", "lat": 40.865166, "lon": -73.93084, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.93084, 40.865166 ] } }, -{ "type": "Feature", "properties": { "id": 803071, "name": "Pearl St/Frankfort St", "direction": "NE", "lat": 40.70938, "lon": -74.00173, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.00173, 40.70938 ] } }, -{ "type": "Feature", "properties": { "id": 803074, "name": "Pearl St/Peck Slip", "direction": "NE", "lat": 40.708908, "lon": -74.0023, "routes": "SIM35, SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.0023, 40.708908 ] } }, -{ "type": "Feature", "properties": { "id": 803077, "name": "Park Row/Worth St", "direction": "W", "lat": 40.713394, "lon": -73.99906, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.99906, 40.713394 ] } }, -{ "type": "Feature", "properties": { "id": 803079, "name": "W 34 St/Hudson Blvd E", "direction": "NW", "lat": 40.755367, "lon": -74.000854, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -74.000854, 40.755367 ] } }, -{ "type": "Feature", "properties": { "id": 803081, "name": "W 44 St/6 Av", "direction": "SE", "lat": 40.755985, "lon": -73.982994, "routes": "M55" }, "geometry": { "type": "Point", "coordinates": [ -73.982994, 40.755985 ] } }, -{ "type": "Feature", "properties": { "id": 803082, "name": "W 31 St/6 Av", "direction": "NW", "lat": 40.74779, "lon": -73.98883, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98883, 40.74779 ] } }, -{ "type": "Feature", "properties": { "id": 803083, "name": "6 Av/W 31 St", "direction": "NE", "lat": 40.748043, "lon": -73.98896, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.98896, 40.748043 ] } }, -{ "type": "Feature", "properties": { "id": 803094, "name": "Vesey St/North End Av", "direction": "NW", "lat": 40.71453, "lon": -74.01536, "routes": "M22" }, "geometry": { "type": "Point", "coordinates": [ -74.01536, 40.71453 ] } }, -{ "type": "Feature", "properties": { "id": 803098, "name": "8 Av/W 34 St", "direction": "NE", "lat": 40.7523, "lon": -73.99325, "routes": "M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.99325, 40.7523 ] } }, -{ "type": "Feature", "properties": { "id": 803105, "name": "Warren St/Church St", "direction": "SE", "lat": 40.714233, "lon": -74.008255, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -74.008255, 40.714233 ] } }, -{ "type": "Feature", "properties": { "id": 803108, "name": "South End Av/Albany St", "direction": "N", "lat": 40.710278, "lon": -74.016205, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -74.016205, 40.710278 ] } }, -{ "type": "Feature", "properties": { "id": 803115, "name": "Grand St/Fdr Dr", "direction": "W", "lat": 40.71335, "lon": -73.977745, "routes": "M21" }, "geometry": { "type": "Point", "coordinates": [ -73.977745, 40.71335 ] } }, -{ "type": "Feature", "properties": { "id": 803117, "name": "E 57 St/Madison Av", "direction": "NW", "lat": 40.762344, "lon": -73.97245, "routes": "M57, M31" }, "geometry": { "type": "Point", "coordinates": [ -73.97245, 40.762344 ] } }, -{ "type": "Feature", "properties": { "id": 803120, "name": "South Ferry/Terminal", "direction": "S", "lat": 40.70191, "lon": -74.01385, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -74.01385, 40.70191 ] } }, -{ "type": "Feature", "properties": { "id": 803130, "name": "W 34 St/12 Av", "direction": "SE", "lat": 40.75667, "lon": -74.00431, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -74.00431, 40.75667 ] } }, -{ "type": "Feature", "properties": { "id": 803131, "name": "W 34 St/12 Av", "direction": "SE", "lat": 40.756535, "lon": -74.003944, "routes": "M34+" }, "geometry": { "type": "Point", "coordinates": [ -74.003944, 40.756535 ] } }, -{ "type": "Feature", "properties": { "id": 803144, "name": "W 41 St/8 Av", "direction": "NW", "lat": 40.75641, "lon": -73.989815, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.989815, 40.75641 ] } }, -{ "type": "Feature", "properties": { "id": 803147, "name": "Warren St/Greenwich St", "direction": "SE", "lat": 40.715614, "lon": -74.01133, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -74.01133, 40.715614 ] } }, -{ "type": "Feature", "properties": { "id": 803151, "name": "49 St/1 Av", "direction": "NW", "lat": 40.753384, "lon": -73.96685, "routes": "M50" }, "geometry": { "type": "Point", "coordinates": [ -73.96685, 40.753384 ] } }, -{ "type": "Feature", "properties": { "id": 803157, "name": "Broadway/W 135 St", "direction": "SW", "lat": 40.819973, "lon": -73.9554, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.9554, 40.819973 ] } }, -{ "type": "Feature", "properties": { "id": 803158, "name": "Lexington Av/E 64 St", "direction": "SW", "lat": 40.76518, "lon": -73.96609, "routes": "M103, M102, M101" }, "geometry": { "type": "Point", "coordinates": [ -73.96609, 40.76518 ] } }, -{ "type": "Feature", "properties": { "id": 803159, "name": "York Av/E 74 St", "direction": "NE", "lat": 40.768272, "lon": -73.95266, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95266, 40.768272 ] } }, -{ "type": "Feature", "properties": { "id": 803161, "name": "Amsterdam Av/W 120 St", "direction": "SW", "lat": 40.809532, "lon": -73.95919, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.95919, 40.809532 ] } }, -{ "type": "Feature", "properties": { "id": 803162, "name": "5 Av/E 81 St", "direction": "SW", "lat": 40.778538, "lon": -73.96268, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96268, 40.778538 ] } }, -{ "type": "Feature", "properties": { "id": 803163, "name": "Lexington Av/E 52 St", "direction": "SW", "lat": 40.757637, "lon": -73.971596, "routes": "M102, M101, M103" }, "geometry": { "type": "Point", "coordinates": [ -73.971596, 40.757637 ] } }, -{ "type": "Feature", "properties": { "id": 803164, "name": "Battery Pl/Washington St", "direction": "E", "lat": 40.70476, "lon": -74.01558, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -74.01558, 40.70476 ] } }, -{ "type": "Feature", "properties": { "id": 803165, "name": "Malcolm X Bl/W 124 St", "direction": "SW", "lat": 40.807034, "lon": -73.94624, "routes": "M102" }, "geometry": { "type": "Point", "coordinates": [ -73.94624, 40.807034 ] } }, -{ "type": "Feature", "properties": { "id": 803166, "name": "W 86 St/Broadway", "direction": "W", "lat": 40.78826, "lon": -73.976295, "routes": "M86+" }, "geometry": { "type": "Point", "coordinates": [ -73.976295, 40.78826 ] } }, -{ "type": "Feature", "properties": { "id": 803168, "name": "Flatlands Av/Atkins Av", "direction": "SW", "lat": 40.65946, "lon": -73.87103, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87103, 40.65946 ] } }, -{ "type": "Feature", "properties": { "id": 803169, "name": "Flatlands Av/Essex St", "direction": "SW", "lat": 40.658386, "lon": -73.87354, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87354, 40.658386 ] } }, -{ "type": "Feature", "properties": { "id": 803170, "name": "Flatlands Av/Elton St", "direction": "SW", "lat": 40.657658, "lon": -73.87526, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87526, 40.657658 ] } }, -{ "type": "Feature", "properties": { "id": 803171, "name": "Jerome St/Flatlands Av", "direction": "NW", "lat": 40.656494, "lon": -73.87819, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87819, 40.656494 ] } }, -{ "type": "Feature", "properties": { "id": 803175, "name": "Flatlands Av/Atkins Av", "direction": "NE", "lat": 40.65935, "lon": -73.87058, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.87058, 40.65935 ] } }, -{ "type": "Feature", "properties": { "id": 803176, "name": "Seaview Av/Erskine St", "direction": "SW", "lat": 40.653294, "lon": -73.86626, "routes": "B84" }, "geometry": { "type": "Point", "coordinates": [ -73.86626, 40.653294 ] } }, -{ "type": "Feature", "properties": { "id": 803177, "name": "Av D/Loop", "direction": "NW", "lat": 40.72469, "lon": -73.97455, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -73.97455, 40.72469 ] } }, -{ "type": "Feature", "properties": { "id": 803180, "name": "E 96 St/5 Av", "direction": "SE", "lat": 40.787674, "lon": -73.955444, "routes": "M106" }, "geometry": { "type": "Point", "coordinates": [ -73.955444, 40.787674 ] } }, -{ "type": "Feature", "properties": { "id": 803182, "name": "2 Av/E 96 St", "direction": "SW", "lat": 40.78406, "lon": -73.94727, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.94727, 40.78406 ] } }, -{ "type": "Feature", "properties": { "id": 803185, "name": "State St/Whitehall St", "direction": "E", "lat": 40.702354, "lon": -74.01304, "routes": "M20, M55" }, "geometry": { "type": "Point", "coordinates": [ -74.01304, 40.702354 ] } }, -{ "type": "Feature", "properties": { "id": 803193, "name": "Av A/E 14 St", "direction": "SW", "lat": 40.730267, "lon": -73.98055, "routes": "L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98055, 40.730267 ] } }, -{ "type": "Feature", "properties": { "id": 803194, "name": "Riverbank/State Park", "direction": "SW", "lat": 40.826817, "lon": -73.95538, "routes": "M11, BX19, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.95538, 40.826817 ] } }, -{ "type": "Feature", "properties": { "id": 803195, "name": "Riverbank/State Park", "direction": "SW", "lat": 40.82665, "lon": -73.955505, "routes": "BX19, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.955505, 40.82665 ] } }, -{ "type": "Feature", "properties": { "id": 803217, "name": "10 Av/W 40 St", "direction": "NE", "lat": 40.75818, "lon": -73.99645, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99645, 40.75818 ] } }, -{ "type": "Feature", "properties": { "id": 803224, "name": "W 57 St/6 Av", "direction": "SE", "lat": 40.764572, "lon": -73.977875, "routes": "SIM10, SIM30" }, "geometry": { "type": "Point", "coordinates": [ -73.977875, 40.764572 ] } }, -{ "type": "Feature", "properties": { "id": 803228, "name": "2 Av/E 111 St", "direction": "SW", "lat": 40.793625, "lon": -73.94033, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.94033, 40.793625 ] } }, -{ "type": "Feature", "properties": { "id": 803234, "name": "Battery Pl/Greenwich St", "direction": "W", "lat": 40.70492, "lon": -74.01544, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.01544, 40.70492 ] } }, -{ "type": "Feature", "properties": { "id": 803239, "name": "Main Rdwy/Manhattan Psych Center", "direction": "SW", "lat": 40.789127, "lon": -73.926865, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.926865, 40.789127 ] } }, -{ "type": "Feature", "properties": { "id": 804024, "name": "Parsons Blvd/14 Av", "direction": "NW", "lat": 40.78678, "lon": -73.82224, "routes": "Q44+, Q20B" }, "geometry": { "type": "Point", "coordinates": [ -73.82224, 40.78678 ] } }, -{ "type": "Feature", "properties": { "id": 804026, "name": "56 Av/Qbcc", "direction": "W", "lat": 40.754047, "lon": -73.75805, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75805, 40.754047 ] } }, -{ "type": "Feature", "properties": { "id": 804027, "name": "56 Av/Qbcc", "direction": "W", "lat": 40.75403, "lon": -73.75813, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.75813, 40.75403 ] } }, -{ "type": "Feature", "properties": { "id": 804030, "name": "166 St/Powells Cove Blvd", "direction": "N", "lat": 40.793804, "lon": -73.79742, "routes": "Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.79742, 40.793804 ] } }, -{ "type": "Feature", "properties": { "id": 804031, "name": "Roosevelt Av/Union St", "direction": "W", "lat": 40.759983, "lon": -73.82862, "routes": "Q26, Q15, Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.82862, 40.759983 ] } }, -{ "type": "Feature", "properties": { "id": 804034, "name": "243 St/147 Av", "direction": "NE", "lat": 40.657658, "lon": -73.74128, "routes": "Q85, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.74128, 40.657658 ] } }, -{ "type": "Feature", "properties": { "id": 804039, "name": "Archer Av/153 St", "direction": "W", "lat": 40.702133, "lon": -73.80141, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.80141, 40.702133 ] } }, -{ "type": "Feature", "properties": { "id": 804041, "name": "39 Av/Main St", "direction": "E", "lat": 40.76022, "lon": -73.83003, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.83003, 40.76022 ] } }, -{ "type": "Feature", "properties": { "id": 804051, "name": "Francis Lewis Blvd/27 Av", "direction": "NW", "lat": 40.772606, "lon": -73.79497, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79497, 40.772606 ] } }, -{ "type": "Feature", "properties": { "id": 804052, "name": "165 St/Terminal", "direction": "SE", "lat": 40.707664, "lon": -73.79522, "routes": "Q3, Q36, Q76, Q2, Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.79522, 40.707664 ] } }, -{ "type": "Feature", "properties": { "id": 804053, "name": "West Circle Dr /Parking Structure (Arrive)", "direction": "W", "lat": 40.661434, "lon": -73.72139, "routes": "Q5, Q5, Q85, Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.72139, 40.661434 ] } }, -{ "type": "Feature", "properties": { "id": 804055, "name": "Myrtle Av/Hillside Av", "direction": "W", "lat": 40.70015, "lon": -73.832466, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.832466, 40.70015 ] } }, -{ "type": "Feature", "properties": { "id": 804059, "name": "41 Rd/Main St", "direction": "NE", "lat": 40.757362, "lon": -73.82937, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.82937, 40.757362 ] } }, -{ "type": "Feature", "properties": { "id": 804060, "name": "92 St/59 Av", "direction": "S", "lat": 40.734978, "lon": -73.86959, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.86959, 40.734978 ] } }, -{ "type": "Feature", "properties": { "id": 804061, "name": "Merrick Blvd/Archer Av", "direction": "SE", "lat": 40.704933, "lon": -73.79332, "routes": "Q20B, Q20A, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.79332, 40.704933 ] } }, -{ "type": "Feature", "properties": { "id": 804063, "name": "260 St/Little Neck Pkwy", "direction": "E", "lat": 40.752075, "lon": -73.72068, "routes": "Q46, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.72068, 40.752075 ] } }, -{ "type": "Feature", "properties": { "id": 804086, "name": "Colfax St/Springfield Blvd", "direction": "E", "lat": 40.701763, "lon": -73.74127, "routes": "Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.74127, 40.701763 ] } }, -{ "type": "Feature", "properties": { "id": 804087, "name": "Braddock Av/Cross Island Pkwy", "direction": "SE", "lat": 40.725647, "lon": -73.72515, "routes": "Q1" }, "geometry": { "type": "Point", "coordinates": [ -73.72515, 40.725647 ] } }, -{ "type": "Feature", "properties": { "id": 804137, "name": "Roosevelt Av/Main St", "direction": "W", "lat": 40.759834, "lon": -73.82887, "routes": "Q26" }, "geometry": { "type": "Point", "coordinates": [ -73.82887, 40.759834 ] } }, -{ "type": "Feature", "properties": { "id": 804142, "name": "Lga/Terminal C", "direction": "NW", "lat": 40.77029, "lon": -73.86437, "routes": "M60+" }, "geometry": { "type": "Point", "coordinates": [ -73.86437, 40.77029 ] } }, -{ "type": "Feature", "properties": { "id": 804174, "name": "Delancey St/Essex St", "direction": "E", "lat": 40.71849, "lon": -73.98846, "routes": "B39" }, "geometry": { "type": "Point", "coordinates": [ -73.98846, 40.71849 ] } }, -{ "type": "Feature", "properties": { "id": 804177, "name": "Merrick Blvd/Jamaica Av", "direction": "SE", "lat": 40.70591, "lon": -73.794014, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.794014, 40.70591 ] } }, -{ "type": "Feature", "properties": { "id": 804178, "name": "Merrick Blvd/Jamaica Av", "direction": "SE", "lat": 40.70589, "lon": -73.794, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.794, 40.70589 ] } }, -{ "type": "Feature", "properties": { "id": 804183, "name": "21 St/45 Rd", "direction": "S", "lat": 40.746742, "lon": -73.94785, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.94785, 40.746742 ] } }, -{ "type": "Feature", "properties": { "id": 804184, "name": "Jackson Av/45 Av", "direction": "W", "lat": 40.746647, "lon": -73.94366, "routes": "B98" }, "geometry": { "type": "Point", "coordinates": [ -73.94366, 40.746647 ] } }, -{ "type": "Feature", "properties": { "id": 804209, "name": "31 St/40 Av", "direction": "SW", "lat": 40.751713, "lon": -73.93375, "routes": "Q108" }, "geometry": { "type": "Point", "coordinates": [ -73.93375, 40.751713 ] } }, -{ "type": "Feature", "properties": { "id": 804211, "name": "Jackson Av/Queens Blvd", "direction": "SE", "lat": 40.749607, "lon": -73.93859, "routes": "Q108" }, "geometry": { "type": "Point", "coordinates": [ -73.93859, 40.749607 ] } }, -{ "type": "Feature", "properties": { "id": 804212, "name": "Queens Blvd/33 St", "direction": "E", "lat": 40.744476, "lon": -73.93189, "routes": "Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.93189, 40.744476 ] } }, -{ "type": "Feature", "properties": { "id": 804213, "name": "Roosevelt Av/52 St", "direction": "E", "lat": 40.74415, "lon": -73.912384, "routes": "Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.912384, 40.74415 ] } }, -{ "type": "Feature", "properties": { "id": 804214, "name": "Roosevelt Av/Broadway", "direction": "E", "lat": 40.74678, "lon": -73.891815, "routes": "Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.891815, 40.74678 ] } }, -{ "type": "Feature", "properties": { "id": 804215, "name": "Roosevelt Av/52 St", "direction": "W", "lat": 40.744213, "lon": -73.91241, "routes": "Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.91241, 40.744213 ] } }, -{ "type": "Feature", "properties": { "id": 804216, "name": "Jackson Av/Queens Blvd", "direction": "W", "lat": 40.748817, "lon": -73.93788, "routes": "Q107" }, "geometry": { "type": "Point", "coordinates": [ -73.93788, 40.748817 ] } }, -{ "type": "Feature", "properties": { "id": 804217, "name": "Jackson Av/Thompson Av", "direction": "E", "lat": 40.74672, "lon": -73.94327, "routes": "Q96" }, "geometry": { "type": "Point", "coordinates": [ -73.94327, 40.74672 ] } }, -{ "type": "Feature", "properties": { "id": 804218, "name": "Jackson Av/Queens Blvd", "direction": "E", "lat": 40.7489, "lon": -73.93711, "routes": "Q96" }, "geometry": { "type": "Point", "coordinates": [ -73.93711, 40.7489 ] } }, -{ "type": "Feature", "properties": { "id": 804219, "name": "21 St/41 Av", "direction": "SW", "lat": 40.75452, "lon": -73.94198, "routes": "Q96" }, "geometry": { "type": "Point", "coordinates": [ -73.94198, 40.75452 ] } }, -{ "type": "Feature", "properties": { "id": 805003, "name": "Castleton Av/Brighton Av", "direction": "W", "lat": 40.634, "lon": -74.09761, "routes": "S96" }, "geometry": { "type": "Point", "coordinates": [ -74.09761, 40.634 ] } }, -{ "type": "Feature", "properties": { "id": 805006, "name": "Saint George Ferry/Ramp D", "direction": "W", "lat": 40.643723, "lon": -74.073105, "routes": "S90, S52, S42, S40" }, "geometry": { "type": "Point", "coordinates": [ -74.073105, 40.643723 ] } }, -{ "type": "Feature", "properties": { "id": 805010, "name": "Seaview Hospital/Traffic Loop", "direction": "SE", "lat": 40.592922, "lon": -74.13413, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.13413, 40.592922 ] } }, -{ "type": "Feature", "properties": { "id": 805011, "name": "Seaview Hospital/Dr E Robitzek Building", "direction": "S", "lat": 40.59152, "lon": -74.132515, "routes": "S57, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.132515, 40.59152 ] } }, -{ "type": "Feature", "properties": { "id": 805012, "name": "Seaview Hospital Exit/Traffic Loop", "direction": "NW", "lat": 40.593098, "lon": -74.133896, "routes": "S54, S57" }, "geometry": { "type": "Point", "coordinates": [ -74.133896, 40.593098 ] } }, -{ "type": "Feature", "properties": { "id": 805013, "name": "Mill Rd/Ebbitts St", "direction": "SW", "lat": 40.564228, "lon": -74.11034, "routes": "SIM11" }, "geometry": { "type": "Point", "coordinates": [ -74.11034, 40.564228 ] } }, -{ "type": "Feature", "properties": { "id": 805014, "name": "Saint George Ferry/Ramp A", "direction": "W", "lat": 40.643356, "lon": -74.073, "routes": "S66, S62, S91, S92, S61" }, "geometry": { "type": "Point", "coordinates": [ -74.073, 40.643356 ] } }, -{ "type": "Feature", "properties": { "id": 805015, "name": "Saint George Ferry/Ramp C", "direction": "W", "lat": 40.643555, "lon": -74.07318, "routes": "S96, S74, S46, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07318, 40.643555 ] } }, -{ "type": "Feature", "properties": { "id": 805016, "name": "Saint George Ferry/Ramp D", "direction": "W", "lat": 40.643734, "lon": -74.073044, "routes": "S94, S44" }, "geometry": { "type": "Point", "coordinates": [ -74.073044, 40.643734 ] } }, -{ "type": "Feature", "properties": { "id": 805017, "name": "Saint George Ferry/Ramp C", "direction": "W", "lat": 40.64357, "lon": -74.07315, "routes": "S98, S48" }, "geometry": { "type": "Point", "coordinates": [ -74.07315, 40.64357 ] } }, -{ "type": "Feature", "properties": { "id": 805040, "name": "South Av/1200 South Av", "direction": "SW", "lat": 40.6105, "lon": -74.17727, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.17727, 40.6105 ] } }, -{ "type": "Feature", "properties": { "id": 805054, "name": "34 St/Hoboken Light Rail Station", "direction": "NE", "lat": 40.67147, "lon": -74.107185, "routes": "S89" }, "geometry": { "type": "Point", "coordinates": [ -74.107185, 40.67147 ] } }, -{ "type": "Feature", "properties": { "id": 805056, "name": "34 St/Hoboken Light Rail Station", "direction": "NE", "lat": 40.671417, "lon": -74.10723, "routes": "S89" }, "geometry": { "type": "Point", "coordinates": [ -74.10723, 40.671417 ] } }, -{ "type": "Feature", "properties": { "id": 805064, "name": "Madison Av/E 59 St", "direction": "NE", "lat": 40.763474, "lon": -73.9714, "routes": "SIM23, SIM24" }, "geometry": { "type": "Point", "coordinates": [ -73.9714, 40.763474 ] } }, -{ "type": "Feature", "properties": { "id": 805066, "name": "Woodrow Rd/Oak Ln", "direction": "S", "lat": 40.560074, "lon": -74.180466, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.180466, 40.560074 ] } }, -{ "type": "Feature", "properties": { "id": 805067, "name": "Narrows Rd North/Targee St", "direction": "W", "lat": 40.60873, "lon": -74.08821, "routes": "S93" }, "geometry": { "type": "Point", "coordinates": [ -74.08821, 40.60873 ] } }, -{ "type": "Feature", "properties": { "id": 805071, "name": "Richmond Av/ Monsey Pl", "direction": "S", "lat": 40.6243, "lon": -74.14907, "routes": "S89" }, "geometry": { "type": "Point", "coordinates": [ -74.14907, 40.6243 ] } }, -{ "type": "Feature", "properties": { "id": 805073, "name": "Hylan Blvd/Cornelia Av", "direction": "W", "lat": 40.522663, "lon": -74.18993, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.18993, 40.522663 ] } }, -{ "type": "Feature", "properties": { "id": 805079, "name": "Bloomingdale Rd/Amboy Rd", "direction": "NW", "lat": 40.527798, "lon": -74.21636, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.21636, 40.527798 ] } }, -{ "type": "Feature", "properties": { "id": 805082, "name": "Bloomingdale Rd/Marvin Rd", "direction": "N", "lat": 40.53539, "lon": -74.21822, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21822, 40.53539 ] } }, -{ "type": "Feature", "properties": { "id": 805084, "name": "Bloomingdale Rd/Clay Pit Rd", "direction": "N", "lat": 40.54004, "lon": -74.2176, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.2176, 40.54004 ] } }, -{ "type": "Feature", "properties": { "id": 805087, "name": "Bloomingdale Rd/Veterans Rd East", "direction": "NW", "lat": 40.547997, "lon": -74.220345, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.220345, 40.547997 ] } }, -{ "type": "Feature", "properties": { "id": 805092, "name": "Bloomingdale Rd/Kramer Av", "direction": "SE", "lat": 40.54201, "lon": -74.218185, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.218185, 40.54201 ] } }, -{ "type": "Feature", "properties": { "id": 805093, "name": "Bloomingdale Rd/Clay Pit Rd", "direction": "S", "lat": 40.54004, "lon": -74.21775, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21775, 40.54004 ] } }, -{ "type": "Feature", "properties": { "id": 805094, "name": "Bloomingdale Rd/Sharrotts Rd", "direction": "S", "lat": 40.5376, "lon": -74.21796, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21796, 40.5376 ] } }, -{ "type": "Feature", "properties": { "id": 805096, "name": "Bloomingdale Rd/Englewood Av", "direction": "S", "lat": 40.531326, "lon": -74.21787, "routes": "SIM26, S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21787, 40.531326 ] } }, -{ "type": "Feature", "properties": { "id": 805098, "name": "Amboy Rd/Bloomingdale Rd", "direction": "E", "lat": 40.523926, "lon": -74.21545, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.21545, 40.523926 ] } }, -{ "type": "Feature", "properties": { "id": 805105, "name": "Luten Av/Hylan Blvd", "direction": "NW", "lat": 40.523384, "lon": -74.18852, "routes": "S55" }, "geometry": { "type": "Point", "coordinates": [ -74.18852, 40.523384 ] } }, -{ "type": "Feature", "properties": { "id": 805108, "name": "Eylendt St/ Luten Av", "direction": "SW", "lat": 40.52682, "lon": -74.19129, "routes": "S56" }, "geometry": { "type": "Point", "coordinates": [ -74.19129, 40.52682 ] } }, -{ "type": "Feature", "properties": { "id": 805125, "name": "University Dr/Northwell Health Labs", "direction": "S", "lat": 40.58328, "lon": -74.08447, "routes": "S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08447, 40.58328 ] } }, -{ "type": "Feature", "properties": { "id": 805127, "name": "University Dr/Medical Arts Pavilion East", "direction": "SW", "lat": 40.5856, "lon": -74.08471, "routes": "S52, S52" }, "geometry": { "type": "Point", "coordinates": [ -74.08471, 40.5856 ] } }, -{ "type": "Feature", "properties": { "id": 805138, "name": "Teleport Dr/South Av", "direction": "SE", "lat": 40.6068, "lon": -74.178246, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.178246, 40.6068 ] } }, -{ "type": "Feature", "properties": { "id": 805139, "name": "Teleport Dr/South Av Exit", "direction": "NW", "lat": 40.606846, "lon": -74.17765, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.17765, 40.606846 ] } }, -{ "type": "Feature", "properties": { "id": 805140, "name": "Hylan Blvd/Huguenot Av", "direction": "E", "lat": 40.52383, "lon": -74.18625, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.18625, 40.52383 ] } }, -{ "type": "Feature", "properties": { "id": 805143, "name": "Bloomingdale Rd/Veterans Rd East", "direction": "S", "lat": 40.548874, "lon": -74.220856, "routes": "S55, SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.220856, 40.548874 ] } }, -{ "type": "Feature", "properties": { "id": 805155, "name": "Lamberts Ln/Richmond Av", "direction": "SE", "lat": 40.6144, "lon": -74.15778, "routes": "SIM8X, SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.15778, 40.6144 ] } }, -{ "type": "Feature", "properties": { "id": 805163, "name": "Saint George Ferry/Ramp B S76 & S86", "direction": "W", "lat": 40.643368, "lon": -74.073326, "routes": "S86, S76" }, "geometry": { "type": "Point", "coordinates": [ -74.073326, 40.643368 ] } }, -{ "type": "Feature", "properties": { "id": 805164, "name": "Saint George Ferry/Ramp C S78", "direction": "W", "lat": 40.64326, "lon": -74.074066, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.074066, 40.64326 ] } }, -{ "type": "Feature", "properties": { "id": 805165, "name": "Eltingville/Transit Center", "direction": "W", "lat": 40.560734, "lon": -74.17106, "routes": "S79+, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.17106, 40.560734 ] } }, -{ "type": "Feature", "properties": { "id": 805167, "name": "C St/1 Av", "direction": "E", "lat": 40.598892, "lon": -74.15179, "routes": "S93, S93" }, "geometry": { "type": "Point", "coordinates": [ -74.15179, 40.598892 ] } }, -{ "type": "Feature", "properties": { "id": 805168, "name": "Hylan Blvd/New Dorp Ln", "direction": "NE", "lat": 40.57027, "lon": -74.10977, "routes": "SIM1C, SIM6, SIM7, SIM1, SIM9, SIM5, SIM10, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -74.10977, 40.57027 ] } }, -{ "type": "Feature", "properties": { "id": 805173, "name": "Veterans Rd East/Bloomingdale Rd", "direction": "NE", "lat": 40.548058, "lon": -74.22009, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.22009, 40.548058 ] } }, -{ "type": "Feature", "properties": { "id": 805187, "name": "Broadway/Morris St", "direction": "SW", "lat": 40.70519, "lon": -74.01388, "routes": "SIM33C, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.01388, 40.70519 ] } }, -{ "type": "Feature", "properties": { "id": 805189, "name": "Marsh Av/Ring Rd", "direction": "SW", "lat": 40.58333, "lon": -74.16171, "routes": "S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.16171, 40.58333 ] } }, -{ "type": "Feature", "properties": { "id": 805190, "name": "Marsh Av/Ring Rd", "direction": "SW", "lat": 40.583763, "lon": -74.16135, "routes": "S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.16135, 40.583763 ] } }, -{ "type": "Feature", "properties": { "id": 805202, "name": "5 St/Amazon Fulfillment Center", "direction": "NW", "lat": 40.618935, "lon": -74.18516, "routes": "S40, S90" }, "geometry": { "type": "Point", "coordinates": [ -74.18516, 40.618935 ] } }, -{ "type": "Feature", "properties": { "id": 901001, "name": "Flatbush Av/Av U", "direction": "NW", "lat": 40.609406, "lon": -73.92179, "routes": "B2" }, "geometry": { "type": "Point", "coordinates": [ -73.92179, 40.609406 ] } }, -{ "type": "Feature", "properties": { "id": 901003, "name": "Narrows Av/77 St", "direction": "N", "lat": 40.631718, "lon": -74.03641, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -74.03641, 40.631718 ] } }, -{ "type": "Feature", "properties": { "id": 901007, "name": "Cadman Plaza West/Johnson St", "direction": "N", "lat": 40.695408, "lon": -73.99078, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.99078, 40.695408 ] } }, -{ "type": "Feature", "properties": { "id": 901009, "name": "Emmons Av/Nostrand Av", "direction": "W", "lat": 40.584026, "lon": -73.93841, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.93841, 40.584026 ] } }, -{ "type": "Feature", "properties": { "id": 901010, "name": "Williamsburg Bridge Plaza/Lane 4", "direction": "E", "lat": 40.70932, "lon": -73.95962, "routes": "B44, B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.95962, 40.70932 ] } }, -{ "type": "Feature", "properties": { "id": 901011, "name": "Knapp St/Shore Pkwy", "direction": "S", "lat": 40.585064, "lon": -73.93134, "routes": "B44" }, "geometry": { "type": "Point", "coordinates": [ -73.93134, 40.585064 ] } }, -{ "type": "Feature", "properties": { "id": 901012, "name": "Rockaway Pkwy/Subway Station", "direction": "SW", "lat": 40.645695, "lon": -73.90207, "routes": "L91, B6, B6" }, "geometry": { "type": "Point", "coordinates": [ -73.90207, 40.645695 ] } }, -{ "type": "Feature", "properties": { "id": 901013, "name": "Saratoga Av/Halsey St", "direction": "S", "lat": 40.68584, "lon": -73.91782, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.91782, 40.68584 ] } }, -{ "type": "Feature", "properties": { "id": 901014, "name": "Quentin Rd/Coney Island Av", "direction": "W", "lat": 40.607952, "lon": -73.961296, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.961296, 40.607952 ] } }, -{ "type": "Feature", "properties": { "id": 901017, "name": "Marcus Garvey Blvd/Broadway", "direction": "S", "lat": 40.699745, "lon": -73.94147, "routes": "B15, B47" }, "geometry": { "type": "Point", "coordinates": [ -73.94147, 40.699745 ] } }, -{ "type": "Feature", "properties": { "id": 901019, "name": "Eastern Pkwy/Utica Av", "direction": "E", "lat": 40.668556, "lon": -73.931625, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.931625, 40.668556 ] } }, -{ "type": "Feature", "properties": { "id": 901020, "name": "Glenwood Rd/Remsen Av", "direction": "NE", "lat": 40.642082, "lon": -73.90697, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.90697, 40.642082 ] } }, -{ "type": "Feature", "properties": { "id": 901022, "name": "Rockaway Station/Rockaway Station", "direction": "W", "lat": 40.6458, "lon": -73.90168, "routes": "B6, L91" }, "geometry": { "type": "Point", "coordinates": [ -73.90168, 40.6458 ] } }, -{ "type": "Feature", "properties": { "id": 901024, "name": "4th Av/Shore Rd", "direction": "NW", "lat": 40.611763, "lon": -74.035126, "routes": "X37, X27" }, "geometry": { "type": "Point", "coordinates": [ -74.035126, 40.611763 ] } }, -{ "type": "Feature", "properties": { "id": 901025, "name": "Palmetto St/Wyckoff Av", "direction": "NE", "lat": 40.699333, "lon": -73.91121, "routes": "Q58" }, "geometry": { "type": "Point", "coordinates": [ -73.91121, 40.699333 ] } }, -{ "type": "Feature", "properties": { "id": 901026, "name": "Palmetto St/Myrtle Av", "direction": "NE", "lat": 40.7001, "lon": -73.910355, "routes": "Q55" }, "geometry": { "type": "Point", "coordinates": [ -73.910355, 40.7001 ] } }, -{ "type": "Feature", "properties": { "id": 901029, "name": "Rockaway Av/Hegeman Av", "direction": "S", "lat": 40.656048, "lon": -73.90739, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -73.90739, 40.656048 ] } }, -{ "type": "Feature", "properties": { "id": 901045, "name": "Gates Av/Wyckoff Av", "direction": "SW", "lat": 40.70097, "lon": -73.91085, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.91085, 40.70097 ] } }, -{ "type": "Feature", "properties": { "id": 901055, "name": "Smith St/Livingston St", "direction": "NE", "lat": 40.690716, "lon": -73.98769, "routes": "B65, B61" }, "geometry": { "type": "Point", "coordinates": [ -73.98769, 40.690716 ] } }, -{ "type": "Feature", "properties": { "id": 901058, "name": "Surf Av/W 37 St", "direction": "N", "lat": 40.57343, "lon": -74.00248, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -74.00248, 40.57343 ] } }, -{ "type": "Feature", "properties": { "id": 901059, "name": "Nostrand Av/Gravesend Neck Rd", "direction": "S", "lat": 40.60002, "lon": -73.94187, "routes": "B36" }, "geometry": { "type": "Point", "coordinates": [ -73.94187, 40.60002 ] } }, -{ "type": "Feature", "properties": { "id": 901066, "name": "Putnam Av/Fairview Av", "direction": "S", "lat": 40.70486, "lon": -73.90208, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.90208, 40.70486 ] } }, -{ "type": "Feature", "properties": { "id": 901067, "name": "Postal Facility Rd/Brooklyn Mail Facility", "direction": "S", "lat": 40.66491, "lon": -73.86333, "routes": "B20, B14" }, "geometry": { "type": "Point", "coordinates": [ -73.86333, 40.66491 ] } }, -{ "type": "Feature", "properties": { "id": 901070, "name": "Cadman Plaza West/Tillary St", "direction": "N", "lat": 40.696106, "lon": -73.99103, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.99103, 40.696106 ] } }, -{ "type": "Feature", "properties": { "id": 901075, "name": "Flushing Av/61 St", "direction": "SW", "lat": 40.721268, "lon": -73.90375, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -73.90375, 40.721268 ] } }, -{ "type": "Feature", "properties": { "id": 901076, "name": "Williams Av/Flatlands Av", "direction": "SE", "lat": 40.650352, "lon": -73.89168, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.89168, 40.650352 ] } }, -{ "type": "Feature", "properties": { "id": 901080, "name": "Seaview Av/Pennsylvania Av", "direction": "SW", "lat": 40.642967, "lon": -73.878265, "routes": "B83, B82, B82+, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.878265, 40.642967 ] } }, -{ "type": "Feature", "properties": { "id": 901081, "name": "Patchen Av/Lafayette Av", "direction": "N", "lat": 40.692387, "lon": -73.92788, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.92788, 40.692387 ] } }, -{ "type": "Feature", "properties": { "id": 901082, "name": "4 Av/95 St", "direction": "S", "lat": 40.61626, "lon": -74.03113, "routes": "B8" }, "geometry": { "type": "Point", "coordinates": [ -74.03113, 40.61626 ] } }, -{ "type": "Feature", "properties": { "id": 901083, "name": "58 St/1 Av", "direction": "SE", "lat": 40.645615, "lon": -74.02352, "routes": "B11" }, "geometry": { "type": "Point", "coordinates": [ -74.02352, 40.645615 ] } }, -{ "type": "Feature", "properties": { "id": 901086, "name": "Williamsburg Bridge Plaza/Lane 4", "direction": "E", "lat": 40.709423, "lon": -73.95961, "routes": "B46" }, "geometry": { "type": "Point", "coordinates": [ -73.95961, 40.709423 ] } }, -{ "type": "Feature", "properties": { "id": 901087, "name": "Franklin Av/Lefferts Pl", "direction": "S", "lat": 40.680645, "lon": -73.95571, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.95571, 40.680645 ] } }, -{ "type": "Feature", "properties": { "id": 901088, "name": "Surf Av/W 37 St", "direction": "W", "lat": 40.573338, "lon": -74.00219, "routes": "X28, X38" }, "geometry": { "type": "Point", "coordinates": [ -74.00219, 40.573338 ] } }, -{ "type": "Feature", "properties": { "id": 901089, "name": "Parkside Av/Ocean Av", "direction": "NE", "lat": 40.654846, "lon": -73.961754, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.961754, 40.654846 ] } }, -{ "type": "Feature", "properties": { "id": 901090, "name": "Kings Hwy/Fraser Sq", "direction": "SW", "lat": 40.620144, "lon": -73.94148, "routes": "B82, B7" }, "geometry": { "type": "Point", "coordinates": [ -73.94148, 40.620144 ] } }, -{ "type": "Feature", "properties": { "id": 901093, "name": "Kings Plaza", "direction": "NW", "lat": 40.60914, "lon": -73.92144, "routes": "B46, B46+" }, "geometry": { "type": "Point", "coordinates": [ -73.92144, 40.60914 ] } }, -{ "type": "Feature", "properties": { "id": 901096, "name": "Kings Hwy/Fraser Sq", "direction": "NE", "lat": 40.61983, "lon": -73.940895, "routes": "B7, B82" }, "geometry": { "type": "Point", "coordinates": [ -73.940895, 40.61983 ] } }, -{ "type": "Feature", "properties": { "id": 901117, "name": "Jay St/Willoboughby St", "direction": "S", "lat": 40.692265, "lon": -73.98737, "routes": "B93" }, "geometry": { "type": "Point", "coordinates": [ -73.98737, 40.692265 ] } }, -{ "type": "Feature", "properties": { "id": 901119, "name": "Metropolitan Av/Rentar Plaza", "direction": "E", "lat": 40.71225, "lon": -73.88906, "routes": "M90" }, "geometry": { "type": "Point", "coordinates": [ -73.88906, 40.71225 ] } }, -{ "type": "Feature", "properties": { "id": 901124, "name": "Wythe Av/S 1 St", "direction": "SW", "lat": 40.714977, "lon": -73.96487, "routes": "Q59, B32, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.96487, 40.714977 ] } }, -{ "type": "Feature", "properties": { "id": 901127, "name": "Metropolitan Av/Rentar Plaza", "direction": "W", "lat": 40.712353, "lon": -73.889885, "routes": "M90" }, "geometry": { "type": "Point", "coordinates": [ -73.889885, 40.712353 ] } }, -{ "type": "Feature", "properties": { "id": 901145, "name": "Beard St/Otsego St", "direction": "SE", "lat": 40.672325, "lon": -74.01132, "routes": "B57" }, "geometry": { "type": "Point", "coordinates": [ -74.01132, 40.672325 ] } }, -{ "type": "Feature", "properties": { "id": 901163, "name": "Jackson Av/42 Rd", "direction": "W", "lat": 40.748375, "lon": -73.93899, "routes": "Q108" }, "geometry": { "type": "Point", "coordinates": [ -73.93899, 40.748375 ] } }, -{ "type": "Feature", "properties": { "id": 901204, "name": "Smith St/Livingston St", "direction": "NE", "lat": 40.69056, "lon": -73.98775, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98775, 40.69056 ] } }, -{ "type": "Feature", "properties": { "id": 901211, "name": "East New York Av/Alabama Av", "direction": "E", "lat": 40.67672, "lon": -73.900116, "routes": "B25" }, "geometry": { "type": "Point", "coordinates": [ -73.900116, 40.67672 ] } }, -{ "type": "Feature", "properties": { "id": 901225, "name": "4 Av/86 St", "direction": "NE", "lat": 40.62252, "lon": -74.02834, "routes": "S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.02834, 40.62252 ] } }, -{ "type": "Feature", "properties": { "id": 901226, "name": "4 Av/86 St", "direction": "NE", "lat": 40.622658, "lon": -74.02834, "routes": "S79+" }, "geometry": { "type": "Point", "coordinates": [ -74.02834, 40.622658 ] } }, -{ "type": "Feature", "properties": { "id": 901240, "name": "Fairview Av/Putnam Av", "direction": "SE", "lat": 40.704697, "lon": -73.902565, "routes": "M90" }, "geometry": { "type": "Point", "coordinates": [ -73.902565, 40.704697 ] } }, -{ "type": "Feature", "properties": { "id": 901258, "name": "Palmetto St/Saint Nicholas Av", "direction": "SW", "lat": 40.700504, "lon": -73.91004, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.91004, 40.700504 ] } }, -{ "type": "Feature", "properties": { "id": 901263, "name": "Knapp St/Harkness Av", "direction": "S", "lat": 40.586624, "lon": -73.9317, "routes": "B4" }, "geometry": { "type": "Point", "coordinates": [ -73.9317, 40.586624 ] } }, -{ "type": "Feature", "properties": { "id": 901267, "name": "Quentin Rd/E 16 St", "direction": "W", "lat": 40.60845, "lon": -73.95654, "routes": "B31, B2" }, "geometry": { "type": "Point", "coordinates": [ -73.95654, 40.60845 ] } }, -{ "type": "Feature", "properties": { "id": 901269, "name": "Wyckoff Av/De Kalb Av", "direction": "SE", "lat": 40.704384, "lon": -73.919464, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.919464, 40.704384 ] } }, -{ "type": "Feature", "properties": { "id": 901273, "name": "Seaview Av/Erskine St", "direction": "SW", "lat": 40.653385, "lon": -73.86608, "routes": "B84, B13" }, "geometry": { "type": "Point", "coordinates": [ -73.86608, 40.653385 ] } }, -{ "type": "Feature", "properties": { "id": 901274, "name": "Eastern Pkwy/Utica Av", "direction": "W", "lat": 40.669106, "lon": -73.93136, "routes": "B14" }, "geometry": { "type": "Point", "coordinates": [ -73.93136, 40.669106 ] } }, -{ "type": "Feature", "properties": { "id": 901276, "name": "Mcdonald Av/Church Av", "direction": "S", "lat": 40.64271, "lon": -73.97947, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97947, 40.64271 ] } }, -{ "type": "Feature", "properties": { "id": 901278, "name": "Nostrand Av/Avenue H", "direction": "N", "lat": 40.63183, "lon": -73.94744, "routes": "B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.94744, 40.63183 ] } }, -{ "type": "Feature", "properties": { "id": 901279, "name": "Shore Pkwy/Knapp St", "direction": "E", "lat": 40.585423, "lon": -73.9315, "routes": "B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.9315, 40.585423 ] } }, -{ "type": "Feature", "properties": { "id": 901280, "name": "Rogers Av/Saint Johns Pl", "direction": "N", "lat": 40.671597, "lon": -73.952995, "routes": "B44+" }, "geometry": { "type": "Point", "coordinates": [ -73.952995, 40.671597 ] } }, -{ "type": "Feature", "properties": { "id": 901295, "name": "87 St/4 Av", "direction": "NW", "lat": 40.62184, "lon": -74.028366, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -74.028366, 40.62184 ] } }, -{ "type": "Feature", "properties": { "id": 901297, "name": "Shore Rd/71 St", "direction": "NE", "lat": 40.63681, "lon": -74.03629, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.03629, 40.63681 ] } }, -{ "type": "Feature", "properties": { "id": 901302, "name": "Kent Av/Metropolitan Av", "direction": "NE", "lat": 40.717667, "lon": -73.964424, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.964424, 40.717667 ] } }, -{ "type": "Feature", "properties": { "id": 901303, "name": "Kent Av/N 6 St", "direction": "NE", "lat": 40.719627, "lon": -73.9623, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.9623, 40.719627 ] } }, -{ "type": "Feature", "properties": { "id": 901304, "name": "Kent Av/N 9 St", "direction": "NE", "lat": 40.72155, "lon": -73.960205, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.960205, 40.72155 ] } }, -{ "type": "Feature", "properties": { "id": 901305, "name": "Kent Av/N 12 St", "direction": "NE", "lat": 40.723225, "lon": -73.95841, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95841, 40.723225 ] } }, -{ "type": "Feature", "properties": { "id": 901306, "name": "Franklin St/Calyer St", "direction": "N", "lat": 40.72636, "lon": -73.95727, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95727, 40.72636 ] } }, -{ "type": "Feature", "properties": { "id": 901308, "name": "Franklin St/Greenpoint Av", "direction": "N", "lat": 40.730087, "lon": -73.95754, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95754, 40.730087 ] } }, -{ "type": "Feature", "properties": { "id": 901309, "name": "Franklin St/India St", "direction": "N", "lat": 40.732227, "lon": -73.95789, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95789, 40.732227 ] } }, -{ "type": "Feature", "properties": { "id": 901310, "name": "Green St/Manhattan Av", "direction": "E", "lat": 40.733704, "lon": -73.95459, "routes": "B62, B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95459, 40.733704 ] } }, -{ "type": "Feature", "properties": { "id": 901312, "name": "11 St/46 Av", "direction": "N", "lat": 40.746254, "lon": -73.95024, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95024, 40.746254 ] } }, -{ "type": "Feature", "properties": { "id": 901313, "name": "11 St/45 Av", "direction": "N", "lat": 40.747654, "lon": -73.94977, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.94977, 40.747654 ] } }, -{ "type": "Feature", "properties": { "id": 901314, "name": "44 Dr/21 St", "direction": "S", "lat": 40.74794, "lon": -73.94749, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.94749, 40.74794 ] } }, -{ "type": "Feature", "properties": { "id": 901315, "name": "44 Dr/21 St", "direction": "S", "lat": 40.747883, "lon": -73.94751, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.94751, 40.747883 ] } }, -{ "type": "Feature", "properties": { "id": 901316, "name": "Freeman St/Manhattan Av", "direction": "W", "lat": 40.734413, "lon": -73.95561, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95561, 40.734413 ] } }, -{ "type": "Feature", "properties": { "id": 901318, "name": "Franklin St/Greenpoint Av", "direction": "S", "lat": 40.729664, "lon": -73.95762, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95762, 40.729664 ] } }, -{ "type": "Feature", "properties": { "id": 901321, "name": "Wythe Av/N 12 St", "direction": "SW", "lat": 40.722145, "lon": -73.957664, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.957664, 40.722145 ] } }, -{ "type": "Feature", "properties": { "id": 901322, "name": "Wythe Av/N 9 St", "direction": "SW", "lat": 40.720467, "lon": -73.959465, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.959465, 40.720467 ] } }, -{ "type": "Feature", "properties": { "id": 901323, "name": "Wythe Av/N 6 St", "direction": "SW", "lat": 40.71881, "lon": -73.961266, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.961266, 40.71881 ] } }, -{ "type": "Feature", "properties": { "id": 901324, "name": "Wythe Av/Metropolitan Av", "direction": "SW", "lat": 40.71661, "lon": -73.96361, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.96361, 40.71661 ] } }, -{ "type": "Feature", "properties": { "id": 901325, "name": "Broadway/Roebling St", "direction": "W", "lat": 40.709167, "lon": -73.95998, "routes": "B32, Q59, Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.95998, 40.709167 ] } }, -{ "type": "Feature", "properties": { "id": 901326, "name": "11 St/48 Av", "direction": "N", "lat": 40.743725, "lon": -73.95104, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95104, 40.743725 ] } }, -{ "type": "Feature", "properties": { "id": 901329, "name": "Sands St/Navy St", "direction": "E", "lat": 40.699654, "lon": -73.98056, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98056, 40.699654 ] } }, -{ "type": "Feature", "properties": { "id": 901331, "name": "Market St/9 Av", "direction": "E", "lat": 40.699516, "lon": -73.97112, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97112, 40.699516 ] } }, -{ "type": "Feature", "properties": { "id": 901332, "name": "Clymer St/Kent Av", "direction": "NE", "lat": 40.70408, "lon": -73.967224, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.967224, 40.70408 ] } }, -{ "type": "Feature", "properties": { "id": 901333, "name": "Division Av/Wythe Av", "direction": "E", "lat": 40.706944, "lon": -73.96748, "routes": "B67, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.96748, 40.706944 ] } }, -{ "type": "Feature", "properties": { "id": 901334, "name": "Division Av/Wythe Av", "direction": "E", "lat": 40.70696, "lon": -73.96741, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.96741, 40.70696 ] } }, -{ "type": "Feature", "properties": { "id": 901335, "name": "Clymer St/Kent Av", "direction": "SW", "lat": 40.704067, "lon": -73.96732, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.96732, 40.704067 ] } }, -{ "type": "Feature", "properties": { "id": 901336, "name": "Market St/5 St", "direction": "NW", "lat": 40.70019, "lon": -73.973206, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.973206, 40.70019 ] } }, -{ "type": "Feature", "properties": { "id": 901338, "name": "York St/Jay St", "direction": "W", "lat": 40.701553, "lon": -73.98699, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98699, 40.701553 ] } }, -{ "type": "Feature", "properties": { "id": 901339, "name": "Stillwell Av/Mermaid Av", "direction": "S", "lat": 40.577206, "lon": -73.98162, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98162, 40.577206 ] } }, -{ "type": "Feature", "properties": { "id": 901340, "name": "Mermaid Av/Stillwell Av", "direction": "N", "lat": 40.577038, "lon": -73.98159, "routes": "B64" }, "geometry": { "type": "Point", "coordinates": [ -73.98159, 40.577038 ] } }, -{ "type": "Feature", "properties": { "id": 901342, "name": "Saint Nicholas Av/W 192 St", "direction": "SW", "lat": 40.856262, "lon": -73.92869, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.92869, 40.856262 ] } }, -{ "type": "Feature", "properties": { "id": 901443, "name": "Oriental Blvd/Beaumont St (Ltd - Does Not Stop)", "direction": "E", "lat": 40.57702, "lon": -73.950584, "routes": "B49" }, "geometry": { "type": "Point", "coordinates": [ -73.950584, 40.57702 ] } }, -{ "type": "Feature", "properties": { "id": 901445, "name": "Shore Rd/4 Av", "direction": "NW", "lat": 40.611717, "lon": -74.03507, "routes": "B37, B16" }, "geometry": { "type": "Point", "coordinates": [ -74.03507, 40.611717 ] } }, -{ "type": "Feature", "properties": { "id": 901462, "name": "Beard St/Otsego St", "direction": "SE", "lat": 40.672314, "lon": -74.01131, "routes": "B57, B61" }, "geometry": { "type": "Point", "coordinates": [ -74.01131, 40.672314 ] } }, -{ "type": "Feature", "properties": { "id": 901463, "name": "Cadman Plaza West/Tillary St", "direction": "N", "lat": 40.695232, "lon": -73.990814, "routes": "B52, B26" }, "geometry": { "type": "Point", "coordinates": [ -73.990814, 40.695232 ] } }, -{ "type": "Feature", "properties": { "id": 901464, "name": "3 Av/41 St", "direction": "SW", "lat": 40.652725, "lon": -74.00962, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.00962, 40.652725 ] } }, -{ "type": "Feature", "properties": { "id": 901469, "name": "Cropsey Av/Bay 38 St", "direction": "SE", "lat": 40.593014, "lon": -73.9938, "routes": "B82" }, "geometry": { "type": "Point", "coordinates": [ -73.9938, 40.593014 ] } }, -{ "type": "Feature", "properties": { "id": 901472, "name": "Oriental Blvd/Mackenzie St", "direction": "E", "lat": 40.578033, "lon": -73.93993, "routes": "B1" }, "geometry": { "type": "Point", "coordinates": [ -73.93993, 40.578033 ] } }, -{ "type": "Feature", "properties": { "id": 901475, "name": "Gateway Center Terminal/Gateway Dr", "direction": "NW", "lat": 40.65282, "lon": -73.876755, "routes": "B83, B13, B83" }, "geometry": { "type": "Point", "coordinates": [ -73.876755, 40.65282 ] } }, -{ "type": "Feature", "properties": { "id": 901478, "name": "Rockaway Av/East New York Av", "direction": "N", "lat": 40.67253, "lon": -73.91122, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.91122, 40.67253 ] } }, -{ "type": "Feature", "properties": { "id": 901479, "name": "Fort Hamilton Pkwy/60 St", "direction": "SW", "lat": 40.633015, "lon": -74.005714, "routes": "B16" }, "geometry": { "type": "Point", "coordinates": [ -74.005714, 40.633015 ] } }, -{ "type": "Feature", "properties": { "id": 901480, "name": "3 Av/47 St", "direction": "NE", "lat": 40.649303, "lon": -74.0126, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.0126, 40.649303 ] } }, -{ "type": "Feature", "properties": { "id": 901481, "name": "3 Av/34 St", "direction": "NE", "lat": 40.656593, "lon": -74.005035, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.005035, 40.656593 ] } }, -{ "type": "Feature", "properties": { "id": 901482, "name": "3 Av/12 St", "direction": "NE", "lat": 40.669518, "lon": -73.99256, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.99256, 40.669518 ] } }, -{ "type": "Feature", "properties": { "id": 901485, "name": "3 Av/Warren St", "direction": "SW", "lat": 40.681953, "lon": -73.98308, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -73.98308, 40.681953 ] } }, -{ "type": "Feature", "properties": { "id": 901488, "name": "3 Av/25 St", "direction": "SW", "lat": 40.661854, "lon": -74.000114, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.000114, 40.661854 ] } }, -{ "type": "Feature", "properties": { "id": 901492, "name": "3 Av/97 St", "direction": "SW", "lat": 40.61551, "lon": -74.0344, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.0344, 40.61551 ] } }, -{ "type": "Feature", "properties": { "id": 901493, "name": "7 Av/79 St", "direction": "NE", "lat": 40.623413, "lon": -74.019066, "routes": "B16, B70" }, "geometry": { "type": "Point", "coordinates": [ -74.019066, 40.623413 ] } }, -{ "type": "Feature", "properties": { "id": 901495, "name": "Seaview Av/E 108 St", "direction": "NE", "lat": 40.638924, "lon": -73.88155, "routes": "B17, B17" }, "geometry": { "type": "Point", "coordinates": [ -73.88155, 40.638924 ] } }, -{ "type": "Feature", "properties": { "id": 901500, "name": "Flatbush Av/Dean St", "direction": "SE", "lat": 40.682144, "lon": -73.976135, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.976135, 40.682144 ] } }, -{ "type": "Feature", "properties": { "id": 901502, "name": "Wyckoff Av / Palmetto St", "direction": "SE", "lat": 40.69929, "lon": -73.91075, "routes": "B26" }, "geometry": { "type": "Point", "coordinates": [ -73.91075, 40.69929 ] } }, -{ "type": "Feature", "properties": { "id": 901508, "name": "Fulton St/Van Sinderen Av", "direction": "W", "lat": 40.67784, "lon": -73.90305, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.90305, 40.67784 ] } }, -{ "type": "Feature", "properties": { "id": 901514, "name": "E 98 St/Livonia Av", "direction": "NW", "lat": 40.661148, "lon": -73.91858, "routes": "B15" }, "geometry": { "type": "Point", "coordinates": [ -73.91858, 40.661148 ] } }, -{ "type": "Feature", "properties": { "id": 901515, "name": "Arthur Kill Rd/West Service Rd", "direction": "E", "lat": 40.557537, "lon": -74.20669, "routes": "SIM22" }, "geometry": { "type": "Point", "coordinates": [ -74.20669, 40.557537 ] } }, -{ "type": "Feature", "properties": { "id": 901518, "name": "Hegeman Av/Watkins St", "direction": "SW", "lat": 40.656994, "lon": -73.90401, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.90401, 40.656994 ] } }, -{ "type": "Feature", "properties": { "id": 901523, "name": "Fulton St/Sheffield Av", "direction": "E", "lat": 40.677036, "lon": -73.898094, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.898094, 40.677036 ] } }, -{ "type": "Feature", "properties": { "id": 901531, "name": "Seneca Av/Cornelia St", "direction": "NW", "lat": 40.701263, "lon": -73.90501, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.90501, 40.701263 ] } }, -{ "type": "Feature", "properties": { "id": 901534, "name": "Rockaway Pkwy/Subway Station", "direction": "W", "lat": 40.64576, "lon": -73.90157, "routes": "B42" }, "geometry": { "type": "Point", "coordinates": [ -73.90157, 40.64576 ] } }, -{ "type": "Feature", "properties": { "id": 901535, "name": "Mcdonald Av/Ditmas Av", "direction": "S", "lat": 40.635616, "lon": -73.97815, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97815, 40.635616 ] } }, -{ "type": "Feature", "properties": { "id": 901536, "name": "Mcdonald Av/18 Av", "direction": "S", "lat": 40.63081, "lon": -73.977196, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.977196, 40.63081 ] } }, -{ "type": "Feature", "properties": { "id": 901537, "name": "Mcdonald Av/Av I", "direction": "S", "lat": 40.626053, "lon": -73.976326, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.976326, 40.626053 ] } }, -{ "type": "Feature", "properties": { "id": 901538, "name": "Mcdonald Av/Bay Pkwy", "direction": "S", "lat": 40.621197, "lon": -73.97545, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97545, 40.621197 ] } }, -{ "type": "Feature", "properties": { "id": 901539, "name": "Mcdonald Av/24 Av", "direction": "S", "lat": 40.613895, "lon": -73.974075, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.974075, 40.613895 ] } }, -{ "type": "Feature", "properties": { "id": 901540, "name": "Mcdonald Av/Av P", "direction": "S", "lat": 40.609047, "lon": -73.97312, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97312, 40.609047 ] } }, -{ "type": "Feature", "properties": { "id": 901541, "name": "Mcdonald Av/Kings Hwy", "direction": "S", "lat": 40.604313, "lon": -73.9723, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.9723, 40.604313 ] } }, -{ "type": "Feature", "properties": { "id": 901542, "name": "Mcdonald Av/Av U", "direction": "S", "lat": 40.597057, "lon": -73.9733, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.9733, 40.597057 ] } }, -{ "type": "Feature", "properties": { "id": 901544, "name": "Surf Av/W 12 St", "direction": "W", "lat": 40.575577, "lon": -73.979546, "routes": "B90, B90" }, "geometry": { "type": "Point", "coordinates": [ -73.979546, 40.575577 ] } }, -{ "type": "Feature", "properties": { "id": 901545, "name": "Kings Hwy/Mcdonald Av", "direction": "E", "lat": 40.60417, "lon": -73.972534, "routes": "B90, B90" }, "geometry": { "type": "Point", "coordinates": [ -73.972534, 40.60417 ] } }, -{ "type": "Feature", "properties": { "id": 901546, "name": "Surf Av/W 8 St", "direction": "E", "lat": 40.57529, "lon": -73.97697, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97697, 40.57529 ] } }, -{ "type": "Feature", "properties": { "id": 901547, "name": "Mcdonald Av/Av U", "direction": "N", "lat": 40.596874, "lon": -73.97323, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97323, 40.596874 ] } }, -{ "type": "Feature", "properties": { "id": 901548, "name": "Mcdonald Av/Kings Hwy", "direction": "N", "lat": 40.604073, "lon": -73.97222, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97222, 40.604073 ] } }, -{ "type": "Feature", "properties": { "id": 901549, "name": "Mcdonald Av/Avenue P", "direction": "N", "lat": 40.608707, "lon": -73.972946, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.972946, 40.608707 ] } }, -{ "type": "Feature", "properties": { "id": 901550, "name": "Mcdonald Av/Avenue N", "direction": "N", "lat": 40.61392, "lon": -73.97401, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97401, 40.61392 ] } }, -{ "type": "Feature", "properties": { "id": 901551, "name": "Mcdonald Av/Bay Pkwy", "direction": "N", "lat": 40.620792, "lon": -73.97524, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97524, 40.620792 ] } }, -{ "type": "Feature", "properties": { "id": 901552, "name": "Mcdonald Av/Avenue I", "direction": "N", "lat": 40.625904, "lon": -73.976204, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.976204, 40.625904 ] } }, -{ "type": "Feature", "properties": { "id": 901553, "name": "Mcdonald Av/18 Av", "direction": "N", "lat": 40.630646, "lon": -73.97708, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97708, 40.630646 ] } }, -{ "type": "Feature", "properties": { "id": 901554, "name": "Mcdonald Av/Ditmas Av", "direction": "N", "lat": 40.63536, "lon": -73.978, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.978, 40.63536 ] } }, -{ "type": "Feature", "properties": { "id": 901555, "name": "Mcdonald Av/Church Av", "direction": "N", "lat": 40.642883, "lon": -73.979416, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.979416, 40.642883 ] } }, -{ "type": "Feature", "properties": { "id": 901562, "name": "Market St/9 Av", "direction": "W", "lat": 40.699608, "lon": -73.97089, "routes": "B67" }, "geometry": { "type": "Point", "coordinates": [ -73.97089, 40.699608 ] } }, -{ "type": "Feature", "properties": { "id": 901564, "name": "Franklin St/Calyer St", "direction": "S", "lat": 40.72711, "lon": -73.95727, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95727, 40.72711 ] } }, -{ "type": "Feature", "properties": { "id": 901565, "name": "N 14 St/Kent Av", "direction": "SE", "lat": 40.724094, "lon": -73.95754, "routes": "B32" }, "geometry": { "type": "Point", "coordinates": [ -73.95754, 40.724094 ] } }, -{ "type": "Feature", "properties": { "id": 901566, "name": "Eastern Pkwy/Nostrand Av", "direction": "W", "lat": 40.669903, "lon": -73.950714, "routes": "B96" }, "geometry": { "type": "Point", "coordinates": [ -73.950714, 40.669903 ] } }, -{ "type": "Feature", "properties": { "id": 901567, "name": "Eastern Pkwy/Franklin Av", "direction": "W", "lat": 40.67064, "lon": -73.957695, "routes": "B96" }, "geometry": { "type": "Point", "coordinates": [ -73.957695, 40.67064 ] } }, -{ "type": "Feature", "properties": { "id": 901575, "name": "Navy St/Sands St", "direction": "N", "lat": 40.699768, "lon": -73.98044, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98044, 40.699768 ] } }, -{ "type": "Feature", "properties": { "id": 901600, "name": "Glenwood Rd/E 104 St", "direction": "SW", "lat": 40.64849, "lon": -73.89721, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.89721, 40.64849 ] } }, -{ "type": "Feature", "properties": { "id": 901601, "name": "Brooklyn Bridge Park /Pier 6", "direction": "W", "lat": 40.693077, "lon": -74.00088, "routes": "B63" }, "geometry": { "type": "Point", "coordinates": [ -74.00088, 40.693077 ] } }, -{ "type": "Feature", "properties": { "id": 901604, "name": "Dean St/4 Av", "direction": "E", "lat": 40.682983, "lon": -73.97898, "routes": "B65" }, "geometry": { "type": "Point", "coordinates": [ -73.97898, 40.682983 ] } }, -{ "type": "Feature", "properties": { "id": 901610, "name": "East New York Av South/Utica Av", "direction": "W", "lat": 40.66275, "lon": -73.93177, "routes": "B17" }, "geometry": { "type": "Point", "coordinates": [ -73.93177, 40.66275 ] } }, -{ "type": "Feature", "properties": { "id": 901611, "name": "Myrtle Av/Taaffe Pl", "direction": "E", "lat": 40.694096, "lon": -73.95992, "routes": "B54" }, "geometry": { "type": "Point", "coordinates": [ -73.95992, 40.694096 ] } }, -{ "type": "Feature", "properties": { "id": 901612, "name": "Kings Hwy/Avenue H", "direction": "NE", "lat": 40.63283, "lon": -73.92968, "routes": "B7" }, "geometry": { "type": "Point", "coordinates": [ -73.92968, 40.63283 ] } }, -{ "type": "Feature", "properties": { "id": 901617, "name": "Coney Island Av/Turner Pl", "direction": "S", "lat": 40.6452, "lon": -73.97058, "routes": "B68" }, "geometry": { "type": "Point", "coordinates": [ -73.97058, 40.6452 ] } }, -{ "type": "Feature", "properties": { "id": 901620, "name": "Metropolitan Av/Lorimer St", "direction": "W", "lat": 40.71408, "lon": -73.9492, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.9492, 40.71408 ] } }, -{ "type": "Feature", "properties": { "id": 901627, "name": "Postal Facility Rd/Brooklyn Mail Facility", "direction": "S", "lat": 40.664825, "lon": -73.86332, "routes": "B20" }, "geometry": { "type": "Point", "coordinates": [ -73.86332, 40.664825 ] } }, -{ "type": "Feature", "properties": { "id": 901628, "name": "Williamsburg Bridge Plaza/Lane 2", "direction": "E", "lat": 40.70962, "lon": -73.95963, "routes": "B24" }, "geometry": { "type": "Point", "coordinates": [ -73.95963, 40.70962 ] } }, -{ "type": "Feature", "properties": { "id": 901681, "name": "E 70 St/Veterans Av", "direction": "NW", "lat": 40.619755, "lon": -73.90853, "routes": "B41, B41" }, "geometry": { "type": "Point", "coordinates": [ -73.90853, 40.619755 ] } }, -{ "type": "Feature", "properties": { "id": 901682, "name": "E 70 St/Veterans Av", "direction": "NW", "lat": 40.619915, "lon": -73.9087, "routes": "B41" }, "geometry": { "type": "Point", "coordinates": [ -73.9087, 40.619915 ] } }, -{ "type": "Feature", "properties": { "id": 901687, "name": "Euclid Av/Glenmore Av", "direction": "S", "lat": 40.676773, "lon": -73.872314, "routes": "B13" }, "geometry": { "type": "Point", "coordinates": [ -73.872314, 40.676773 ] } }, -{ "type": "Feature", "properties": { "id": 901689, "name": "3 Av/59 St", "direction": "SW", "lat": 40.642612, "lon": -74.020256, "routes": "B37" }, "geometry": { "type": "Point", "coordinates": [ -74.020256, 40.642612 ] } }, -{ "type": "Feature", "properties": { "id": 901690, "name": "Albany Av/Rutland Rd", "direction": "N", "lat": 40.659973, "lon": -73.939674, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.939674, 40.659973 ] } }, -{ "type": "Feature", "properties": { "id": 901691, "name": "Cropsey Av/25 Av", "direction": "NW", "lat": 40.59224, "lon": -73.99289, "routes": "B6" }, "geometry": { "type": "Point", "coordinates": [ -73.99289, 40.59224 ] } }, -{ "type": "Feature", "properties": { "id": 901693, "name": "4 Av/Bay Ridge Av", "direction": "N", "lat": 40.634773, "lon": -74.023415, "routes": "B9" }, "geometry": { "type": "Point", "coordinates": [ -74.023415, 40.634773 ] } }, -{ "type": "Feature", "properties": { "id": 901694, "name": "Union Av/Metropolitan Av", "direction": "S", "lat": 40.713898, "lon": -73.95164, "routes": "B98" }, "geometry": { "type": "Point", "coordinates": [ -73.95164, 40.713898 ] } }, -{ "type": "Feature", "properties": { "id": 901695, "name": "Union Av/Broadway", "direction": "S", "lat": 40.70535, "lon": -73.95024, "routes": "B98" }, "geometry": { "type": "Point", "coordinates": [ -73.95024, 40.70535 ] } }, -{ "type": "Feature", "properties": { "id": 901697, "name": "Lafayette Av/Nostrand Av", "direction": "E", "lat": 40.689857, "lon": -73.951, "routes": "B98" }, "geometry": { "type": "Point", "coordinates": [ -73.951, 40.689857 ] } }, -{ "type": "Feature", "properties": { "id": 901698, "name": "Marcy Av/Willoughby Av", "direction": "N", "lat": 40.693974, "lon": -73.94886, "routes": "B98" }, "geometry": { "type": "Point", "coordinates": [ -73.94886, 40.693974 ] } }, -{ "type": "Feature", "properties": { "id": 901699, "name": "Union Av/Gerry Av", "direction": "N", "lat": 40.69995, "lon": -73.95008, "routes": "B98, B98" }, "geometry": { "type": "Point", "coordinates": [ -73.95008, 40.69995 ] } }, -{ "type": "Feature", "properties": { "id": 901700, "name": "Union Av/Broadway", "direction": "N", "lat": 40.70534, "lon": -73.95018, "routes": "B98, B98" }, "geometry": { "type": "Point", "coordinates": [ -73.95018, 40.70534 ] } }, -{ "type": "Feature", "properties": { "id": 901701, "name": "23 St/Jackson Av", "direction": "N", "lat": 40.745907, "lon": -73.9456, "routes": "B98, B98, B94" }, "geometry": { "type": "Point", "coordinates": [ -73.9456, 40.745907 ] } }, -{ "type": "Feature", "properties": { "id": 901704, "name": "Wyckoff Av/Gates Av", "direction": "NW", "lat": 40.7, "lon": -73.91186, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.91186, 40.7 ] } }, -{ "type": "Feature", "properties": { "id": 901705, "name": "Wyckoff Av/Dekalb Av", "direction": "NW", "lat": 40.70428, "lon": -73.91911, "routes": "L90" }, "geometry": { "type": "Point", "coordinates": [ -73.91911, 40.70428 ] } }, -{ "type": "Feature", "properties": { "id": 901706, "name": "Fulton St/Van Sinderen Av", "direction": "W", "lat": 40.67793, "lon": -73.9037, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.9037, 40.67793 ] } }, -{ "type": "Feature", "properties": { "id": 901707, "name": "Junius St/Livonia Av", "direction": "S", "lat": 40.663715, "lon": -73.90148, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.90148, 40.663715 ] } }, -{ "type": "Feature", "properties": { "id": 901708, "name": "Farragut Rd/E 105 St", "direction": "SW", "lat": 40.650608, "lon": -73.89787, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.89787, 40.650608 ] } }, -{ "type": "Feature", "properties": { "id": 901710, "name": "Farragut Rd/E 105 St", "direction": "NE", "lat": 40.650517, "lon": -73.89788, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.89788, 40.650517 ] } }, -{ "type": "Feature", "properties": { "id": 901711, "name": "Snediker Av/New Lots Av", "direction": "N", "lat": 40.659363, "lon": -73.898384, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.898384, 40.659363 ] } }, -{ "type": "Feature", "properties": { "id": 901712, "name": "Snediker Av/Livonia Av", "direction": "N", "lat": 40.66385, "lon": -73.89951, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.89951, 40.66385 ] } }, -{ "type": "Feature", "properties": { "id": 901713, "name": "Snediker Av/Sutter Av", "direction": "N", "lat": 40.668594, "lon": -73.90075, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.90075, 40.668594 ] } }, -{ "type": "Feature", "properties": { "id": 901714, "name": "Snediker Av/Atlantic Av", "direction": "N", "lat": 40.67543, "lon": -73.90249, "routes": "L91" }, "geometry": { "type": "Point", "coordinates": [ -73.90249, 40.67543 ] } }, -{ "type": "Feature", "properties": { "id": 901726, "name": "Park Av/N Elliott Pl", "direction": "W", "lat": 40.696465, "lon": -73.9787, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.9787, 40.696465 ] } }, -{ "type": "Feature", "properties": { "id": 901727, "name": "Shell Rd/Neptune Av", "direction": "S", "lat": 40.579872, "lon": -73.97634, "routes": "B90" }, "geometry": { "type": "Point", "coordinates": [ -73.97634, 40.579872 ] } }, -{ "type": "Feature", "properties": { "id": 901728, "name": "Church Av/Lloyd St", "direction": "E", "lat": 40.65069, "lon": -73.95142, "routes": "B35" }, "geometry": { "type": "Point", "coordinates": [ -73.95142, 40.65069 ] } }, -{ "type": "Feature", "properties": { "id": 901731, "name": "Livingston St/Nevins St", "direction": "W", "lat": 40.688053, "lon": -73.98158, "routes": "B103, B45, B41, B67" }, "geometry": { "type": "Point", "coordinates": [ -73.98158, 40.688053 ] } }, -{ "type": "Feature", "properties": { "id": 901732, "name": "Livingston St/Hoyt St", "direction": "NW", "lat": 40.689842, "lon": -73.986046, "routes": "B103, B67, B41, B45" }, "geometry": { "type": "Point", "coordinates": [ -73.986046, 40.689842 ] } }, -{ "type": "Feature", "properties": { "id": 901733, "name": "Schermerhorn St/Smith St", "direction": "E", "lat": 40.689938, "lon": -73.98855, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98855, 40.689938 ] } }, -{ "type": "Feature", "properties": { "id": 901734, "name": "Schermerhorn St/Smith St", "direction": "E", "lat": 40.689873, "lon": -73.98836, "routes": "B62" }, "geometry": { "type": "Point", "coordinates": [ -73.98836, 40.689873 ] } }, -{ "type": "Feature", "properties": { "id": 901735, "name": "Lincoln Rd/Ocean Av", "direction": "W", "lat": 40.660583, "lon": -73.96265, "routes": "B16, B43, B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96265, 40.660583 ] } }, -{ "type": "Feature", "properties": { "id": 901736, "name": "Lincoln Rd/Ocean Av", "direction": "W", "lat": 40.66057, "lon": -73.96271, "routes": "B16, B43, B48" }, "geometry": { "type": "Point", "coordinates": [ -73.96271, 40.66057 ] } }, -{ "type": "Feature", "properties": { "id": 901740, "name": "Johnson Av/Bushwick Pl", "direction": "W", "lat": 40.707016, "lon": -73.93861, "routes": "B60" }, "geometry": { "type": "Point", "coordinates": [ -73.93861, 40.707016 ] } }, -{ "type": "Feature", "properties": { "id": 901741, "name": "Nostrand Av/Flatbush Av", "direction": "N", "lat": 40.632523, "lon": -73.94758, "routes": "B96" }, "geometry": { "type": "Point", "coordinates": [ -73.94758, 40.632523 ] } }, -{ "type": "Feature", "properties": { "id": 901743, "name": "De Kalb Av/Wyckoff Av", "direction": "SW", "lat": 40.704365, "lon": -73.91921, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.91921, 40.704365 ] } }, -{ "type": "Feature", "properties": { "id": 901744, "name": "Empire Blvd/Bedford Av", "direction": "W", "lat": 40.663578, "lon": -73.95702, "routes": "B43" }, "geometry": { "type": "Point", "coordinates": [ -73.95702, 40.663578 ] } }, -{ "type": "Feature", "properties": { "id": 901755, "name": "Marcy Av/Myrtle Av", "direction": "N", "lat": 40.695415, "lon": -73.94919, "routes": "B98" }, "geometry": { "type": "Point", "coordinates": [ -73.94919, 40.695415 ] } }, -{ "type": "Feature", "properties": { "id": 901758, "name": "Lafayette Av/South Portland Av", "direction": "E", "lat": 40.68716, "lon": -73.97444, "routes": "B93" }, "geometry": { "type": "Point", "coordinates": [ -73.97444, 40.68716 ] } }, -{ "type": "Feature", "properties": { "id": 901759, "name": "Adams St/Willoughby St", "direction": "N", "lat": 40.692364, "lon": -73.98883, "routes": "B93" }, "geometry": { "type": "Point", "coordinates": [ -73.98883, 40.692364 ] } }, -{ "type": "Feature", "properties": { "id": 901761, "name": "Avenue U/W 7 St", "direction": "E", "lat": 40.596394, "lon": -73.97826, "routes": "B3" }, "geometry": { "type": "Point", "coordinates": [ -73.97826, 40.596394 ] } }, -{ "type": "Feature", "properties": { "id": 901762, "name": "Warwick St/Livonia Av", "direction": "S", "lat": 40.666035, "lon": -73.884, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.884, 40.666035 ] } }, -{ "type": "Feature", "properties": { "id": 901763, "name": "E 98 St/Sutter Av", "direction": "SE", "lat": 40.665253, "lon": -73.9233, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.9233, 40.665253 ] } }, -{ "type": "Feature", "properties": { "id": 901764, "name": "Livonia Av/Mother Gaston Bl", "direction": "E", "lat": 40.663055, "lon": -73.90535, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.90535, 40.663055 ] } }, -{ "type": "Feature", "properties": { "id": 901767, "name": "Marcy Av/Flushing Av", "direction": "N", "lat": 40.699677, "lon": -73.95003, "routes": "B98" }, "geometry": { "type": "Point", "coordinates": [ -73.95003, 40.699677 ] } }, -{ "type": "Feature", "properties": { "id": 902004, "name": "Westchester Av/Benson St", "direction": "SW", "lat": 40.839817, "lon": -73.84314, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.84314, 40.839817 ] } }, -{ "type": "Feature", "properties": { "id": 902005, "name": "Westchester Av/Lane Av", "direction": "NW", "lat": 40.839947, "lon": -73.84325, "routes": "BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.84325, 40.839947 ] } }, -{ "type": "Feature", "properties": { "id": 902015, "name": "Westchester Av/Virginia Av", "direction": "E", "lat": 40.832912, "lon": -73.861664, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.861664, 40.832912 ] } }, -{ "type": "Feature", "properties": { "id": 902017, "name": "City Island Rd/City Island Circle", "direction": "SE", "lat": 40.859962, "lon": -73.802895, "routes": "BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.802895, 40.859962 ] } }, -{ "type": "Feature", "properties": { "id": 902022, "name": "Orchard Beach", "direction": "E", "lat": 40.866333, "lon": -73.79562, "routes": "BX12, BX12, BX12, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.79562, 40.866333 ] } }, -{ "type": "Feature", "properties": { "id": 902023, "name": "Westchester Av/East Tremont Av", "direction": "SW", "lat": 40.840748, "lon": -73.84199, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.84199, 40.840748 ] } }, -{ "type": "Feature", "properties": { "id": 902030, "name": "Southern Blvd/Botanical Gardens", "direction": "NW", "lat": 40.861202, "lon": -73.88068, "routes": "BX19" }, "geometry": { "type": "Point", "coordinates": [ -73.88068, 40.861202 ] } }, -{ "type": "Feature", "properties": { "id": 902058, "name": "Mall/Bay Plaza", "direction": "NE", "lat": 40.865665, "lon": -73.82762, "routes": "BX12, BX12, BX12, BX12+, BX12" }, "geometry": { "type": "Point", "coordinates": [ -73.82762, 40.865665 ] } }, -{ "type": "Feature", "properties": { "id": 902097, "name": "Undercliff Av/W 176 St", "direction": "SW", "lat": 40.849815, "lon": -73.92153, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.92153, 40.849815 ] } }, -{ "type": "Feature", "properties": { "id": 902100, "name": "Food Center Dr/Terminal", "direction": "W", "lat": 40.810093, "lon": -73.876076, "routes": "BX6, BX6+, BX46" }, "geometry": { "type": "Point", "coordinates": [ -73.876076, 40.810093 ] } }, -{ "type": "Feature", "properties": { "id": 902102, "name": "E 163 St/ 3 Av", "direction": "E", "lat": 40.824078, "lon": -73.90888, "routes": "BX13, BX13" }, "geometry": { "type": "Point", "coordinates": [ -73.90888, 40.824078 ] } }, -{ "type": "Feature", "properties": { "id": 902103, "name": "Broadway/Isham St-W 211 St", "direction": "E", "lat": 40.868103, "lon": -73.91955, "routes": "BX7, BX20" }, "geometry": { "type": "Point", "coordinates": [ -73.91955, 40.868103 ] } }, -{ "type": "Feature", "properties": { "id": 902118, "name": "Webster Av/Claremont Pkwy", "direction": "SW", "lat": 40.839863, "lon": -73.9054, "routes": "BX41" }, "geometry": { "type": "Point", "coordinates": [ -73.9054, 40.839863 ] } }, -{ "type": "Feature", "properties": { "id": 902119, "name": "Webster Av/E 170 St", "direction": "SW", "lat": 40.83537, "lon": -73.90795, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.90795, 40.83537 ] } }, -{ "type": "Feature", "properties": { "id": 902120, "name": "Webster Av/E 170 St", "direction": "NE", "lat": 40.835552, "lon": -73.9077, "routes": "BX41+" }, "geometry": { "type": "Point", "coordinates": [ -73.9077, 40.835552 ] } }, -{ "type": "Feature", "properties": { "id": 902121, "name": "Soundview Av/Cornell Av", "direction": "SE", "lat": 40.80755, "lon": -73.85233, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.85233, 40.80755 ] } }, -{ "type": "Feature", "properties": { "id": 902122, "name": "Soundview Av/Soundview Ferry", "direction": "SE", "lat": 40.80571, "lon": -73.8488, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.8488, 40.80571 ] } }, -{ "type": "Feature", "properties": { "id": 902123, "name": "Soundview Av/Soundview Ferry", "direction": "NW", "lat": 40.805744, "lon": -73.8488, "routes": "BX27" }, "geometry": { "type": "Point", "coordinates": [ -73.8488, 40.805744 ] } }, -{ "type": "Feature", "properties": { "id": 902124, "name": "E 180 St/Boston Rd", "direction": "E", "lat": 40.84247, "lon": -73.87797, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.87797, 40.84247 ] } }, -{ "type": "Feature", "properties": { "id": 902128, "name": "West Farms Rd/Hoe Av", "direction": "SW", "lat": 40.825367, "lon": -73.89128, "routes": "BX4A" }, "geometry": { "type": "Point", "coordinates": [ -73.89128, 40.825367 ] } }, -{ "type": "Feature", "properties": { "id": 902137, "name": "Kennellworth Pl/Spencer Dr", "direction": "SW", "lat": 40.84311, "lon": -73.82253, "routes": "BX24" }, "geometry": { "type": "Point", "coordinates": [ -73.82253, 40.84311 ] } }, -{ "type": "Feature", "properties": { "id": 902139, "name": "Boston Rd/Gun Hill Rd", "direction": "SW", "lat": 40.87339, "lon": -73.853584, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.853584, 40.87339 ] } }, -{ "type": "Feature", "properties": { "id": 902141, "name": "Boston Rd/Bronxwood Av", "direction": "NE", "lat": 40.86615, "lon": -73.86142, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.86142, 40.86615 ] } }, -{ "type": "Feature", "properties": { "id": 902151, "name": "White Plains Rd/Pelham Pkwy", "direction": "S", "lat": 40.857327, "lon": -73.86764, "routes": "BX30" }, "geometry": { "type": "Point", "coordinates": [ -73.86764, 40.857327 ] } }, -{ "type": "Feature", "properties": { "id": 902159, "name": "West Farms Rd/Jennings St", "direction": "NE", "lat": 40.830357, "lon": -73.885704, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.885704, 40.830357 ] } }, -{ "type": "Feature", "properties": { "id": 902161, "name": "Jennings St/Bryant Av", "direction": "W", "lat": 40.831474, "lon": -73.88781, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.88781, 40.831474 ] } }, -{ "type": "Feature", "properties": { "id": 902162, "name": "Bryant Av/Home St", "direction": "S", "lat": 40.82889, "lon": -73.88911, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.88911, 40.82889 ] } }, -{ "type": "Feature", "properties": { "id": 902169, "name": "E 170 St/Grand Concourse", "direction": "E", "lat": 40.838512, "lon": -73.91358, "routes": "BX18B, BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91358, 40.838512 ] } }, -{ "type": "Feature", "properties": { "id": 902170, "name": "E 170 St/Grand Concourse", "direction": "W", "lat": 40.83871, "lon": -73.913445, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.913445, 40.83871 ] } }, -{ "type": "Feature", "properties": { "id": 902172, "name": "W 168 St/Ogden Av", "direction": "W", "lat": 40.838543, "lon": -73.92633, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.92633, 40.838543 ] } }, -{ "type": "Feature", "properties": { "id": 902173, "name": "Sedgwick Av/Depot Pl", "direction": "NE", "lat": 40.841156, "lon": -73.928, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.928, 40.841156 ] } }, -{ "type": "Feature", "properties": { "id": 902179, "name": "E 180 St/Morris Park Av", "direction": "E", "lat": 40.84087, "lon": -73.872925, "routes": "BX42" }, "geometry": { "type": "Point", "coordinates": [ -73.872925, 40.84087 ] } }, -{ "type": "Feature", "properties": { "id": 902181, "name": "West Kingsbridge Rd/Morris Av", "direction": "W", "lat": 40.86724, "lon": -73.89673, "routes": "BX9" }, "geometry": { "type": "Point", "coordinates": [ -73.89673, 40.86724 ] } }, -{ "type": "Feature", "properties": { "id": 902196, "name": "Macombs Rd/W 174 St", "direction": "NE", "lat": 40.84714, "lon": -73.91629, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.91629, 40.84714 ] } }, -{ "type": "Feature", "properties": { "id": 902197, "name": "White Plains Rd/Birchall Av", "direction": "S", "lat": 40.850277, "lon": -73.867874, "routes": "BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.867874, 40.850277 ] } }, -{ "type": "Feature", "properties": { "id": 902198, "name": "White Plains Rd/E 236 St", "direction": "NE", "lat": 40.895443, "lon": -73.856094, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.856094, 40.895443 ] } }, -{ "type": "Feature", "properties": { "id": 902199, "name": "White Plains Rd/E 236 St", "direction": "SW", "lat": 40.89575, "lon": -73.856155, "routes": "BX39" }, "geometry": { "type": "Point", "coordinates": [ -73.856155, 40.89575 ] } }, -{ "type": "Feature", "properties": { "id": 902201, "name": "W 167 St/W 168 St", "direction": "NW", "lat": 40.83883, "lon": -73.92812, "routes": "BX18B" }, "geometry": { "type": "Point", "coordinates": [ -73.92812, 40.83883 ] } }, -{ "type": "Feature", "properties": { "id": 902202, "name": "W 168 St/W 167 St", "direction": "E", "lat": 40.838722, "lon": -73.92804, "routes": "BX18A" }, "geometry": { "type": "Point", "coordinates": [ -73.92804, 40.838722 ] } }, -{ "type": "Feature", "properties": { "id": 902203, "name": "Riverdale Av/W 231 St", "direction": "NE", "lat": 40.881264, "lon": -73.90938, "routes": "BX2, BX1" }, "geometry": { "type": "Point", "coordinates": [ -73.90938, 40.881264 ] } }, -{ "type": "Feature", "properties": { "id": 902204, "name": "Bainbridge Av/E 206 St", "direction": "N", "lat": 40.874805, "lon": -73.87933, "routes": "D90" }, "geometry": { "type": "Point", "coordinates": [ -73.87933, 40.874805 ] } }, -{ "type": "Feature", "properties": { "id": 902205, "name": "Jerome Av/Mosholu Pkwy North", "direction": "SW", "lat": 40.880096, "lon": -73.88431, "routes": "D90" }, "geometry": { "type": "Point", "coordinates": [ -73.88431, 40.880096 ] } }, -{ "type": "Feature", "properties": { "id": 902206, "name": "Bainbridge Av/E 206 St", "direction": "N", "lat": 40.874104, "lon": -73.87926, "routes": "D90" }, "geometry": { "type": "Point", "coordinates": [ -73.87926, 40.874104 ] } }, -{ "type": "Feature", "properties": { "id": 902208, "name": "3 Av/E 150 St", "direction": "SW", "lat": 40.8165, "lon": -73.916954, "routes": "M125" }, "geometry": { "type": "Point", "coordinates": [ -73.916954, 40.8165 ] } }, -{ "type": "Feature", "properties": { "id": 902210, "name": "Eastchester Rd/Sackett Av", "direction": "S", "lat": 40.849583, "lon": -73.84503, "routes": "BX31, BX21" }, "geometry": { "type": "Point", "coordinates": [ -73.84503, 40.849583 ] } }, -{ "type": "Feature", "properties": { "id": 902211, "name": "East Gun Hill Rd/Seymour Av", "direction": "NW", "lat": 40.870365, "lon": -73.84598, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.84598, 40.870365 ] } }, -{ "type": "Feature", "properties": { "id": 902212, "name": "Westchester Av/Bruckner Blvd", "direction": "E", "lat": 40.853264, "lon": -73.82675, "routes": "BX12, BX12+" }, "geometry": { "type": "Point", "coordinates": [ -73.82675, 40.853264 ] } }, -{ "type": "Feature", "properties": { "id": 902214, "name": "E 163 St/Simpson St", "direction": "W", "lat": 40.821, "lon": -73.892685, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.892685, 40.821 ] } }, -{ "type": "Feature", "properties": { "id": 902215, "name": "E 163 St/Southern Blvd", "direction": "E", "lat": 40.820953, "lon": -73.89174, "routes": "BX6+, BX6" }, "geometry": { "type": "Point", "coordinates": [ -73.89174, 40.820953 ] } }, -{ "type": "Feature", "properties": { "id": 902217, "name": "Baychester Av/Donizetti Pl", "direction": "S", "lat": 40.876213, "lon": -73.83393, "routes": "BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.83393, 40.876213 ] } }, -{ "type": "Feature", "properties": { "id": 902222, "name": "East Gun Hill Rd/Tryon Av", "direction": "NW", "lat": 40.88023, "lon": -73.87671, "routes": "BX28, BX38" }, "geometry": { "type": "Point", "coordinates": [ -73.87671, 40.88023 ] } }, -{ "type": "Feature", "properties": { "id": 902223, "name": "East Gun Hill Rd/Hull Av", "direction": "W", "lat": 40.878853, "lon": -73.873375, "routes": "BX38, BX28" }, "geometry": { "type": "Point", "coordinates": [ -73.873375, 40.878853 ] } }, -{ "type": "Feature", "properties": { "id": 902234, "name": "Morris Park Av/E 180 St", "direction": "SW", "lat": 40.840977, "lon": -73.87278, "routes": "BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.87278, 40.840977 ] } }, -{ "type": "Feature", "properties": { "id": 902236, "name": "Dyre Av/Light St", "direction": "N", "lat": 40.888588, "lon": -73.831245, "routes": "BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.831245, 40.888588 ] } }, -{ "type": "Feature", "properties": { "id": 902238, "name": "Morris Park Av/E 180 St", "direction": "SW", "lat": 40.841026, "lon": -73.87273, "routes": "BX90" }, "geometry": { "type": "Point", "coordinates": [ -73.87273, 40.841026 ] } }, -{ "type": "Feature", "properties": { "id": 902239, "name": "East Fordham Rd/Valentine Av", "direction": "W", "lat": 40.862247, "lon": -73.895706, "routes": "BX22, BX22" }, "geometry": { "type": "Point", "coordinates": [ -73.895706, 40.862247 ] } }, -{ "type": "Feature", "properties": { "id": 903002, "name": "Avenue C/E 20 St", "direction": "S", "lat": 40.733006, "lon": -73.974594, "routes": "M23+" }, "geometry": { "type": "Point", "coordinates": [ -73.974594, 40.733006 ] } }, -{ "type": "Feature", "properties": { "id": 903003, "name": "E 97 St/1 Av", "direction": "NW", "lat": 40.78421, "lon": -73.94478, "routes": "M96" }, "geometry": { "type": "Point", "coordinates": [ -73.94478, 40.78421 ] } }, -{ "type": "Feature", "properties": { "id": 903004, "name": "W 96 St/West End Av", "direction": "SE", "lat": 40.7951, "lon": -73.97309, "routes": "M106, M96" }, "geometry": { "type": "Point", "coordinates": [ -73.97309, 40.7951 ] } }, -{ "type": "Feature", "properties": { "id": 903013, "name": "Vesey St/West St", "direction": "SE", "lat": 40.714123, "lon": -74.01486, "routes": "SIM7, SIM9, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.01486, 40.714123 ] } }, -{ "type": "Feature", "properties": { "id": 903017, "name": "Avenue Of The Americas/W 14 St", "direction": "NE", "lat": 40.73742, "lon": -73.996704, "routes": "SIM9, SIM7, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -73.996704, 40.73742 ] } }, -{ "type": "Feature", "properties": { "id": 903025, "name": "Grand St/Fdr Dr", "direction": "E", "lat": 40.713356, "lon": -73.97828, "routes": "M22, L92, M14A+" }, "geometry": { "type": "Point", "coordinates": [ -73.97828, 40.713356 ] } }, -{ "type": "Feature", "properties": { "id": 903027, "name": "Waterside/Waterside", "direction": "NE", "lat": 40.737553, "lon": -73.97385, "routes": "M34A+, M34+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.97385, 40.737553 ] } }, -{ "type": "Feature", "properties": { "id": 903028, "name": "Ferry Terminal/Fdr Dr", "direction": "NE", "lat": 40.743305, "lon": -73.97195, "routes": "M34+, M34+" }, "geometry": { "type": "Point", "coordinates": [ -73.97195, 40.743305 ] } }, -{ "type": "Feature", "properties": { "id": 903030, "name": "West St/Christopher St", "direction": "N", "lat": 40.732494, "lon": -74.010124, "routes": "M8" }, "geometry": { "type": "Point", "coordinates": [ -74.010124, 40.732494 ] } }, -{ "type": "Feature", "properties": { "id": 903036, "name": "Central Park South/6 Av", "direction": "NW", "lat": 40.766006, "lon": -73.97681, "routes": "SIM3C, SIM3, SIM1C, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -73.97681, 40.766006 ] } }, -{ "type": "Feature", "properties": { "id": 903037, "name": "Avenue Of The Americas/W 41 St", "direction": "NE", "lat": 40.754307, "lon": -73.9844, "routes": "SIM1C, SIM3, SIM3C, SIM10" }, "geometry": { "type": "Point", "coordinates": [ -73.9844, 40.754307 ] } }, -{ "type": "Feature", "properties": { "id": 903042, "name": "3 Av /E 125 St", "direction": "NE", "lat": 40.804207, "lon": -73.93537, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.93537, 40.804207 ] } }, -{ "type": "Feature", "properties": { "id": 903046, "name": "E 41 St/1 Av", "direction": "W", "lat": 40.74798, "lon": -73.96979, "routes": "M42" }, "geometry": { "type": "Point", "coordinates": [ -73.96979, 40.74798 ] } }, -{ "type": "Feature", "properties": { "id": 903049, "name": "168 St/Audubon Av", "direction": "NW", "lat": 40.840645, "lon": -73.938545, "routes": "M2" }, "geometry": { "type": "Point", "coordinates": [ -73.938545, 40.840645 ] } }, -{ "type": "Feature", "properties": { "id": 903054, "name": "Madison St/Saint James Pl", "direction": "W", "lat": 40.711884, "lon": -73.99943, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.99943, 40.711884 ] } }, -{ "type": "Feature", "properties": { "id": 903063, "name": "8 Av/12 St", "direction": "NE", "lat": 40.737766, "lon": -74.00451, "routes": "M12" }, "geometry": { "type": "Point", "coordinates": [ -74.00451, 40.737766 ] } }, -{ "type": "Feature", "properties": { "id": 903064, "name": "E 23 St/Park Av South", "direction": "NW", "lat": 40.74015, "lon": -73.986244, "routes": "X38, X37" }, "geometry": { "type": "Point", "coordinates": [ -73.986244, 40.74015 ] } }, -{ "type": "Feature", "properties": { "id": 903074, "name": "W 54 St/11 Av", "direction": "SE", "lat": 40.768192, "lon": -73.992546, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.992546, 40.768192 ] } }, -{ "type": "Feature", "properties": { "id": 903078, "name": "W 43 St/9 Av", "direction": "NW", "lat": 40.75877, "lon": -73.99117, "routes": "M34A+" }, "geometry": { "type": "Point", "coordinates": [ -73.99117, 40.75877 ] } }, -{ "type": "Feature", "properties": { "id": 903082, "name": "12 Av/W 42 St", "direction": "SW", "lat": 40.76255, "lon": -74.00097, "routes": "M42, M50" }, "geometry": { "type": "Point", "coordinates": [ -74.00097, 40.76255 ] } }, -{ "type": "Feature", "properties": { "id": 903085, "name": "W 32 St/7 Av", "direction": "E", "lat": 40.74943, "lon": -73.99108, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.99108, 40.74943 ] } }, -{ "type": "Feature", "properties": { "id": 903088, "name": "Delancey St/Columbia St", "direction": "W", "lat": 40.716404, "lon": -73.980286, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -73.980286, 40.716404 ] } }, -{ "type": "Feature", "properties": { "id": 903089, "name": "Amsterdam Av/W 129 St", "direction": "NE", "lat": 40.814907, "lon": -73.95505, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.95505, 40.814907 ] } }, -{ "type": "Feature", "properties": { "id": 903092, "name": "Broadway/W 133 St", "direction": "NE", "lat": 40.81846, "lon": -73.956055, "routes": "M11, M11" }, "geometry": { "type": "Point", "coordinates": [ -73.956055, 40.81846 ] } }, -{ "type": "Feature", "properties": { "id": 903093, "name": "1 Av/E 1 St", "direction": "NE", "lat": 40.72401, "lon": -73.9878, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.9878, 40.72401 ] } }, -{ "type": "Feature", "properties": { "id": 903095, "name": "Trinity Pl/Rector St", "direction": "NE", "lat": 40.707874, "lon": -74.01276, "routes": "SIM15, X27, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.01276, 40.707874 ] } }, -{ "type": "Feature", "properties": { "id": 903098, "name": "Park Row/Ann St", "direction": "E", "lat": 40.711517, "lon": -74.00723, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.00723, 40.711517 ] } }, -{ "type": "Feature", "properties": { "id": 903102, "name": "1 Av/ E 97 St", "direction": "NE", "lat": 40.784225, "lon": -73.94394, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.94394, 40.784225 ] } }, -{ "type": "Feature", "properties": { "id": 903105, "name": "Lexington Av/E 68 St", "direction": "SW", "lat": 40.767746, "lon": -73.96426, "routes": "M98" }, "geometry": { "type": "Point", "coordinates": [ -73.96426, 40.767746 ] } }, -{ "type": "Feature", "properties": { "id": 903115, "name": "Battery Pl/Greenwich St", "direction": "E", "lat": 40.70468, "lon": -74.015015, "routes": "SIM5" }, "geometry": { "type": "Point", "coordinates": [ -74.015015, 40.70468 ] } }, -{ "type": "Feature", "properties": { "id": 903128, "name": "E 32 St/5 Av", "direction": "SE", "lat": 40.7468, "lon": -73.98482, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.98482, 40.7468 ] } }, -{ "type": "Feature", "properties": { "id": 903129, "name": "2 Av/E 86 St", "direction": "SW", "lat": 40.777996, "lon": -73.951744, "routes": "M15+" }, "geometry": { "type": "Point", "coordinates": [ -73.951744, 40.777996 ] } }, -{ "type": "Feature", "properties": { "id": 903147, "name": "Astor Pl/3 Av", "direction": "E", "lat": 40.72957, "lon": -73.99005, "routes": "M102" }, "geometry": { "type": "Point", "coordinates": [ -73.99005, 40.72957 ] } }, -{ "type": "Feature", "properties": { "id": 903148, "name": "3 Av/Astor Pl", "direction": "SW", "lat": 40.729115, "lon": -73.99026, "routes": "M101, M102" }, "geometry": { "type": "Point", "coordinates": [ -73.99026, 40.729115 ] } }, -{ "type": "Feature", "properties": { "id": 903205, "name": "Battery Pl/Greenwich St", "direction": "E", "lat": 40.70471, "lon": -74.01509, "routes": "X27, SIM35, X28" }, "geometry": { "type": "Point", "coordinates": [ -74.01509, 40.70471 ] } }, -{ "type": "Feature", "properties": { "id": 903213, "name": "W 23 St/5 Av", "direction": "SE", "lat": 40.741528, "lon": -73.98978, "routes": "X28, X27" }, "geometry": { "type": "Point", "coordinates": [ -73.98978, 40.741528 ] } }, -{ "type": "Feature", "properties": { "id": 903217, "name": "7 Av/W 36 St", "direction": "SW", "lat": 40.75231, "lon": -73.98965, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.98965, 40.75231 ] } }, -{ "type": "Feature", "properties": { "id": 903230, "name": "Broadway/W 133 St", "direction": "SW", "lat": 40.81844, "lon": -73.95651, "routes": "M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95651, 40.81844 ] } }, -{ "type": "Feature", "properties": { "id": 903231, "name": "W 178 St/Broadway", "direction": "E", "lat": 40.848232, "lon": -73.937485, "routes": "M5" }, "geometry": { "type": "Point", "coordinates": [ -73.937485, 40.848232 ] } }, -{ "type": "Feature", "properties": { "id": 903235, "name": "W 37 St/Broadway", "direction": "NW", "lat": 40.752144, "lon": -73.987404, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.987404, 40.752144 ] } }, -{ "type": "Feature", "properties": { "id": 903236, "name": "Broadway/W 135 St", "direction": "NE", "lat": 40.82064, "lon": -73.95449, "routes": "M5, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.95449, 40.82064 ] } }, -{ "type": "Feature", "properties": { "id": 903237, "name": "11 Av/W 17 St", "direction": "N", "lat": 40.744415, "lon": -74.00815, "routes": "M14D+" }, "geometry": { "type": "Point", "coordinates": [ -74.00815, 40.744415 ] } }, -{ "type": "Feature", "properties": { "id": 903250, "name": "Avenue A/East Houston St", "direction": "SW", "lat": 40.72241, "lon": -73.98622, "routes": "L92" }, "geometry": { "type": "Point", "coordinates": [ -73.98622, 40.72241 ] } }, -{ "type": "Feature", "properties": { "id": 903252, "name": "East Tremont Av/Webster Av", "direction": "E", "lat": 40.847572, "lon": -73.900566, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.900566, 40.847572 ] } }, -{ "type": "Feature", "properties": { "id": 903253, "name": "East Tremont Av/Southern Blvd", "direction": "SE", "lat": 40.842728, "lon": -73.8859, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.8859, 40.842728 ] } }, -{ "type": "Feature", "properties": { "id": 903254, "name": "East Tremont Av/E 177 St", "direction": "E", "lat": 40.83986, "lon": -73.87846, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.87846, 40.83986 ] } }, -{ "type": "Feature", "properties": { "id": 903255, "name": "East Tremont Av/Boston Rd", "direction": "W", "lat": 40.840225, "lon": -73.87992, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.87992, 40.840225 ] } }, -{ "type": "Feature", "properties": { "id": 903256, "name": "East Tremont Av/Crotona Pkwy", "direction": "NW", "lat": 40.84255, "lon": -73.88521, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.88521, 40.84255 ] } }, -{ "type": "Feature", "properties": { "id": 903257, "name": "East Tremont Av/Webster Av", "direction": "W", "lat": 40.847694, "lon": -73.90071, "routes": "BX36" }, "geometry": { "type": "Point", "coordinates": [ -73.90071, 40.847694 ] } }, -{ "type": "Feature", "properties": { "id": 903266, "name": "2 Av/E 33 St", "direction": "SW", "lat": 40.74385, "lon": -73.97663, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.97663, 40.74385 ] } }, -{ "type": "Feature", "properties": { "id": 903267, "name": "10 Av/W 34 St", "direction": "NE", "lat": 40.75468, "lon": -73.99902, "routes": "M11" }, "geometry": { "type": "Point", "coordinates": [ -73.99902, 40.75468 ] } }, -{ "type": "Feature", "properties": { "id": 903272, "name": "W 178 St/Fort Washington Av", "direction": "E", "lat": 40.84845, "lon": -73.938286, "routes": "BX35" }, "geometry": { "type": "Point", "coordinates": [ -73.938286, 40.84845 ] } }, -{ "type": "Feature", "properties": { "id": 903274, "name": "Broadway/W 179 St", "direction": "NE", "lat": 40.84885, "lon": -73.93711, "routes": "BX11" }, "geometry": { "type": "Point", "coordinates": [ -73.93711, 40.84885 ] } }, -{ "type": "Feature", "properties": { "id": 903275, "name": "1 Av/E 97 St", "direction": "NE", "lat": 40.78378, "lon": -73.944275, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -73.944275, 40.78378 ] } }, -{ "type": "Feature", "properties": { "id": 903276, "name": "Cooper Sq/E 4 St", "direction": "S", "lat": 40.727146, "lon": -73.991554, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -73.991554, 40.727146 ] } }, -{ "type": "Feature", "properties": { "id": 903278, "name": "Amsterdam Av/W 145 St", "direction": "NE", "lat": 40.825623, "lon": -73.94721, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.94721, 40.825623 ] } }, -{ "type": "Feature", "properties": { "id": 903280, "name": "Park Row/Spruce St", "direction": "E", "lat": 40.7119, "lon": -74.0062, "routes": "M9, M22" }, "geometry": { "type": "Point", "coordinates": [ -74.0062, 40.7119 ] } }, -{ "type": "Feature", "properties": { "id": 903281, "name": "Park Row/Beekman St", "direction": "E", "lat": 40.71173, "lon": -74.00684, "routes": "M103" }, "geometry": { "type": "Point", "coordinates": [ -74.00684, 40.71173 ] } }, -{ "type": "Feature", "properties": { "id": 903282, "name": "Park Row/Beekman St", "direction": "W", "lat": 40.711758, "lon": -74.00736, "routes": "M9, M103" }, "geometry": { "type": "Point", "coordinates": [ -74.00736, 40.711758 ] } }, -{ "type": "Feature", "properties": { "id": 903285, "name": "7 Av/W 15 St", "direction": "SW", "lat": 40.73934, "lon": -73.99915, "routes": "M20" }, "geometry": { "type": "Point", "coordinates": [ -73.99915, 40.73934 ] } }, -{ "type": "Feature", "properties": { "id": 903286, "name": "W 79 St/Riverside Dr", "direction": "SE", "lat": 40.784855, "lon": -73.982544, "routes": "M79+" }, "geometry": { "type": "Point", "coordinates": [ -73.982544, 40.784855 ] } }, -{ "type": "Feature", "properties": { "id": 903287, "name": "Saint Nicholas Av/W 189 St", "direction": "NE", "lat": 40.854378, "lon": -73.92995, "routes": "M3" }, "geometry": { "type": "Point", "coordinates": [ -73.92995, 40.854378 ] } }, -{ "type": "Feature", "properties": { "id": 903291, "name": "Madison Av/E 79 St", "direction": "NE", "lat": 40.77636, "lon": -73.96205, "routes": "M3, M2, M4" }, "geometry": { "type": "Point", "coordinates": [ -73.96205, 40.77636 ] } }, -{ "type": "Feature", "properties": { "id": 903292, "name": "W 34 St/Hudson Blvd East", "direction": "SE", "lat": 40.755157, "lon": -74.00067, "routes": "Q92" }, "geometry": { "type": "Point", "coordinates": [ -74.00067, 40.755157 ] } }, -{ "type": "Feature", "properties": { "id": 903293, "name": "W 34 St/Hudson Blvd East", "direction": "SE", "lat": 40.755142, "lon": -74.00061, "routes": "Q92" }, "geometry": { "type": "Point", "coordinates": [ -74.00061, 40.755142 ] } }, -{ "type": "Feature", "properties": { "id": 903294, "name": "W 44 St/8 Av", "direction": "SE", "lat": 40.758404, "lon": -73.98863, "routes": "Q92" }, "geometry": { "type": "Point", "coordinates": [ -73.98863, 40.758404 ] } }, -{ "type": "Feature", "properties": { "id": 903295, "name": "W 42 St/7 Av", "direction": "NW", "lat": 40.75619, "lon": -73.98719, "routes": "Q92" }, "geometry": { "type": "Point", "coordinates": [ -73.98719, 40.75619 ] } }, -{ "type": "Feature", "properties": { "id": 903296, "name": "Water St/Broad St", "direction": "E", "lat": 40.70287, "lon": -74.01162, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -74.01162, 40.70287 ] } }, -{ "type": "Feature", "properties": { "id": 903297, "name": "Broad St/South St", "direction": "S", "lat": 40.701874, "lon": -74.01122, "routes": "M15" }, "geometry": { "type": "Point", "coordinates": [ -74.01122, 40.701874 ] } }, -{ "type": "Feature", "properties": { "id": 903298, "name": "Murray St/West Broadway", "direction": "NW", "lat": 40.714455, "lon": -74.01023, "routes": "M9" }, "geometry": { "type": "Point", "coordinates": [ -74.01023, 40.714455 ] } }, -{ "type": "Feature", "properties": { "id": 903299, "name": "Broadway/W 85 St", "direction": "NE", "lat": 40.787514, "lon": -73.976974, "routes": "M104" }, "geometry": { "type": "Point", "coordinates": [ -73.976974, 40.787514 ] } }, -{ "type": "Feature", "properties": { "id": 903302, "name": "E 55 St/1 Av", "direction": "NW", "lat": 40.756935, "lon": -73.96348, "routes": "M57" }, "geometry": { "type": "Point", "coordinates": [ -73.96348, 40.756935 ] } }, -{ "type": "Feature", "properties": { "id": 903318, "name": "Rivers Edge Rd/Manhattan Psych Center", "direction": "NE", "lat": 40.790497, "lon": -73.92891, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.92891, 40.790497 ] } }, -{ "type": "Feature", "properties": { "id": 903323, "name": "E 125 St/Lexington Av", "direction": "NW", "lat": 40.804176, "lon": -73.93686, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.93686, 40.804176 ] } }, -{ "type": "Feature", "properties": { "id": 903324, "name": "E 125 St/Lexington Av", "direction": "NW", "lat": 40.80428, "lon": -73.937126, "routes": "M35" }, "geometry": { "type": "Point", "coordinates": [ -73.937126, 40.80428 ] } }, -{ "type": "Feature", "properties": { "id": 903325, "name": "Avenue Of The Americas/W 16 St", "direction": "NE", "lat": 40.73846, "lon": -73.99599, "routes": "M7" }, "geometry": { "type": "Point", "coordinates": [ -73.99599, 40.73846 ] } }, -{ "type": "Feature", "properties": { "id": 903326, "name": "Saint Nicholas Av/W 125 St", "direction": "SW", "lat": 40.81051, "lon": -73.952835, "routes": "M100" }, "geometry": { "type": "Point", "coordinates": [ -73.952835, 40.81051 ] } }, -{ "type": "Feature", "properties": { "id": 903340, "name": "Fort George Av/66 Fort George Av", "direction": "NW", "lat": 40.858006, "lon": -73.9251, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.9251, 40.858006 ] } }, -{ "type": "Feature", "properties": { "id": 903341, "name": "Saint Nicholas Av/Fort George Hill", "direction": "W", "lat": 40.857094, "lon": -73.92793, "routes": "M101" }, "geometry": { "type": "Point", "coordinates": [ -73.92793, 40.857094 ] } }, -{ "type": "Feature", "properties": { "id": 903344, "name": "York Av/E 66 St", "direction": "SW", "lat": 40.76293, "lon": -73.95663, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.95663, 40.76293 ] } }, -{ "type": "Feature", "properties": { "id": 904002, "name": "Hempstead Av/225 St", "direction": "E", "lat": 40.711487, "lon": -73.72915, "routes": "Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.72915, 40.711487 ] } }, -{ "type": "Feature", "properties": { "id": 904004, "name": "Linden Blvd/Merrick Blvd", "direction": "W", "lat": 40.691624, "lon": -73.779434, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.779434, 40.691624 ] } }, -{ "type": "Feature", "properties": { "id": 904008, "name": "Archer Av /153 St", "direction": "W", "lat": 40.70206, "lon": -73.80162, "routes": "Q42" }, "geometry": { "type": "Point", "coordinates": [ -73.80162, 40.70206 ] } }, -{ "type": "Feature", "properties": { "id": 904009, "name": "165 St/Terminal", "direction": "SE", "lat": 40.707867, "lon": -73.795364, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.795364, 40.707867 ] } }, -{ "type": "Feature", "properties": { "id": 904010, "name": "132 St/20 Av", "direction": "S", "lat": 40.782063, "lon": -73.836716, "routes": "Q76" }, "geometry": { "type": "Point", "coordinates": [ -73.836716, 40.782063 ] } }, -{ "type": "Feature", "properties": { "id": 904012, "name": "20 Av /Whitestone Expwy", "direction": "E", "lat": 40.781605, "lon": -73.826065, "routes": "Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.826065, 40.781605 ] } }, -{ "type": "Feature", "properties": { "id": 904015, "name": "46 Av/Parsons Blvd", "direction": "W", "lat": 40.754272, "lon": -73.813416, "routes": "Q26, Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.813416, 40.754272 ] } }, -{ "type": "Feature", "properties": { "id": 904016, "name": "Roosevelt Av /Union St", "direction": "", "lat": 40.760006, "lon": -73.828606, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.828606, 40.760006 ] } }, -{ "type": "Feature", "properties": { "id": 904019, "name": "23 Av/Bell Blvd", "direction": "SW", "lat": 40.782276, "lon": -73.77701, "routes": "Q28" }, "geometry": { "type": "Point", "coordinates": [ -73.77701, 40.782276 ] } }, -{ "type": "Feature", "properties": { "id": 904021, "name": "Totten Av/Cross Island Pkwy", "direction": "NE", "lat": 40.79135, "lon": -73.78095, "routes": "Q13, Q16" }, "geometry": { "type": "Point", "coordinates": [ -73.78095, 40.79135 ] } }, -{ "type": "Feature", "properties": { "id": 904022, "name": "Bell Blvd/35 Av", "direction": "NW", "lat": 40.7689, "lon": -73.77365, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77365, 40.7689 ] } }, -{ "type": "Feature", "properties": { "id": 904023, "name": "Bell Blvd/35 Av", "direction": "S", "lat": 40.76906, "lon": -73.77386, "routes": "Q13" }, "geometry": { "type": "Point", "coordinates": [ -73.77386, 40.76906 ] } }, -{ "type": "Feature", "properties": { "id": 904025, "name": "Clintonville St/7 Av", "direction": "SE", "lat": 40.79506, "lon": -73.81387, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81387, 40.79506 ] } }, -{ "type": "Feature", "properties": { "id": 904026, "name": "Linden Blvd/235 St", "direction": "E", "lat": 40.69079, "lon": -73.72769, "routes": "Q4, X64" }, "geometry": { "type": "Point", "coordinates": [ -73.72769, 40.69079 ] } }, -{ "type": "Feature", "properties": { "id": 904033, "name": "Francis Lewis Blvd/255 St", "direction": "SE", "lat": 40.659298, "lon": -73.73008, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.73008, 40.659298 ] } }, -{ "type": "Feature", "properties": { "id": 904035, "name": "253 St/149 Av", "direction": "N", "lat": 40.652878, "lon": -73.736755, "routes": "X63" }, "geometry": { "type": "Point", "coordinates": [ -73.736755, 40.652878 ] } }, -{ "type": "Feature", "properties": { "id": 904036, "name": "Queens Blvd/78 Av", "direction": "SE", "lat": 40.7146, "lon": -73.832016, "routes": "X68, X64, X63" }, "geometry": { "type": "Point", "coordinates": [ -73.832016, 40.7146 ] } }, -{ "type": "Feature", "properties": { "id": 904037, "name": "Liberty Av/Sutphin Blvd", "direction": "NE", "lat": 40.696224, "lon": -73.80431, "routes": "X64" }, "geometry": { "type": "Point", "coordinates": [ -73.80431, 40.696224 ] } }, -{ "type": "Feature", "properties": { "id": 904038, "name": "Liberty Av/Union Hall St", "direction": "E", "lat": 40.700733, "lon": -73.79558, "routes": "X64" }, "geometry": { "type": "Point", "coordinates": [ -73.79558, 40.700733 ] } }, -{ "type": "Feature", "properties": { "id": 904039, "name": "137 Av/ Farmers Blvd", "direction": "E", "lat": 40.6734, "lon": -73.76436, "routes": "Q85" }, "geometry": { "type": "Point", "coordinates": [ -73.76436, 40.6734 ] } }, -{ "type": "Feature", "properties": { "id": 904040, "name": "E 37 St/ 3 Av", "direction": "W", "lat": 40.7476, "lon": -73.97651, "routes": "X68" }, "geometry": { "type": "Point", "coordinates": [ -73.97651, 40.7476 ] } }, -{ "type": "Feature", "properties": { "id": 904041, "name": "E 42 St / Park Av", "direction": "NW", "lat": 40.75206, "lon": -73.97737, "routes": "M42, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.97737, 40.75206 ] } }, -{ "type": "Feature", "properties": { "id": 904042, "name": "Madison Av/E 49 St", "direction": "NE", "lat": 40.75708, "lon": -73.97608, "routes": "X68" }, "geometry": { "type": "Point", "coordinates": [ -73.97608, 40.75708 ] } }, -{ "type": "Feature", "properties": { "id": 904043, "name": "Madison Av/E 54 St", "direction": "NE", "lat": 40.760647, "lon": -73.97345, "routes": "X68" }, "geometry": { "type": "Point", "coordinates": [ -73.97345, 40.760647 ] } }, -{ "type": "Feature", "properties": { "id": 904044, "name": "E 57 St/Lexington Av", "direction": "SE", "lat": 40.760704, "lon": -73.96879, "routes": "X68" }, "geometry": { "type": "Point", "coordinates": [ -73.96879, 40.760704 ] } }, -{ "type": "Feature", "properties": { "id": 904045, "name": "E 57 St/3 Av", "direction": "SE", "lat": 40.75992, "lon": -73.96697, "routes": "X68, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.96697, 40.75992 ] } }, -{ "type": "Feature", "properties": { "id": 904048, "name": "Tremont Av/Lane Av", "direction": "SE", "lat": 40.841076, "lon": -73.84285, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84285, 40.841076 ] } }, -{ "type": "Feature", "properties": { "id": 904049, "name": "Tremont Av/Lane Av", "direction": "SE", "lat": 40.840855, "lon": -73.84249, "routes": "BX31" }, "geometry": { "type": "Point", "coordinates": [ -73.84249, 40.840855 ] } }, -{ "type": "Feature", "properties": { "id": 904050, "name": "Ditmars Blvd/102 St", "direction": "SE", "lat": 40.76869, "lon": -73.8683, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.8683, 40.76869 ] } }, -{ "type": "Feature", "properties": { "id": 904052, "name": "Horace Harding Service Rd South/Queens Blvd", "direction": "E", "lat": 40.732857, "lon": -73.866875, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.866875, 40.732857 ] } }, -{ "type": "Feature", "properties": { "id": 904053, "name": "Junction Blvd/Horace Harding Service Rd South", "direction": "SE", "lat": 40.73296, "lon": -73.86402, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.86402, 40.73296 ] } }, -{ "type": "Feature", "properties": { "id": 904061, "name": "32 Av/Francis Lewis Blvd", "direction": "E", "lat": 40.76894, "lon": -73.79164, "routes": "Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.79164, 40.76894 ] } }, -{ "type": "Feature", "properties": { "id": 904073, "name": "Roosevelt Av/Main St", "direction": "W", "lat": 40.75959, "lon": -73.830284, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.830284, 40.75959 ] } }, -{ "type": "Feature", "properties": { "id": 904074, "name": "Roosevelt Av/College Point Blvd", "direction": "W", "lat": 40.758347, "lon": -73.83396, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.83396, 40.758347 ] } }, -{ "type": "Feature", "properties": { "id": 904075, "name": "56 Av/223 St", "direction": "E", "lat": 40.753662, "lon": -73.75709, "routes": "Q30, Q30" }, "geometry": { "type": "Point", "coordinates": [ -73.75709, 40.753662 ] } }, -{ "type": "Feature", "properties": { "id": 904079, "name": "Main St/Horace Harding Expwy", "direction": "N", "lat": 40.742958, "lon": -73.825455, "routes": "Q20B, Q20A" }, "geometry": { "type": "Point", "coordinates": [ -73.825455, 40.742958 ] } }, -{ "type": "Feature", "properties": { "id": 904083, "name": "Archer Av/Teardrop Canopy", "direction": "E", "lat": 40.701393, "lon": -73.802605, "routes": "Q42, Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.802605, 40.701393 ] } }, -{ "type": "Feature", "properties": { "id": 904088, "name": "Queens Blvd/78 Av", "direction": "NW", "lat": 40.71522, "lon": -73.83191, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.83191, 40.71522 ] } }, -{ "type": "Feature", "properties": { "id": 904089, "name": "Horace Harding Expwy/Kissena Blvd", "direction": "E", "lat": 40.738503, "lon": -73.81442, "routes": "Q88" }, "geometry": { "type": "Point", "coordinates": [ -73.81442, 40.738503 ] } }, -{ "type": "Feature", "properties": { "id": 904095, "name": "Archer Av/Sutphin Blvd", "direction": "E", "lat": 40.700462, "lon": -73.807915, "routes": "Q30, Q43, Q31" }, "geometry": { "type": "Point", "coordinates": [ -73.807915, 40.700462 ] } }, -{ "type": "Feature", "properties": { "id": 904097, "name": "Springfield Blvd/Murdock Av", "direction": "S", "lat": 40.703545, "lon": -73.74048, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.74048, 40.703545 ] } }, -{ "type": "Feature", "properties": { "id": 904098, "name": "Springfield Blvd/Murdock Av", "direction": "N", "lat": 40.70374, "lon": -73.740265, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.740265, 40.70374 ] } }, -{ "type": "Feature", "properties": { "id": 904099, "name": "E 57 St/Park Av", "direction": "NW", "lat": 40.761776, "lon": -73.971, "routes": "X64, X63, X68" }, "geometry": { "type": "Point", "coordinates": [ -73.971, 40.761776 ] } }, -{ "type": "Feature", "properties": { "id": 904101, "name": "Hillside Av/268 St", "direction": "E", "lat": 40.73881, "lon": -73.70123, "routes": "X68" }, "geometry": { "type": "Point", "coordinates": [ -73.70123, 40.73881 ] } }, -{ "type": "Feature", "properties": { "id": 904104, "name": "227 St/113 Dr", "direction": "N", "lat": 40.702106, "lon": -73.73034, "routes": "Q83, Q83" }, "geometry": { "type": "Point", "coordinates": [ -73.73034, 40.702106 ] } }, -{ "type": "Feature", "properties": { "id": 904121, "name": "Lij Medical Center/271 St", "direction": "NE", "lat": 40.754894, "lon": -73.70659, "routes": "Q46, Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.70659, 40.754894 ] } }, -{ "type": "Feature", "properties": { "id": 904122, "name": "Lakeville Rd/Lij Medical Rdwy", "direction": "S", "lat": 40.754833, "lon": -73.70415, "routes": "Q46" }, "geometry": { "type": "Point", "coordinates": [ -73.70415, 40.754833 ] } }, -{ "type": "Feature", "properties": { "id": 904147, "name": "Queens Blvd/46 St", "direction": "E", "lat": 40.742905, "lon": -73.91819, "routes": "Q32" }, "geometry": { "type": "Point", "coordinates": [ -73.91819, 40.742905 ] } }, -{ "type": "Feature", "properties": { "id": 904150, "name": "Bowery Bay Blvd/Fiorello Ln", "direction": "N", "lat": 40.770306, "lon": -73.88677, "routes": "Q47, Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.88677, 40.770306 ] } }, -{ "type": "Feature", "properties": { "id": 904153, "name": "Williamsburg Bridge Plaza/Bay 3", "direction": "E", "lat": 40.709503, "lon": -73.959526, "routes": "Q54, Q54" }, "geometry": { "type": "Point", "coordinates": [ -73.959526, 40.709503 ] } }, -{ "type": "Feature", "properties": { "id": 904172, "name": "162 St/Powells Cove Blvd", "direction": "S", "lat": 40.79406, "lon": -73.79969, "routes": "Q15A, Q15" }, "geometry": { "type": "Point", "coordinates": [ -73.79969, 40.79406 ] } }, -{ "type": "Feature", "properties": { "id": 904180, "name": "Clintonville St/10 Av", "direction": "S", "lat": 40.793034, "lon": -73.81307, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81307, 40.793034 ] } }, -{ "type": "Feature", "properties": { "id": 904181, "name": "10 Av/152 St", "direction": "E", "lat": 40.793472, "lon": -73.810196, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.810196, 40.793472 ] } }, -{ "type": "Feature", "properties": { "id": 904182, "name": "154 St/10 Av", "direction": "S", "lat": 40.79347, "lon": -73.80719, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.80719, 40.79347 ] } }, -{ "type": "Feature", "properties": { "id": 904183, "name": "10 Av/ 152 St", "direction": "W", "lat": 40.793617, "lon": -73.81047, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81047, 40.793617 ] } }, -{ "type": "Feature", "properties": { "id": 904184, "name": "Clintonville St/10 Av", "direction": "N", "lat": 40.793095, "lon": -73.81291, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81291, 40.793095 ] } }, -{ "type": "Feature", "properties": { "id": 904185, "name": "151 St/7 Av", "direction": "NE", "lat": 40.795086, "lon": -73.81353, "routes": "Q15A" }, "geometry": { "type": "Point", "coordinates": [ -73.81353, 40.795086 ] } }, -{ "type": "Feature", "properties": { "id": 904190, "name": "Roosevelt Av/Main St", "direction": "W", "lat": 40.759434, "lon": -73.83063, "routes": "Q48" }, "geometry": { "type": "Point", "coordinates": [ -73.83063, 40.759434 ] } }, -{ "type": "Feature", "properties": { "id": 904205, "name": "Archer Av/Merrick Blvd", "direction": "E", "lat": 40.70444, "lon": -73.79261, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.79261, 40.70444 ] } }, -{ "type": "Feature", "properties": { "id": 904206, "name": "Archer Av/Merrick Blvd", "direction": "E", "lat": 40.704594, "lon": -73.792244, "routes": "Q24" }, "geometry": { "type": "Point", "coordinates": [ -73.792244, 40.704594 ] } }, -{ "type": "Feature", "properties": { "id": 904212, "name": "28 St/Queens Plaza South", "direction": "NE", "lat": 40.749557, "lon": -73.939125, "routes": "Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.939125, 40.749557 ] } }, -{ "type": "Feature", "properties": { "id": 904218, "name": "Manhattan Av/Bedford Av", "direction": "NW", "lat": 40.72426, "lon": -73.950966, "routes": "B94" }, "geometry": { "type": "Point", "coordinates": [ -73.950966, 40.72426 ] } }, -{ "type": "Feature", "properties": { "id": 904231, "name": "Main St/Union Tpke", "direction": "NW", "lat": 40.717976, "lon": -73.81713, "routes": "Q20A, Q20B, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.81713, 40.717976 ] } }, -{ "type": "Feature", "properties": { "id": 904232, "name": "Main St/Booth Memorial Av", "direction": "N", "lat": 40.74711, "lon": -73.82613, "routes": "Q20A, Q20B, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.82613, 40.74711 ] } }, -{ "type": "Feature", "properties": { "id": 904233, "name": "Devoe Av/Wyatt Av", "direction": "NE", "lat": 40.839375, "lon": -73.877716, "routes": "Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.877716, 40.839375 ] } }, -{ "type": "Feature", "properties": { "id": 904234, "name": "Laurelton Pkwy/129 Av", "direction": "SW", "lat": 40.679813, "lon": -73.72993, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.72993, 40.679813 ] } }, -{ "type": "Feature", "properties": { "id": 904235, "name": "237 St/129 Av", "direction": "N", "lat": 40.680134, "lon": -73.73025, "routes": "Q84" }, "geometry": { "type": "Point", "coordinates": [ -73.73025, 40.680134 ] } }, -{ "type": "Feature", "properties": { "id": 904236, "name": "South Conduit Av/221 St", "direction": "E", "lat": 40.66559, "lon": -73.75798, "routes": "Q77" }, "geometry": { "type": "Point", "coordinates": [ -73.75798, 40.66559 ] } }, -{ "type": "Feature", "properties": { "id": 904237, "name": "Queens Plaza South/28 St", "direction": "NE", "lat": 40.749702, "lon": -73.939, "routes": "Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.939, 40.749702 ] } }, -{ "type": "Feature", "properties": { "id": 904242, "name": "Lga/Terminal B", "direction": "W", "lat": 40.773006, "lon": -73.87241, "routes": "Q48, Q70+, M60+, Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87241, 40.773006 ] } }, -{ "type": "Feature", "properties": { "id": 904246, "name": "Laguardia Rd/94 St", "direction": "E", "lat": 40.772064, "lon": -73.875854, "routes": "Q70+, Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.875854, 40.772064 ] } }, -{ "type": "Feature", "properties": { "id": 904249, "name": "Grand Av/57 St", "direction": "W", "lat": 40.71942, "lon": -73.912186, "routes": "Q59" }, "geometry": { "type": "Point", "coordinates": [ -73.912186, 40.71942 ] } }, -{ "type": "Feature", "properties": { "id": 904250, "name": "Belmont Park Racetrack/Ubs Arena", "direction": "N", "lat": 40.713146, "lon": -73.72829, "routes": "Q110, Q2" }, "geometry": { "type": "Point", "coordinates": [ -73.72829, 40.713146 ] } }, -{ "type": "Feature", "properties": { "id": 904251, "name": "Jfk Airport/Terminal 8", "direction": "SW", "lat": 40.646927, "lon": -73.788956, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.788956, 40.646927 ] } }, -{ "type": "Feature", "properties": { "id": 904252, "name": "Jfk Airport/Terminal 8", "direction": "SW", "lat": 40.64704, "lon": -73.78871, "routes": "Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.78871, 40.64704 ] } }, -{ "type": "Feature", "properties": { "id": 904253, "name": "Lefferts Blvd/Airtrain Station", "direction": "W", "lat": 40.66151, "lon": -73.824104, "routes": "B15, B15, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.824104, 40.66151 ] } }, -{ "type": "Feature", "properties": { "id": 904254, "name": "Lefferts Blvd/Airtrain Station", "direction": "W", "lat": 40.66158, "lon": -73.824646, "routes": "B15, Q3" }, "geometry": { "type": "Point", "coordinates": [ -73.824646, 40.66158 ] } }, -{ "type": "Feature", "properties": { "id": 904298, "name": "38 Av/Main St", "direction": "E", "lat": 40.760582, "lon": -73.83131, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.83131, 40.760582 ] } }, -{ "type": "Feature", "properties": { "id": 904299, "name": "38 Av/Main St", "direction": "E", "lat": 40.760715, "lon": -73.83092, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.83092, 40.760715 ] } }, -{ "type": "Feature", "properties": { "id": 904300, "name": "Van Wyck Expwy Service Rd/Kew Gardens Rd", "direction": "SE", "lat": 40.702938, "lon": -73.81712, "routes": "J90" }, "geometry": { "type": "Point", "coordinates": [ -73.81712, 40.702938 ] } }, -{ "type": "Feature", "properties": { "id": 904301, "name": "Fulton St/Crescent St", "direction": "E", "lat": 40.68357, "lon": -73.87233, "routes": "J90" }, "geometry": { "type": "Point", "coordinates": [ -73.87233, 40.68357 ] } }, -{ "type": "Feature", "properties": { "id": 904302, "name": "Jamaica Av/Woodhaven Blvd", "direction": "E", "lat": 40.693512, "lon": -73.85247, "routes": "J90" }, "geometry": { "type": "Point", "coordinates": [ -73.85247, 40.693512 ] } }, -{ "type": "Feature", "properties": { "id": 904303, "name": "Crescent St/Jamaica Av", "direction": "S", "lat": 40.689194, "lon": -73.874016, "routes": "J90" }, "geometry": { "type": "Point", "coordinates": [ -73.874016, 40.689194 ] } }, -{ "type": "Feature", "properties": { "id": 904304, "name": "Crescent St/Fulton St", "direction": "S", "lat": 40.683678, "lon": -73.87224, "routes": "J90" }, "geometry": { "type": "Point", "coordinates": [ -73.87224, 40.683678 ] } }, -{ "type": "Feature", "properties": { "id": 904354, "name": "Jackson Av/49 Av", "direction": "S", "lat": 40.74313, "lon": -73.95402, "routes": "Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.95402, 40.74313 ] } }, -{ "type": "Feature", "properties": { "id": 904355, "name": "Jackson Av/49 Av", "direction": "S", "lat": 40.74297, "lon": -73.95406, "routes": "Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.95406, 40.74297 ] } }, -{ "type": "Feature", "properties": { "id": 904356, "name": "Jackson Av/11 St", "direction": "NE", "lat": 40.743225, "lon": -73.95118, "routes": "Q93" }, "geometry": { "type": "Point", "coordinates": [ -73.95118, 40.743225 ] } }, -{ "type": "Feature", "properties": { "id": 904918, "name": "East 92 St/York Av", "direction": "SE", "lat": 40.779873, "lon": -73.94477, "routes": "M31" }, "geometry": { "type": "Point", "coordinates": [ -73.94477, 40.779873 ] } }, -{ "type": "Feature", "properties": { "id": 904946, "name": "Roosevelt Av /Union St", "direction": "E", "lat": 40.760414, "lon": -73.82661, "routes": "Q12" }, "geometry": { "type": "Point", "coordinates": [ -73.82661, 40.760414 ] } }, -{ "type": "Feature", "properties": { "id": 904960, "name": "Livonia Av/Saratoga Av", "direction": "E", "lat": 40.661533, "lon": -73.9154, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.9154, 40.661533 ] } }, -{ "type": "Feature", "properties": { "id": 904961, "name": "Livonia Av/Saratoga Av", "direction": "W", "lat": 40.661568, "lon": -73.91555, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.91555, 40.661568 ] } }, -{ "type": "Feature", "properties": { "id": 904962, "name": "Livonia Av/Rockaway Av", "direction": "E", "lat": 40.662537, "lon": -73.90898, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.90898, 40.662537 ] } }, -{ "type": "Feature", "properties": { "id": 904963, "name": "Livonia Av/Rockaway Av", "direction": "W", "lat": 40.662586, "lon": -73.909, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.909, 40.662586 ] } }, -{ "type": "Feature", "properties": { "id": 904965, "name": "Livonia Av/Sackman St", "direction": "W", "lat": 40.663452, "lon": -73.90312, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.90312, 40.663452 ] } }, -{ "type": "Feature", "properties": { "id": 904966, "name": "Livonia Av/Pennsylvania Av", "direction": "E", "lat": 40.664726, "lon": -73.89381, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.89381, 40.664726 ] } }, -{ "type": "Feature", "properties": { "id": 904967, "name": "Livonia Av/Pennsylvania Av", "direction": "W", "lat": 40.66479, "lon": -73.89392, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.89392, 40.66479 ] } }, -{ "type": "Feature", "properties": { "id": 904968, "name": "Livonia Av/Van Siclen St", "direction": "E", "lat": 40.665554, "lon": -73.88835, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.88835, 40.665554 ] } }, -{ "type": "Feature", "properties": { "id": 904969, "name": "Livonia Av/Van Siclen St", "direction": "W", "lat": 40.66561, "lon": -73.888435, "routes": "B99" }, "geometry": { "type": "Point", "coordinates": [ -73.888435, 40.66561 ] } }, -{ "type": "Feature", "properties": { "id": 904970, "name": "Main St/38 Av", "direction": "SE", "lat": 40.76088, "lon": -73.83083, "routes": "Q17" }, "geometry": { "type": "Point", "coordinates": [ -73.83083, 40.76088 ] } }, -{ "type": "Feature", "properties": { "id": 904972, "name": "Francis Lewis Blvd/120 Av", "direction": "SE", "lat": 40.68997, "lon": -73.7427, "routes": "Q27" }, "geometry": { "type": "Point", "coordinates": [ -73.7427, 40.68997 ] } }, -{ "type": "Feature", "properties": { "id": 904979, "name": "Manhattan Av/Greenpoint Av", "direction": "N", "lat": 40.73002, "lon": -73.95412, "routes": "B94" }, "geometry": { "type": "Point", "coordinates": [ -73.95412, 40.73002 ] } }, -{ "type": "Feature", "properties": { "id": 904980, "name": "Jackson Av/45 Av", "direction": "W", "lat": 40.746666, "lon": -73.94361, "routes": "B94" }, "geometry": { "type": "Point", "coordinates": [ -73.94361, 40.746666 ] } }, -{ "type": "Feature", "properties": { "id": 904981, "name": "Jackson Av/45 Av", "direction": "W", "lat": 40.746746, "lon": -73.94341, "routes": "B98, B98" }, "geometry": { "type": "Point", "coordinates": [ -73.94341, 40.746746 ] } }, -{ "type": "Feature", "properties": { "id": 905002, "name": "Victory Blvd/Bay St", "direction": "E", "lat": 40.637676, "lon": -74.076195, "routes": "S48, S46, S96, S62, S61, S98, S92, S66, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.076195, 40.637676 ] } }, -{ "type": "Feature", "properties": { "id": 905003, "name": "Victory Blvd/Bay St", "direction": "W", "lat": 40.637814, "lon": -74.07616, "routes": "S92, S96, S61, S98, S66, S62, S46, S48, S91" }, "geometry": { "type": "Point", "coordinates": [ -74.07616, 40.637814 ] } }, -{ "type": "Feature", "properties": { "id": 905004, "name": "Grandview Av/Forest Av", "direction": "N", "lat": 40.627823, "lon": -74.16521, "routes": "S46, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.16521, 40.627823 ] } }, -{ "type": "Feature", "properties": { "id": 905007, "name": "Arlo Rd/Stratford Av", "direction": "SW", "lat": 40.61971, "lon": -74.094635, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.094635, 40.61971 ] } }, -{ "type": "Feature", "properties": { "id": 905014, "name": "Hylan Blvd/Luten Av", "direction": "E", "lat": 40.523098, "lon": -74.18814, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.18814, 40.523098 ] } }, -{ "type": "Feature", "properties": { "id": 905018, "name": "Hylan Blvd/Narrows Rd South", "direction": "S", "lat": 40.605408, "lon": -74.07794, "routes": "S78" }, "geometry": { "type": "Point", "coordinates": [ -74.07794, 40.605408 ] } }, -{ "type": "Feature", "properties": { "id": 905019, "name": "Castleton Av/Jewett Av", "direction": "W", "lat": 40.63385, "lon": -74.129616, "routes": "SIM35, SIM3C, SIM3" }, "geometry": { "type": "Point", "coordinates": [ -74.129616, 40.63385 ] } }, -{ "type": "Feature", "properties": { "id": 905020, "name": "Narrows Rd South/Fingerboard Rd", "direction": "E", "lat": 40.603477, "lon": -74.0691, "routes": "SIM35" }, "geometry": { "type": "Point", "coordinates": [ -74.0691, 40.603477 ] } }, -{ "type": "Feature", "properties": { "id": 905021, "name": "Castleton Av/Jewett Av", "direction": "E", "lat": 40.633698, "lon": -74.129776, "routes": "SIM3, SIM35, SIM3C" }, "geometry": { "type": "Point", "coordinates": [ -74.129776, 40.633698 ] } }, -{ "type": "Feature", "properties": { "id": 905044, "name": "Forest Av/South Av", "direction": "E", "lat": 40.627113, "lon": -74.16557, "routes": "SIM30" }, "geometry": { "type": "Point", "coordinates": [ -74.16557, 40.627113 ] } }, -{ "type": "Feature", "properties": { "id": 905046, "name": "Eltingville/Transit Center", "direction": "S", "lat": 40.560932, "lon": -74.17135, "routes": "SIM5, SIM4, S56, SIM15, SIM1, S89, SIM7, S55, S74, S59, SIM1C, SIM10, SIM6, SIM8, SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.17135, 40.560932 ] } }, -{ "type": "Feature", "properties": { "id": 905051, "name": "Lily Pond Av/Mcclean Av", "direction": "SE", "lat": 40.598827, "lon": -74.06377, "routes": "SIM6, SIM5, SIM9" }, "geometry": { "type": "Point", "coordinates": [ -74.06377, 40.598827 ] } }, -{ "type": "Feature", "properties": { "id": 905059, "name": "4 Av/86 St", "direction": "SW", "lat": 40.62231, "lon": -74.02869, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.02869, 40.62231 ] } }, -{ "type": "Feature", "properties": { "id": 905083, "name": "Richmond Rd/Saint Patricks Pl", "direction": "W", "lat": 40.572094, "lon": -74.14435, "routes": "SIM15" }, "geometry": { "type": "Point", "coordinates": [ -74.14435, 40.572094 ] } }, -{ "type": "Feature", "properties": { "id": 905086, "name": "Veterans Rd East/Arthur Kill Rd", "direction": "NE", "lat": 40.556667, "lon": -74.20371, "routes": "SIM22, SIM2, SIM25" }, "geometry": { "type": "Point", "coordinates": [ -74.20371, 40.556667 ] } }, -{ "type": "Feature", "properties": { "id": 905103, "name": "Lincoln Av/Richmond Rd", "direction": "NW", "lat": 40.58095, "lon": -74.11144, "routes": "S81, S51" }, "geometry": { "type": "Point", "coordinates": [ -74.11144, 40.58095 ] } }, -{ "type": "Feature", "properties": { "id": 905105, "name": "Port Richmond Av/Richmond Terr", "direction": "NE", "lat": 40.639877, "lon": -74.13183, "routes": "S53" }, "geometry": { "type": "Point", "coordinates": [ -74.13183, 40.639877 ] } }, -{ "type": "Feature", "properties": { "id": 905106, "name": "Broadway/Richmond Terr", "direction": "S", "lat": 40.64021, "lon": -74.11802, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.11802, 40.64021 ] } }, -{ "type": "Feature", "properties": { "id": 905107, "name": "Hylan Blvd/Richmond Av", "direction": "E", "lat": 40.533356, "lon": -74.15425, "routes": "S54" }, "geometry": { "type": "Point", "coordinates": [ -74.15425, 40.533356 ] } }, -{ "type": "Feature", "properties": { "id": 905111, "name": "Port Richmond Av/Richmond Terr", "direction": "NE", "lat": 40.639744, "lon": -74.131935, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.131935, 40.639744 ] } }, -{ "type": "Feature", "properties": { "id": 905112, "name": "Mill Rd/Delwit Av", "direction": "E", "lat": 40.55342, "lon": -74.11734, "routes": "S76, S86" }, "geometry": { "type": "Point", "coordinates": [ -74.11734, 40.55342 ] } }, -{ "type": "Feature", "properties": { "id": 905114, "name": "South Av/West Shore Plaza", "direction": "E", "lat": 40.60162, "lon": -74.19264, "routes": "S46, S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.19264, 40.60162 ] } }, -{ "type": "Feature", "properties": { "id": 905115, "name": "Hylan Blvd/Luten Av", "direction": "W", "lat": 40.523052, "lon": -74.18899, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.18899, 40.523052 ] } }, -{ "type": "Feature", "properties": { "id": 905130, "name": "Arthur Kill Rd/Charleston Depot", "direction": "N", "lat": 40.532368, "lon": -74.23895, "routes": "S74" }, "geometry": { "type": "Point", "coordinates": [ -74.23895, 40.532368 ] } }, -{ "type": "Feature", "properties": { "id": 905140, "name": "New Dorp Ln/3 St", "direction": "NW", "lat": 40.57522, "lon": -74.11852, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.11852, 40.57522 ] } }, -{ "type": "Feature", "properties": { "id": 905141, "name": "Richmond Rd/New Dorp Ln", "direction": "W", "lat": 40.57583, "lon": -74.120026, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.120026, 40.57583 ] } }, -{ "type": "Feature", "properties": { "id": 905142, "name": "4 Av/87 St", "direction": "S", "lat": 40.62198, "lon": -74.02877, "routes": "S93" }, "geometry": { "type": "Point", "coordinates": [ -74.02877, 40.62198 ] } }, -{ "type": "Feature", "properties": { "id": 905144, "name": "Marsh Av/Westport St", "direction": "NE", "lat": 40.584103, "lon": -74.16077, "routes": "S89" }, "geometry": { "type": "Point", "coordinates": [ -74.16077, 40.584103 ] } }, -{ "type": "Feature", "properties": { "id": 905154, "name": "Teleport Dr/Corporate Commons", "direction": "SE", "lat": 40.60453, "lon": -74.17853, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.17853, 40.60453 ] } }, -{ "type": "Feature", "properties": { "id": 905155, "name": "Teleport Dr/Corporate Commons", "direction": "SE", "lat": 40.604706, "lon": -74.17873, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.17873, 40.604706 ] } }, -{ "type": "Feature", "properties": { "id": 905156, "name": "Teleport Dr/South Av", "direction": "SE", "lat": 40.60683, "lon": -74.17828, "routes": "S96, S46" }, "geometry": { "type": "Point", "coordinates": [ -74.17828, 40.60683 ] } }, -{ "type": "Feature", "properties": { "id": 905157, "name": "Teleport Dr/South Av Exit", "direction": "NW", "lat": 40.60689, "lon": -74.1777, "routes": "S46, S96" }, "geometry": { "type": "Point", "coordinates": [ -74.1777, 40.60689 ] } }, -{ "type": "Feature", "properties": { "id": 905161, "name": "Marsh Av/Ring Rd", "direction": "SW", "lat": 40.58372, "lon": -74.16142, "routes": "S55, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.16142, 40.58372 ] } }, -{ "type": "Feature", "properties": { "id": 905162, "name": "Marsh Av/Ring Rd", "direction": "SW", "lat": 40.58375, "lon": -74.161415, "routes": "S55, S56" }, "geometry": { "type": "Point", "coordinates": [ -74.161415, 40.58375 ] } }, -{ "type": "Feature", "properties": { "id": 905169, "name": "Amboy Rd/Tysens Ln", "direction": "SW", "lat": 40.568897, "lon": -74.12514, "routes": "S57" }, "geometry": { "type": "Point", "coordinates": [ -74.12514, 40.568897 ] } }, -{ "type": "Feature", "properties": { "id": 905179, "name": "Bricktown Mall/Shopping Center", "direction": "E", "lat": 40.52948, "lon": -74.231064, "routes": "S84, S74, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.231064, 40.52948 ] } }, -{ "type": "Feature", "properties": { "id": 905180, "name": "Bricktown Mall/Shopping Center", "direction": "S", "lat": 40.528347, "lon": -74.23022, "routes": "S74, S78" }, "geometry": { "type": "Point", "coordinates": [ -74.23022, 40.528347 ] } }, -{ "type": "Feature", "properties": { "id": 905182, "name": "Seaview Hospital/Park Ln", "direction": "S", "lat": 40.592552, "lon": -74.13059, "routes": "S57, S54" }, "geometry": { "type": "Point", "coordinates": [ -74.13059, 40.592552 ] } }, -{ "type": "Feature", "properties": { "id": 905189, "name": "Main St/Amboy Rd", "direction": "S", "lat": 40.50889, "lon": -74.24688, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.24688, 40.50889 ] } }, -{ "type": "Feature", "properties": { "id": 905190, "name": "Main St/Amboy Rd", "direction": "S", "lat": 40.50894, "lon": -74.24691, "routes": "S59, S59" }, "geometry": { "type": "Point", "coordinates": [ -74.24691, 40.50894 ] } }, -{ "type": "Feature", "properties": { "id": 905194, "name": "Battery Pl/Washington St", "direction": "E", "lat": 40.70479, "lon": -74.0155, "routes": "SIM4X, SIM15, SIM32, SIM34, SIM2" }, "geometry": { "type": "Point", "coordinates": [ -74.0155, 40.70479 ] } }, -{ "type": "Feature", "properties": { "id": 905196, "name": "West St/Warren St", "direction": "N", "lat": 40.716423, "lon": -74.012856, "routes": "SIM33, SIM9, SIM7" }, "geometry": { "type": "Point", "coordinates": [ -74.012856, 40.716423 ] } }, -{ "type": "Feature", "properties": { "id": 905197, "name": "Bloomingdale Rd/South Service Rd", "direction": "NW", "lat": 40.528137, "lon": -74.21655, "routes": "SIM26" }, "geometry": { "type": "Point", "coordinates": [ -74.21655, 40.528137 ] } }, -{ "type": "Feature", "properties": { "id": 905198, "name": "Huguenot Av/Railey Ct", "direction": "SE", "lat": 40.55259, "lon": -74.20185, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.20185, 40.55259 ] } }, -{ "type": "Feature", "properties": { "id": 905199, "name": "Huguenot Av/Woodrow Rd", "direction": "S", "lat": 40.543144, "lon": -74.19731, "routes": "SIM24" }, "geometry": { "type": "Point", "coordinates": [ -74.19731, 40.543144 ] } }, -{ "type": "Feature", "properties": { "id": 905200, "name": "Marsh Av/Ring Rd", "direction": "SW", "lat": 40.58399, "lon": -74.16107, "routes": "SIM8X" }, "geometry": { "type": "Point", "coordinates": [ -74.16107, 40.58399 ] } }, -{ "type": "Feature", "properties": { "id": 905201, "name": "Woodrow Rd/Shotwell Av", "direction": "SW", "lat": 40.556202, "lon": -74.18229, "routes": "SIM8" }, "geometry": { "type": "Point", "coordinates": [ -74.18229, 40.556202 ] } }, -{ "type": "Feature", "properties": { "id": 905207, "name": "Arlo Rd/Grymes Hill Apartments", "direction": "W", "lat": 40.620106, "lon": -74.0928, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.0928, 40.620106 ] } }, -{ "type": "Feature", "properties": { "id": 905213, "name": "Arlo Rd/Howard Av", "direction": "E", "lat": 40.619473, "lon": -74.09047, "routes": "S66" }, "geometry": { "type": "Point", "coordinates": [ -74.09047, 40.619473 ] } }, -{ "type": "Feature", "properties": { "id": 905215, "name": "Forest Hill Rd/Richmond Av", "direction": "SW", "lat": 40.57191, "lon": -74.168, "routes": "S59" }, "geometry": { "type": "Point", "coordinates": [ -74.168, 40.57191 ] } }, -{ "type": "Feature", "properties": { "id": 905216, "name": "Broadway/Thomas St", "direction": "SW", "lat": 40.716, "lon": -74.00477, "routes": "SIM33C" }, "geometry": { "type": "Point", "coordinates": [ -74.00477, 40.716 ] } }, -{ "type": "Feature", "properties": { "id": 905218, "name": "Lexington Av/E 46 St", "direction": "SW", "lat": 40.753914, "lon": -73.9743, "routes": "SIM26, SIM6, SIM11, SIM22" }, "geometry": { "type": "Point", "coordinates": [ -73.9743, 40.753914 ] } }, -{ "type": "Feature", "properties": { "id": 905219, "name": "Lexington Av/E 55 St", "direction": "SW", "lat": 40.759678, "lon": -73.970085, "routes": "SIM6, SIM11" }, "geometry": { "type": "Point", "coordinates": [ -73.970085, 40.759678 ] } }, -{ "type": "Feature", "properties": { "id": 905220, "name": "North Gannon Av/Bradley Av", "direction": "W", "lat": 40.60857, "lon": -74.13264, "routes": "SIM31" }, "geometry": { "type": "Point", "coordinates": [ -74.13264, 40.60857 ] } }, -{ "type": "Feature", "properties": { "id": 905221, "name": "North Gannon Av/Woodward Av", "direction": "W", "lat": 40.608017, "lon": -74.143005, "routes": "SIM33C, SIM32, SIM33" }, "geometry": { "type": "Point", "coordinates": [ -74.143005, 40.608017 ] } }, -{ "type": "Feature", "properties": { "id": 905222, "name": "South Gannon Av/Ardmore Av", "direction": "E", "lat": 40.60737, "lon": -74.13887, "routes": "SIM32" }, "geometry": { "type": "Point", "coordinates": [ -74.13887, 40.60737 ] } }, -{ "type": "Feature", "properties": { "id": 922164, "name": "148 St/147 Av", "direction": "S", "lat": 40.66334, "lon": -73.79217, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79217, 40.66334 ] } }, -{ "type": "Feature", "properties": { "id": 922237, "name": "35 Av / 73 St", "direction": "E", "lat": 40.750904, "lon": -73.89278, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89278, 40.750904 ] } }, -{ "type": "Feature", "properties": { "id": 930032, "name": "Rockaway Av/East New York Av", "direction": "N", "lat": 40.672356, "lon": -73.91122, "routes": "B12" }, "geometry": { "type": "Point", "coordinates": [ -73.91122, 40.672356 ] } }, -{ "type": "Feature", "properties": { "id": 930058, "name": "De Kalb Av/Throop Av", "direction": "W", "lat": 40.692364, "lon": -73.943054, "routes": "B38" }, "geometry": { "type": "Point", "coordinates": [ -73.943054, 40.692364 ] } }, -{ "type": "Feature", "properties": { "id": 960242, "name": "Northern Blvd/60 St", "direction": "W", "lat": 40.753944, "lon": -73.90228, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.90228, 40.753944 ] } }, -{ "type": "Feature", "properties": { "id": 981004, "name": "Frankfort St / Pearl St", "direction": "SE", "lat": 40.70986, "lon": -74.00223, "routes": "BM3, BM1, BM2, BM4" }, "geometry": { "type": "Point", "coordinates": [ -74.00223, 40.70986 ] } }, -{ "type": "Feature", "properties": { "id": 981005, "name": "E 57 St / 2 Av", "direction": "NW", "lat": 40.759727, "lon": -73.96605, "routes": "BM3, BM2, BM5, BM4, BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.96605, 40.759727 ] } }, -{ "type": "Feature", "properties": { "id": 981006, "name": "Main St/Main St Youth Center", "direction": "NE", "lat": 40.761192, "lon": -73.95039, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.95039, 40.761192 ] } }, -{ "type": "Feature", "properties": { "id": 981007, "name": "Queensboro Bridge Exit/E 61 St", "direction": "NE", "lat": 40.76128, "lon": -73.96251, "routes": "Q101" }, "geometry": { "type": "Point", "coordinates": [ -73.96251, 40.76128 ] } }, -{ "type": "Feature", "properties": { "id": 981010, "name": "E 57 St/Lexington Av", "direction": "SE", "lat": 40.76053, "lon": -73.9683, "routes": "QM10, QM24, QM3, QM2, QM24, QM20, QM1, QM5, QM5, QM6, QM1, QM12, QM6, QM12, QM10" }, "geometry": { "type": "Point", "coordinates": [ -73.9683, 40.76053 ] } }, -{ "type": "Feature", "properties": { "id": 981012, "name": "5 Av / W 27 St", "direction": "SW", "lat": 40.743843, "lon": -73.988045, "routes": "BXM3, BXM4, BM1, BXM18, BM2, BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.988045, 40.743843 ] } }, -{ "type": "Feature", "properties": { "id": 981013, "name": "Madison Av/E 24 St", "direction": "NE", "lat": 40.741802, "lon": -73.98723, "routes": "BXM8" }, "geometry": { "type": "Point", "coordinates": [ -73.98723, 40.741802 ] } }, -{ "type": "Feature", "properties": { "id": 981014, "name": "Madison Av/E 25 St", "direction": "NE", "lat": 40.741917, "lon": -73.98715, "routes": "BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.98715, 40.741917 ] } }, -{ "type": "Feature", "properties": { "id": 981015, "name": "E 34 St/3 Av", "direction": "NW", "lat": 40.746193, "lon": -73.978966, "routes": "QM18, QM17, QM15, QM15, QM16, QM18, QM17, QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.978966, 40.746193 ] } }, -{ "type": "Feature", "properties": { "id": 981016, "name": "E 60 St/2 Av", "direction": "W", "lat": 40.761215, "lon": -73.963646, "routes": "Q60" }, "geometry": { "type": "Point", "coordinates": [ -73.963646, 40.761215 ] } }, -{ "type": "Feature", "properties": { "id": 982006, "name": "Lefferts Blvd/Airtrain Station", "direction": "E", "lat": 40.6619, "lon": -73.82464, "routes": "Q10, Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.82464, 40.6619 ] } }, -{ "type": "Feature", "properties": { "id": 982009, "name": "75 St / 37 Av", "direction": "S", "lat": 40.748867, "lon": -73.89097, "routes": "Q49, Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.89097, 40.748867 ] } }, -{ "type": "Feature", "properties": { "id": 982046, "name": "82 St/Northern Blvd", "direction": "S", "lat": 40.75573, "lon": -73.8855, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.8855, 40.75573 ] } }, -{ "type": "Feature", "properties": { "id": 982050, "name": "Hazen St/77 St", "direction": "NE", "lat": 40.77366, "lon": -73.89301, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.89301, 40.77366 ] } }, -{ "type": "Feature", "properties": { "id": 982053, "name": "Jamaica Av/170 St", "direction": "E", "lat": 40.7072, "lon": -73.78931, "routes": "Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.78931, 40.7072 ] } }, -{ "type": "Feature", "properties": { "id": 982054, "name": "Vernon Blvd/36 Av", "direction": "SW", "lat": 40.761906, "lon": -73.942635, "routes": "Q102, Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.942635, 40.761906 ] } }, -{ "type": "Feature", "properties": { "id": 982057, "name": "94 Av/143 St", "direction": "W", "lat": 40.698112, "lon": -73.81004, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.81004, 40.698112 ] } }, -{ "type": "Feature", "properties": { "id": 982058, "name": "21 St/49 Av", "direction": "W", "lat": 40.74251, "lon": -73.948845, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.948845, 40.74251 ] } }, -{ "type": "Feature", "properties": { "id": 982060, "name": "138 St/31 Rd", "direction": "S", "lat": 40.770344, "lon": -73.830605, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.830605, 40.770344 ] } }, -{ "type": "Feature", "properties": { "id": 982062, "name": "57 Av/94 St", "direction": "W", "lat": 40.736202, "lon": -73.86776, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.86776, 40.736202 ] } }, -{ "type": "Feature", "properties": { "id": 982066, "name": "Farmers Blvd/Guy R Brewer Blvd", "direction": "NE", "lat": 40.66435, "lon": -73.76827, "routes": "Q111" }, "geometry": { "type": "Point", "coordinates": [ -73.76827, 40.66435 ] } }, -{ "type": "Feature", "properties": { "id": 982069, "name": "23 Av/Corporal Kennedy St", "direction": "W", "lat": 40.778957, "lon": -73.782646, "routes": "QM20" }, "geometry": { "type": "Point", "coordinates": [ -73.782646, 40.778957 ] } }, -{ "type": "Feature", "properties": { "id": 982073, "name": "188 St/Horace Harding Expwy", "direction": "SE", "lat": 40.740185, "lon": -73.78652, "routes": "QM1, QM31" }, "geometry": { "type": "Point", "coordinates": [ -73.78652, 40.740185 ] } }, -{ "type": "Feature", "properties": { "id": 982075, "name": "61 St/Roosevelt Av", "direction": "SW", "lat": 40.745766, "lon": -73.90339, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.90339, 40.745766 ] } }, -{ "type": "Feature", "properties": { "id": 982077, "name": "Willets Point Blvd/24 Rd", "direction": "E", "lat": 40.776546, "lon": -73.816895, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.816895, 40.776546 ] } }, -{ "type": "Feature", "properties": { "id": 982078, "name": "14 Av/College Point Blvd", "direction": "W", "lat": 40.786083, "lon": -73.84604, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84604, 40.786083 ] } }, -{ "type": "Feature", "properties": { "id": 982079, "name": "14 Av/119 St", "direction": "W", "lat": 40.78599, "lon": -73.84881, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.84881, 40.78599 ] } }, -{ "type": "Feature", "properties": { "id": 982080, "name": "14 Av/115 St", "direction": "W", "lat": 40.78586, "lon": -73.85257, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.85257, 40.78586 ] } }, -{ "type": "Feature", "properties": { "id": 982081, "name": "14 Av/111 St", "direction": "W", "lat": 40.785725, "lon": -73.85625, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.85625, 40.785725 ] } }, -{ "type": "Feature", "properties": { "id": 982082, "name": "78 St/25 Av", "direction": "S", "lat": 40.76256, "lon": -73.890526, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.890526, 40.76256 ] } }, -{ "type": "Feature", "properties": { "id": 982086, "name": "88 Av /Parsons Blvd", "direction": "E", "lat": 40.706688, "lon": -73.80238, "routes": "Q110, Q110" }, "geometry": { "type": "Point", "coordinates": [ -73.80238, 40.706688 ] } }, -{ "type": "Feature", "properties": { "id": 982087, "name": "108 St/Queens Blvd", "direction": "SE", "lat": 40.721813, "lon": -73.843925, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.843925, 40.721813 ] } }, -{ "type": "Feature", "properties": { "id": 982088, "name": "Jewel Av/164 St", "direction": "W", "lat": 40.73182, "lon": -73.80531, "routes": "Q64" }, "geometry": { "type": "Point", "coordinates": [ -73.80531, 40.73182 ] } }, -{ "type": "Feature", "properties": { "id": 982090, "name": "Rockaway Blvd/Liberty Av", "direction": "W", "lat": 40.680416, "lon": -73.84227, "routes": "Q112" }, "geometry": { "type": "Point", "coordinates": [ -73.84227, 40.680416 ] } }, -{ "type": "Feature", "properties": { "id": 982092, "name": "Ditmars Blvd/102 St", "direction": "SE", "lat": 40.76878, "lon": -73.86852, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.86852, 40.76878 ] } }, -{ "type": "Feature", "properties": { "id": 982094, "name": "Poppenhusen Av/119 St", "direction": "SW", "lat": 40.79199, "lon": -73.8506, "routes": "Q25" }, "geometry": { "type": "Point", "coordinates": [ -73.8506, 40.79199 ] } }, -{ "type": "Feature", "properties": { "id": 982095, "name": "Sutphin Blvd/94 Av", "direction": "SE", "lat": 40.699177, "lon": -73.8071, "routes": "Q25, Q65, Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.8071, 40.699177 ] } }, -{ "type": "Feature", "properties": { "id": 982096, "name": "Willets Point Blvd/24 Rd", "direction": "E", "lat": 40.776524, "lon": -73.817, "routes": "Q34" }, "geometry": { "type": "Point", "coordinates": [ -73.817, 40.776524 ] } }, -{ "type": "Feature", "properties": { "id": 982097, "name": "62 Dr/108 St", "direction": "W", "lat": 40.735786, "lon": -73.850815, "routes": "Q38" }, "geometry": { "type": "Point", "coordinates": [ -73.850815, 40.735786 ] } }, -{ "type": "Feature", "properties": { "id": 982098, "name": "28 St/Queens Plaza South", "direction": "SW", "lat": 40.749744, "lon": -73.93919, "routes": "Q69, Q39, Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.93919, 40.749744 ] } }, -{ "type": "Feature", "properties": { "id": 982099, "name": "28 St/Queens Plaza South", "direction": "NE", "lat": 40.749523, "lon": -73.9392, "routes": "Q67" }, "geometry": { "type": "Point", "coordinates": [ -73.9392, 40.749523 ] } }, -{ "type": "Feature", "properties": { "id": 982106, "name": "Union Tpke/Crescent Apartments", "direction": "W", "lat": 40.707108, "lon": -73.854126, "routes": "QM42, QM12, Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.854126, 40.707108 ] } }, -{ "type": "Feature", "properties": { "id": 982109, "name": "Queens Plaza South/27 St", "direction": "SE", "lat": 40.75012, "lon": -73.939705, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.939705, 40.75012 ] } }, -{ "type": "Feature", "properties": { "id": 982110, "name": "Broadway/78 St", "direction": "NW", "lat": 40.74498, "lon": -73.88721, "routes": "Q53+" }, "geometry": { "type": "Point", "coordinates": [ -73.88721, 40.74498 ] } }, -{ "type": "Feature", "properties": { "id": 982111, "name": "Cross Bay Blvd/W 18 Rd", "direction": "S", "lat": 40.600204, "lon": -73.82068, "routes": "QM17, QM16, Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.82068, 40.600204 ] } }, -{ "type": "Feature", "properties": { "id": 982112, "name": "Rockaway Beach Blvd/Beach 84 St", "direction": "W", "lat": 40.58782, "lon": -73.80977, "routes": "Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.80977, 40.58782 ] } }, -{ "type": "Feature", "properties": { "id": 982113, "name": "Hoffman Dr /Woodhaven Blvd", "direction": "E", "lat": 40.733177, "lon": -73.8713, "routes": "Q21, Q52+, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.8713, 40.733177 ] } }, -{ "type": "Feature", "properties": { "id": 982117, "name": "Central Av/Virginia St", "direction": "NE", "lat": 40.609634, "lon": -73.74561, "routes": "Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.74561, 40.609634 ] } }, -{ "type": "Feature", "properties": { "id": 982118, "name": "Central Av/Virginia St", "direction": "SW", "lat": 40.609722, "lon": -73.74561, "routes": "Q113" }, "geometry": { "type": "Point", "coordinates": [ -73.74561, 40.609722 ] } }, -{ "type": "Feature", "properties": { "id": 982125, "name": "Woodhaven Blvd/97 Av", "direction": "NW", "lat": 40.686115, "lon": -73.84675, "routes": "Q21, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.84675, 40.686115 ] } }, -{ "type": "Feature", "properties": { "id": 982130, "name": "Flatbush Av/Floyd Bennett Field Entrance", "direction": "SE", "lat": 40.581387, "lon": -73.89119, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.89119, 40.581387 ] } }, -{ "type": "Feature", "properties": { "id": 982131, "name": "Newport Av/Beach 116 St", "direction": "E", "lat": 40.581284, "lon": -73.83852, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.83852, 40.581284 ] } }, -{ "type": "Feature", "properties": { "id": 982137, "name": "Cross Bay Blvd/163 Av", "direction": "N", "lat": 40.652412, "lon": -73.83802, "routes": "QM17, QM16, Q53+, Q52+" }, "geometry": { "type": "Point", "coordinates": [ -73.83802, 40.652412 ] } }, -{ "type": "Feature", "properties": { "id": 982141, "name": "Rockaway Beach Blvd/Beach 92 St", "direction": "W", "lat": 40.586582, "lon": -73.81537, "routes": "QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.81537, 40.586582 ] } }, -{ "type": "Feature", "properties": { "id": 982142, "name": "E Loop Rd/N Loop Rd", "direction": "SW", "lat": 40.75545, "lon": -73.954834, "routes": "Q102" }, "geometry": { "type": "Point", "coordinates": [ -73.954834, 40.75545 ] } }, -{ "type": "Feature", "properties": { "id": 982145, "name": "Liberty Av/Waltham St", "direction": "SW", "lat": 40.695602, "lon": -73.80537, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80537, 40.695602 ] } }, -{ "type": "Feature", "properties": { "id": 982146, "name": "North Shore Towers/Building Entrance", "direction": "E", "lat": 40.757244, "lon": -73.715126, "routes": "QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.715126, 40.757244 ] } }, -{ "type": "Feature", "properties": { "id": 982147, "name": "104 St /165 Av", "direction": "S", "lat": 40.650517, "lon": -73.827255, "routes": "Q11, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.827255, 40.650517 ] } }, -{ "type": "Feature", "properties": { "id": 982148, "name": "165 Av /96 St", "direction": "E", "lat": 40.64957, "lon": -73.83439, "routes": "Q11, Q11" }, "geometry": { "type": "Point", "coordinates": [ -73.83439, 40.64957 ] } }, -{ "type": "Feature", "properties": { "id": 982149, "name": "164 Av/92 St", "direction": "W", "lat": 40.650764, "lon": -73.83859, "routes": "Q21, Q21" }, "geometry": { "type": "Point", "coordinates": [ -73.83859, 40.650764 ] } }, -{ "type": "Feature", "properties": { "id": 982150, "name": "Beach 21 St Terminal/Beach 21 St", "direction": "N", "lat": 40.603302, "lon": -73.75383, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.75383, 40.603302 ] } }, -{ "type": "Feature", "properties": { "id": 982151, "name": "Beach 169 St/Rockaway Point Blvd", "direction": "SE", "lat": 40.567394, "lon": -73.88274, "routes": "Q22, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.88274, 40.567394 ] } }, -{ "type": "Feature", "properties": { "id": 982152, "name": "165 St Terminal/Mta Bus Stand", "direction": "SE", "lat": 40.707222, "lon": -73.79544, "routes": "Q41, Q08, Q09, Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.79544, 40.707222 ] } }, -{ "type": "Feature", "properties": { "id": 982153, "name": "102 St/157 Av", "direction": "N", "lat": 40.6639, "lon": -73.83231, "routes": "QM15" }, "geometry": { "type": "Point", "coordinates": [ -73.83231, 40.6639 ] } }, -{ "type": "Feature", "properties": { "id": 982154, "name": "Jacob Riis Park Rd/Bath House Stop", "direction": "E", "lat": 40.566124, "lon": -73.87263, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.87263, 40.566124 ] } }, -{ "type": "Feature", "properties": { "id": 982155, "name": "Pitkin Av /Euclid Av", "direction": "W", "lat": 40.675514, "lon": -73.871666, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.871666, 40.675514 ] } }, -{ "type": "Feature", "properties": { "id": 982156, "name": "S Cargo Rd/Cargo Plaza", "direction": "SW", "lat": 40.652985, "lon": -73.79466, "routes": "Q07" }, "geometry": { "type": "Point", "coordinates": [ -73.79466, 40.652985 ] } }, -{ "type": "Feature", "properties": { "id": 982157, "name": "Gateway Center Terminal/Gateway Dr", "direction": "N", "lat": 40.652714, "lon": -73.87623, "routes": "Q08" }, "geometry": { "type": "Point", "coordinates": [ -73.87623, 40.652714 ] } }, -{ "type": "Feature", "properties": { "id": 982158, "name": "Lincoln St /Rockaway Blvd", "direction": "N", "lat": 40.675106, "lon": -73.80735, "routes": "Q09" }, "geometry": { "type": "Point", "coordinates": [ -73.80735, 40.675106 ] } }, -{ "type": "Feature", "properties": { "id": 982159, "name": "Kew Gardens Rd /80 Rd", "direction": "NW", "lat": 40.71355, "lon": -73.83015, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.83015, 40.71355 ] } }, -{ "type": "Feature", "properties": { "id": 982161, "name": "Union Tpke/Kew Gardens Rd", "direction": "NE", "lat": 40.713966, "lon": -73.831375, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.831375, 40.713966 ] } }, -{ "type": "Feature", "properties": { "id": 982162, "name": "69 St/Grand Av", "direction": "N", "lat": 40.726376, "lon": -73.89526, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.89526, 40.726376 ] } }, -{ "type": "Feature", "properties": { "id": 982163, "name": "81 St/Myrtle Av", "direction": "N", "lat": 40.703304, "lon": -73.86723, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.86723, 40.703304 ] } }, -{ "type": "Feature", "properties": { "id": 982164, "name": "82 St/Roosevelt Av", "direction": "S", "lat": 40.747494, "lon": -73.884, "routes": "Q29" }, "geometry": { "type": "Point", "coordinates": [ -73.884, 40.747494 ] } }, -{ "type": "Feature", "properties": { "id": 982165, "name": "74 St - Roosevelt Av Terminal/Q33 Stop", "direction": "SW", "lat": 40.746666, "lon": -73.890816, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.890816, 40.746666 ] } }, -{ "type": "Feature", "properties": { "id": 982166, "name": "95 St/Ditmars Blvd", "direction": "N", "lat": 40.77019, "lon": -73.87551, "routes": "Q33" }, "geometry": { "type": "Point", "coordinates": [ -73.87551, 40.77019 ] } }, -{ "type": "Feature", "properties": { "id": 982167, "name": "60 Ln/St Felix Av", "direction": "N", "lat": 40.696884, "lon": -73.8945, "routes": "Q39" }, "geometry": { "type": "Point", "coordinates": [ -73.8945, 40.696884 ] } }, -{ "type": "Feature", "properties": { "id": 982169, "name": "Cooper Av/81 St", "direction": "E", "lat": 40.70931, "lon": -73.8698, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.8698, 40.70931 ] } }, -{ "type": "Feature", "properties": { "id": 982170, "name": "Lga/Marine Air Terminal", "direction": "S", "lat": 40.773087, "lon": -73.886116, "routes": "Q47" }, "geometry": { "type": "Point", "coordinates": [ -73.886116, 40.773087 ] } }, -{ "type": "Feature", "properties": { "id": 982171, "name": "74 St - Roosevelt Av Terminal/Q49 Stop", "direction": "SW", "lat": 40.746613, "lon": -73.89072, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.89072, 40.746613 ] } }, -{ "type": "Feature", "properties": { "id": 982172, "name": "31 Av/102 St", "direction": "W", "lat": 40.76132, "lon": -73.86703, "routes": "Q49" }, "geometry": { "type": "Point", "coordinates": [ -73.86703, 40.76132 ] } }, -{ "type": "Feature", "properties": { "id": 982173, "name": "Astoria Blvd/82 St", "direction": "W", "lat": 40.765274, "lon": -73.88757, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.88757, 40.765274 ] } }, -{ "type": "Feature", "properties": { "id": 982174, "name": "Rikers Island Rdwy/Rikers Island", "direction": "W", "lat": 40.787422, "lon": -73.88439, "routes": "Q100" }, "geometry": { "type": "Point", "coordinates": [ -73.88439, 40.787422 ] } }, -{ "type": "Feature", "properties": { "id": 982175, "name": "Vernon Blvd/Borden Av", "direction": "S", "lat": 40.74146, "lon": -73.95464, "routes": "Q103" }, "geometry": { "type": "Point", "coordinates": [ -73.95464, 40.74146 ] } }, -{ "type": "Feature", "properties": { "id": 982176, "name": "48 St/Queens Blvd", "direction": "S", "lat": 40.743458, "lon": -73.91689, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.91689, 40.743458 ] } }, -{ "type": "Feature", "properties": { "id": 982177, "name": "11 St/34 Av", "direction": "NE", "lat": 40.764748, "lon": -73.93765, "routes": "Q104" }, "geometry": { "type": "Point", "coordinates": [ -73.93765, 40.764748 ] } }, -{ "type": "Feature", "properties": { "id": 982178, "name": "National Dr / Mill Av", "direction": "NW", "lat": 40.606857, "lon": -73.9159, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.9159, 40.606857 ] } }, -{ "type": "Feature", "properties": { "id": 982182, "name": "104 St/Roosevelt Av", "direction": "SE", "lat": 40.749695, "lon": -73.861694, "routes": "Q23" }, "geometry": { "type": "Point", "coordinates": [ -73.861694, 40.749695 ] } }, -{ "type": "Feature", "properties": { "id": 982183, "name": "Archer Av/151 St", "direction": "E", "lat": 40.701626, "lon": -73.80338, "routes": "Q25, Q34, Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.80338, 40.701626 ] } }, -{ "type": "Feature", "properties": { "id": 982184, "name": "Myrtle Av/73 Pl", "direction": "E", "lat": 40.70237, "lon": -73.87514, "routes": "QM25, QM34, QM24" }, "geometry": { "type": "Point", "coordinates": [ -73.87514, 40.70237 ] } }, -{ "type": "Feature", "properties": { "id": 982185, "name": "Myrtle Av/72 St", "direction": "E", "lat": 40.702106, "lon": -73.87836, "routes": "QM34, QM24, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.87836, 40.702106 ] } }, -{ "type": "Feature", "properties": { "id": 982186, "name": "Eastern Rd/Building 77 Halmar", "direction": "SE", "lat": 40.652565, "lon": -73.7655, "routes": "Q06" }, "geometry": { "type": "Point", "coordinates": [ -73.7655, 40.652565 ] } }, -{ "type": "Feature", "properties": { "id": 982192, "name": "135 Rd/130 Pl", "direction": "E", "lat": 40.66767, "lon": -73.80851, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.80851, 40.66767 ] } }, -{ "type": "Feature", "properties": { "id": 982193, "name": "135 Rd/130 Pl", "direction": "E", "lat": 40.667667, "lon": -73.80872, "routes": "Q37" }, "geometry": { "type": "Point", "coordinates": [ -73.80872, 40.667667 ] } }, -{ "type": "Feature", "properties": { "id": 982194, "name": "Beach 116 St/Newport Av", "direction": "SE", "lat": 40.581272, "lon": -73.83824, "routes": "Q22, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.83824, 40.581272 ] } }, -{ "type": "Feature", "properties": { "id": 982197, "name": "Fresh Pond Rd/Grove St", "direction": "NW", "lat": 40.70983, "lon": -73.898895, "routes": "QM25, QM24, QM34" }, "geometry": { "type": "Point", "coordinates": [ -73.898895, 40.70983 ] } }, -{ "type": "Feature", "properties": { "id": 982198, "name": "Fresh Pond Rd/Linden St", "direction": "SE", "lat": 40.710224, "lon": -73.89942, "routes": "QM24, QM34, QM25" }, "geometry": { "type": "Point", "coordinates": [ -73.89942, 40.710224 ] } }, -{ "type": "Feature", "properties": { "id": 982205, "name": "Woodside Av/61 St", "direction": "W", "lat": 40.74492, "lon": -73.90332, "routes": "Q70+" }, "geometry": { "type": "Point", "coordinates": [ -73.90332, 40.74492 ] } }, -{ "type": "Feature", "properties": { "id": 982206, "name": "95 Av/Cresskill Pl", "direction": "E", "lat": 40.69708, "lon": -73.810524, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.810524, 40.69708 ] } }, -{ "type": "Feature", "properties": { "id": 982207, "name": "95 Av/Liverpool St", "direction": "E", "lat": 40.69784, "lon": -73.80786, "routes": "Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.80786, 40.69784 ] } }, -{ "type": "Feature", "properties": { "id": 982208, "name": "157 Av/Cross Bay Blvd", "direction": "E", "lat": 40.662457, "lon": -73.84097, "routes": "Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84097, 40.662457 ] } }, -{ "type": "Feature", "properties": { "id": 982212, "name": "157 Av/92 St", "direction": "W", "lat": 40.662495, "lon": -73.84152, "routes": "Q21, Q41" }, "geometry": { "type": "Point", "coordinates": [ -73.84152, 40.662495 ] } }, -{ "type": "Feature", "properties": { "id": 982213, "name": "Union Tpke/188 St", "direction": "W", "lat": 40.729305, "lon": -73.78135, "routes": "QM35, QM31, QM5, QM1, QM36, QM6" }, "geometry": { "type": "Point", "coordinates": [ -73.78135, 40.729305 ] } }, -{ "type": "Feature", "properties": { "id": 982214, "name": "Union Tpke/187 St", "direction": "W", "lat": 40.729084, "lon": -73.78201, "routes": "QM7, QM8" }, "geometry": { "type": "Point", "coordinates": [ -73.78201, 40.729084 ] } }, -{ "type": "Feature", "properties": { "id": 982215, "name": "Rockaway Beach Blvd/Beach 147 St", "direction": "W", "lat": 40.570072, "lon": -73.86277, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.86277, 40.570072 ] } }, -{ "type": "Feature", "properties": { "id": 982216, "name": "Rockaway Beach Blvd/Beach 147 St", "direction": "E", "lat": 40.569992, "lon": -73.862206, "routes": "QM16" }, "geometry": { "type": "Point", "coordinates": [ -73.862206, 40.569992 ] } }, -{ "type": "Feature", "properties": { "id": 982221, "name": "College Point Blvd/33 Av", "direction": "NW", "lat": 40.765835, "lon": -73.8374, "routes": "Q65" }, "geometry": { "type": "Point", "coordinates": [ -73.8374, 40.765835 ] } }, -{ "type": "Feature", "properties": { "id": 982222, "name": "Lefferts Blvd/Airtrain Station", "direction": "E", "lat": 40.66184, "lon": -73.824425, "routes": "Q10" }, "geometry": { "type": "Point", "coordinates": [ -73.824425, 40.66184 ] } }, -{ "type": "Feature", "properties": { "id": 982223, "name": "63 Rd/98 Pl", "direction": "E", "lat": 40.7323, "lon": -73.85809, "routes": "QM11, QM11, QM10, QM10, Q38, QM40, QM40" }, "geometry": { "type": "Point", "coordinates": [ -73.85809, 40.7323 ] } }, -{ "type": "Feature", "properties": { "id": 982224, "name": "21 St/Astoria Park South", "direction": "SW", "lat": 40.77458, "lon": -73.92419, "routes": "Q69" }, "geometry": { "type": "Point", "coordinates": [ -73.92419, 40.77458 ] } }, -{ "type": "Feature", "properties": { "id": 982225, "name": "Astoria Blvd/Newtown Av", "direction": "E", "lat": 40.772083, "lon": -73.92558, "routes": "Q19" }, "geometry": { "type": "Point", "coordinates": [ -73.92558, 40.772083 ] } }, -{ "type": "Feature", "properties": { "id": 982265, "name": "35 Av/44 St", "direction": "NW", "lat": 40.753838, "lon": -73.91912, "routes": "Q66" }, "geometry": { "type": "Point", "coordinates": [ -73.91912, 40.753838 ] } }, -{ "type": "Feature", "properties": { "id": 982428, "name": "Horace Harding Expwy/Nassau Blvd", "direction": "W", "lat": 40.76447, "lon": -73.725105, "routes": "QM8, QM5, QM35" }, "geometry": { "type": "Point", "coordinates": [ -73.725105, 40.76447 ] } }, -{ "type": "Feature", "properties": { "id": 982431, "name": "27 Av/2 St", "direction": "W", "lat": 40.77545, "lon": -73.935394, "routes": "Q18" }, "geometry": { "type": "Point", "coordinates": [ -73.935394, 40.77545 ] } }, -{ "type": "Feature", "properties": { "id": 982456, "name": "Junction Blvd/34 Av", "direction": "SE", "lat": 40.755207, "lon": -73.87289, "routes": "Q72" }, "geometry": { "type": "Point", "coordinates": [ -73.87289, 40.755207 ] } }, -{ "type": "Feature", "properties": { "id": 982457, "name": "Seagirt Blvd/Beach 29 St", "direction": "E", "lat": 40.59595, "lon": -73.762215, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.762215, 40.59595 ] } }, -{ "type": "Feature", "properties": { "id": 982458, "name": "Seagirt Blvd/Beach 29 St", "direction": "W", "lat": 40.596268, "lon": -73.762276, "routes": "QM17, Q22" }, "geometry": { "type": "Point", "coordinates": [ -73.762276, 40.596268 ] } }, -{ "type": "Feature", "properties": { "id": 982459, "name": "Beach Channel Dr/Beach 36 St", "direction": "E", "lat": 40.596165, "lon": -73.76886, "routes": "Q22, QM17" }, "geometry": { "type": "Point", "coordinates": [ -73.76886, 40.596165 ] } }, -{ "type": "Feature", "properties": { "id": 982460, "name": "Madison Av/E 44 St", "direction": "NE", "lat": 40.753765, "lon": -73.97849, "routes": "BXM18, BXM6, BXM9" }, "geometry": { "type": "Point", "coordinates": [ -73.97849, 40.753765 ] } }, -{ "type": "Feature", "properties": { "id": 983012, "name": "E 16 St / Kings Hwy", "direction": "S", "lat": 40.608936, "lon": -73.957405, "routes": "B100" }, "geometry": { "type": "Point", "coordinates": [ -73.957405, 40.608936 ] } }, -{ "type": "Feature", "properties": { "id": 983013, "name": "Avenue H/Flatbush Av", "direction": "E", "lat": 40.631664, "lon": -73.94671, "routes": "Q35" }, "geometry": { "type": "Point", "coordinates": [ -73.94671, 40.631664 ] } }, -{ "type": "Feature", "properties": { "id": 983014, "name": "56 Dr / Strickland Av", "direction": "SE", "lat": 40.60872, "lon": -73.91386, "routes": "BM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91386, 40.60872 ] } }, -{ "type": "Feature", "properties": { "id": 983015, "name": "Seaview Av / Pennsylvania Av", "direction": "SW", "lat": 40.643074, "lon": -73.87828, "routes": "BM5, BM2, BM2" }, "geometry": { "type": "Point", "coordinates": [ -73.87828, 40.643074 ] } }, -{ "type": "Feature", "properties": { "id": 984006, "name": "W 230 St / Broadway", "direction": "NW", "lat": 40.877197, "lon": -73.90689, "routes": "BXM2, BXM18, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.90689, 40.877197 ] } }, -{ "type": "Feature", "properties": { "id": 984009, "name": "Boston Rd/Pelham Pkwy", "direction": "NE", "lat": 40.85714, "lon": -73.86877, "routes": "BXM11" }, "geometry": { "type": "Point", "coordinates": [ -73.86877, 40.85714 ] } }, -{ "type": "Feature", "properties": { "id": 984010, "name": "Sedgwick Av / Stevenson Pl", "direction": "E", "lat": 40.882626, "lon": -73.89302, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89302, 40.882626 ] } }, -{ "type": "Feature", "properties": { "id": 984012, "name": "Cross Bronx Expwy Service Rd/Commonwealth Av", "direction": "W", "lat": 40.83617, "lon": -73.868996, "routes": "BXM6, Q44+" }, "geometry": { "type": "Point", "coordinates": [ -73.868996, 40.83617 ] } }, -{ "type": "Feature", "properties": { "id": 984017, "name": "Earhart Ln/Erskine Pl", "direction": "NW", "lat": 40.86128, "lon": -73.82268, "routes": "Q50" }, "geometry": { "type": "Point", "coordinates": [ -73.82268, 40.86128 ] } }, -{ "type": "Feature", "properties": { "id": 984018, "name": "Metropolitan Av/Unionport Rd", "direction": "S", "lat": 40.838596, "lon": -73.860695, "routes": "BXM6" }, "geometry": { "type": "Point", "coordinates": [ -73.860695, 40.838596 ] } }, -{ "type": "Feature", "properties": { "id": 984019, "name": "Dreiser Loop / Defoe Pl", "direction": "E", "lat": 40.87598, "lon": -73.82947, "routes": "BXM7" }, "geometry": { "type": "Point", "coordinates": [ -73.82947, 40.87598 ] } }, -{ "type": "Feature", "properties": { "id": 984021, "name": "Katonah Av/E 242 St", "direction": "S", "lat": 40.90219, "lon": -73.86811, "routes": "BXM4" }, "geometry": { "type": "Point", "coordinates": [ -73.86811, 40.90219 ] } }, -{ "type": "Feature", "properties": { "id": 984066, "name": "Bruckner Blvd/Wilkinson Av", "direction": "S", "lat": 40.852783, "lon": -73.82689, "routes": "BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82689, 40.852783 ] } }, -{ "type": "Feature", "properties": { "id": 984067, "name": "Bruckner Blvd/Wilkinson Av", "direction": "S", "lat": 40.85286, "lon": -73.82688, "routes": "BX23" }, "geometry": { "type": "Point", "coordinates": [ -73.82688, 40.85286 ] } }, -{ "type": "Feature", "properties": { "id": 984068, "name": "Independence Av/W 232 St", "direction": "SW", "lat": 40.885513, "lon": -73.91535, "routes": "BXM18, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91535, 40.885513 ] } }, -{ "type": "Feature", "properties": { "id": 984069, "name": "Independence Av/W 236 St", "direction": "S", "lat": 40.887226, "lon": -73.91336, "routes": "BXM18, BXM2, BXM1" }, "geometry": { "type": "Point", "coordinates": [ -73.91336, 40.887226 ] } }, -{ "type": "Feature", "properties": { "id": 984070, "name": "Kappock St/Independence Av", "direction": "E", "lat": 40.88058, "lon": -73.91919, "routes": "BXM18, BXM1, BXM2" }, "geometry": { "type": "Point", "coordinates": [ -73.91919, 40.88058 ] } }, -{ "type": "Feature", "properties": { "id": 984071, "name": "Morris Park Av/1300 Morris Park Av", "direction": "E", "lat": 40.851025, "lon": -73.84569, "routes": "BXM10" }, "geometry": { "type": "Point", "coordinates": [ -73.84569, 40.851025 ] } }, -{ "type": "Feature", "properties": { "id": 985001, "name": "S Broadway/Radford St", "direction": "N", "lat": 40.91765, "lon": -73.89649, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89649, 40.91765 ] } }, -{ "type": "Feature", "properties": { "id": 985002, "name": "S Broadway/Mclean Av", "direction": "N", "lat": 40.920956, "lon": -73.895935, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.895935, 40.920956 ] } }, -{ "type": "Feature", "properties": { "id": 985003, "name": "S Broadway/Park Hill Av", "direction": "NW", "lat": 40.929115, "lon": -73.89642, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89642, 40.929115 ] } }, -{ "type": "Feature", "properties": { "id": 985004, "name": "S Broadway/Prospect Av", "direction": "NW", "lat": 40.931538, "lon": -73.8986, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.8986, 40.931538 ] } }, -{ "type": "Feature", "properties": { "id": 985005, "name": "S Broadway/New Main St", "direction": "NE", "lat": 40.933636, "lon": -73.89782, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89782, 40.933636 ] } }, -{ "type": "Feature", "properties": { "id": 985006, "name": "S Broadway/Prospect St", "direction": "S", "lat": 40.932045, "lon": -73.89914, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89914, 40.932045 ] } }, -{ "type": "Feature", "properties": { "id": 985007, "name": "S Broadway/Mclean Av", "direction": "S", "lat": 40.920547, "lon": -73.89625, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89625, 40.920547 ] } }, -{ "type": "Feature", "properties": { "id": 985008, "name": "S Broadway/Vark St", "direction": "S", "lat": 40.92876, "lon": -73.89653, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89653, 40.92876 ] } }, -{ "type": "Feature", "properties": { "id": 985009, "name": "S Broadway/Radford St", "direction": "S", "lat": 40.91729, "lon": -73.89685, "routes": "BXM3" }, "geometry": { "type": "Point", "coordinates": [ -73.89685, 40.91729 ] } } -] -}